        :root {
            --brand-blue: #0E8BEC;
            --brand-cyan: #00C4FF;
            --brand-pink: #FF3366;
            --accent: #E8A33D;
            --accent-hover: #F3B455;
            --accent-soft: #FFF3DF;
            --accent-border: #F2D3A2;
        }

/* ===== RESET & BASE ===== */
        * { margin: 0; padding: 0; box-sizing: border-box; }
        html {
            width: 100%;
            overflow-x: clip;
            scroll-behavior: smooth;
        }
        body {
            width: 100%;
            overflow-x: clip;
            font-family: 'Inter', sans-serif;
            background: #F8FAFC;
            color: #0F172A;
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            padding-top: 72px;
        }
        a { text-decoration: none; color: inherit; }
        .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
        .text-center { text-align: center; }
        ::selection { background: rgba(232, 163, 61, 0.24); color: #0F172A; }
        .analytics-noscript-frame,
        .analytics-noscript-image {
            position: absolute;
            width: 1px;
            height: 1px;
            border: 0;
            overflow: hidden;
            clip: rect(0 0 0 0);
        }

        /* ===== TYPOGRAPHY ===== */
        .tag {
            display: inline-block;
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: #A85F08;
            background: var(--accent-soft);
            border: 1px solid var(--accent-border);
            padding: 4px 14px;
            border-radius: 20px;
            margin-bottom: 16px;
        }
        .section-title {
            font-size: 2.6rem;
            font-weight: 700;
            line-height: 1.15;
            letter-spacing: -0.02em;
            color: #0F172A;
            margin-bottom: 16px;
        }
        .section-title .accent { color: var(--brand-blue); }
        .section-subtitle {
            font-size: 1.08rem;
            color: #64748B;
            max-width: 560px;
            margin: 0 auto 20px;
            line-height: 1.7;
        }

        /* ===== BUTTONS ===== */
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-weight: 600;
            font-size: 0.95rem;
            padding: 14px 32px;
            border-radius: 10px;
            border: 1px solid transparent;
            cursor: pointer;
            transition: all 0.2s ease;
            font-family: 'Inter', sans-serif;
        }
        .btn-primary {
            background: var(--accent);
            color: #17110A;
            box-shadow: 0 6px 18px rgba(190, 112, 12, 0.2);
        }
        .btn-primary:hover {
            background: var(--accent-hover);
            transform: translateY(-1px);
            box-shadow: 0 10px 28px rgba(190, 112, 12, 0.28);
        }
        .btn-outline {
            background: transparent;
            color: #0F172A;
            border-color: #E5E7EB;
        }
        .btn-outline:hover { border-color: #0F172A; background: #F8FAFC; }
        .btn-small { padding: 8px 18px; font-size: 0.8rem; }

        /* ===== HEADER — DARK (как на платформе) ===== */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            height: 72px;
            background: #0B0E14;
            border-bottom: 1px solid #1B2029;
            display: flex;
            align-items: center;
        }
        .site-header .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
        }
        .brand-lockup {
            display: flex;
            align-items: center;
            gap: 10px;
            flex: 0 0 auto;
            text-decoration: none;
        }
        .brand-lockup-icon {
            display: block;
            width: 52px;
            height: 52px;
            flex: 0 0 52px;
        }
        .brand-lockup-icon svg {
            display: block;
            width: 100%;
            height: 100%;
            overflow: visible;
        }
        .brand-arc {
            stroke-dasharray: 108;
            stroke-dashoffset: 108;
            animation: drawBrandArc 0.75s cubic-bezier(0.2, 0, 0.1, 1) 0.1s both;
            transition: filter 0.3s ease;
        }
        .brand-dot {
            opacity: 1;
            transform-box: view-box;
            transform-origin: 45.5px 28px;
            animation: brandDotPop 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) 0.7s both;
        }
        .brand-lockup:hover .brand-arc {
            filter: drop-shadow(0 0 7px var(--brand-cyan)) drop-shadow(0 0 13px #1D4ED8);
        }
        .brand-lockup:hover .brand-dot {
            animation: brandDotPulse 0.7s ease-in-out infinite;
        }
        .brand-lockup-text {
            display: flex;
            flex-direction: column;
            min-width: 0;
        }
        .brand-name-top {
            color: #FFFFFF;
            font-size: 17px;
            font-weight: 800;
            line-height: 1;
            letter-spacing: 0.12em;
        }
        .brand-name-bottom {
            display: block;
            margin-top: 3px;
            color: rgba(255, 255, 255, 0.4);
            font-size: 8.5px;
            font-weight: 500;
            line-height: 1;
            letter-spacing: 0.4em;
        }
        .brand-tagline {
            display: block;
            margin-top: 5px;
            color: var(--accent);
            font-family: 'JetBrains Mono', monospace;
            font-size: 6.5px;
            font-weight: 600;
            line-height: 1;
            letter-spacing: 0.03em;
            white-space: nowrap;
        }
        .brand-lockup--footer {
            display: inline-flex;
            margin-bottom: 10px;
        }
        .brand-lockup--footer .brand-lockup-icon {
            width: 56px;
            height: 56px;
            flex-basis: 56px;
        }
        .brand-lockup--footer .brand-name-top { font-size: 18px; }
        .brand-lockup--footer .brand-name-bottom { font-size: 9px; }
        .brand-lockup--footer .brand-tagline { font-size: 7px; }
        .brand-lockup--footer .brand-name-top { color: #0F172A; }
        .brand-lockup--footer .brand-name-bottom { color: #64748B; }
        .brand-lockup--footer .brand-tagline { color: #B96508; }
        @keyframes drawBrandArc {
            to { stroke-dashoffset: 0; }
        }
        @keyframes brandDotPop {
            from { opacity: 0; transform: scale(0); }
            to { opacity: 1; transform: scale(1); }
        }
        @keyframes brandDotPulse {
            0%, 100% { r: 4.5; filter: drop-shadow(0 0 3px var(--brand-pink)); }
            50% { r: 6; filter: drop-shadow(0 0 10px var(--brand-pink)); }
        }
        .nav { display: flex; align-items: center; gap: 22px; }
        .nav a {
            font-size: 0.85rem;
            font-weight: 500;
            color: #8A93A6;
            transition: color 0.2s ease;
        }
        .nav a:hover { color: #ECEEF2; }
        .nav a.pricing-link {
            font-weight: 600;
            color: #ECEEF2;
        }
        .nav a.pricing-link:hover { color: #E8A33D; }
        .language-switcher {
            display: inline-flex;
            align-items: center;
            gap: 3px;
            padding: 3px;
            border: 1px solid #232936;
            border-radius: 7px;
        }
        .language-switcher a,
        .language-switcher .active {
            min-width: 28px;
            padding: 3px 6px;
            border-radius: 5px;
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.65rem;
            line-height: 1.4;
            text-align: center;
        }
        .language-switcher .active {
            color: #0B0E14;
            background: #E8A33D;
            font-weight: 700;
        }
        .nav .btn-outline {
            color: #ECEEF2;
            border-color: #232936;
            background: transparent;
        }
        .nav .btn-outline:hover {
            border-color: #E8A33D;
            color: #E8A33D;
            background: transparent;
        }
        .nav .btn-primary {
            background: #E8A33D;
            color: #17110A;
        }
        .nav .btn-primary:hover {
            background: #F3B455;
            box-shadow: 0 0 24px rgba(232, 163, 61, 0.35);
        }
        .mobile-toggle {
            display: none;
            width: 42px;
            height: 42px;
            border: 1px solid #2A303C;
            border-radius: 10px;
            background: #12161F;
            font-size: 1.1rem;
            cursor: pointer;
            color: #ECEEF2;
            transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
        }
        .mobile-toggle:hover,
        .mobile-toggle[aria-expanded="true"] {
            border-color: var(--accent);
            background: rgba(232, 163, 61, 0.1);
            color: var(--accent);
        }

        /* ===== HERO ===== */
        .hero { padding: 80px 0 100px; background: #F8FAFC; }
        .hero-grid {
            display: grid;
            grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
            gap: 60px;
            align-items: center;
        }
        .hero-grid > *,
        .flagship-grid > * {
            min-width: 0;
        }
        .hero-title {
            font-size: 3.2rem;
            font-weight: 700;
            line-height: 1.08;
            letter-spacing: -0.03em;
            margin-bottom: 20px;
            color: #0F172A;
        }
        .hero-title .highlight { color: var(--brand-blue); }
        .hero-title .muted { color: #64748B; font-weight: 500; }
        .hero-desc {
            font-size: 1.08rem;
            color: #64748B;
            max-width: 480px;
            margin-bottom: 28px;
            line-height: 1.7;
        }
        .hero-features {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 28px;
        }
        .hero-features span {
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.7rem;
            color: #64748B;
            border: 1px solid #E5E7EB;
            padding: 6px 14px;
            border-radius: 6px;
            background: #FFFFFF;
        }
        .hero-features i { color: var(--brand-blue); margin-right: 6px; }
        .hero-trust {
            display: flex;
            flex-wrap: wrap;
            gap: 18px;
            margin-top: 24px;
        }
        .hero-trust span {
            font-size: 0.8rem;
            color: #64748B;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .hero-trust i { color: #10B981; font-size: 0.7rem; }

        .hero-actions {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
            margin-top: 8px;
        }

        /* ===== TERMINAL (original style — dark) ===== */
        .terminal {
            width: 100%;
            max-width: 100%;
            min-width: 0;
            background: #0B0E14;
            border: 1px solid #232936;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 30px 80px rgba(0,0,0,0.5);
        }
        .terminal-header {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 12px 16px;
            background: #12161F;
            border-bottom: 1px solid #1B2029;
        }
        .terminal-dot {
            width: 9px;
            height: 9px;
            border-radius: 50%;
        }
        .terminal-dot.red { background: #F2555A; }
        .terminal-dot.yellow { background: #E8A33D; }
        .terminal-dot.green { background: #34D399; }
        .terminal-title {
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.7rem;
            color: #8A93A6;
            margin-left: 6px;
            letter-spacing: 0.06em;
        }
        .terminal-live {
            margin-left: auto;
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.65rem;
            color: #34D399;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        .terminal-live::before {
            content: '';
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: #34D399;
            box-shadow: 0 0 6px #34D399;
        }
        .terminal-body {
            padding: 18px 20px;
        }
        .chart-wrap {
            position: relative;
            margin: 4px 0 14px;
            border-radius: 8px;
            overflow: hidden;
            background: #05070C;
        }
        .price-chart { display: block; width: 100%; height: auto; }
        .price-label {
            font-family: 'JetBrains Mono', monospace;
            font-size: 9px;
            fill: #E8A33D;
        }
        .price-label.muted { fill: #4B5468; }
        .chart-event-tag {
            position: absolute;
            top: 8px;
            left: 8px;
            font-family: 'JetBrains Mono', monospace;
            font-size: 9px;
            font-weight: 600;
            color: #E8A33D;
            background: rgba(232, 163, 61, 0.12);
            border: 1px solid rgba(232, 163, 61, 0.3);
            padding: 2px 8px;
            border-radius: 4px;
        }

        .terminal-body .platform {
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.7rem;
            color: #E8A33D;
            letter-spacing: 0.08em;
            margin-bottom: 8px;
        }
        .terminal-body .pair {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 4px;
        }
        .terminal-body .pair span:first-child {
            font-family: 'Inter', sans-serif;
            font-size: 1.2rem;
            font-weight: 700;
            color: #ECEEF2;
        }
        .terminal-body .pair .status {
            font-size: 0.7rem;
            color: #5C6479;
        }
        .terminal-body .note {
            font-size: 0.65rem;
            color: #5C6479;
            margin-bottom: 12px;
        }
        .terminal-body .row {
            display: flex;
            justify-content: space-between;
            padding: 6px 0;
            border-bottom: 1px solid #1B2029;
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.75rem;
        }
        .terminal-body .label {
            color: #8A93A6;
        }
        .terminal-body .value.positive {
            color: #34D399;
        }
        .terminal-body .value.negative {
            color: #F2555A;
        }
        .terminal-body .value.neutral {
            color: #E8A33D;
        }
        .terminal-body .divider {
            height: 1px;
            background: #1B2029;
            margin: 10px 0;
        }
        .terminal-body .event {
            background: rgba(232, 163, 61, 0.06);
            border: 1px solid rgba(232, 163, 61, 0.12);
            border-radius: 8px;
            padding: 10px 14px;
        }
        .terminal-body .event .event-header {
            display: flex;
            justify-content: space-between;
            font-size: 0.7rem;
            color: #8A93A6;
            margin-bottom: 6px;
        }
        .terminal-body .event .event-header .val {
            color: #E8A33D;
            font-family: 'JetBrains Mono', monospace;
            font-weight: 600;
        }
        .terminal-body .event .factors {
            display: flex;
            flex-wrap: wrap;
            gap: 4px;
            margin-bottom: 4px;
        }
        .terminal-body .event .factors .f {
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.55rem;
            color: #34D399;
            background: rgba(52, 211, 153, 0.06);
            border: 1px solid rgba(52, 211, 153, 0.06);
            padding: 2px 8px;
            border-radius: 4px;
        }
        .terminal-body .event .attention {
            font-size: 0.65rem;
            color: #5C6479;
        }
        .terminal-disclaimer {
            padding: 8px 20px;
            font-size: 0.6rem;
            color: #5C6479;
            border-top: 1px solid #1B2029;
        }

        /* ===== METRICS GRID ===== */
        .metrics-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-top: 40px;
        }
        .metric-card {
            background: #FFFFFF;
            border-radius: 12px;
            padding: 28px 24px;
            border: 1px solid #E5E7EB;
            transition: border-color 0.2s ease;
        }
        .metric-card:hover { border-color: rgba(14, 139, 236, 0.35); }
        .metric-card .name {
            font-family: 'JetBrains Mono', monospace;
            font-weight: 600;
            font-size: 0.8rem;
            color: var(--brand-blue);
            letter-spacing: 0.04em;
        }
        .metric-card .what { font-size: 1rem; font-weight: 600; margin-top: 8px; color: #0F172A; }
        .metric-card .why { font-size: 0.88rem; color: #64748B; margin-top: 4px; line-height: 1.6; }
        .metric-card .source {
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.6rem;
            color: #94A3B8;
            margin-top: 12px;
            padding-top: 12px;
            border-top: 1px solid #F1F5F9;
        }

        /* ===== PROBLEM ===== */
        .section-alt { background: #FFFFFF; border-top: 1px solid #E5E7EB; border-bottom: 1px solid #E5E7EB; }
        .problem-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 40px;
        }
        .problem-card {
            background: #F8FAFC;
            border-radius: 12px;
            padding: 28px 24px;
            border: 1px solid #E5E7EB;
        }
        .problem-card .num {
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.7rem;
            font-weight: 600;
            color: #C66F09;
            margin-bottom: 12px;
        }
        .problem-card h4 { font-size: 1.05rem; font-weight: 600; margin-bottom: 4px; }
        .problem-card p { font-size: 0.88rem; color: #64748B; line-height: 1.6; }

        /* ===== SOLUTION ===== */
        .solution-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 40px;
        }
        .solution-card {
            background: #FFFFFF;
            border: 1px solid #E5E7EB;
            border-radius: 12px;
            padding: 30px 26px;
            transition: all 0.25s ease;
        }
        .solution-card:hover {
            border-color: var(--accent);
            box-shadow: 0 10px 32px rgba(190, 112, 12, 0.1);
            transform: translateY(-2px);
        }
        .solution-card .icon {
            width: 44px; height: 44px;
            border-radius: 10px;
            background: var(--accent-soft);
            color: #B96508;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            margin-bottom: 16px;
        }
        .solution-card h4 { font-size: 1.05rem; font-weight: 600; margin-bottom: 6px; }
        .solution-card p { font-size: 0.88rem; color: #64748B; line-height: 1.6; }

        /* ===== STEPS ===== */
        .steps {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0;
            margin-top: 48px;
            position: relative;
        }
        .steps::before {
            content: '';
            position: absolute;
            top: 22px;
            left: 10%;
            right: 10%;
            height: 1px;
            background: #E5E7EB;
        }
        .step { text-align: center; padding: 0 20px; }
        .step-number {
            width: 44px; height: 44px;
            border-radius: 50%;
            background: #FFFFFF;
            border: 1px solid var(--accent);
            color: #B96508;
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.85rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
            position: relative;
            z-index: 1;
        }
        .step h4 { font-size: 1rem; font-weight: 600; margin-bottom: 6px; }
        .step p { font-size: 0.85rem; color: #64748B; line-height: 1.6; }

        /* ===== TRAP RADAR ===== */
        .flagship-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 56px;
            align-items: center;
        }
        .flagship-badge {
            display: inline-block;
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.68rem;
            letter-spacing: 0.1em;
            color: #A85F08;
            border: 1px solid var(--accent-border);
            background: var(--accent-soft);
            padding: 4px 12px;
            border-radius: 5px;
            margin-bottom: 18px;
        }
        .flagship h3 {
            font-size: 2rem;
            font-weight: 700;
            line-height: 1.15;
            margin-bottom: 16px;
        }
        .flagship h3 em { color: var(--brand-blue); font-style: italic; }
        .flagship p {
            color: #64748B;
            font-size: 0.98rem;
            line-height: 1.75;
            margin-bottom: 24px;
            max-width: 480px;
        }
        .flagship-metrics {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            margin-bottom: 28px;
        }
        .flagship-metrics .item {
            border: 1px solid #E5E7EB;
            border-radius: 8px;
            padding: 12px 14px;
            background: #FFFFFF;
        }
        .flagship-metrics .label {
            display: block;
            font-size: 0.7rem;
            color: #64748B;
            margin-bottom: 4px;
        }
        .flagship-metrics .value {
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.9rem;
            font-weight: 600;
        }
        .flagship-metrics .value.positive { color: #10B981; }
        .flagship-metrics .value.negative { color: #EF4444; }
        .flagship-metrics .value.neutral { color: #F59E0B; }

        /* ===== SCREENERS ===== */
        .screeners-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 40px;
        }
        .screener-card {
            background: #FFFFFF;
            border: 1px solid #E5E7EB;
            border-radius: 12px;
            padding: 28px 24px;
            transition: border-color 0.2s ease;
        }
        .screener-card:hover { border-color: rgba(14, 139, 236, 0.35); }
        .screener-card .icon {
            font-size: 1.3rem;
            color: var(--brand-blue);
            margin-bottom: 12px;
            display: block;
        }
        .screener-card h4 { font-size: 1.05rem; font-weight: 600; margin-bottom: 4px; }
        .screener-card p { font-size: 0.88rem; color: #64748B; line-height: 1.6; }
        .screener-card .example {
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.65rem;
            color: #94A3B8;
            margin-top: 12px;
            padding-top: 12px;
            border-top: 1px solid #F1F5F9;
        }

        /* ===== AUDIENCE ===== */
        .audience-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 40px;
        }
        .audience-card {
            background: #FFFFFF;
            border: 1px solid #E5E7EB;
            border-radius: 12px;
            padding: 28px 24px;
        }
        .audience-card .icon { font-size: 1.2rem; color: #C66F09; margin-bottom: 10px; display: block; }
        .audience-card h4 { font-size: 1rem; font-weight: 600; }
        .audience-card p { font-size: 0.85rem; color: #64748B; line-height: 1.6; }

        /* ===== EXCHANGES ===== */
        .exchanges { padding: 48px 0; text-align: center; }
        .exchanges .label {
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.65rem;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: #64748B;
            margin-bottom: 16px;
        }
        .exchanges-logos {
            display: flex;
            justify-content: center;
            gap: 28px;
            align-items: center;
            font-weight: 700;
            font-size: 1.1rem;
            color: #0F172A;
        }
        .exchanges-logos .sep { color: #E5E7EB; }

        /* ===== TRUST ===== */
        .trust-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
            margin-top: 40px;
        }
        .trust-card {
            background: #FFFFFF;
            border: 1px solid #E5E7EB;
            border-radius: 12px;
            padding: 24px 20px;
            text-align: center;
        }
        .trust-card .icon { color: #C66F09; font-size: 1.3rem; margin-bottom: 12px; display: block; }
        .trust-card h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 4px; }
        .trust-card p { font-size: 0.82rem; color: #64748B; line-height: 1.6; }

        /* ===== PRICING ===== */
        .pricing-wrap {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            max-width: 820px;
            margin: 40px auto 0;
        }
        .pricing-card {
            background: #FFFFFF;
            border: 1px solid #E5E7EB;
            border-radius: 16px;
            padding: 36px 32px;
        }
        .pricing-card.pro {
            border-color: #0F172A;
            background: #F8FAFC;
        }
        .pricing-card .name { font-size: 1.1rem; font-weight: 600; }
        .pricing-card .name .highlight { color: #C66F09; }
        .pricing-card .price {
            font-size: 2.8rem;
            font-weight: 700;
            font-family: 'JetBrains Mono', monospace;
            margin: 12px 0 4px;
            color: #0F172A;
        }
        .pricing-card .price .from { font-size: 1.2rem; font-weight: 400; color: #64748B; }
        .pricing-card .period { font-size: 0.8rem; color: #64748B; margin-bottom: 20px; }
        .pricing-card ul { list-style: none; margin: 16px 0 24px; }
        .pricing-card ul li {
            padding: 8px 0;
            border-bottom: 1px solid #F1F5F9;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.85rem;
            color: #0F172A;
        }
        .pricing-card ul li i { color: #C66F09; width: 16px; }
        .pricing-note {
            text-align: center;
            margin-top: 32px;
            padding: 20px 24px;
            background: #FFFFFF;
            border: 1px solid #E5E7EB;
            border-radius: 12px;
            max-width: 720px;
            margin-left: auto;
            margin-right: auto;
        }
        .pricing-note .label { font-weight: 700; font-size: 1rem; margin-bottom: 4px; color: #0F172A; }
        .pricing-note .desc { color: #64748B; font-size: 0.85rem; line-height: 1.6; }

        /* ===== FAQ ===== */
        .faq-list { max-width: 720px; margin: 40px auto 0; }
        .faq-item { border-bottom: 1px solid #E5E7EB; }
        .faq-question {
            width: 100%;
            text-align: left;
            background: none;
            border: none;
            padding: 20px 0;
            font-size: 1rem;
            font-weight: 600;
            color: #0F172A;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-family: 'Inter', sans-serif;
        }
        .faq-question i { color: #64748B; transition: 0.2s ease; }
        .faq-question.open i { transform: rotate(180deg); color: #C66F09; }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: 0.25s ease;
            color: #64748B;
            font-size: 0.9rem;
            line-height: 1.7;
        }
        .faq-answer.open { max-height: 300px; padding-bottom: 20px; }

        /* ===== CTA ===== */
        .cta-section {
            padding: 80px 0;
            background: #FFFFFF;
            border-top: 1px solid #E5E7EB;
            text-align: center;
        }
        .cta-section .cta-box { max-width: 600px; margin: 0 auto; }
        .cta-section .cta-box .sub { color: #64748B; font-size: 1.05rem; margin: 16px 0 28px; }
        .cta-section .cta-box .trust-line {
            font-size: 0.7rem;
            color: #64748B;
            font-family: 'JetBrains Mono', monospace;
            margin-top: 20px;
            letter-spacing: 0.04em;
        }

        /* ===== FOOTER ===== */
        .footer {
            padding: 56px 0 32px;
            background: #F8FAFC;
            border-top: 1px solid #E5E7EB;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1.4fr 1fr 1fr 1fr;
            gap: 32px;
            margin-bottom: 40px;
        }
        .footer-brand .tagline { font-size: 0.85rem; color: #64748B; }
        .footer-social {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 14px;
            margin-top: 18px;
        }
        .footer-social a {
            font-size: 0.75rem;
            color: #64748B;
            transition: color 0.2s ease;
        }
        .footer-social a:hover { color: #B96508; }
        .footer-col .title {
            font-size: 0.7rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            color: #64748B;
            margin-bottom: 14px;
        }
        .footer-col a {
            display: block;
            font-size: 0.85rem;
            color: #64748B;
            margin-bottom: 10px;
            transition: color 0.2s ease;
        }
        .footer-col a:hover { color: #B96508; }
        .legal-disclosure {
            margin-bottom: 24px;
            border-top: 1px solid #E5E7EB;
            color: #64748B;
        }
        .legal-disclosure summary {
            padding: 18px 0;
            font-size: 0.8rem;
            font-weight: 600;
            color: #475569;
            cursor: pointer;
            list-style-position: inside;
        }
        .legal-disclosure summary:hover { color: #B96508; }
        .legal-disclosure-content {
            max-width: 1000px;
            padding-bottom: 18px;
            font-size: 0.75rem;
            line-height: 1.7;
        }
        .legal-disclosure-content p + p { margin-top: 10px; }
        .footer-bottom {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 10px;
            padding-top: 24px;
            border-top: 1px solid #E5E7EB;
            font-size: 0.75rem;
            color: #64748B;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .problem-grid { grid-template-columns: 1fr 1fr; }
            .solution-grid { grid-template-columns: 1fr 1fr; }
            .metrics-grid { grid-template-columns: 1fr 1fr; }
            .screeners-grid { grid-template-columns: 1fr 1fr; }
            .trust-grid { grid-template-columns: 1fr 1fr 1fr; }
        }
        @media (max-width: 1080px) {
            .nav { display: none; }
            .nav.open {
                display: flex;
                flex-direction: column;
                align-items: stretch;
                position: absolute;
                top: 72px;
                left: 0;
                right: 0;
                max-height: calc(100vh - 72px);
                overflow-y: auto;
                background:
                    radial-gradient(circle at 85% 0, rgba(232, 163, 61, 0.12), transparent 36%),
                    #0B0E14;
                padding: 14px 20px 24px;
                border-top: 1px solid rgba(232, 163, 61, 0.16);
                border-bottom: 1px solid #1B2029;
                gap: 4px;
                box-shadow: 0 20px 40px rgba(0,0,0,0.4);
            }
            .nav.open > a {
                display: flex;
                align-items: center;
                min-height: 44px;
                padding: 10px 12px;
                border-radius: 8px;
                color: #ECEEF2;
            }
            .nav.open > a:not(.btn-primary):not(.btn-outline):hover {
                color: var(--accent);
                background: rgba(255, 255, 255, 0.04);
            }
            .nav.open .language-switcher {
                align-self: flex-start;
                margin: 8px 0 10px;
            }
            .nav.open .btn-outline { border-color: #232936; }
            .nav.open .btn-outline:hover { border-color: var(--accent); }
            .nav.open .btn-primary,
            .nav.open .btn-outline {
                justify-content: center;
                margin-top: 6px;
            }
            .mobile-toggle {
                display: inline-flex;
                align-items: center;
                justify-content: center;
            }
            body.mobile-menu-open { overflow: hidden; }
            section > .container[style] {
                padding-left: 24px !important;
                padding-right: 24px !important;
            }
            .hero-grid { grid-template-columns: minmax(0, 1fr); }
            .hero-title { font-size: 2.4rem; }
            .flagship-grid { grid-template-columns: minmax(0, 1fr); }
            .audience-grid { grid-template-columns: 1fr; }
            .pricing-wrap { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr 1fr; }
            .steps { grid-template-columns: 1fr; gap: 32px; }
            .steps::before { display: none; }
            .trust-grid { grid-template-columns: 1fr 1fr; }
        }
        @media (max-width: 640px) {
            .site-header .container { padding: 0 16px; }
            .brand-lockup { gap: 8px; }
            .brand-lockup-icon {
                width: 46px;
                height: 46px;
                flex-basis: 46px;
            }
            .brand-name-top { font-size: 15.5px; }
            .brand-name-bottom { font-size: 7.5px; }
            .brand-tagline { font-size: 5.8px; margin-top: 4px; }
            .hero { padding: 56px 0 72px; }
            .hero-title { font-size: 1.8rem; }
            .section-title { font-size: 1.8rem; }
            section > .container[style] {
                padding-top: 64px !important;
                padding-bottom: 64px !important;
                padding-left: 18px !important;
                padding-right: 18px !important;
            }
            .problem-grid { grid-template-columns: 1fr; }
            .solution-grid { grid-template-columns: 1fr; }
            .metrics-grid { grid-template-columns: 1fr; }
            .screeners-grid { grid-template-columns: 1fr; }
            .screeners-features ul { grid-template-columns: 1fr !important; }
            .pricing-teaser ul { flex-direction: column !important; align-items: flex-start !important; gap: 12px !important; }
            .trust-grid { grid-template-columns: 1fr; }
            .flagship-metrics { grid-template-columns: 1fr; }
            .hero-actions .btn { width: 100%; justify-content: center; }
            .hero-features span { font-size: 0.65rem; padding: 4px 10px; }
            .terminal-body .row { font-size: 0.65rem; padding: 4px 0; }
            .terminal-body .pair span:first-child { font-size: 1rem; }
            .terminal-body { padding: 15px 14px; }
            .footer { padding-top: 44px; }
            .footer-grid { grid-template-columns: 1fr; gap: 26px; }
            .footer-brand { padding-bottom: 4px; }
        }
        @media (max-width: 380px) {
            .brand-tagline { display: none; }
            .brand-lockup-icon {
                width: 44px;
                height: 44px;
                flex-basis: 44px;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            html { scroll-behavior: auto; }
            .brand-arc,
            .brand-dot {
                animation: none;
                opacity: 1;
                stroke-dashoffset: 0;
            }
        }

.mobile-sticky-cta { display: none; }
    @media (max-width: 640px) {
        .mobile-sticky-cta {
            display: block;
            position: fixed;
            left: 0; right: 0; bottom: 0;
            z-index: 999;
            padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
            background: rgba(11, 14, 20, 0.95);
            backdrop-filter: blur(8px);
            border-top: 1px solid #1B2029;
        }
        .mobile-sticky-cta .btn {
            width: 100%;
            justify-content: center;
            background: var(--accent);
            color: #17110A;
        }
        .mobile-sticky-cta .btn:hover {
            background: var(--accent-hover);
        }
        body { padding-bottom: 76px; }
    }
