/*
Theme Name: BlockTrading
Theme URI: https://niteothemes.com/cmp-coming-soon-maintenance/?theme=blocktrading
Author: NiteoThemes
Author URI: https://niteothemes.com/
Version: 1.0

BlockTrading CMP Theme, Copyright 2025 NiteoThemes
BlockTrading CMP Theme is distributed under the terms of the GNU GPL

License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl.html

All used scripts are distributed under the terms of the GNU GPL v2 or later or under MIT license. 
Bundled images are distributed under the terms of the GNU GPL v2 or later or under MIT license or Unsplash license.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normaalize.css/
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #0a0f1c;
    color: white;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    cursor: auto; /* Rimosso cursore custom */
}

/* Background Layers - Semplificato */
.bg-layer-1 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0f1c 0%, #111827 50%, #1f2937 100%);
    z-index: 0;
}

/* Hero Interactive Lines Canvas */
#heroLinesCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.7;
}

/* Navigation */
.main-nav {
    position: fixed;
    top: 2rem;
    right: 2rem;
    display: flex;
    gap: 2rem;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background: rgba(31, 41, 55, 0.1);
    padding: 1rem 2rem;
    border-radius: 2rem;
    border: 1px solid rgba(75, 85, 99, 0.2);
}

.nav-link {
    color: #E5E7EB;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #14B8A6;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #14B8A6;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Section - Full Screen */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 10;
    padding: 2rem;
    overflow: hidden; /* Per contenere le linee */
}

.hero-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-content {
    z-index: 10;
    position: relative;
}

/* Logo Section - Clean */
.logo-section {
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out;
}

.cmp-logo-wrapper img {
    max-height: 80px;
    width: auto;
}

.default-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.default-logo:hover {
    transform: scale(1.03);
}

.logo-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #14B8A6, #06B6D4);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(20, 184, 166, 0.2);
    position: relative;
    overflow: hidden;
}

.logo-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: transform 0.6s ease;
}

.default-logo:hover .logo-icon::before {
    transform: translateX(100%) translateY(100%) rotate(45deg);
}

.logo-text {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #14B8A6, #06B6D4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Status Badge - Evidenziato meglio */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.15), rgba(6, 182, 212, 0.1));
    border: 2px solid rgba(20, 184, 166, 0.4);
    color: #14B8A6;
    padding: 1rem 2rem;
    border-radius: 2rem;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out both, statusPulse 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px rgba(20, 184, 166, 0.2);
}

.status-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(20, 184, 166, 0.2), transparent);
    transition: left 1s ease;
}

.status-badge:hover::before {
    left: 100%;
}

.status-indicator {
    width: 10px;
    height: 10px;
    background: #14B8A6;
    border-radius: 50%;
    animation: statusBlink 2s infinite;
    box-shadow: 0 0 10px rgba(20, 184, 166, 0.6);
}

@keyframes statusBlink {
    0%, 50% { opacity: 1; transform: scale(1); }
    25% { opacity: 0.7; transform: scale(1.1); }
}

@keyframes statusPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 8px 32px rgba(20, 184, 166, 0.2);
    }
    50% { 
        transform: scale(1.02);
        box-shadow: 0 12px 40px rgba(20, 184, 166, 0.3);
    }
}

