
        :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 Effects ──────────────────────────────────── */
        .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%);
        }

        /* ── Content Layer ────────────────────────────────────── */
        .layer {
            position: relative;
            z-index: 10;
        }

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

        /* Radial dark spot behind hero text for readability */
        .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;
        }

        /* ── Price Ticker ─────────────────────────────────────── */
        .price-ticker {
            display: inline-flex;
            align-items: center;
            gap: 14px;
            background: rgba(0, 212, 255, 0.05);
            border: 1px solid var(--cyan-border);
            border-radius: 6px;
            padding: 10px 26px;
            margin-bottom: 42px;
            font-family: 'Orbitron', sans-serif;
            position: relative;
            overflow: hidden;
            flex-wrap: nowrap;
            white-space: nowrap;
        }

        .price-ticker::after {
            content: '';
            position: absolute;
            top: 0; left: -60%;
            width: 40%; height: 1px;
            background: linear-gradient(90deg, transparent, var(--cyan), transparent);
            animation: ticker-scan 4s linear infinite;
        }

        @keyframes ticker-scan {
            0%   { left: -60%; }
            100% { left: 160%; }
        }

        .step-highlight {
            display: inline-block;
            padding: 6px 12px;
            border: 1px solid rgba(0, 212, 255, 0.35);
            border-radius: 6px;
            background: rgba(0, 212, 255, 0.06);
            color: var(--cyan);
            font-weight: 700;
            position: relative;
            overflow: hidden;
            box-shadow: 0 0 18px rgba(0, 212, 255, 0.12);
            line-height: 1.2;
            vertical-align: middle;
        }

        .step-highlight.step-highlight-block {
            display: inline-flex;
            margin-top: 18px;
            padding: 8px 14px;
        }

        .step-desc {
            font-size: 0.85rem;
            color: var(--gray);
            line-height: 1.7;
        }

        .step-highlight::after {
            content: '';
            position: absolute;
            top: 0; left: -80%;
            width: 36%; height: 2px;
            background: linear-gradient(90deg, transparent, var(--cyan), transparent);
            animation: neon-scan 3s linear infinite;
        }

        @keyframes neon-scan {
            0%   { left: -80%; }
            100% { left: 180%; }
        }

        .ticker-pair {
            font-size: 11px;
            font-weight: 600;
            color: var(--cyan);
            letter-spacing: 3px;
            opacity: 0.8;
        }

        .ticker-sep {
            width: 1px; height: 22px;
            background: rgba(0, 212, 255, 0.25);
        }

        .ticker-price {
            font-size: 19px;
            font-weight: 700;
            color: var(--white);
            letter-spacing: 1px;
        }

        .ticker-change {
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 1px;
        }

        .ticker-change.up   { color: var(--green); }
        .ticker-change.down { color: var(--red); }

        .ticker-live {
            width: 7px; height: 7px;
            background: var(--green);
            border-radius: 50%;
            box-shadow: 0 0 10px var(--green);
            animation: blink 1.4s ease-in-out infinite;
        }

        .ticker-refresh-text {
            display: block;
            margin-top: 2px;
            color: var(--gray);
            font-size: 0.62rem;
            font-weight: 400;
            letter-spacing: 0.08em;
            opacity: 0.78;
            text-align: left;
            line-height: 1.1;
        }

        .ticker-price-group {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            justify-content: center;
            gap: 2px;
        }

        .ticker-change {
            font-size: 11px;
        }

        /* ── Hero Text ────────────────────────────────────────── */
        .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', 'Segoe UI', sans-serif;
            font-size: clamp(2rem, 6vw, 5rem);
            font-weight: 800;
            letter-spacing: -0.03em;
            line-height: 1.08;
            margin: 0 auto 18px;
            max-width: 920px;
            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;
            filter: drop-shadow(0 0 30px rgba(0, 212, 255, 0.2));
        }

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

        /* ── Hero CTA Buttons ─────────────────────────────────── */
        .hero-buttons {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
            justify-content: center;
            margin-bottom: 56px;
        }

        .hero-note {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 14px 24px;
            margin: 0 auto 72px;
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, 0.14);
            background: rgba(255, 255, 255, 0.06);
            color: #f8f6ec;
            font-size: 0.82rem;
            font-weight: 700;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            text-align: center;
            max-width: fit-content;
            box-shadow: 0 0 40px rgba(0, 212, 255, 0.14);
            backdrop-filter: blur(10px);
        }

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

        .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.secondary {
            background: transparent;
            color: var(--gold);
            border: 1px solid rgba(212, 175, 55, 0.5);
        }

        .btn-cta.secondary: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);
        }

        .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.waitlist-blue {
            background: linear-gradient(135deg, #00d4ff 0%, #0094cc 60%, #006b9e 100%);
            color: #ffffff;
            box-shadow: 0 0 32px rgba(0, 212, 255, 0.35), 0 10px 22px rgba(0, 112, 180, 0.25);
            border: 1px solid rgba(0, 212, 255, 0.35);
        }

        .btn-cta.waitlist-blue:hover {
            transform: translateY(-3px);
            box-shadow: 0 0 50px rgba(0, 212, 255, 0.55), 0 12px 28px rgba(0, 98, 150, 0.35);
        }

        .step-box .btn-cta {
            margin-top: 18px;
        }

        /* ── Stats Row ────────────────────────────────────────── */
        .stats-row {
            display: flex;
            gap: 48px;
            flex-wrap: wrap;
            justify-content: center;
            position: relative;
        }

        .stats-row::before {
            content: '';
            position: absolute;
            top: 50%; left: 50%;
            transform: translate(-50%, -50%);
            width: 120%;
            height: 60px;
            background: radial-gradient(ellipse, rgba(0, 212, 255, 0.04) 0%, transparent 70%);
            pointer-events: none;
        }

        .stat-item { text-align: center; }

        .stat-value {
            display: block;
            font-family: 'Orbitron', sans-serif;
            font-size: 2rem;
            font-weight: 800;
            color: var(--white);
        }

        .stat-value em {
            font-style: normal;
            color: var(--cyan);
        }

        .stat-label {
            display: block;
            font-size: 10px;
            font-family: 'Orbitron', sans-serif;
            color: var(--gray);
            text-transform: uppercase;
            letter-spacing: 2.5px;
            margin-top: 5px;
        }

        /* ── Scroll Indicator ─────────────────────────────────── */
        .scroll-down {
            position: absolute;
            bottom: 28px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            font-family: 'Orbitron', sans-serif;
            font-size: 9px;
            letter-spacing: 3px;
            color: rgba(0, 212, 255, 0.4);
            text-transform: uppercase;
            animation: float-down 2.4s ease-in-out infinite;
            cursor: pointer;
        }

        @keyframes float-down {
            0%, 100% { transform: translateX(-50%) translateY(0); }
            50%       { transform: translateX(-50%) translateY(8px); }
        }

        .scroll-chevron {
            width: 18px; height: 18px;
            border-right: 2px solid rgba(0, 212, 255, 0.4);
            border-bottom: 2px solid rgba(0, 212, 255, 0.4);
            transform: rotate(45deg);
        }

        /* ── Products Section ─────────────────────────────────── */
        .products-section {
            position: relative;
            z-index: 10;
            padding: 110px 24px 90px;
            background: linear-gradient(180deg,
                transparent 0%,
                rgba(0, 8, 20, 0.70) 12%,
                rgba(0, 8, 20, 0.82) 88%,
                transparent 100%
            );
            backdrop-filter: blur(6px);
            -webkit-backdrop-filter: blur(6px);
        }

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

        .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-title {
            font-family: 'Orbitron', sans-serif;
            font-size: clamp(1.4rem, 3.5vw, 2.4rem);
            font-weight: 700;
            color: var(--white);
            line-height: 1.2;
        }

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

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

        /* ── Cards Grid ───────────────────────────────────────── */
        .cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 24px;
            max-width: 1200px;
            margin: 0 auto;
        }

        /* ── Product Card ─────────────────────────────────────── */
        .tool-card {
            position: relative;
            background: rgba(0, 10, 22, 0.52);
            border: 1px solid rgba(0, 212, 255, 0.13);
            border-radius: 10px;
            padding: 36px 28px 30px;
            transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1),
                        box-shadow 0.35s ease,
                        border-color 0.35s ease;
            overflow: hidden;
            cursor: pointer;
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            will-change: transform;
        }

        /* Top glow line */
        .tool-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent 0%, var(--cyan) 50%, transparent 100%);
            opacity: 0.45;
            transition: opacity 0.35s ease;
        }

        /* Top-right corner bracket */
        .tool-card::after {
            content: '';
            position: absolute;
            top: -1px; right: -1px;
            width: 18px; height: 18px;
            border-top: 2px solid var(--cyan);
            border-right: 2px solid var(--cyan);
            border-radius: 0 10px 0 0;
            opacity: 0.5;
            transition: all 0.35s ease;
        }

        .card-corner-bl {
            position: absolute;
            bottom: -1px; left: -1px;
            width: 18px; height: 18px;
            border-bottom: 2px solid rgba(0, 212, 255, 0.5);
            border-left: 2px solid rgba(0, 212, 255, 0.5);
            border-radius: 0 0 0 10px;
            transition: all 0.35s ease;
        }

        .tool-card:hover {
            border-color: rgba(0, 212, 255, 0.38);
            box-shadow:
                0 22px 60px rgba(0, 0, 0, 0.7),
                0 0 40px rgba(0, 212, 255, 0.08),
                inset 0 0 50px rgba(0, 212, 255, 0.025);
        }

        .tool-card:hover::before  { opacity: 0.9; }
        .tool-card:hover::after   { opacity: 1; width: 28px; height: 28px; }
        .tool-card:hover .card-corner-bl { width: 28px; height: 28px; }

        .card-badge-tag {
            position: absolute;
            top: 20px; right: 20px;
            font-family: 'Orbitron', sans-serif;
            font-size: 9px;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--cyan);
            background: rgba(0, 212, 255, 0.07);
            border: 1px solid rgba(0, 212, 255, 0.2);
            padding: 4px 10px;
            border-radius: 3px;
        }

        .card-icon-wrap {
            width: 68px; height: 68px;
            background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(0, 212, 255, 0.03) 100%);
            border: 1px solid rgba(0, 212, 255, 0.18);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 22px;
            transition: all 0.35s ease;
        }

        .card-icon-wrap img {
            width: 44px; height: 44px;
            border-radius: 8px;
            object-fit: cover;
        }

        .tool-card:hover .card-icon-wrap {
            transform: scale(1.1);
            box-shadow: 0 0 28px rgba(0, 212, 255, 0.2);
            border-color: rgba(0, 212, 255, 0.45);
        }

        .card-name {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--white);
            text-align: center;
            margin-bottom: 6px;
            letter-spacing: 0.5px;
        }

        .card-sub {
            font-family: 'Orbitron', sans-serif;
            font-size: 9px;
            font-weight: 600;
            color: var(--cyan);
            text-align: center;
            margin-bottom: 16px;
            text-transform: uppercase;
            letter-spacing: 3px;
            opacity: 0.7;
        }

        .card-rule {
            width: 36px; height: 1px;
            background: linear-gradient(90deg, transparent, var(--cyan), transparent);
            margin: 0 auto 16px;
        }

        .card-desc {
            font-size: 0.88rem;
            color: var(--gray);
            text-align: center;
            line-height: 1.72;
            margin-bottom: 26px;
            min-height: 90px;
        }

        .card-btn {
            display: block;
            width: 100%;
            padding: 10px 16px;
            background: transparent;
            border: 1px solid rgba(0, 212, 255, 0.22);
            color: var(--cyan);
            font-family: 'Orbitron', sans-serif;
            font-size: 9px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
            text-decoration: none;
            position: relative;
            overflow: hidden;
        }

        .card-btn::before {
            content: '';
            position: absolute;
            top: 0; left: -100%; width: 100%; height: 100%;
            background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
            transition: left 0.5s ease;
        }

        .card-btn:hover {
            background: rgba(0, 212, 255, 0.09);
            border-color: var(--cyan);
            color: var(--white);
            box-shadow: 0 0 20px rgba(0, 212, 255, 0.18);
        }

        .card-btn:hover::before { left: 100%; }

        /* ── Roadmap Path ─────────────────────────────────────── */
        .roadmap-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 48px;
            max-width: 700px;
            width: 100%;
            margin: 0 auto;
        }

        .stages-stack {
            position: relative;
            width: 100%;
            display: flex;
            flex-direction: column;
            gap: 0;
            padding-bottom: 80px;
        }

        .roadmap-step {
            position: sticky;
            width: 100%;
            max-width: 700px;
            transform-origin: top center;
            will-change: transform, filter;
        }

        /* Step Box */
        .step-box {
            background: #000c1a;
            border: 1px solid rgba(0, 212, 255, 0.13);
            border-radius: 10px;
            padding: 32px 28px;
            text-align: center;
            transition: all 0.35s ease;
            position: relative;
            overflow: hidden;
            backdrop-filter: none;
            -webkit-backdrop-filter: none;
        }

        .step-box::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent 0%, var(--cyan) 50%, transparent 100%);
            opacity: 0.45;
            transition: opacity 0.35s ease;
        }

        .step-box::after {
            content: '';
            position: absolute;
            top: -1px; right: -1px;
            width: 18px; height: 18px;
            border-top: 2px solid var(--cyan);
            border-right: 2px solid var(--cyan);
            border-radius: 0 10px 0 0;
            opacity: 0.5;
            transition: all 0.35s ease;
        }

        .step-corner-bl {
            position: absolute;
            bottom: -1px; left: -1px;
            width: 18px; height: 18px;
            border-bottom: 2px solid rgba(0, 212, 255, 0.5);
            border-left: 2px solid rgba(0, 212, 255, 0.5);
            border-radius: 0 0 0 10px;
            transition: all 0.35s ease;
        }

        .step-box:hover {
            border-color: rgba(0, 212, 255, 0.38);
            box-shadow:
                0 22px 60px rgba(0, 0, 0, 0.7),
                0 0 40px rgba(0, 212, 255, 0.08),
                inset 0 0 50px rgba(0, 212, 255, 0.025);
        }

        .step-box.stage-four {
            border-color: rgba(0, 212, 255, 0.13);
            background: #000c1a url('<?php echo URL_SITE ?>media/images/logo_menor_massa_platinum.png') no-repeat right 22px top 22px;
            background-size: 100px auto;
        }

        .step-box.stage-four .step-title {
            color: #ffd673;
        }

        .step-box.stage-four .step-number {
            color: rgba(255, 255, 255, 0.75);
        }

        .step-box:hover::before  { opacity: 0.9; }
        .step-box:hover::after   { opacity: 1; width: 28px; height: 28px; }
        .step-box:hover .step-corner-bl { width: 28px; height: 28px; }

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

        .step-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 12px;
            letter-spacing: 0.5px;
        }

        .step-desc {
            font-size: 0.85rem;
            color: var(--gray);
            line-height: 1.6;
        }

        .investment-box {
            margin-top: 18px;
            padding: 18px 18px 14px;
            border: 1px solid rgba(0, 212, 255, 0.16);
            background: rgba(0, 212, 255, 0.05);
            border-radius: 14px;
            text-align: left;
            color: rgba(255, 255, 255, 0.86);
        }

        .investment-heading {
            font-family: 'Orbitron', sans-serif;
            font-size: 0.88rem;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 10px;
        }

        .investment-box p {
            margin: 0 0 10px;
            line-height: 1.7;
            font-size: 0.83rem;
            color: rgba(255, 255, 255, 0.72);
        }

        .investment-box p:last-child {
            margin-bottom: 0;
        }

        .step-action {
            margin-top: 18px;
        }

        .qualification-list {
            margin: 18px auto 0;
            padding-left: 18px;
            max-width: 420px;
            text-align: left;
            color: var(--gray);
            font-size: 0.85rem;
            line-height: 1.7;
            list-style: disc;
        }

        .qualification-list li {
            margin-bottom: 10px;
        }

        .qualification-list li:last-child {
            margin-bottom: 0;
        }

        .info-toggle {
            position: absolute;
            top: 16px;
            right: 16px;
            z-index: 2;
        }

        .info-button {
            width: 34px;
            height: 34px;
            border: 1px solid rgba(0, 212, 255, 0.45);
            background: rgba(0, 212, 255, 0.07);
            color: var(--cyan);
            font-family: 'Orbitron', sans-serif;
            font-size: 0.85rem;
            font-weight: 700;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.25s ease;
        }

        .info-button:hover,
        .info-button:focus {
            background: rgba(0, 212, 255, 0.14);
            transform: translateY(-1px);
            outline: none;
        }

        .stage-info-box {
            margin-top: 24px;
            padding: 22px;
            border: 1px solid rgba(0, 212, 255, 0.18);
            background: rgba(0, 16, 32, 0.72);
            border-radius: 14px;
            text-align: left;
            color: var(--gray);
            display: none;
            opacity: 0;
            transform: translateY(-8px);
            transition: opacity 0.28s ease, transform 0.28s ease;
        }

        .stage-info-box.visible {
            display: block;
            opacity: 1;
            transform: translateY(0);
        }

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

        .stage-info-box p {
            margin-bottom: 10px;
            line-height: 1.75;
            color: rgba(255, 255, 255, 0.75);
        }

        .stage-info-box p:last-child {
            margin-bottom: 0;
        }

        /* ── Stage 2 Info Modal ───────────────────────────── */
        .s2-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0, 4, 10, 0.75);
            backdrop-filter: blur(4px);
            -webkit-backdrop-filter: blur(4px);
            z-index: 9998;
        }

        .s2-overlay.active { display: block; }

        .s2-modal {
            display: none;
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -48%) scale(0.96);
            z-index: 9999;
            width: min(520px, calc(100vw - 32px));
            background: #000d1e;
            border: 1px solid rgba(0, 212, 255, 0.22);
            border-radius: 14px;
            padding: 36px 32px 32px;
            opacity: 0;
            transition: opacity 0.25s ease, transform 0.25s ease;
        }

        .s2-modal.active {
            display: block;
            opacity: 1;
            transform: translate(-50%, -50%) scale(1);
        }

        .s2-modal::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent 0%, var(--cyan) 50%, transparent 100%);
            opacity: 0.5;
            border-radius: 14px 14px 0 0;
        }

        .s2-modal-close {
            position: absolute;
            top: 14px;
            right: 14px;
            width: 30px;
            height: 30px;
            border: 1px solid rgba(0, 212, 255, 0.25);
            background: rgba(0, 212, 255, 0.06);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            color: var(--cyan);
            transition: background 0.2s ease;
        }

        .s2-modal-close:hover { background: rgba(0, 212, 255, 0.14); }

        .s2-modal-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 1rem;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 18px;
            letter-spacing: 0.3px;
            line-height: 1.4;
        }

        .s2-modal p {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.72);
            line-height: 1.8;
            margin-bottom: 12px;
        }

        .s2-modal p:last-child { margin-bottom: 0; }


        .for-whom-box {
            margin-top: 52px;
            padding: 34px 30px;
            border: 1px solid rgba(212, 175, 55, 0.28);
            background: rgba(212, 175, 55, 0.08);
            border-radius: 18px;
            text-align: left;
            max-width: 720px;
            margin-left: auto;
            margin-right: auto;
            box-shadow: 0 0 32px rgba(212, 175, 55, 0.08);
            position: relative;
        }

        .for-whom-box::before {
            content: '';
            position: absolute;
            top: -24px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            border-radius: 999px;
            background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.9), transparent);
        }

        .for-whom-box .section-eyebrow {
            margin-bottom: 10px;
            color: var(--gold);
            opacity: 0.95;
        }

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

        .for-whom-desc {
            color: rgba(255, 255, 255, 0.82);
            font-size: 0.95rem;
            line-height: 1.8;
            margin-bottom: 10px;
        }

        .for-whom-desc strong {
            color: var(--white);
        }

        /* Active Step Style */
        .step-box.active {
            border-color: rgba(212, 175, 55, 0.35);
            background: #0d0b01;
            box-shadow:
                0 0 40px rgba(212, 175, 55, 0.15),
                inset 0 0 60px rgba(212, 175, 55, 0.04);
        }

        .step-box.active::before {
            background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
            opacity: 0.7;
        }

        .step-box.active::after {
            border-top-color: var(--gold);
            border-right-color: var(--gold);
        }

        .step-box.active .step-corner-bl {
            border-bottom-color: var(--gold);
            border-left-color: var(--gold);
        }

        .step-box.active .step-title {
            color: var(--gold);
        }

        .discovery-cta {
            max-width: 700px;
            margin: 18px auto 36px;
            text-align: center;
        }

        .discovery-cta-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.5rem;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 14px;
            letter-spacing: 0.5px;
        }

        .discovery-cta .btn-cta {
            padding: 15px 40px;
        }

        .discovery-cta-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .discovery-cta-arrow {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 22px;
            height: 22px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.95);
            color: #061215;
            font-size: 1rem;
            font-weight: 700;
            line-height: 1;
            animation: arrow-bounce 1.4s ease-in-out infinite;
            box-shadow: 0 0 12px rgba(0, 0, 0, 0.12);
            user-select: none;
        }

        @keyframes arrow-bounce {
            0%, 100% {
                transform: translateY(0);
                opacity: 0.85;
            }
            50% {
                transform: translateY(4px);
                opacity: 1;
            }
        }

        /* ── FAQ Section ──────────────────────────────────────── */
        .faq-section {
            max-width: 700px;
            width: 100%;
            margin: 0 auto 48px;
        }

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

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

        .faq-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--white);
            letter-spacing: 0.4px;
        }

        .faq-list {
            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.68);
            line-height: 1.75;
            margin-bottom: 14px;
        }

        .faq-answer p.faq-note {
            margin-top: 18px;
            color: rgba(255, 255, 255, 0.78);
            font-weight: 600;
        }

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

        .faq-pillar-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            margin-top: 4px;
        }

        @media (max-width: 540px) {
            .faq-pillar-grid { grid-template-columns: 1fr; }
        }

        .faq-pillar {
            background: rgba(0, 212, 255, 0.04);
            border: 1px solid rgba(0, 212, 255, 0.14);
            border-radius: 8px;
            padding: 14px 16px;
        }

        .faq-pillar-name {
            font-family: 'Orbitron', sans-serif;
            font-size: 0.7rem;
            font-weight: 700;
            color: var(--cyan);
            letter-spacing: 0.3px;
            margin-bottom: 5px;
        }

        .faq-pillar-desc {
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.58);
            line-height: 1.55;
        }

        /* Arrow Connector */
        .step-arrow {
            display: flex;
            justify-content: center;
            padding: 16px 0;
            position: relative;
        }

        .arrow-icon {
            font-family: 'Orbitron', sans-serif;
            color: var(--cyan);
            font-size: 18px;
            opacity: 0.5;
            animation: pulse-arrow 1.8s ease-in-out infinite;
        }

        @keyframes pulse-arrow {
            0%, 100% { opacity: 0.4; transform: translateY(0); }
            50%       { opacity: 0.8; transform: translateY(4px); }
        }

        /* Capital Levels Container */
        .capital-levels {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
            justify-content: center;
            width: 100%;
            margin-top: 20px;
        }

        .capital-level {
            flex: 1;
            min-width: 140px;
            max-width: 180px;
        }

        .level-box {
            background: linear-gradient(135deg, rgba(0, 212, 255, 0.08) 0%, rgba(0, 212, 255, 0.03) 100%);
            border: 1px solid rgba(0, 212, 255, 0.2);
            border-radius: 8px;
            padding: 18px 16px;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            cursor: default;
        }

        .level-box:hover,
        .level-box:hover * {
            cursor: url('<?php echo URL_SITE; ?>css/cursor-diamond.svg') 16 16, pointer;
        }

        .level-box::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent 0%, var(--cyan) 50%, transparent 100%);
            opacity: 0.3;
        }

        .level-box:hover {
            border-color: rgba(0, 212, 255, 0.45);
            background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(0, 212, 255, 0.05) 100%);
            box-shadow: 0 0 25px rgba(0, 212, 255, 0.15);
            transform: translateY(-4px);
        }

        .level-name {
            font-family: 'Orbitron', sans-serif;
            font-size: 0.9rem;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 4px;
        }

        .level-desc {
            font-size: 0.75rem;
            color: var(--gray);
            letter-spacing: 0.5px;
        }

        /* Horizontal Arrow */
        .horizontal-arrow {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 40px;
            font-size: 14px;
            color: var(--cyan);
            opacity: 0.4;
            flex: 0 0 auto;
        }

        /* ── Social Section ───────────────────────────────────── */
        .social-section {
            position: relative;
            z-index: 10;
            padding: 50px 24px 80px;
            background: rgba(0, 8, 20, 0.99);
            text-align: center;
        }

        .social-label {
            font-family: 'Orbitron', sans-serif;
            font-size: 10px;
            letter-spacing: 5px;
            color: rgba(0, 212, 255, 0.4);
            text-transform: uppercase;
            margin-bottom: 28px;
        }

        .social-buttons {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .social-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 32px;
            font-family: 'Orbitron', sans-serif;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .social-btn.discord {
            background: rgba(88, 101, 242, 0.12);
            border: 1px solid rgba(88, 101, 242, 0.35);
            color: #7289da;
        }

        .social-btn.discord:hover {
            background: rgba(88, 101, 242, 0.22);
            box-shadow: 0 0 28px rgba(88, 101, 242, 0.3);
            transform: translateY(-3px);
            color: #fff;
        }

        .social-btn.telegram {
            background: rgba(0, 136, 204, 0.12);
            border: 1px solid rgba(0, 136, 204, 0.35);
            color: #0088cc;
        }

        .social-btn.telegram:hover {
            background: rgba(0, 136, 204, 0.22);
            box-shadow: 0 0 28px rgba(0, 136, 204, 0.3);
            transform: translateY(-3px);
            color: #fff;
        }

        /* ── 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;
        }

        .footer-bottom a {
            color: #2a3a4a;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-bottom a:hover { color: var(--cyan); }

        /* ── Responsive ─────────────────────────────────────── */
        @media (max-width: 900px) {
            .header-inner { padding: 14px 20px; }
            .desktop-only { display: none !important; }
            .menu-toggle { display: flex; }
            .mobile-nav  { display: flex; }
            .cards-grid  { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
            .hero-title  { font-size: 2rem; }
            .stats-row   { gap: 26px; }
            .stat-value  { font-size: 1.6rem; }
            .social-buttons { flex-direction: column; align-items: center; }
            .social-btn  { width: 100%; max-width: 290px; justify-content: center; }
            .roadmap-container { max-width: 100%; }
            .capital-levels { gap: 10px; }
            .capital-level { max-width: 160px; }
            .level-box { padding: 14px 12px; }
            .level-name { font-size: 0.8rem; }
        }

        @media (max-width: 600px) {
            .price-ticker { flex-wrap: nowrap; justify-content: flex-start; gap: 10px; overflow-x: auto; }
            .price-ticker span { white-space: nowrap; }
            .hero-buttons { flex-direction: column; align-items: center; }
            .btn-cta { width: 100%; max-width: 300px; justify-content: center; }
            .section-title { font-size: 1.4rem; }
            .step-title { font-size: 1.1rem; }
            .capital-levels { flex-direction: column; }
            .capital-level { max-width: 100%; }
            .horizontal-arrow { display: none; }
        }

        /* ═══════════════════════════════════════════════════════
           ── LIFE VALUE SECTION ─────────────────────────────────
           ═══════════════════════════════════════════════════════ */
        .life-value-section {
            position: relative;
            z-index: 10;
            padding: 110px 24px 90px;
            overflow: hidden;
            background: linear-gradient(180deg,
                transparent 0%,
                rgba(0, 8, 20, 0.65) 10%,
                rgba(0, 10, 28, 0.92) 35%,
                rgba(0, 8, 20, 0.82) 90%,
                transparent 100%
            );
            border-top: 1px solid rgba(0, 212, 255, 0.12);
            backdrop-filter: blur(4px);
            -webkit-backdrop-filter: blur(4px);
        }

        .life-canvas {
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 100%;
            pointer-events: none;
            z-index: 0;
            opacity: 0.55;
            mix-blend-mode: screen;
        }

        .life-value-inner {
            position: relative;
            z-index: 2;
            max-width: 1180px;
            margin: 0 auto;
            padding: 0 12px;
        }

        .life-value-lead {
            font-size: clamp(0.98rem, 1.7vw, 1.15rem);
            color: rgba(255, 255, 255, 0.78);
            max-width: 680px;
            margin: 22px auto 0;
            line-height: 1.75;
            text-align: center;
        }

        .life-value-lead strong {
            color: var(--cyan);
            font-weight: 700;
        }

        /* ── Benefit Cards Grid ──────────────────────────────── */
        .life-cards-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-top: 56px;
        }

        .life-card {
            background: rgba(2, 18, 42, 0.97);
            border: 1px solid rgba(0, 212, 255, 0.22);
            box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
            border-radius: 16px;
            padding: 32px 28px 28px;
            position: relative;
            overflow: hidden;
            transition: border-color .35s ease, box-shadow .35s ease, transform .35s ease, background .35s ease;
            min-height: 270px;
            display: flex;
            flex-direction: column;
        }

        /* Glow line top */
        .life-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent 0%, var(--cyan) 50%, transparent 100%);
            opacity: 0.45;
            transition: opacity 0.35s ease;
        }

        /* Corner accent — top right */
        .life-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.50;
            transition: all 0.35s ease;
        }

        .life-card-corner-bl {
            position: absolute;
            bottom: -1px; left: -1px;
            width: 16px; height: 16px;
            border-bottom: 2px solid rgba(0, 212, 255, 0.45);
            border-left: 2px solid rgba(0, 212, 255, 0.45);
            border-radius: 0 0 0 12px;
            transition: all 0.35s ease;
        }

        .life-card:hover {
            border-color: rgba(0, 212, 255, 0.4);
            box-shadow:
                0 28px 80px rgba(0, 0, 0, 0.35),
                0 0 48px rgba(0, 212, 255, 0.08),
                inset 0 0 50px rgba(0, 212, 255, 0.04);
            transform: translateY(-5px);
            background: rgba(1, 24, 48, 0.98);
        }

        .life-card:hover::before  { opacity: 0.9; }
        .life-card:hover::after   { opacity: 1; width: 26px; height: 26px; }
        .life-card:hover .life-card-corner-bl { width: 26px; height: 26px; }

        .life-card-icon-wrap {
            width: 48px; height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(0, 212, 255, 0.12);
            border: 1px solid rgba(0, 212, 255, 0.24);
            border-radius: 12px;
            margin-bottom: 20px;
            color: var(--cyan);
            flex-shrink: 0;
        }

        .life-card h3 {
            font-family: 'Orbitron', sans-serif;
            font-size: 1rem;
            font-weight: 700;
            color: var(--white);
            line-height: 1.35;
            margin-bottom: 14px;
            letter-spacing: 0.03em;
        }

        .life-card p {
            font-size: 0.92rem;
            color: rgba(255, 255, 255, 0.72);
            line-height: 1.75;
            margin-bottom: 0;
        }

        /* ── Quote Box ───────────────────────────────────────── */
        .life-quote-box {
            margin-top: 68px;
            padding: 52px 44px;
            background: linear-gradient(135deg,
                rgba(212, 175, 55, 0.05) 0%,
                rgba(0, 212, 255, 0.03) 100%
            );
            border: 1px solid rgba(212, 175, 55, 0.20);
            border-radius: 14px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .life-quote-box::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
            opacity: 0.45;
        }

        .life-quote-box::after {
            content: '';
            position: absolute;
            bottom: 0; left: 0; right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent 0%, rgba(0, 212, 255, 0.3) 50%, transparent 100%);
        }

        .life-quote-mark {
            font-size: 3.5rem;
            font-family: Georgia, 'Times New Roman', serif;
            line-height: 0.7;
            color: var(--gold);
            opacity: 0.45;
            display: block;
            margin-bottom: 18px;
        }

        .life-quote-text {
            font-size: clamp(1rem, 2.2vw, 1.3rem);
            font-style: italic;
            color: rgba(255, 255, 255, 0.78);
            line-height: 1.55;
            margin-bottom: 14px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .life-quote-attr {
            font-family: 'Orbitron', sans-serif;
            font-size: 0.68rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--gold);
            opacity: 0.65;
            display: block;
            margin-bottom: 26px;
        }

        .life-quote-divider {
            width: 40px; height: 1px;
            background: linear-gradient(90deg, transparent, var(--cyan), transparent);
            margin: 0 auto 26px;
            opacity: 0.5;
        }

        .life-quote-response {
            font-size: clamp(0.95rem, 1.9vw, 1.15rem);
            color: var(--cyan);
            font-weight: 600;
            letter-spacing: 0.02em;
        }

        /* ── Responsive ──────────────────────────────────────── */
        @media (max-width: 1024px) {
            .life-cards-grid { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 680px) {
            .life-cards-grid { grid-template-columns: 1fr; }
            .life-quote-box  { padding: 36px 22px; }
            .life-quote-text { font-size: 0.98rem; }
        }