
        :root {
            --cyan:        #00d4ff;
            --cyan-dim:    rgba(0, 212, 255, 0.15);
            --cyan-border: rgba(0, 212, 255, 0.25);
            --green:       #00ff9d;
            --red:         #ff4757;
            --gold:        #d4af37;
            --gold-light:  #f4d03f;
            --gold-dim:    rgba(212, 175, 55, 0.15);
            --bg:          #000814;
            --bg2:         #000d1a;
            --panel:       rgba(0, 10, 22, 0.88);
            --white:       #ffffff;
            --gray:        #7a8fa0;
            --gray-dim:    #3a4a5a;
        }

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

        html {
            scroll-behavior: smooth;
            overscroll-behavior-x: none;
        }

        body {
            font-family: 'Inter', -apple-system, sans-serif;
            background: var(--bg);
            color: var(--white);
            overflow-x: hidden;
            overscroll-behavior-x: none;
            width: 100%;
            max-width: 100vw;
        }

        /* ── WebGL Background ─────────────────────────────────── */
        #bg-canvas {
            position: fixed;
            top: 0; left: 0;
            width: 100%; height: 100%;
            z-index: 0;
            pointer-events: none;
        }

        .overlay-scanlines {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            z-index: 1;
            pointer-events: none;
            background: repeating-linear-gradient(
                0deg,
                transparent, transparent 3px,
                rgba(0, 0, 0, 0.04) 3px, rgba(0, 0, 0, 0.04) 4px
            );
        }

        .overlay-vignette {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            z-index: 1;
            pointer-events: none;
            background: radial-gradient(ellipse at 50% 50%, transparent 35%, rgba(0, 6, 14, 0.75) 100%);
        }

        .layer {
            position: relative;
            z-index: 10;
        }

        /* ── Buttons ──────────────────────────────────────────── */
        .btn-cta {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 15px 40px;
            font-family: 'Orbitron', sans-serif;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2.5px;
            border-radius: 4px;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
        }

        .btn-cta.primary {
            background: linear-gradient(135deg, var(--cyan) 0%, #0094cc 100%);
            color: var(--bg);
            box-shadow: 0 0 32px rgba(0, 212, 255, 0.4), 0 4px 20px rgba(0, 0, 0, 0.4);
        }
        .btn-cta.primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 0 55px rgba(0, 212, 255, 0.6), 0 8px 30px rgba(0, 0, 0, 0.5);
        }

        .btn-cta.waitlist-yellow {
            background: linear-gradient(135deg, #ffec8a 0%, #f2c334 40%, #ffbf00 100%);
            color: #061215;
            box-shadow: 0 0 28px rgba(255, 196, 0, 0.35), 0 8px 20px rgba(255, 166, 0, 0.25);
            border: 1px solid rgba(255, 212, 117, 0.45);
        }
        .btn-cta.waitlist-yellow:hover {
            transform: translateY(-3px);
            box-shadow: 0 0 40px rgba(255, 196, 0, 0.45), 0 10px 26px rgba(255, 166, 0, 0.32);
        }

        .btn-cta.ghost {
            background: transparent;
            color: var(--gold);
            border: 1px solid rgba(212, 175, 55, 0.5);
        }
        .btn-cta.ghost:hover {
            background: rgba(212, 175, 55, 0.08);
            border-color: var(--gold);
            box-shadow: 0 0 28px rgba(212, 175, 55, 0.2);
            transform: translateY(-3px);
        }

        /* ── Section Common ───────────────────────────────────── */
        .section {
            position: relative;
            z-index: 10;
            padding: 100px 24px;
        }

        .section-alt {
            background: linear-gradient(180deg,
                transparent 0%,
                rgba(0, 8, 20, 0.78) 15%,
                rgba(0, 8, 20, 0.78) 85%,
                transparent 100%
            );
            backdrop-filter: blur(6px);
        }

        .section-header {
            text-align: center;
            margin-bottom: 58px;
        }

        .section-eyebrow {
            font-family: 'Orbitron', sans-serif;
            font-size: 10px;
            font-weight: 600;
            letter-spacing: 5px;
            text-transform: uppercase;
            color: var(--cyan);
            margin-bottom: 14px;
            opacity: 0.65;
        }

        .section-eyebrow.gold { color: var(--gold); opacity: 0.9; }

        .section-title {
            font-family: 'Orbitron', sans-serif;
            font-size: clamp(1.3rem, 3vw, 2.2rem);
            font-weight: 700;
            color: var(--white);
            line-height: 1.25;
            margin-bottom: 16px;
        }

        .section-title .accent { color: var(--cyan); }
        .section-title .gold   { color: var(--gold); }

        .section-rule {
            width: 55px; height: 2px;
            background: linear-gradient(90deg, transparent, var(--cyan), transparent);
            margin: 20px auto 0;
        }

        .section-rule.gold {
            background: linear-gradient(90deg, transparent, var(--gold), transparent);
        }

        .section-lead {
            font-size: 0.95rem;
            color: rgba(255,255,255,0.72);
            max-width: 580px;
            margin: 18px auto 0;
            line-height: 1.8;
        }

        /* ── Hero ─────────────────────────────────────────────── */
        .hero {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 120px 24px 80px;
            text-align: center;
            position: relative;
            z-index: 10;
        }

        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(0, 5, 12, 0.5) 0%, transparent 100%);
            pointer-events: none;
        }

        .hero-eyebrow {
            font-family: 'Orbitron', sans-serif;
            font-size: 10px;
            font-weight: 600;
            letter-spacing: 5px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 18px;
            opacity: 0.85;
        }

        .hero-title {
            font-family: 'Inter', sans-serif;
            font-size: clamp(2.2rem, 6vw, 4.8rem);
            font-weight: 800;
            letter-spacing: -0.03em;
            line-height: 1.08;
            margin: 0 auto 18px;
            max-width: 860px;
            background: linear-gradient(135deg, #ffffff 0%, #a0e8ff 35%, #00d4ff 60%, var(--gold) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: clamp(0.9rem, 1.8vw, 1.1rem);
            color: rgba(255,255,255,0.82);
            max-width: 560px;
            margin: 0 auto 36px;
            line-height: 1.75;
        }

        .hero-note {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 22px;
            margin: 28px auto 0;
            border-radius: 999px;
            border: 1px solid rgba(255,255,255,0.14);
            background: rgba(255,255,255,0.05);
            color: #f8f6ec;
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            box-shadow: 0 0 40px rgba(0, 212, 255, 0.1);
            backdrop-filter: blur(10px);
        }

        .hero-note::before {
            content: '';
            display: inline-block;
            width: 7px; height: 7px;
            margin-right: 10px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--cyan), var(--gold));
            box-shadow: 0 0 10px rgba(255,255,255,0.3);
        }

        /* ── Info Cards Grid ──────────────────────────────────── */
        .info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 22px;
            max-width: 1100px;
            margin: 0 auto;
        }

        .info-card {
            background: rgba(0, 10, 22, 0.55);
            border: 1px solid rgba(0, 212, 255, 0.12);
            border-radius: 12px;
            padding: 32px 26px;
            position: relative;
            overflow: hidden;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
            backdrop-filter: blur(14px);
        }

        .info-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--cyan), transparent);
            opacity: 0.4;
        }

        .info-card::after {
            content: '';
            position: absolute;
            top: -1px; right: -1px;
            width: 16px; height: 16px;
            border-top: 2px solid var(--cyan);
            border-right: 2px solid var(--cyan);
            border-radius: 0 12px 0 0;
            opacity: 0.4;
        }

        .info-card:hover {
            border-color: rgba(0, 212, 255, 0.32);
            box-shadow: 0 18px 50px rgba(0,0,0,0.6), 0 0 32px rgba(0,212,255,0.07);
        }

        .info-card.gold-card {
            border-color: rgba(212, 175, 55, 0.18);
            background: rgba(10, 8, 0, 0.6);
        }

        .info-card.gold-card::before {
            background: linear-gradient(90deg, transparent, var(--gold), transparent);
        }

        .info-card.gold-card::after {
            border-top-color: var(--gold);
            border-right-color: var(--gold);
        }

        .info-card.gold-card:hover {
            border-color: rgba(212, 175, 55, 0.45);
            box-shadow: 0 18px 50px rgba(0,0,0,0.6), 0 0 32px rgba(212,175,55,0.09);
        }

        .info-card-icon {
            width: 52px; height: 52px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            background: rgba(0, 212, 255, 0.08);
            border: 1px solid rgba(0, 212, 255, 0.18);
            font-size: 22px;
        }

        .gold-card .info-card-icon {
            background: rgba(212, 175, 55, 0.08);
            border-color: rgba(212, 175, 55, 0.18);
        }

        .info-card-label {
            font-family: 'Orbitron', sans-serif;
            font-size: 9px;
            font-weight: 600;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            color: var(--cyan);
            opacity: 0.7;
            margin-bottom: 8px;
        }

        .gold-card .info-card-label { color: var(--gold); }

        .info-card-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 1rem;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 12px;
            line-height: 1.3;
        }

        .info-card-text {
            font-size: 0.85rem;
            color: rgba(255,255,255,0.62);
            line-height: 1.75;
        }

        /* ── Software Highlight Block ─────────────────────────── */
        .software-block {
            max-width: 800px;
            margin: 0 auto;
            background: rgba(0, 8, 22, 0.72);
            border: 1px solid rgba(0, 212, 255, 0.22);
            border-radius: 16px;
            padding: 44px 42px;
            position: relative;
            overflow: hidden;
            text-align: center;
        }

        .software-block::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--cyan), var(--gold), transparent);
            opacity: 0.7;
        }

        .software-block-tag {
            display: inline-block;
            font-family: 'Orbitron', sans-serif;
            font-size: 9px;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--cyan);
            background: rgba(0, 212, 255, 0.07);
            border: 1px solid rgba(0, 212, 255, 0.2);
            padding: 5px 14px;
            border-radius: 3px;
            margin-bottom: 22px;
        }

        .software-block-name {
            font-family: 'Orbitron', sans-serif;
            font-size: clamp(1.4rem, 3vw, 2rem);
            font-weight: 800;
            color: var(--white);
            margin-bottom: 14px;
            letter-spacing: 0.5px;
        }

        .software-block-name span { color: var(--gold); }

        .software-block-desc {
            font-size: 0.9rem;
            color: rgba(255,255,255,0.7);
            line-height: 1.8;
            max-width: 560px;
            margin: 0 auto 28px;
        }

        .software-spec-row {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            justify-content: center;
            margin-top: 28px;
        }

        .software-spec-item {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 18px;
            background: rgba(0, 212, 255, 0.05);
            border: 1px solid rgba(0, 212, 255, 0.15);
            border-radius: 5px;
            font-family: 'Orbitron', sans-serif;
            font-size: 9px;
            font-weight: 600;
            letter-spacing: 1.5px;
            color: var(--cyan);
            text-transform: uppercase;
        }

        .software-spec-item::before {
            content: '';
            width: 5px; height: 5px;
            border-radius: 50%;
            background: var(--cyan);
            box-shadow: 0 0 8px var(--cyan);
        }

        /* ── Steps Flow ───────────────────────────────────────── */
        .steps-flow {
            max-width: 760px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .flow-step {
            display: flex;
            gap: 28px;
            align-items: flex-start;
            padding: 32px 0;
            position: relative;
        }

        .flow-step:not(:last-child)::after {
            content: '';
            position: absolute;
            left: 22px;
            top: 72px;
            bottom: 0;
            width: 1px;
            background: linear-gradient(180deg, rgba(0, 212, 255, 0.35), rgba(0, 212, 255, 0.05));
        }

        .flow-number {
            flex-shrink: 0;
            width: 46px; height: 46px;
            border-radius: 50%;
            border: 1px solid rgba(0, 212, 255, 0.4);
            background: rgba(0, 212, 255, 0.06);
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Orbitron', sans-serif;
            font-size: 13px;
            font-weight: 700;
            color: var(--cyan);
        }

        .flow-content { flex: 1; padding-top: 8px; }

        .flow-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 8px;
        }

        .flow-desc {
            font-size: 0.85rem;
            color: rgba(255,255,255,0.62);
            line-height: 1.75;
        }

        /* ── Includes/Requires Two-Col ────────────────────────── */
        .two-col {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            max-width: 900px;
            margin: 0 auto;
        }

        .col-block {
            background: rgba(0, 10, 22, 0.55);
            border: 1px solid rgba(0, 212, 255, 0.12);
            border-radius: 12px;
            padding: 30px 26px;
            position: relative;
            overflow: hidden;
        }

        .col-block::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 1px;
            opacity: 0.4;
        }

        .col-block.cyan-col::before { background: linear-gradient(90deg, transparent, var(--cyan), transparent); }
        .col-block.gold-col::before  { background: linear-gradient(90deg, transparent, var(--gold), transparent); }

        .col-block.gold-col {
            border-color: rgba(212, 175, 55, 0.14);
            background: rgba(10, 8, 0, 0.55);
        }

        .col-block-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 20px;
            padding-bottom: 14px;
            border-bottom: 1px solid rgba(0, 212, 255, 0.1);
        }

        .col-block.cyan-col .col-block-title { color: var(--cyan); }
        .col-block.gold-col .col-block-title  { color: var(--gold); border-bottom-color: rgba(212, 175, 55, 0.1); }

        .check-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
            list-style: none;
        }

        .check-list li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            font-size: 0.85rem;
            color: rgba(255,255,255,0.72);
            line-height: 1.55;
        }

        .check-list li::before {
            content: '';
            flex-shrink: 0;
            margin-top: 5px;
            width: 6px; height: 6px;
            border-radius: 50%;
            background: var(--cyan);
            box-shadow: 0 0 8px var(--cyan);
        }

        .col-block.gold-col .check-list li::before {
            background: var(--gold);
            box-shadow: 0 0 8px var(--gold);
        }

        .quick-start-note {
            max-width: 900px;
            margin: 24px auto 0;
            padding: 22px 26px;
            border: 1px solid rgba(0, 212, 255, 0.18);
            background: rgba(0, 212, 255, 0.06);
            border-radius: 14px;
            color: rgba(255, 255, 255, 0.92);
            font-size: 0.95rem;
            line-height: 1.8;
            box-shadow: 0 0 28px rgba(0, 212, 255, 0.08);
            position: relative;
        }

        .quick-start-note::before {
            content: attr(data-quick-label);
            position: absolute;
            top: -12px;
            left: 22px;
            padding: 4px 12px;
            border-radius: 999px;
            background: rgba(0, 212, 255, 0.12);
            color: var(--cyan);
            font-family: 'Orbitron', sans-serif;
            font-size: 0.72rem;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        /* ── After 6 Months ───────────────────────────────────── */
        .timeline-block {
            max-width: 740px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .timeline-item {
            display: flex;
            gap: 20px;
            align-items: flex-start;
            padding: 20px 24px;
            border: 1px solid rgba(0, 212, 255, 0.1);
            border-radius: 10px;
            background: rgba(0, 8, 20, 0.4);
        }

        .timeline-item.highlighted {
            border-color: rgba(212, 175, 55, 0.22);
            background: rgba(10, 8, 0, 0.55);
            box-shadow: 0 0 24px rgba(212, 175, 55, 0.06);
        }

        .timeline-dot {
            flex-shrink: 0;
            margin-top: 4px;
            width: 10px; height: 10px;
            border-radius: 50%;
            background: var(--cyan);
            box-shadow: 0 0 10px var(--cyan);
        }

        .timeline-item.highlighted .timeline-dot {
            background: var(--gold);
            box-shadow: 0 0 10px var(--gold);
        }

        .timeline-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 0.82rem;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 5px;
        }

        .timeline-item.highlighted .timeline-title { color: var(--gold); }

        .timeline-desc {
            font-size: 0.82rem;
            color: rgba(255,255,255,0.58);
            line-height: 1.7;
        }

        /* ── Investment Block ─────────────────────────────────── */
        .investment-block {
            max-width: 680px;
            margin: 0 auto;
            background: rgba(0, 8, 22, 0.8);
            border: 1px solid rgba(212, 175, 55, 0.28);
            border-radius: 18px;
            padding: 52px 48px;
            text-align: center;
            position: relative;
            overflow: hidden;
            box-shadow: 0 0 60px rgba(212, 175, 55, 0.08);
        }

        .investment-block::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--gold), transparent);
            opacity: 0.8;
        }

        .investment-price {
            font-family: 'Orbitron', sans-serif;
            font-size: clamp(3rem, 7vw, 5rem);
            font-weight: 900;
            color: var(--gold);
            line-height: 1;
            margin: 14px 0 8px;
            text-shadow: 0 0 40px rgba(212, 175, 55, 0.3);
        }

        .investment-period {
            font-family: 'Orbitron', sans-serif;
            font-size: 11px;
            letter-spacing: 3px;
            color: var(--gray);
            text-transform: uppercase;
            margin-bottom: 28px;
        }

        .investment-desc {
            font-size: 0.9rem;
            color: rgba(255,255,255,0.65);
            line-height: 1.8;
            max-width: 480px;
            margin: 0 auto 32px;
        }

        .investment-note {
            display: inline-block;
            font-family: 'Orbitron', sans-serif;
            font-size: 9px;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: rgba(212, 175, 55, 0.55);
            margin-top: 20px;
        }

        .attention-block {
            max-width: 760px;
            margin: 30px auto 0;
            padding: 22px 28px;
            border-radius: 18px;
            background: rgba(0, 212, 255, 0.08);
            border: 1px solid rgba(0, 212, 255, 0.18);
            box-shadow: 0 0 32px rgba(0, 212, 255, 0.12);
            text-align: center;
            backdrop-filter: blur(10px);
        }

        .attention-block p {
            font-size: clamp(1rem, 1.25vw, 1.12rem);
            font-weight: 700;
            color: #f8fbff;
            line-height: 1.6;
            margin: 0;
        }

        /* ── FAQ ──────────────────────────────────────────────── */
        .faq-list {
            max-width: 760px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .faq-item {
            border: 1px solid rgba(0, 212, 255, 0.12);
            border-radius: 10px;
            background: #000c1a;
            overflow: hidden;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
        }

        .faq-item.open {
            border-color: rgba(0, 212, 255, 0.32);
            box-shadow: 0 0 24px rgba(0, 212, 255, 0.06);
        }

        .faq-question {
            width: 100%;
            background: none;
            border: none;
            padding: 20px 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 14px;
            cursor: pointer;
            text-align: left;
        }

        .faq-question-text {
            font-family: 'Orbitron', sans-serif;
            font-size: 0.78rem;
            font-weight: 600;
            letter-spacing: 0.3px;
            color: var(--white);
            line-height: 1.5;
        }

        .faq-chevron {
            flex-shrink: 0;
            width: 22px; height: 22px;
            border: 1px solid rgba(0, 212, 255, 0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s ease, background 0.3s ease;
        }

        .faq-chevron svg { color: var(--cyan); transition: transform 0.3s ease; }
        .faq-item.open .faq-chevron { background: rgba(0, 212, 255, 0.1); }
        .faq-item.open .faq-chevron svg { transform: rotate(180deg); }

        .faq-answer {
            display: none;
            padding: 0 24px 22px;
        }

        .faq-item.open .faq-answer { display: block; }

        .faq-answer p {
            font-size: 0.84rem;
            color: rgba(255,255,255,0.65);
            line-height: 1.8;
            margin-bottom: 12px;
        }

        .faq-answer p:last-child { margin-bottom: 0; }

        /* ── Final CTA ────────────────────────────────────────── */
        .cta-final {
            max-width: 720px;
            margin: 0 auto;
            text-align: center;
            padding: 60px 32px;
            border: 1px solid rgba(0, 212, 255, 0.14);
            border-radius: 18px;
            background: rgba(0, 8, 20, 0.6);
            position: relative;
            overflow: hidden;
        }

        .cta-final::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--cyan), transparent);
            opacity: 0.5;
        }

        .cta-final-title {
            font-family: 'Orbitron', sans-serif;
            font-size: clamp(1.2rem, 3vw, 1.8rem);
            font-weight: 800;
            color: var(--white);
            margin-bottom: 14px;
            letter-spacing: 0.5px;
        }

        .cta-final-sub {
            font-size: 0.9rem;
            color: rgba(255,255,255,0.58);
            line-height: 1.75;
            max-width: 480px;
            margin: 0 auto 36px;
        }

        /* ── Footer ───────────────────────────────────────────── */
        .footer {
            position: relative;
            z-index: 10;
            background: #000508;
            border-top: 1px solid rgba(0, 212, 255, 0.08);
            padding: 60px 24px 32px;
        }

        .footer-content {
            max-width: 1000px;
            margin: 0 auto;
            text-align: center;
        }

        .footer-logo { margin-bottom: 26px; }
        .footer-logo img { height: 34px; opacity: 0.5; filter: brightness(1.4); }

        .footer-text {
            color: var(--gray-dim);
            font-size: 0.8rem;
            line-height: 1.85;
            max-width: 680px;
            margin: 0 auto 16px;
        }

        .footer-rule {
            height: 1px;
            background: rgba(0, 212, 255, 0.06);
            margin: 26px 0;
        }

        .footer-bottom {
            font-family: 'Orbitron', sans-serif;
            font-size: 0.7rem;
            color: #2a3a4a;
            letter-spacing: 1.5px;
        }

        .back-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-family: 'Orbitron', sans-serif;
            font-size: 9px;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: rgba(0, 212, 255, 0.45);
            text-decoration: none;
            margin-bottom: 48px;
            transition: color 0.2s ease;
        }
        .back-link:hover { color: var(--cyan); }

        /* ── Responsive ───────────────────────────────────────── */
        @media (max-width: 900px) {
            .two-col { grid-template-columns: 1fr; }
            .info-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
        }

        @media (max-width: 600px) {
            .section { padding: 70px 20px; }
            .hero { padding: 110px 20px 70px; }
            .investment-block { padding: 38px 24px; }
            .software-block { padding: 32px 22px; }
            .btn-cta { width: 100%; max-width: 320px; justify-content: center; }
            .hero-buttons { display: flex; flex-direction: column; align-items: center; gap: 14px; }
        }

        /* ── Capital Evolution Calculator (inline) ────────────── */
        .calc-widget {
            max-width: 1060px;
            margin: 0 auto;
            background: rgba(0, 6, 16, 0.82);
            border: 1px solid rgba(212, 175, 55, 0.22);
            border-radius: 18px;
            overflow: hidden;
            position: relative;
        }

        .calc-widget::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--gold), var(--cyan), var(--gold), transparent);
            opacity: 0.7;
        }

        .calc-widget-header {
            padding: 26px 32px 20px;
            border-bottom: 1px solid rgba(212, 175, 55, 0.1);
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 20px;
            flex-wrap: wrap;
        }

        .calc-widget-header-text h3 {
            font-family: 'Orbitron', sans-serif;
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 6px;
            letter-spacing: 0.5px;
        }

        .calc-widget-header-text p {
            font-size: 0.78rem;
            color: rgba(255,255,255,0.5);
            line-height: 1.55;
        }

        .calc-widget-note {
            margin-top: 10px;
            font-size: 0.82rem;
            line-height: 1.7;
            color: rgba(255,255,255,0.68);
            max-width: 620px;
        }

        .calc-widget-update-note {
            margin: 18px auto 0;
            font-size: 0.78rem;
            font-style: italic;
            line-height: 1.6;
            color: rgba(255,255,255,0.55);
            max-width: 720px;
            text-align: center;
        }

        .calc-disclaimer-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 5px 12px;
            border: 1px solid rgba(212, 175, 55, 0.22);
            border-radius: 4px;
            background: rgba(212, 175, 55, 0.05);
            font-family: 'Orbitron', sans-serif;
            font-size: 8.5px;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: rgba(212, 175, 55, 0.65);
            white-space: normal;
            max-width: 260px;
            flex-shrink: 0;
            line-height: 1.3;
        }

        .calc-widget-body {
            display: grid;
            grid-template-columns: 340px 1fr;
            min-height: 380px;
        }

        .calc-panel-left {
            padding: 28px 28px 28px 32px;
            border-right: 1px solid rgba(255,255,255,0.05);
            display: flex;
            flex-direction: column;
            gap: 22px;
        }

        .calc-panel-right {
            padding: 28px 32px 28px 28px;
            display: flex;
            flex-direction: column;
        }

        .calc-inline-label {
            font-family: 'Orbitron', sans-serif;
            font-size: 9px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: rgba(0, 212, 255, 0.65);
            margin-bottom: 8px;
        }

        .calc-inline-input-wrap {
            display: flex;
            align-items: center;
            background: rgba(0, 212, 255, 0.04);
            border: 1px solid rgba(0, 212, 255, 0.22);
            border-radius: 10px;
            padding: 0 16px;
            transition: border-color 0.2s ease, box-shadow 0.2s ease;
        }

        .calc-inline-input-wrap:focus-within {
            border-color: rgba(0, 212, 255, 0.55);
            box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.08);
        }

        .calc-inline-currency {
            font-size: 1rem;
            color: rgba(0, 212, 255, 0.45);
            font-weight: 600;
            margin-right: 8px;
            user-select: none;
        }

        .calc-inline-input-wrap input {
            flex: 1;
            padding: 14px 0;
            background: none;
            border: none;
            outline: none;
            color: #e2e8f0;
            font-size: 1.05rem;
            font-weight: 600;
            width: 100%;
        }

        .calc-inline-input-wrap input::placeholder {
            color: rgba(148,163,184,0.3);
            font-weight: 400;
            font-size: 0.88rem;
        }

        .calc-error-inline {
            font-size: 0.72rem;
            color: #ff6b6b;
            line-height: 1.4;
            margin-top: 6px;
            display: none;
        }

        .calc-summary-cards {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .calc-summary-card {
            border-radius: 10px;
            padding: 14px 16px;
            border: 1px solid;
        }

        .calc-summary-card.cyan-card {
            background: linear-gradient(135deg, rgba(0,212,255,0.07), rgba(0,212,255,0.02));
            border-color: rgba(0,212,255,0.16);
        }

        .calc-summary-card.green-card {
            background: linear-gradient(135deg, rgba(0,255,157,0.06), rgba(0,255,157,0.01));
            border-color: rgba(0,255,157,0.13);
        }

        .calc-summary-card-label {
            font-size: 0.65rem;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 6px;
        }

        .cyan-card .calc-summary-card-label { color: rgba(0,212,255,0.65); }
        .green-card .calc-summary-card-label { color: rgba(0,255,157,0.6); }

        .calc-summary-card-value {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.18rem;
            font-weight: 700;
            color: #fff;
            letter-spacing: 0.5px;
            margin-bottom: 3px;
        }

        .calc-summary-card-return {
            font-size: 0.74rem;
            font-weight: 600;
        }

        .cyan-card .calc-summary-card-return { color: rgba(0,212,255,0.75); }
        .green-card .calc-summary-card-return { color: rgba(0,255,157,0.75); }

        /* Table */
        .calc-table-header {
            display: flex;
            align-items: baseline;
            gap: 8px;
            margin-bottom: 12px;
        }

        .calc-table-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 0.76rem;
            font-weight: 700;
            color: var(--white);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .calc-table-sub {
            font-size: 0.68rem;
            color: rgba(255,255,255,0.38);
        }

        .calc-table-scroll {
            flex: 1;
            border: 1px solid rgba(255,255,255,0.06);
            border-radius: 10px;
            overflow: hidden;
        }

        .calc-table-scroll table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.84rem;
        }

        .calc-table-scroll thead th {
            background: rgba(255,255,255,0.03);
            padding: 9px 14px;
            text-align: left;
            font-size: 0.64rem;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: rgba(148,163,184,0.65);
            border-bottom: 1px solid rgba(255,255,255,0.07);
        }

        .calc-table-scroll tbody tr:hover { background: rgba(0,212,255,0.035); }

        .calc-table-scroll tbody td {
            padding: 9px 14px;
            color: #d8e8f0;
            border-bottom: 1px solid rgba(255,255,255,0.04);
            font-size: 0.82rem;
        }

        .calc-table-scroll tbody td:nth-child(2) {
            font-family: 'Orbitron', sans-serif;
            font-size: 0.76rem;
            color: #fff;
        }

        .calc-table-scroll tbody td:nth-child(3) {
            color: rgba(0,255,157,0.85);
            font-weight: 600;
        }

        .calc-table-scroll tbody tr.total-row td {
            background: rgba(0,212,255,0.07);
            border-top: 1px solid rgba(0,212,255,0.18);
            border-bottom: none;
            font-weight: 700;
            color: #fff;
        }

        .calc-table-scroll tbody tr.total-row td:nth-child(1) {
            color: rgba(0,212,255,0.85);
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .calc-table-scroll tbody tr.total-row td:nth-child(2) {
            color: var(--cyan);
        }

        .calc-table-scroll tbody tr.total-row td:nth-child(3) {
            color: var(--cyan);
        }

        .calc-total-profit {
            display: block;
            font-size: 0.68rem;
            font-weight: 500;
            color: rgba(255,255,255,0.55);
            letter-spacing: 0.1px;
            margin-top: 2px;
        }

        .calc-placeholder-row td {
            text-align: center;
            padding: 32px 14px !important;
            color: rgba(255,255,255,0.2) !important;
            font-size: 0.78rem !important;
            font-style: italic;
        }

        @media (max-width: 860px) {
            .calc-widget-body {
                grid-template-columns: 1fr;
            }
            .calc-panel-left {
                border-right: none;
                border-bottom: 1px solid rgba(255,255,255,0.05);
                padding: 22px 22px 22px 22px;
            }
            .calc-panel-right { padding: 22px; }
        }