/* Typography - Clean */
h1, h2, h3, h4, h5, h6 {
    font-weight: 400;
    font-size: 2.5em;
    margin-bottom: .5em;
    margin-top: 0;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    animation: fadeInUp 1s ease-out 0.2s both;
    position: relative;
    color: #ffffff;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: #14B8A6;
    font-weight: 500;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-description {
    font-size: 1.2rem;
    color: #E5E7EB;
    line-height: 1.6;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-description p {
    margin-bottom: 1rem;
}

/* Hero CTA Buttons */
.hero-cta {
    display: flex;
    gap: 1rem;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-button.primary {
    background: linear-gradient(135deg, #14B8A6, #06B6D4);
    color: white;
    box-shadow: 0 4px 12px rgba(20, 184, 166, 0.3);
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(20, 184, 166, 0.4);
}

.cta-button.secondary {
    background: transparent;
    color: #14B8A6;
    border-color: #14B8A6;
}

.cta-button.secondary:hover {
    background: rgba(20, 184, 166, 0.1);
    transform: translateY(-2px);
}

/* Hero Visual Element */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 1s ease-out 1s both;
}

.trading-interface-mockup {
    background: rgba(31, 41, 55, 0.4);
    border: 1px solid rgba(75, 85, 99, 0.3);
    border-radius: 1rem;
    padding: 1.5rem;
    backdrop-filter: blur(20px);
    max-width: 400px;
    width: 100%;
    transition: all 0.3s ease;
}

.trading-interface-mockup:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(20, 184, 166, 0.1);
}

.interface-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(75, 85, 99, 0.3);
}

.interface-dots {
    display: flex;
    gap: 0.5rem;
}

.interface-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #4B5563;
}

