    :root {
            --bg-primary: #0a0f0a;
            --bg-secondary: #111a11;
            --bg-card: #151f15;
            --bg-card-hover: #1a261a;
            --green-primary: #00E676;
            --green-dim: #00c764;
            --green-glow: rgba(0, 230, 118, 0.15);
            --green-glow-strong: rgba(0, 230, 118, 0.3);
            --green-subtle: rgba(0, 230, 118, 0.08);
            --text-primary: #f0f5f0;
            --text-secondary: #8a9b8a;
            --text-dim: #5a6b5a;
            --border: rgba(0, 230, 118, 0.12);
            --border-hover: rgba(0, 230, 118, 0.3);
            --yellow: #FFD740;
            --orange: #FF6D00;
            --blue: #4FC3F7;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; overflow-x: hidden; }
        html, body { max-width: 100vw; }

        body {
            font-family: 'Outfit', sans-serif;
            background: var(--bg-primary);
            color: var(--text-primary);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        /* ===== NOISE ===== */
        body::before {
            content: '';
            position: fixed;
            inset: 0;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
            pointer-events: none;
            z-index: 9999;
        }

        /* ===== NAV ===== */
        nav {
            position: fixed;
            top: 0; left: 0;
            width: 100%;
            max-width: 100vw;
            z-index: 1000;
            padding: 14px 40px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: rgba(10, 15, 10, 0.7);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border);
            transition: all 0.3s;
        }

        nav.scrolled {
            background: rgba(10, 15, 10, 0.95);
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
        }

        .nav-logo-img {
            width: 32px;
            height: 32px;
            border-radius: 7px;
            object-fit: contain;
        }

        .nav-logo-text {
            font-weight: 800;
            font-size: 18px;
            color: var(--text-primary);
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 28px;
        }

        .nav-links a {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 13px;
            font-weight: 500;
            letter-spacing: 0.5px;
            transition: color 0.2s;
        }

        .nav-links a:hover { color: var(--green-primary); }

        .nav-cta {
            padding: 9px 22px !important;
            background: var(--green-primary) !important;
            color: var(--bg-primary) !important;
            border-radius: 8px !important;
            font-weight: 700 !important;
            transition: all 0.2s !important;
        }

        .nav-cta:hover {
            background: #00ff84 !important;
            transform: translateY(-1px);
            box-shadow: 0 4px 20px var(--green-glow-strong);
        }

        /* Language switcher */
        .lang-switcher {
            display: flex;
            gap: 2px;
            background: rgba(0, 230, 118, 0.06);
            border: 1px solid var(--border);
            border-radius: 8px;
            padding: 2px;
            margin-left: 4px;
        }

        .lang-btn {
            padding: 5px 10px;
            background: none;
            border: none;
            border-radius: 6px;
            color: var(--text-dim);
            font-family: 'JetBrains Mono', monospace;
            font-size: 11px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
            letter-spacing: 0.5px;
        }

        .lang-btn:hover {
            color: var(--text-secondary);
            background: rgba(0, 230, 118, 0.08);
        }

        .lang-btn.active {
            color: var(--green-primary);
            background: rgba(0, 230, 118, 0.12);
        }

        .mobile-only { display: none; }
        .desktop-only { display: flex; }

        /* Hamburger button */
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            z-index: 1001;
        }

        @media (max-width: 768px) {
            .hamburger {
                display: flex !important;
            }
        }

        .hamburger span {
            display: block;
            width: 22px;
            height: 2px;
            background: var(--text-primary);
            border-radius: 2px;
            transition: all 0.3s;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        .nav-right-mobile {
            display: none;
            align-items: center;
            gap: 12px;
        }

        @media (max-width: 768px) {
            .nav-right-mobile {
                display: flex !important;
            }
        }

        /* ===== HERO ===== */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 100px 24px 60px;
            overflow: hidden;
        }

        /* Video background */
        .hero-video-bg {
            position: absolute;
            inset: 0;
            z-index: 0;
            overflow: hidden;
        }

        .hero-video-bg {
            overflow: hidden;
        }

        .hero-video-bg iframe {
            position: absolute;
            top: 50%; left: 50%;
            width: 177.78vh; /* 16:9 ratio */
            height: 56.25vw; /* 16:9 ratio */
            min-width: 100vw;
            min-height: 100vh;
            transform: translate(-50%, -50%);
            pointer-events: none;
        }

        /* Dark overlay over video */
        .hero-video-overlay {
            position: absolute;
            inset: 0;
            z-index: 1;
            background: 
                radial-gradient(ellipse at center, rgba(10, 15, 10, 0.65) 0%, rgba(10, 15, 10, 0.88) 70%),
                linear-gradient(180deg, rgba(10, 15, 10, 0.5) 0%, rgba(10, 15, 10, 0.92) 100%);
        }

        /* ===== SCANNER & PULSE ANIMATION ===== */
        .hero-scanner {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 3;
            pointer-events: none;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        /* Pulsing circles from center */
        .scanner-pulse {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80px;
            height: 80px;
            border-radius: 50%;
            border: 1px solid rgba(0, 230, 118, 0.3);
            animation: scanner-expand 4s ease-out infinite;
        }

        .scanner-pulse:nth-child(2) { animation-delay: 1s; }
        .scanner-pulse:nth-child(3) { animation-delay: 2s; }
        .scanner-pulse:nth-child(4) { animation-delay: 3s; }

        @keyframes scanner-expand {
            0% {
                width: 40px;
                height: 40px;
                opacity: 0.6;
                border-color: rgba(0, 230, 118, 0.5);
            }
            100% {
                width: 800px;
                height: 800px;
                opacity: 0;
                border-color: rgba(0, 230, 118, 0);
            }
        }

        /* Scanner sweep line */
        .scanner-line {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 500px;
            height: 1px;
            transform-origin: left center;
            transform: translate(0, -50%);
            background: linear-gradient(90deg, rgba(0, 230, 118, 0.4) 0%, rgba(0, 230, 118, 0) 100%);
            animation: scanner-sweep 6s linear infinite;
        }

        @keyframes scanner-sweep {
            0% { transform: translate(0, -50%) rotate(0deg); }
            100% { transform: translate(0, -50%) rotate(360deg); }
        }

        /* Center dot */
        .scanner-center {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 6px;
            height: 6px;
            background: var(--green-primary);
            border-radius: 50%;
            box-shadow: 0 0 20px var(--green-primary), 0 0 40px rgba(0, 230, 118, 0.3);
            animation: center-glow 2s ease-in-out infinite alternate;
        }

        @keyframes center-glow {
            0% { box-shadow: 0 0 15px var(--green-primary), 0 0 30px rgba(0, 230, 118, 0.2); }
            100% { box-shadow: 0 0 25px var(--green-primary), 0 0 60px rgba(0, 230, 118, 0.4); }
        }

        /* Crosshair lines */
        .scanner-crosshair {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 120px;
            height: 120px;
        }

        .scanner-crosshair::before,
        .scanner-crosshair::after {
            content: '';
            position: absolute;
            background: rgba(0, 230, 118, 0.15);
        }

        .scanner-crosshair::before {
            top: 50%;
            left: 0;
            right: 0;
            height: 1px;
            transform: translateY(-50%);
        }

        .scanner-crosshair::after {
            left: 50%;
            top: 0;
            bottom: 0;
            width: 1px;
            transform: translateX(-50%);
        }

        .hero-grid {
            position: absolute;
            inset: 0;
            z-index: 2;
            background-image: 
                linear-gradient(var(--border) 1px, transparent 1px),
                linear-gradient(90deg, var(--border) 1px, transparent 1px);
            background-size: 60px 60px;
            opacity: 0.2;
            mask-image: radial-gradient(ellipse at center, black 20%, transparent 65%);
            -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 65%);
        }

        .hero-content {
            position: relative;
            z-index: 10;
            max-width: 720px;
        }

        /* ===== WAITLIST BOX — HERO TOP ===== */
        .hero-waitlist {
            background: rgba(0, 230, 118, 0.04);
            border: 1px solid rgba(0, 230, 118, 0.25);
            border-radius: 20px;
            padding: 28px 32px 24px;
            margin-bottom: 40px;
            position: relative;
            overflow: hidden;
            animation: fadeInDown 0.6s ease;
        }

        .hero-waitlist::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(0, 230, 118, 0.06) 0%, transparent 50%);
            pointer-events: none;
        }

        .hero-waitlist::after {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--green-primary), transparent);
        }

        /* Glow attention animation */
        .hero-waitlist.glow-attention {
            box-shadow: 0 0 30px rgba(0, 230, 118, 0.6), 0 0 60px rgba(0, 230, 118, 0.3), 0 0 100px rgba(0, 230, 118, 0.15);
            border-color: rgba(0, 230, 118, 0.6);
            transition: box-shadow 0.15s ease-in, border-color 0.15s ease-in;
        }

        .hero-waitlist.glow-fade {
            box-shadow: 0 0 0px transparent;
            border-color: rgba(0, 230, 118, 0.25);
            transition: box-shadow 1s ease-out, border-color 1s ease-out;
        }

        .waitlist-header {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            margin-bottom: 16px;
            flex-wrap: wrap;
        }

        .founding-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 5px 14px;
            background: rgba(255, 215, 64, 0.12);
            border: 1px solid rgba(255, 215, 64, 0.25);
            border-radius: 100px;
            font-size: 12px;
            color: var(--yellow);
            font-weight: 600;
            animation: glow-pulse 2s ease-in-out infinite alternate;
        }

        @keyframes glow-pulse {
            from { box-shadow: 0 0 8px rgba(255, 215, 64, 0.1); }
            to { box-shadow: 0 0 20px rgba(255, 215, 64, 0.25); }
        }

        .waitlist-title {
            font-size: 20px;
            font-weight: 800;
            letter-spacing: -0.5px;
        }

        .waitlist-title span {
            color: var(--green-primary);
        }

        .waitlist-form {
            display: flex;
            gap: 10px;
            margin-bottom: 12px;
        }

        .waitlist-form input {
            flex: 1;
            padding: 14px 18px;
            background: rgba(10, 15, 10, 0.8);
            border: 1px solid var(--border);
            border-radius: 12px;
            color: var(--text-primary);
            font-family: 'Outfit', sans-serif;
            font-size: 15px;
            outline: none;
            transition: all 0.2s;
        }

        .waitlist-form input::placeholder { color: var(--text-dim); }

        .waitlist-form input:focus {
            border-color: var(--green-primary);
            box-shadow: 0 0 0 3px var(--green-glow);
        }

        .waitlist-form button {
            padding: 14px 28px;
            background: var(--green-primary);
            color: var(--bg-primary);
            border: none;
            border-radius: 12px;
            font-family: 'Outfit', sans-serif;
            font-size: 15px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.25s;
            white-space: nowrap;
            position: relative;
            overflow: hidden;
        }

        .waitlist-form button::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transform: translateX(-100%);
            animation: btn-shine 3s ease-in-out infinite;
        }

        @keyframes btn-shine {
            0%, 100% { transform: translateX(-100%); }
            50% { transform: translateX(100%); }
        }

        .waitlist-form button:hover {
            background: #00ff84;
            transform: translateY(-1px);
            box-shadow: 0 6px 28px var(--green-glow-strong);
        }

        .waitlist-form button:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }

        .waitlist-meta {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            font-size: 12px;
            color: var(--text-dim);
        }

        .waitlist-counter {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .waitlist-counter .dot {
            width: 6px; height: 6px;
            background: var(--green-primary);
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        .waitlist-counter .count {
            color: var(--green-primary);
            font-weight: 700;
            font-family: 'JetBrains Mono', monospace;
        }

        .waitlist-meta .sep {
            width: 1px;
            height: 12px;
            background: var(--border);
        }

        /* Cloudflare Turnstile */
        .turnstile-wrap {
            margin-bottom: 8px;
        }

        .turnstile-hidden {
            position: absolute;
            width: 1px;
            height: 1px;
            overflow: hidden;
            opacity: 0;
            pointer-events: none;
        }

        .turnstile-status {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 6px 0;
            font-size: 12px;
            color: var(--text-dim);
        }

        .turnstile-status.verified {
            color: var(--green-primary);
        }

        .turnstile-status.error {
            color: var(--orange);
        }

        .ts-icon {
            font-size: 13px;
        }

        .ts-loading {
            animation: spin 1.5s linear infinite;
            display: inline-block;
        }

        @keyframes spin {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .waitlist-success {
            display: none;
            padding: 18px;
            background: rgba(0, 230, 118, 0.08);
            border: 1px solid rgba(0, 230, 118, 0.2);
            border-radius: 12px;
            margin-bottom: 12px;
            text-align: center;
        }

        .waitlist-success h4 {
            color: var(--green-primary);
            font-size: 16px;
            margin-bottom: 4px;
        }

        .waitlist-success p {
            color: var(--text-secondary);
            font-size: 13px;
        }

        /* ===== HERO HEADLINE ===== */
        .hero h1 {
            font-size: clamp(42px, 6.5vw, 80px);
            font-weight: 900;
            line-height: 1.05;
            letter-spacing: -3px;
            margin-bottom: 20px;
            animation: fadeInUp 0.6s ease 0.1s both;
        }

        .hero h1 .gradient-text {
            background: linear-gradient(135deg, var(--green-primary) 0%, #4FC3F7 50%, var(--green-primary) 100%);
            background-size: 200% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: shimmer 3s linear infinite;
        }

        @keyframes shimmer {
            0% { background-position: 0% center; }
            100% { background-position: 200% center; }
        }

        .hero-subtitle {
            font-size: clamp(16px, 2vw, 19px);
            color: var(--text-secondary);
            max-width: 540px;
            margin: 0 auto 28px;
            line-height: 1.6;
            animation: fadeInUp 0.6s ease 0.2s both;
        }

        /* Play video button */
        .play-video-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 12px 28px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 100px;
            color: var(--text-primary);
            font-family: 'Outfit', sans-serif;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            animation: fadeInUp 0.6s ease 0.3s both;
            text-decoration: none;
            backdrop-filter: blur(10px);
        }

        .play-video-btn:hover {
            background: rgba(255, 255, 255, 0.14);
            border-color: rgba(255, 255, 255, 0.3);
            transform: translateY(-2px);
        }

        .play-icon {
            width: 32px; height: 32px;
            background: var(--green-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .play-icon svg {
            width: 14px; height: 14px;
            fill: var(--bg-primary);
            margin-left: 2px;
        }

        /* Social proof */
        .hero-proof {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 24px;
            margin-top: 28px;
            animation: fadeInUp 0.6s ease 0.4s both;
            flex-wrap: wrap;
        }

        .proof-item {
            display: flex;
            align-items: center;
            gap: 6px;
            color: var(--text-dim);
            font-size: 12px;
            font-weight: 500;
        }

        .proof-item .check {
            color: var(--green-primary);
            font-size: 14px;
        }

        /* Floating cards */
        .hero-float {
            position: absolute;
            border: 1px solid var(--border);
            border-radius: 10px;
            padding: 10px 16px;
            background: rgba(21, 31, 21, 0.7);
            backdrop-filter: blur(10px);
            font-size: 12px;
            color: var(--text-secondary);
            display: flex;
            align-items: center;
            gap: 8px;
            animation: float 6s ease-in-out infinite;
            pointer-events: none;
            z-index: 10;
        }

        .hero-float.f1 { top: 22%; left: 5%; animation-delay: 0s; }
        .hero-float.f2 { top: 30%; right: 5%; animation-delay: 2s; }
        .hero-float.f3 { bottom: 18%; left: 8%; animation-delay: 4s; }

        .hero-float .match {
            color: var(--green-primary);
            font-weight: 700;
            font-family: 'JetBrains Mono', monospace;
        }

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

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

        @keyframes fadeInDown {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(1.5); }
        }

        /* ===== FULLSCREEN VIDEO MODAL ===== */
        .video-modal {
            display: none;
            position: fixed;
            inset: 0;
            z-index: 10000;
            background: rgba(0, 0, 0, 0.95);
            align-items: center;
            justify-content: center;
            padding: 40px;
        }

        .video-modal.active {
            display: flex;
        }

        .video-modal-inner {
            position: relative;
            width: 100%;
            max-width: 1100px;
            aspect-ratio: 16/9;
        }

        .video-modal-inner iframe {
            width: 100%;
            height: 100%;
            border: none;
            border-radius: 12px;
        }

        .video-modal-close {
            position: absolute;
            top: -48px;
            right: 0;
            background: none;
            border: none;
            color: white;
            font-size: 32px;
            cursor: pointer;
            opacity: 0.7;
            transition: opacity 0.2s;
            font-family: 'Outfit', sans-serif;
        }

        .video-modal-close:hover { opacity: 1; }

        /* ===== FEATURES ===== */
        .features {
            padding: 100px 24px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-label {
            text-align: center;
            font-size: 13px;
            font-weight: 600;
            color: var(--green-primary);
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 16px;
        }

        .section-title {
            text-align: center;
            font-size: clamp(32px, 4vw, 48px);
            font-weight: 800;
            letter-spacing: -1.5px;
            margin-bottom: 20px;
        }

        .section-desc {
            text-align: center;
            color: var(--text-secondary);
            font-size: 17px;
            max-width: 550px;
            margin: 0 auto 48px;
            line-height: 1.6;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .feature-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 32px 24px;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--green-primary), transparent);
            opacity: 0;
            transition: opacity 0.3s;
        }

        .feature-card:hover {
            border-color: var(--border-hover);
            background: var(--bg-card-hover);
            transform: translateY(-4px);
        }

        .feature-card:hover::before { opacity: 1; }

        .feature-icon {
            width: 44px; height: 44px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
            font-size: 22px;
        }

        .feature-icon.green { background: rgba(0, 230, 118, 0.1); }
        .feature-icon.blue { background: rgba(79, 195, 247, 0.1); }
        .feature-icon.yellow { background: rgba(255, 215, 64, 0.1); }
        .feature-icon.orange { background: rgba(255, 109, 0, 0.1); }
        .feature-icon.purple { background: rgba(186, 104, 255, 0.1); }

        .feature-card h3 {
            font-size: 17px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .feature-card p {
            color: var(--text-secondary);
            font-size: 14px;
            line-height: 1.6;
        }

        .feature-badge {
            display: inline-block;
            padding: 4px 10px;
            border-radius: 6px;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.5px;
            margin-top: 12px;
        }

        .feature-badge.live {
            background: rgba(0, 230, 118, 0.12);
            color: var(--green-primary);
        }

        .feature-badge.soon {
            background: rgba(255, 215, 64, 0.12);
            color: var(--yellow);
        }

        /* ===== HOW IT WORKS ===== */
        .how-it-works {
            padding: 100px 24px;
            max-width: 900px;
            margin: 0 auto;
        }

        .steps { display: flex; flex-direction: column; }

        .step {
            display: flex;
            gap: 28px;
            padding: 36px 0;
        }

        .step:not(:last-child) {
            border-bottom: 1px solid var(--border);
        }

        .step-number {
            width: 52px; height: 52px; min-width: 52px;
            border-radius: 14px;
            background: var(--green-subtle);
            border: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'JetBrains Mono', monospace;
            font-size: 18px;
            font-weight: 700;
            color: var(--green-primary);
        }

        .step-content h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 6px;
        }

        .step-content p {
            color: var(--text-secondary);
            font-size: 15px;
            line-height: 1.6;
        }

        /* ===== BOTTOM CTA ===== */
        .bottom-cta {
            padding: 80px 24px 100px;
            text-align: center;
            position: relative;
        }

        .bottom-cta::before {
            content: '';
            position: absolute;
            bottom: 0; left: 50%;
            transform: translateX(-50%);
            width: 500px; height: 500px;
            background: radial-gradient(circle, var(--green-glow) 0%, transparent 70%);
            pointer-events: none;
        }

        .cta-scanner {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 0;
            pointer-events: none;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .bottom-cta-box {
            max-width: 500px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .bottom-cta-box h2 {
            font-size: 36px;
            font-weight: 800;
            letter-spacing: -1px;
            margin-bottom: 12px;
        }

        .bottom-cta-box p {
            color: var(--text-secondary);
            font-size: 15px;
            margin-bottom: 28px;
            line-height: 1.5;
            background: rgba(10, 15, 10, 0.7);
            backdrop-filter: blur(8px);
            padding: 12px 20px;
            border-radius: 10px;
            border: 1px solid var(--border);
        }

        .bottom-cta-box .btn-primary {
            padding: 16px 40px;
            background: var(--green-primary);
            color: var(--bg-primary);
            border: none;
            border-radius: 12px;
            font-family: 'Outfit', sans-serif;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.25s;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .bottom-cta-box .btn-primary:hover {
            background: #00ff84;
            transform: translateY(-2px);
            box-shadow: 0 8px 32px var(--green-glow-strong);
        }

        /* ===== ROADMAP ===== */
        .roadmap {
            padding: 100px 24px;
            max-width: 800px;
            margin: 0 auto;
        }

        .roadmap-timeline {
            position: relative;
            margin-top: 12px;
        }

        .roadmap-phase {
            display: flex;
            gap: 28px;
            padding-bottom: 48px;
        }

        .roadmap-phase:last-child {
            padding-bottom: 0;
        }

        /* Timeline marker */
        .phase-marker {
            display: flex;
            flex-direction: column;
            align-items: center;
            min-width: 24px;
            position: relative;
        }

        .phase-dot {
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: var(--bg-card);
            border: 2px solid var(--text-dim);
            position: relative;
            z-index: 2;
            flex-shrink: 0;
            margin-top: 4px;
        }

        .phase-marker.active .phase-dot {
            border-color: var(--green-primary);
            background: var(--green-primary);
            box-shadow: 0 0 12px var(--green-glow-strong), 0 0 24px var(--green-glow);
            animation: roadmap-pulse 2s ease-in-out infinite;
        }

        @keyframes roadmap-pulse {
            0%, 100% { box-shadow: 0 0 12px var(--green-glow-strong), 0 0 24px var(--green-glow); }
            50% { box-shadow: 0 0 20px var(--green-glow-strong), 0 0 40px var(--green-glow); }
        }

        .phase-line {
            width: 2px;
            flex: 1;
            background: linear-gradient(180deg, var(--border-hover) 0%, var(--border) 100%);
            margin-top: 8px;
        }

        .phase-marker.active .phase-line {
            background: linear-gradient(180deg, var(--green-primary) 0%, var(--border) 100%);
        }

        /* Phase content */
        .phase-content {
            flex: 1;
            padding-bottom: 8px;
        }

        .phase-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 12px;
            flex-wrap: wrap;
        }

        .phase-badge {
            padding: 4px 12px;
            border-radius: 6px;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.5px;
        }

        .phase-badge.active {
            background: rgba(0, 230, 118, 0.15);
            color: var(--green-primary);
            border: 1px solid rgba(0, 230, 118, 0.3);
        }

        .phase-badge.upcoming {
            background: rgba(79, 195, 247, 0.12);
            color: var(--blue);
            border: 1px solid rgba(79, 195, 247, 0.25);
        }

        .phase-badge.future {
            background: rgba(186, 104, 255, 0.1);
            color: #BA68FF;
            border: 1px solid rgba(186, 104, 255, 0.2);
        }

        .phase-date {
            font-size: 13px;
            color: var(--text-dim);
            font-weight: 500;
            font-family: 'JetBrains Mono', monospace;
        }

        .phase-content h3 {
            font-size: 22px;
            font-weight: 800;
            letter-spacing: -0.5px;
            margin-bottom: 8px;
        }

        .phase-desc {
            color: var(--text-secondary);
            font-size: 15px;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .phase-features {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .phase-features li {
            display: flex;
            gap: 14px;
            padding: 16px;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 12px;
            transition: all 0.2s;
        }

        .phase-features li:hover {
            border-color: var(--border-hover);
            background: var(--bg-card-hover);
        }

        .pf-icon {
            font-size: 20px;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .phase-features li strong {
            display: block;
            font-size: 14px;
            font-weight: 700;
            margin-bottom: 4px;
            color: var(--text-primary);
        }

        .phase-features li span {
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.5;
        }

        /* ===== FAQ ===== */
        .faq {
            padding: 100px 24px;
            max-width: 700px;
            margin: 0 auto;
        }

        .faq-item {
            border-bottom: 1px solid var(--border);
            padding: 22px 0;
            cursor: pointer;
        }

        .faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 15px;
            font-weight: 600;
            transition: color 0.2s;
        }

        .faq-question:hover { color: var(--green-primary); }

        .faq-question .arrow {
            transition: transform 0.3s;
            color: var(--text-dim);
            font-size: 20px;
        }

        .faq-item.open .arrow { transform: rotate(45deg); }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s, padding 0.3s;
            color: var(--text-secondary);
            font-size: 14px;
            line-height: 1.7;
        }

        .faq-item.open .faq-answer {
            max-height: 200px;
            padding-top: 14px;
        }

        /* ===== FOOTER ===== */
        footer {
            padding: 40px 24px;
            border-top: 1px solid var(--border);
        }

        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .footer-links {
            display: flex;
            gap: 24px;
        }

        .footer-links a {
            color: var(--text-dim);
            text-decoration: none;
            font-size: 13px;
            transition: color 0.2s;
        }

        .footer-links a:hover { color: var(--green-primary); }

        .footer-copy {
            color: var(--text-dim);
            font-size: 13px;
        }

        /* ===== REVEAL ===== */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 768px) {
            nav {
                padding: 12px 16px;
                display: flex;
                align-items: center;
                justify-content: space-between;
                width: 100%;
            }

            .nav-right-mobile {
                display: flex !important;
                align-items: center;
                gap: 10px;
                flex-shrink: 0;
            }

            /* Hide desktop nav links by default on mobile */
            .nav-links {
                display: none !important;
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: rgba(6, 10, 6, 0.96);
                backdrop-filter: blur(30px);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                gap: 0;
                z-index: 1000;
                padding: 80px 24px 40px;
            }

            /* Show when open */
            .nav-links.open {
                display: flex !important;
                height: 475px;
            }

            .nav-links a {
                font-size: 22px !important;
                font-weight: 600 !important;
                padding: 16px 0 !important;
                color: var(--text-primary) !important;
                border-bottom: 1px solid var(--border);
                width: 100%;
                text-align: center;
                letter-spacing: 0 !important;
            }

            .nav-links a:last-of-type {
                border-bottom: none;
                color: #000 !important;
            }

            .nav-links .nav-cta {
                margin-top: 20px !important;
                padding: 16px 40px !important;
                border-radius: 12px !important;
                font-size: 18px !important;
                width: auto;
                border-bottom: none;
            }

            .nav-links .lang-switcher {
                margin-top: 24px;
                display: flex !important;
            }

            /* Show mobile elements */
            .hamburger { display: flex !important; }

            .nav-logo {
                flex-shrink: 1;
                min-width: 0;
            }
            .mobile-only { display: flex; }
            .desktop-only { display: none !important; }

            .hero { padding: 80px 16px 40px; min-height: auto; }
            .hero-float { display: none; }

            .hero-waitlist { padding: 20px 16px 18px; margin-bottom: 28px; }
            .waitlist-form { flex-direction: column; }
            .waitlist-header { gap: 8px; }

            .hero h1 { letter-spacing: -1.5px; }

            .features-grid { grid-template-columns: 1fr; }

            .step { flex-direction: column; gap: 12px; }

            .roadmap-phase { gap: 16px; }
            .phase-content h3 { font-size: 18px; }
            .phase-features li { padding: 12px; }

            .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
        }

        @media (max-width: 1024px) and (min-width: 769px) {
            .features-grid { grid-template-columns: repeat(2, 1fr); }
        }