    :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;
            will-change: auto;
            contain: strict;
        }

        /* ===== 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;
            contain: strict;
        }

        .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 {
            will-change: transform;
            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;
            will-change: transform, opacity;
        }

        .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;
            will-change: transform;
        }

        @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-waitlist {
            background: rgba(6, 10, 6, 0.82);
            backdrop-filter: blur(24px);
            -webkit-backdrop-filter: blur(24px);
            border: 1.5px solid rgba(0, 230, 118, 0.3);
            border-radius: 24px;
            padding: 32px 36px 28px;
            margin-bottom: 40px;
            position: relative;
            overflow: hidden;
            animation: fadeInDown 0.6s ease;
            box-shadow:
                0 0 0 1px rgba(0, 230, 118, 0.06),
                0 8px 60px rgba(0, 0, 0, 0.7),
                0 0 60px rgba(0, 230, 118, 0.06);
            transition: box-shadow 0.4s ease, border-color 0.4s ease;
        }

        /* Ambient glow corners */
        .hero-waitlist::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse 60% 40% at 50% 0%, rgba(0, 230, 118, 0.09) 0%, transparent 70%),
                radial-gradient(ellipse 40% 30% at 100% 100%, rgba(0, 230, 118, 0.04) 0%, transparent 60%);
            pointer-events: none;
        }

        /* Top accent line — animated */
        .hero-waitlist::after {
            content: '';
            position: absolute;
            top: 0; left: 10%; right: 10%;
            height: 2px;
            background: linear-gradient(90deg,
                transparent,
                rgba(0, 230, 118, 0.6) 30%,
                rgba(0, 230, 118, 1) 50%,
                rgba(0, 230, 118, 0.6) 70%,
                transparent);
            border-radius: 0 0 2px 2px;
            animation: line-shimmer 3s ease-in-out infinite;
        }

        @keyframes line-shimmer {
            0%, 100% { opacity: 0.6; left: 20%; right: 20%; }
            50% { opacity: 1; left: 5%; right: 5%; }
        }

        /* Idle ambient pulse */
        @keyframes waitlist-idle {
            0%, 100% { box-shadow: 0 0 0 1px rgba(0,230,118,0.06), 0 8px 40px rgba(0,0,0,0.4), 0 0 60px rgba(0,230,118,0.06); }
            50% { box-shadow: 0 0 0 1px rgba(0,230,118,0.10), 0 8px 40px rgba(0,0,0,0.4), 0 0 80px rgba(0,230,118,0.12); }
        }

        .hero-waitlist:not(.glow-attention):not(.glow-fade) {
            animation: fadeInDown 0.6s ease, waitlist-idle 4s ease-in-out 0.8s infinite;
        }

        /* Glow attention animation */
        .hero-waitlist.glow-attention {
            box-shadow:
                0 0 0 2px rgba(0, 230, 118, 0.5),
                0 0 40px rgba(0, 230, 118, 0.5),
                0 0 80px rgba(0, 230, 118, 0.25),
                0 0 120px rgba(0, 230, 118, 0.1);
            border-color: rgba(0, 230, 118, 0.7);
            transition: box-shadow 0.15s ease-in, border-color 0.15s ease-in;
        }

        .hero-waitlist.glow-fade {
            box-shadow: 0 0 0 1px rgba(0,230,118,0.06), 0 8px 40px rgba(0,0,0,0.4), 0 0 60px rgba(0,230,118,0.06);
            border-color: rgba(0, 230, 118, 0.3);
            transition: box-shadow 1.2s ease-out, border-color 1.2s ease-out;
        }

        /* ===== WAITLIST HEADER ===== */
        .waitlist-header {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 14px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }

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

        @keyframes tag-pulse {
            from { box-shadow: 0 0 6px rgba(255, 215, 64, 0.08); opacity: 0.85; }
            to   { box-shadow: 0 0 18px rgba(255, 215, 64, 0.28); opacity: 1; }
        }

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

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

        /* ===== INPUT AREA ===== */
        .waitlist-input-wrap {
            position: relative;
            margin-bottom: 10px;
        }

        /* Glowing border track */
        .waitlist-input-wrap::before {
            content: '';
            position: absolute;
            inset: -1px;
            border-radius: 15px;
            background: linear-gradient(135deg,
                rgba(0, 230, 118, 0.5),
                rgba(79, 195, 247, 0.3),
                rgba(0, 230, 118, 0.5));
            background-size: 200% 200%;
            animation: border-flow 3s ease infinite;
            opacity: 0;
            transition: opacity 0.3s;
            pointer-events: none;
            z-index: 0;
        }

        .waitlist-input-wrap:focus-within::before {
            opacity: 1;
        }

        @keyframes border-flow {
            0%   { background-position: 0% 50%; }
            50%  { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        .waitlist-form {
            display: flex;
            gap: 10px;
            position: relative;
            z-index: 1;
        }

        .waitlist-form input {
            flex: 1;
            padding: 15px 20px;
            background: rgba(8, 12, 8, 0.9);
            border: 1.5px solid rgba(0, 230, 118, 0.2);
            border-radius: 13px;
            color: var(--text-primary);
            font-family: 'Outfit', sans-serif;
            font-size: 15px;
            outline: none;
            transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
            position: relative;
            z-index: 1;
        }

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

        .waitlist-form input:hover {
            border-color: rgba(0, 230, 118, 0.35);
            background: rgba(10, 15, 10, 0.95);
        }

        .waitlist-form input:focus {
            border-color: rgba(0, 230, 118, 0.7);
            background: rgba(6, 10, 6, 0.98);
            box-shadow:
                0 0 0 3px rgba(0, 230, 118, 0.1),
                0 0 20px rgba(0, 230, 118, 0.08),
                inset 0 1px 0 rgba(0, 230, 118, 0.05);
        }

        .waitlist-form input:focus::placeholder {
            color: transparent;
        }

        /* ===== CTA BUTTON ===== */
        .waitlist-form button {
            padding: 15px 28px;
            background: var(--green-primary);
            color: var(--bg-primary);
            border: none;
            border-radius: 13px;
            font-family: 'Outfit', sans-serif;
            font-size: 15px;
            font-weight: 800;
            cursor: pointer;
            transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
            white-space: nowrap;
            position: relative;
            overflow: hidden;
            letter-spacing: 0.2px;
            box-shadow:
                0 4px 20px rgba(0, 230, 118, 0.35),
                0 1px 0 rgba(255,255,255,0.15) inset;
        }

        /* Shine sweep */
        .waitlist-form button::before {
            content: '';
            position: absolute;
            top: 0; left: -100%;
            width: 60%;
            height: 100%;
            background: linear-gradient(90deg,
                transparent,
                rgba(255,255,255,0.25),
                transparent);
            animation: btn-shine 2.5s ease-in-out infinite;
            pointer-events: none;
        }

        @keyframes btn-shine {
            0%   { left: -100%; }
            40%, 100% { left: 160%; }
        }

        /* Pulse ring on idle */
        .waitlist-form button::after {
            content: '';
            position: absolute;
            inset: -3px;
            border-radius: 15px;
            border: 1.5px solid rgba(0, 230, 118, 0.4);
            animation: btn-ring 2.5s ease-in-out infinite;
            pointer-events: none;
        }

        @keyframes btn-ring {
            0%   { transform: scale(1);   opacity: 0.7; }
            70%  { transform: scale(1.06); opacity: 0; }
            100% { transform: scale(1.06); opacity: 0; }
        }

        .waitlist-form button:hover {
            background: #1aff94;
            transform: translateY(-2px);
            box-shadow:
                0 8px 32px rgba(0, 230, 118, 0.5),
                0 1px 0 rgba(255,255,255,0.2) inset;
        }

        .waitlist-form button:active {
            transform: translateY(0);
            box-shadow: 0 4px 16px rgba(0, 230, 118, 0.3);
        }

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

        .waitlist-form button:disabled::before,
        .waitlist-form button:disabled::after {
            display: none;
        }

        /* ===== SOCIAL PROOF STRIP ===== */
        .waitlist-social-proof {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            margin-bottom: 10px;
        }

        .proof-avatars {
            display: flex;
        }

        .proof-avatars img {
            width: 26px;
            height: 26px;
            border-radius: 50%;
            border: 2px solid rgba(6, 10, 6, 0.95);
            margin-left: -8px;
            object-fit: cover;
            display: block;
            box-shadow: 0 0 0 1px rgba(0, 230, 118, 0.15);
        }

        .proof-avatars img:first-child { margin-left: 0; }

        .proof-text {
            font-size: 12px;
            color: var(--text-secondary);
        }

        .proof-text strong {
            color: var(--green-primary);
            font-family: 'JetBrains Mono', monospace;
        }

        /* ===== META ROW ===== */
        .waitlist-meta {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            font-size: 11.5px;
            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;
            box-shadow: 0 0 6px rgba(0, 230, 118, 0.6);
        }

        .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);
        }

        .waitlist-meta .trust-item {
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .waitlist-meta .trust-item svg {
            opacity: 0.5;
        }

        /* 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: 4px 0;
            font-size: 11.5px;
            color: var(--text-dim);
        }

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

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

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

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

        /* ===== SUCCESS STATE ===== */
        .waitlist-success {
            display: none;
            padding: 20px;
            background: rgba(0, 230, 118, 0.07);
            border: 1px solid rgba(0, 230, 118, 0.25);
            border-radius: 14px;
            margin-bottom: 14px;
            text-align: center;
            animation: successPop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        @keyframes successPop {
            from { transform: scale(0.92); opacity: 0; }
            to   { transform: scale(1);    opacity: 1; }
        }

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

        .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;
            content-visibility: auto;
            contain-intrinsic-size: 0 800px;
        }

        .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: border-color 0.3s, background 0.3s, transform 0.3s;
            position: relative;
            overflow: hidden;
            contain: layout style;
        }

        .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;
            content-visibility: auto;
            contain-intrinsic-size: 0 600px;
        }

        .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;
            content-visibility: auto;
            contain-intrinsic-size: 0 1200px;
        }

        .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: border-color 0.2s, background 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;
            content-visibility: auto;
            contain-intrinsic-size: 0 500px;
        }

        .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 .nav-discord {
                font-size: 16px !important;
                padding: 10px 24px !important;
                justify-content: center !important;
                width: fit-content !important;
                margin: 4px auto 0 !important;
                border-bottom: none !important;
            }

            .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); }
        }

        /* ═══════════════════════════════════════════════════════
           SHOWCASE SECTIONS (shared base styles)
        ═══════════════════════════════════════════════════════ */
        .showcase-section {
            padding: 100px 24px;
            max-width: 1100px;
            margin: 0 auto;
        }

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

        .showcase-title {
            text-align: center;
            font-size: clamp(30px, 4vw, 46px);
            font-weight: 800;
            letter-spacing: -1.5px;
            margin-bottom: 16px;
            line-height: 1.1;
        }

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

        .showcase-desc {
            text-align: center;
            color: var(--text-secondary);
            font-size: 17px;
            max-width: 600px;
            margin: 0 auto 56px;
            line-height: 1.65;
        }

        /* ═══════════════════════════════════════════════════════
           TELEGRAM SECTION
        ═══════════════════════════════════════════════════════ */
        .tg-showcase {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: center;
        }

        /* Two screenshots side by side */
        .tg-screens {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .tg-mobile-img {
            max-height: 340px;
            object-fit: cover;
            object-position: top;
        }

        .tg-badge-mobile {
            background: rgba(0, 136, 204, 0.15);
            border-color: rgba(0, 136, 204, 0.35);
            color: #4fc3f7;
        }

        .tg-screen-wrap {
            position: relative;
        }

        .tg-screen-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 14px;
            background: rgba(0, 136, 204, 0.15);
            border: 1px solid rgba(0, 136, 204, 0.35);
            border-radius: 100px;
            font-size: 12px;
            font-weight: 600;
            color: #4fc3f7;
            margin-bottom: 16px;
        }

        .showcase-img {
            width: 100%;
            border-radius: 16px;
            border: 1px solid var(--border);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(0,230,118,0.08);
            display: block;
        }

        .tg-content {
            display: flex;
            flex-direction: column;
            gap: 32px;
        }

        .tg-steps {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .tg-step {
            display: flex;
            gap: 16px;
            align-items: flex-start;
        }

        .tg-step-icon {
            width: 42px;
            height: 42px;
            min-width: 42px;
            border-radius: 12px;
            background: var(--bg-card);
            border: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
        }

        .tg-step strong {
            display: block;
            font-size: 15px;
            font-weight: 700;
            margin-bottom: 4px;
            color: var(--text-primary);
        }

        .tg-step span {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.55;
        }

        .tg-tagline {
            display: flex;
            gap: 16px;
            padding: 20px;
            background: rgba(0, 230, 118, 0.05);
            border: 1px solid rgba(0, 230, 118, 0.2);
            border-radius: 14px;
            align-items: flex-start;
        }

        .tg-tagline-icon {
            font-size: 24px;
            flex-shrink: 0;
        }

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

        .tg-tagline p strong {
            color: var(--green-primary);
        }

        /* ═══════════════════════════════════════════════════════
           VS SECTION (Before / After)
        ═══════════════════════════════════════════════════════ */
        .vs-section {
            background: linear-gradient(180deg, transparent, rgba(0,230,118,0.02), transparent);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
            max-width: 100%;
            padding: 100px 40px;
        }

        .vs-section .showcase-title,
        .vs-section .showcase-label,
        .vs-section .showcase-desc {
            max-width: 1100px;
            margin-left: auto;
            margin-right: auto;
        }

        .vs-grid {
            max-width: 1100px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            gap: 24px;
            align-items: center;
        }

        .vs-card {
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid var(--border);
            background: var(--bg-card);
        }

        .vs-card-header {
            padding: 16px 20px 12px;
        }

        .vs-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 5px 14px;
            border-radius: 100px;
            font-size: 13px;
            font-weight: 700;
        }

        .vs-badge.bad {
            background: rgba(255, 80, 80, 0.12);
            color: #ff6b6b;
            border: 1px solid rgba(255, 80, 80, 0.25);
        }

        .vs-badge.good {
            background: rgba(0, 230, 118, 0.12);
            color: var(--green-primary);
            border: 1px solid rgba(0, 230, 118, 0.25);
        }

        .vs-img {
            width: 100%;
            display: block;
            max-height: 280px;
            object-fit: cover;
            object-position: top;
        }

        .vs-points {
            list-style: none;
            padding: 16px 20px 20px;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .vs-card.vs-bad .vs-points li {
            padding-left: 18px;
            position: relative;
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.45;
        }

        .vs-card.vs-bad .vs-points li::before {
            content: '−';
            position: absolute;
            left: 0;
            color: #ff6b6b;
            font-weight: 700;
        }

        .vs-card.vs-good .vs-points li {
            padding-left: 18px;
            position: relative;
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.45;
        }

        .vs-card.vs-good .vs-points li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--green-primary);
            font-weight: 700;
        }

        .vs-divider {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .vs-arrow {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: rgba(0,230,118,0.12);
            border: 1px solid rgba(0,230,118,0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: var(--green-primary);
            font-weight: 700;
        }

        .vs-footnote {
            max-width: 1100px;
            margin: 32px auto 0;
            text-align: center;
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.6;
            padding: 20px;
            background: rgba(0,230,118,0.04);
            border: 1px solid var(--border);
            border-radius: 12px;
        }

        /* ═══════════════════════════════════════════════════════
           PROOF OF EXPERTISE SECTION
        ═══════════════════════════════════════════════════════ */
        .proof-showcase {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 48px;
            align-items: center;
        }

        .proof-img {
            width: 100%;
            border-radius: 16px;
            border: 1px solid var(--border);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
            display: block;
        }

        .proof-text-block {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .proof-stat-row {
            display: flex;
            gap: 24px;
        }

        .proof-stat {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .proof-stat-num {
            font-size: 32px;
            font-weight: 900;
            color: var(--green-primary);
            font-family: 'JetBrains Mono', monospace;
            letter-spacing: -1px;
            line-height: 1;
        }

        .proof-stat-label {
            font-size: 13px;
            color: var(--text-dim);
            font-weight: 500;
        }

        .proof-quote {
            font-size: 16px;
            line-height: 1.7;
            color: var(--text-secondary);
            border-left: 3px solid var(--green-primary);
            padding-left: 20px;
            font-style: italic;
        }

        .proof-author {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .proof-author-info strong {
            display: block;
            font-size: 15px;
            font-weight: 700;
        }

        .proof-author-info span {
            font-size: 13px;
            color: var(--text-dim);
        }

        /* ═══════════════════════════════════════════════════════
           OFFICIAL API SECTION
        ═══════════════════════════════════════════════════════ */
        .api-showcase {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin-bottom: 36px;
        }

        .api-img-wrap {
            position: relative;
        }

        .api-img-label {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            margin-bottom: 12px;
            padding: 5px 14px;
            background: rgba(0, 230, 118, 0.1);
            border: 1px solid rgba(0, 230, 118, 0.25);
            border-radius: 100px;
            font-size: 12px;
            font-weight: 700;
            color: var(--green-primary);
            letter-spacing: 0.5px;
        }

        .api-img {
            width: 100%;
            border-radius: 14px;
            border: 1px solid var(--border);
            box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
            display: block;
        }

        .api-points {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-bottom: 36px;
            max-width: 640px;
            margin-left: auto;
            margin-right: auto;
        }

        .api-point {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 15px;
            color: var(--text-secondary);
        }

        .api-point svg { flex-shrink: 0; }

        .api-personal-notice {
            display: flex;
            gap: 20px;
            align-items: flex-start;
            padding: 28px 32px;
            background: rgba(255, 215, 64, 0.04);
            border: 1px solid rgba(255, 215, 64, 0.2);
            border-radius: 18px;
            max-width: 800px;
            margin: 0 auto;
        }

        .api-notice-icon {
            font-size: 28px;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .api-notice-content strong {
            display: block;
            font-size: 17px;
            font-weight: 800;
            color: var(--yellow);
            margin-bottom: 10px;
        }

        .api-notice-content p {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.65;
            margin-bottom: 18px;
        }

        .api-notice-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 24px;
            background: var(--green-primary);
            color: var(--bg-primary);
            border-radius: 10px;
            font-family: 'Outfit', sans-serif;
            font-size: 14px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.2s;
        }

        .api-notice-btn:hover {
            background: #1aff94;
            transform: translateY(-1px);
            box-shadow: 0 6px 24px rgba(0,230,118,0.4);
        }

        /* ═══════════════════════════════════════════════════════
           APP PREVIEW SECTION
        ═══════════════════════════════════════════════════════ */
        .app-preview-wrap {
            margin-bottom: 48px;
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid var(--border);
            box-shadow:
                0 0 0 1px rgba(0,230,118,0.07),
                0 30px 80px rgba(0,0,0,0.6);
            position: relative;
        }

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

        .app-screen-img {
            width: 100%;
            display: block;
        }

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

        .app-feat-card {
            display: flex;
            gap: 16px;
            padding: 24px;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 16px;
            transition: border-color 0.25s, background 0.25s;
        }

        .app-feat-card:hover {
            border-color: var(--border-hover);
            background: var(--bg-card-hover);
        }

        .app-feat-icon {
            width: 46px;
            height: 46px;
            min-width: 46px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .app-feat-card strong {
            display: block;
            font-size: 15px;
            font-weight: 700;
            margin-bottom: 6px;
            color: var(--text-primary);
        }

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

        /* ═══════════════════════════════════════════════════════
           RESPONSIVE — NEW SECTIONS
        ═══════════════════════════════════════════════════════ */
        @media (max-width: 768px) {
            .showcase-section { padding: 70px 16px; }
            .vs-section { padding: 70px 16px; }

            .tg-showcase { grid-template-columns: 1fr; gap: 32px; }
            .tg-screens { grid-template-columns: 1fr 1fr; gap: 10px; }

            .vs-grid { grid-template-columns: 1fr; gap: 16px; }
            .vs-divider { transform: rotate(90deg); }

            .proof-showcase { grid-template-columns: 1fr; gap: 28px; }
            .proof-stat-row { gap: 16px; flex-wrap: wrap; }

            .api-showcase { grid-template-columns: 1fr; gap: 20px; }
            .api-personal-notice { flex-direction: column; gap: 12px; padding: 20px; }

            .app-features-grid { grid-template-columns: 1fr; }
            .app-feat-card { gap: 12px; padding: 18px; }
        }

        /* ═══════════════════════════════════════════════════════
           NAV DISCORD BUTTON
        ═══════════════════════════════════════════════════════ */
        /* Hero buttons row */
        .hero-btns {
            display: flex;
            align-items: center;
            gap: 12px;
            justify-content: center;
            flex-wrap: wrap;
        }
        .hero-discord-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 22px;
            border-radius: 50px;
            background: rgba(88, 101, 242, 0.12);
            border: 1px solid rgba(88, 101, 242, 0.4);
            color: #8b98f8;
            font-size: 15px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.25s ease;
            white-space: nowrap;
        }
        .hero-discord-btn:hover {
            background: rgba(88, 101, 242, 0.25);
            border-color: rgba(88, 101, 242, 0.7);
            color: #b0b9fc;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(88, 101, 242, 0.2);
        }

        .nav-discord {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 6px 14px;
            border-radius: 8px;
            background: rgba(88, 101, 242, 0.15);
            border: 1px solid rgba(88, 101, 242, 0.35);
            color: #7b89f4 !important;
            font-size: 14px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.2s ease;
            width: fit-content;
            margin: 0 auto;
        }
        .nav-discord:hover {
            background: rgba(88, 101, 242, 0.28);
            border-color: rgba(88, 101, 242, 0.6);
            color: #a5aff8 !important;
            transform: translateY(-1px);
        }

        /* ═══════════════════════════════════════════════════════
           SOCIAL SECTION
        ═══════════════════════════════════════════════════════ */
        .social-section {
            padding: 100px 20px;
            background: linear-gradient(180deg, #0a0e0a 0%, #060a06 100%);
            text-align: center;
        }
        .social-inner {
            max-width: 900px;
            margin: 0 auto;
        }
        .social-label {
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--green-primary);
            margin-bottom: 12px;
        }
        .social-title {
            font-size: clamp(28px, 5vw, 42px);
            font-weight: 800;
            color: var(--text-primary);
            margin-bottom: 14px;
        }
        .social-desc {
            font-size: 16px;
            color: var(--text-secondary);
            margin-bottom: 48px;
            max-width: 520px;
            margin-left: auto;
            margin-right: auto;
        }
        .social-links {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .social-card {
            display: flex;
            align-items: center;
            gap: 18px;
            padding: 18px 24px;
            border-radius: 14px;
            border: 1px solid rgba(255,255,255,0.07);
            background: rgba(255,255,255,0.03);
            text-decoration: none;
            transition: all 0.25s ease;
            position: relative;
            overflow: hidden;
        }
        .social-card::before {
            content: '';
            position: absolute;
            inset: 0;
            opacity: 0;
            transition: opacity 0.25s ease;
        }
        .social-card:hover { transform: translateX(6px); }
        .social-card:hover::before { opacity: 1; }

        .social-card.discord { border-color: rgba(88,101,242,0.25); }
        .social-card.discord::before { background: linear-gradient(90deg, rgba(88,101,242,0.08) 0%, transparent 60%); }
        .social-card.discord:hover { border-color: rgba(88,101,242,0.5); }
        .social-card.discord .social-icon { color: #5865F2; background: rgba(88,101,242,0.12); }

        .social-card.youtube { border-color: rgba(255,0,0,0.2); }
        .social-card.youtube::before { background: linear-gradient(90deg, rgba(255,0,0,0.07) 0%, transparent 60%); }
        .social-card.youtube:hover { border-color: rgba(255,0,0,0.4); }
        .social-card.youtube .social-icon { color: #FF0000; background: rgba(255,0,0,0.1); }

        .social-card.twitter { border-color: rgba(255,255,255,0.15); }
        .social-card.twitter::before { background: linear-gradient(90deg, rgba(255,255,255,0.05) 0%, transparent 60%); }
        .social-card.twitter:hover { border-color: rgba(255,255,255,0.3); }
        .social-card.twitter .social-icon { color: #e7e7e7; background: rgba(255,255,255,0.08); }

        .social-card.instagram { border-color: rgba(225,48,108,0.2); }
        .social-card.instagram::before { background: linear-gradient(90deg, rgba(225,48,108,0.07) 0%, transparent 60%); }
        .social-card.instagram:hover { border-color: rgba(225,48,108,0.45); }
        .social-card.instagram .social-icon { color: #E1306C; background: rgba(225,48,108,0.1); }

        .social-card.tiktok { border-color: rgba(105,201,208,0.2); }
        .social-card.tiktok::before { background: linear-gradient(90deg, rgba(105,201,208,0.07) 0%, transparent 60%); }
        .social-card.tiktok:hover { border-color: rgba(105,201,208,0.45); }
        .social-card.tiktok .social-icon { color: #69C9D0; background: rgba(105,201,208,0.1); }

        .social-icon {
            width: 52px;
            height: 52px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            position: relative;
            z-index: 1;
        }
        .social-info {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 3px;
            flex: 1;
            position: relative;
            z-index: 1;
        }
        .social-name {
            font-size: 16px;
            font-weight: 700;
            color: var(--text-primary);
        }
        .social-handle {
            font-size: 13px;
            color: var(--text-secondary);
        }
        .social-arrow {
            font-size: 20px;
            color: var(--text-secondary);
            opacity: 0.5;
            transition: all 0.2s ease;
            position: relative;
            z-index: 1;
        }
        .social-card:hover .social-arrow {
            opacity: 1;
            transform: translateX(4px);
        }

        @media (max-width: 768px) {
            .social-section { padding: 70px 16px; }
            .social-card { padding: 14px 16px; gap: 14px; }
            .social-icon { width: 44px; height: 44px; }
            .social-name { font-size: 15px; }
        }

        /* ═══════════════════════════════════════════════════════
           EXIT INTENT POPUP
        ═══════════════════════════════════════════════════════ */
        .exit-popup-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.75);
            backdrop-filter: blur(4px);
            z-index: 9998;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
        }
        .exit-popup-overlay.active {
            opacity: 1;
            pointer-events: all;
        }
        body.popup-open,
        body.popup-open *,
        body.popup-open a,
        body.popup-open button {
            cursor: auto !important;
        }
        .exit-popup {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -44%) scale(0.94);
            z-index: 9999;
            width: 90%;
            max-width: 420px;
            opacity: 0;
            pointer-events: none;
            transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
        }
        .exit-popup.active {
            opacity: 1;
            pointer-events: all;
            transform: translate(-50%, -50%) scale(1);
        }
        .exit-popup-inner {
            background: #0f1410;
            border: 1px solid rgba(88,101,242,0.3);
            border-radius: 20px;
            padding: 40px 36px;
            text-align: center;
            position: relative;
            box-shadow: 0 0 60px rgba(88,101,242,0.15), 0 30px 80px rgba(0,0,0,0.6);
        }
        .exit-popup-close {
            position: absolute;
            top: 14px;
            right: 16px;
            background: none;
            border: none;
            color: var(--text-secondary);
            font-size: 18px;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 6px;
            transition: all 0.15s ease;
            line-height: 1;
        }
        .exit-popup-close:hover { color: var(--text-primary); background: rgba(255,255,255,0.08); }
        .exit-popup-icon {
            width: 72px;
            height: 72px;
            background: rgba(88,101,242,0.12);
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            border: 1px solid rgba(88,101,242,0.25);
        }
        .exit-popup-inner h3 {
            font-size: 22px;
            font-weight: 800;
            color: var(--text-primary);
            margin-bottom: 10px;
        }
        .exit-popup-inner p {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.6;
            margin-bottom: 24px;
        }
        .exit-popup-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            padding: 14px 24px;
            background: #5865F2;
            color: #fff;
            font-size: 15px;
            font-weight: 700;
            border-radius: 10px;
            text-decoration: none;
            transition: all 0.2s ease;
            margin-bottom: 12px;
        }
        .exit-popup-btn:hover { background: #4752c4; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(88,101,242,0.35); }
        .exit-popup-skip {
            background: none;
            border: none;
            color: var(--text-secondary);
            font-size: 13px;
            cursor: pointer;
            padding: 6px;
            transition: color 0.15s ease;
            width: 100%;
            text-align: center;
        }
        .exit-popup-skip:hover { color: var(--text-primary); }