.interface-dots span:nth-child(1) { background: #EF4444; }
.interface-dots span:nth-child(2) { background: #F59E0B; }
.interface-dots span:nth-child(3) { background: #10B981; }

.interface-title {
    color: #D1D5DB;
    font-weight: 500;
}

.interface-blocks {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.block-node {
    background: rgba(75, 85, 99, 0.3);
    border: 2px solid;
    border-radius: 0.75rem;
    padding: 1rem 1.5rem;
    font-weight: 500;
    text-align: center;
    min-width: 180px;
    transition: all 0.3s ease;
}

.block-node.primary {
    border-color: #14B8A6;
    color: #14B8A6;
    background: rgba(20, 184, 166, 0.1);
}

.block-node.secondary {
    border-color: #06B6D4;
    color: #06B6D4;
    background: rgba(6, 182, 212, 0.1);
}

.block-node.accent {
    border-color: #0EA5E9;
    color: #0EA5E9;
    background: rgba(14, 165, 233, 0.1);
}

.block-connector {
    width: 2px;
    height: 1rem;
    background: linear-gradient(to bottom, #14B8A6, #06B6D4);
    border-radius: 1px;
}

/* Container and Main Content */
.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 10;
}

/* Language Switcher */
.lang-switch-wrapper {
    position: absolute;
    top: 40px;
    left: 40px;
    z-index: 10000;
}

/* Sections */
.features-section,
.roadmap-section,
.cta-section {
    padding: 6rem 0;
    position: relative;
    z-index: 10;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: white;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #9CA3AF;
    text-align: center;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: rgba(31, 41, 55, 0.3);
    border: 1px solid rgba(75, 85, 99, 0.3);
    border-radius: 1rem;
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(20, 184, 166, 0.4);
    background: rgba(31, 41, 55, 0.5);
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.2), rgba(6, 182, 212, 0.2));
    border: 2px solid rgba(20, 184, 166, 0.4);
    color: #14B8A6;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    border-color: #14B8A6;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.3), rgba(6, 182, 212, 0.3));
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
    transition: color 0.3s ease;
}

.feature-description {
    color: #D1D5DB;
    line-height: 1.6;
}

/* Roadmap Timeline - Professional */
.roadmap-section {
    background: rgba(15, 23, 42, 0.3);
    backdrop-filter: blur(20px);
}

.roadmap-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    text-align: center;
}

.roadmap-subtitle {
    font-size: 1.2rem;
    color: #9CA3AF;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.roadmap-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.roadmap-step {
    display: flex;
    margin-bottom: 2.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.roadmap-step:hover {
    transform: translateX(5px);
}

.step-indicator {
    position: relative;
    margin-right: 2rem;
    flex-shrink: 0;
    z-index: 10;
}

.step-number {
    width: 2.5rem;
    height: 2.5rem;
    background: #374151;
    border: 2px solid #4B5563;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1rem;
    color: white;
    transition: all 0.3s ease;
    position: relative;
    z-index: 3;
}

.roadmap-step.completed .step-number {
    background: linear-gradient(135deg, #14B8A6, #06B6D4);
    border-color: #14B8A6;
    box-shadow: 0 3px 8px rgba(20, 184, 166, 0.3);
}

.roadmap-step.current .step-number {
    background: linear-gradient(135deg, #F59E0B, #EAB308);
    border-color: #F59E0B;
    box-shadow: 0 3px 8px rgba(245, 158, 11, 0.3);
    animation: currentStepPulse 2s ease-in-out infinite;
}

@keyframes currentStepPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 3px 8px rgba(245, 158, 11, 0.3);
    }
    50% { 
        transform: scale(1.1);
        box-shadow: 0 6px 16px rgba(245, 158, 11, 0.5);
    }
}

.step-connector {
    position: absolute;
    top: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 2.5rem;
    background: #374151;
    z-index: 1;
}

.roadmap-step:last-child .step-connector {
    display: none;
}

.roadmap-step.completed .step-connector {
    background: linear-gradient(to bottom, #14B8A6, #374151);
}

.roadmap-step.current .step-connector {
    background: linear-gradient(to bottom, #F59E0B, #374151);
}

.step-content {
    flex: 1;
    background: rgba(31, 41, 55, 0.3);
    border: 1px solid rgba(75, 85, 99, 0.3);
    border-radius: 1rem;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.roadmap-step:hover .step-content {
    border-color: rgba(20, 184, 166, 0.4);
    background: rgba(31, 41, 55, 0.5);
}

.roadmap-step.current .step-content {
    border-color: rgba(245, 158, 11, 0.4);
    background: rgba(245, 158, 11, 0.05);
}

.step-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: white;
}

.roadmap-step.completed .step-content h3 {
    color: #14B8A6;
}

.roadmap-step.current .step-content h3 {
    color: #F59E0B;
}

.step-content p {
    color: #D1D5DB;
    line-height: 1.5;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.step-status {
    display: inline-block;
    background: rgba(20, 184, 166, 0.1);
    border: 1px solid rgba(20, 184, 166, 0.3);
    color: #14B8A6;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    font-weight: 500;
}

.roadmap-step.current .step-status {
    background: rgba(245, 158, 11, 0.1);
    border-color: rgba(245, 158, 11, 0.3);
    color: #F59E0B;
    animation: currentStatusBlink 2s ease-in-out infinite;
}

@keyframes currentStatusBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.step-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.step-features span {
    background: rgba(75, 85, 99, 0.2);
    border: 1px solid rgba(75, 85, 99, 0.4);
    color: #D1D5DB;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.8rem;
}

.roadmap-step.completed .step-features span {
    background: rgba(20, 184, 166, 0.1);
    border-color: rgba(20, 184, 166, 0.2);
    color: #14B8A6;
}

.roadmap-step.current .step-features span {
    background: rgba(245, 158, 11, 0.1);
    border-color: rgba(245, 158, 11, 0.2);
    color: #F59E0B;
}

/* CTA Section - Clean */
.cta-section {
    background: rgba(31, 41, 55, 0.2);
    border-top: 1px solid rgba(75, 85, 99, 0.3);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: #14B8A6;
    margin-bottom: 3rem;
}

/* Benefits List - Clean */
.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
    text-align: left;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(75, 85, 99, 0.15);
    border: 1px solid rgba(75, 85, 99, 0.3);
    border-radius: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-item:hover {
    transform: translateX(5px) translateY(-2px);
    background: rgba(20, 184, 166, 0.05);
    border-color: rgba(20, 184, 166, 0.3);
}

.benefit-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #14B8A6;
    flex-shrink: 0;
    margin-top: 0.25rem;
    transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon {
    color: #06B6D4;
    transform: scale(1.1);
}

.benefit-text {
    color: #D1D5DB;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.benefit-item:hover .benefit-text {
    color: white;
}

/* Modern Form Styling */
.signup-form-container {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.sib_signup_form {
    background: rgba(31, 41, 55, 0.4);
    border: 1px solid rgba(75, 85, 99, 0.3);
    border-radius: 1.5rem;
    padding: 2.5rem;
    backdrop-filter: blur(20px);
}
p.sib-alert-message.sib-alert-message-success {
    background-image: linear-gradient(135deg, #14B8A6, #06B6D4);
    color: #fff !important;
    border: none !important;
    padding: 13px !important;
    border-radius: 0.75rem !important;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-label {
    color: #D1D5DB;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-input {
    background: rgba(75, 85, 99, 0.2);
    border: 2px solid rgba(75, 85, 99, 0.4);
    border-radius: 0.75rem;
    padding: 1rem 1.25rem;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-input:focus {
    outline: none;
    border-color: #14B8A6;
    background: rgba(75, 85, 99, 0.3);
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
}

.form-input::placeholder {
    color: #9CA3AF;
}

.form-submit-btn {
    background: linear-gradient(135deg, #14B8A6, #06B6D4);
    border: none;
    border-radius: 0.75rem;
    padding: 1rem 2rem;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    box-shadow: 0 4px 12px rgba(20, 184, 166, 0.3);
}

.form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(20, 184, 166, 0.4);
}

.submit-icon {
    width: 1rem;
    height: 1rem;
    transition: transform 0.3s ease;
}

.form-submit-btn:hover .submit-icon {
    transform: translateX(3px);
}

.form-disclaimer {
    color: #9CA3AF;
    font-size: 0.85rem;
    text-align: center;
    margin-top: 1.5rem;
    line-height: 1.5;
}

/* Loading Spinner */
.loader-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(20, 184, 166, 0.3);
    border-top: 2px solid #14B8A6;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Brevo Form Alert Messages */
form#sib_signup_form_2 p.sib-alert-message {
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid transparent;
    border-radius: 0.75rem;
    font-weight: 500;
}

form#sib_signup_form_2 p.sib-alert-message-error {
    background-color: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.3);
    color: #EF4444;
}

form#sib_signup_form_2 p.sib-alert-message-success {
    background-color: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.3);
    color: #22C55E;
}

form#sib_signup_form_2 p.sib-alert-message-warning {
    background-color: rgba(245, 158, 11, 0.1);
    border-color: rgba(245, 158, 11, 0.3);
    color: #F59E0B;
}

/* Footer - Clean */
footer {
    display: flex;
    text-align: right;
    z-index: 100;
    line-height: 1;
    padding: 4rem 2rem 2rem;
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(75, 85, 99, 0.2);
}

.copyright {
    padding-left: 2em;
    margin: 0;
    opacity: .7;
    font-size: 1em;
    line-height: 3;
}

.soc-title {
    margin: 0;
    padding-right: 1em;
    font-size: 1em;
    line-height: 3;
}

.social-list {
    display: inline-block;
    padding: 0;
    margin-bottom: 0;
    padding-right: 1.5em;
    margin-top: 0;
    border-radius: 10px;
    padding-bottom: 0;
    line-height: 3;
}

.social-list li {
    list-style: none;
    display: inline-block;
    padding: 0 2px;
    text-align: center;
}

.social-list a {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: initial;
    margin-right: 1em;
    text-decoration: none;
    background: rgba(75, 85, 99, 0.2);
    transition: all 300ms ease;
    border-radius: 8px;
    position: relative;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(75, 85, 99, 0.3);
    backdrop-filter: blur(10px);
    color: #9CA3AF;
    text-indent: -9999px;
    overflow: hidden;
}

.social-list a:hover {
    background: rgba(20, 184, 166, 0.1);
    border-color: rgba(20, 184, 166, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(20, 184, 166, 0.2);
    color: #14B8A6;
}

/* Icona X (Twitter) */
.social-x::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 18px;
    height: 18px;
    background: currentColor;
    mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 1200 1227' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M714.163 519.284L1160.89 0H1055.03L667.137 450.887L357.328 0H0L468.492 681.821L0 1226.37H105.866L515.491 750.218L842.672 1226.37H1200L714.137 519.284H714.163ZM569.165 687.828L521.697 619.934L144.011 79.6944H306.615L611.412 515.685L658.88 583.579L1055.08 1150.3H892.476L569.165 687.854V687.828Z'/%3E%3C/svg%3E") no-repeat center;
    mask-size: contain;
    -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 1200 1227' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M714.163 519.284L1160.89 0H1055.03L667.137 450.887L357.328 0H0L468.492 681.821L0 1226.37H105.866L515.491 750.218L842.672 1226.37H1200L714.137 519.284H714.163ZM569.165 687.828L521.697 619.934L144.011 79.6944H306.615L611.412 515.685L658.88 583.579L1055.08 1150.3H892.476L569.165 687.854V687.828Z'/%3E%3C/svg%3E") no-repeat center;
    -webkit-mask-size: contain;
}

/* Icona Telegram */
.social-telegram::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 18px;
    height: 18px;
    background: currentColor;
    mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 0C5.374 0 0 5.373 0 12s5.374 12 12 12 12-5.373 12-12S18.626 0 12 0zm5.568 8.16c-.172 1.96-.896 6.728-1.268 8.928-.16.924-.476 1.236-.784 1.268-.664.056-1.168-.444-1.812-.872-.992-.672-1.552-1.088-2.516-1.744-1.116-.76-.392-1.176.244-1.86.16-.16 2.96-2.728 3.016-2.96.008-.024.008-.12-.056-.17-.064-.048-.16-.032-.228-.02-.096.02-.784.504-2.224 1.216-.652.456-1.24.68-1.764.68-.576-.016-1.688-.328-2.516-.592-.832-.336-1.492-.512-1.416-.992.04-.248.464-.46 1.268-.656 3.008-1.424 6.7-2.968 8.284-3.492.692-.256 1.512-.02 1.728.768z'/%3E%3C/svg%3E") no-repeat center;
    mask-size: contain;
    -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 0C5.374 0 0 5.373 0 12s5.374 12 12 12 12-5.373 12-12S18.626 0 12 0zm5.568 8.16c-.172 1.96-.896 6.728-1.268 8.928-.16.924-.476 1.236-.784 1.268-.664.056-1.168-.444-1.812-.872-.992-.672-1.552-1.088-2.516-1.744-1.116-.76-.392-1.176.244-1.86.16-.16 2.96-2.728 3.016-2.96.008-.024.008-.12-.056-.17-.064-.048-.16-.032-.228-.02-.096.02-.784.504-2.224 1.216-.652.456-1.24.68-1.764.68-.576-.016-1.688-.328-2.516-.592-.832-.336-1.492-.512-1.416-.992.04-.248.464-.46 1.268-.656 3.008-1.424 6.7-2.968 8.284-3.492.692-.256 1.512-.02 1.728.768z'/%3E%3C/svg%3E") no-repeat center;
    -webkit-mask-size: contain;
}

.bottom-line {
    display: inline-block;
    height: 8px;
    margin: 0 3em;
    flex-grow: 1;
    margin-top: calc(1.5em - 4px);
}

.bottom-line {
    display: inline-block;
    height: 8px;
    margin: 0 3em;
    flex-grow: 1;
    margin-top: calc(1.5em - 4px);
}

/* Animations - Subtle */
.delay-small {
    -webkit-animation-delay: 300ms;
    animation-delay: 300ms;
}

.delay-big {
    -webkit-animation-delay: 600ms;
    animation-delay: 600ms;
}

.delay-bigger {
    -webkit-animation-delay: 900ms;
    animation-delay: 900ms;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* General image styles */
img {
    max-width: 100%;
    height: auto;
}

/* Background compatibility with CMP */
#background-wrapper, #background-image, #background-color, .slide-background, #slider-wrapper, .background-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.video-banner {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
}

#background-wrapper {
    overflow: hidden;
}

#background-image, .slide-background {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

#background-image, #slider-wrapper {
    opacity: 0;
    transition: opacity 400ms;
}

#background-image.loaded, .loaded #slider-wrapper {
    opacity: 1;
}

.video-banner iframe, .video-banner video {
    transition: opacity 1500ms;
}

#background-image.pattern {
    background-repeat: repeat;
    background-size: initial;
}

#background-image:not(.slide) {
    background-attachment: fixed;
}

/* Responsive Design */
@media only screen and (max-width: 1600px) {
    .logo-icon {
        width: 2.5rem;
        height: 2.5rem;
    }
    
    .hero-container {
        gap: 3rem;
    }
}

@media only screen and (max-width: 1200px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .trading-interface-mockup {
        max-width: 350px;
    }
}

@media only screen and (max-width: 1024px) {
    body {
        font-size: 17px!important;
    }
    
    .hero-title {
        font-size: 2.8rem!important;
    }
    
    .main-nav {
        display: none;
    }
    
    .hero-section {
        padding: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    footer {
        text-align: center;
        line-height: 1;
        flex-direction: column-reverse;
        padding: 2rem 1rem;
    }
    
    .copyright {
        padding: 0;
    }
    
    .bottom-line {
        display: none;
    }
    
    .social-title {
        display: block;
        padding: 0;
        line-height: 1.5;
    }

    .roadmap-title, .section-title {
        font-size: 2rem;
    }
    
    .roadmap-subtitle, .section-subtitle {
        font-size: 1rem;
    }
    
    .roadmap-step {
        flex-direction: column;
        margin-bottom: 2rem;
    }
    
    .step-indicator {
        margin-right: 0;
        margin-bottom: 1rem;
        align-self: flex-start;
    }
    
    .step-connector {
        display: none;
    }
    
    .step-content {
        margin-left: 0;
    }
}

@media only screen and (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-section {
        min-height: 90vh;
    }
    
    .features-section,
    .roadmap-section,
    .cta-section {
        padding: 4rem 0;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .sib_signup_form {
        padding: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .benefits-list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .roadmap-title, .section-title {
        font-size: 1.8rem;
    }
    
    .step-content {
        padding: 1rem;
    }
    
    .step-content h3 {
        font-size: 1.1rem;
    }
    
    .step-features {
        justify-content: center;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .trading-interface-mockup {
        max-width: 300px;
    }
}

@media only screen and (max-width: 680px) {
    .hero-section {
        min-height: 85vh;
        padding: 1rem 0.5rem;
    }
    
    footer {
        padding: 1.5rem 0.5rem;
    }
    
    .section-title, .cta-title {
        font-size: 1.8rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    body {
        font-size: 15px!important;
    }

    .roadmap-title {
        font-size: 1.6rem;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    .status-badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
}

@media only screen and (max-width: 560px) {
    .hero-section {
        padding: 0.5rem;
    }
    
    .container {
        padding: 0 0.5rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title, .cta-title {
        font-size: 1.6rem;
    }

    .logo-text {
        font-size: 1.3rem;
    }

    .roadmap-title {
        font-size: 1.4rem;
    }

    .step-content h3 {
        font-size: 1rem;
    }

    .step-features span {
        font-size: 0.75rem;
    }
    
    .sib_signup_form {
        padding: 1.5rem;
    }
    
    .form-input {
        padding: 0.875rem 1rem;
    }
    
    .form-submit-btn {
        padding: 0.875rem 1.5rem;
    }
    
    .trading-interface-mockup {
        max-width: 280px;
        padding: 1rem;
    }
    
    .block-node {
        min-width: 150px;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .benefit-item {
        padding: 1rem;
    }
}

/* Accessibility: Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .feature-card,
    .roadmap-step .step-content,
    .benefit-item,
    .sib_signup_form {
        border-color: #14B8A6 !important;
        background: rgba(0, 0, 0, 0.8) !important;
    }
    
    .hero-title,
    .hero-description,
    .feature-description,
    .benefit-text {
        color: #ffffff !important;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8) !important;
    }
}

/* Print styles */
@media print {
    .bg-layer-1,
    #heroLinesCanvas {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .hero-title,
    .section-title,
    .feature-title {
        color: black !important;
    }
}