/* ============================================================
   DESIGN SYSTEM — single source of truth for the marketing site.
   ------------------------------------------------------------
   Every token below is consumable via `var(--token-name)`. The
   point isn't to refactor every existing rule today; it's to give
   future additions a stable foundation so the page stays visually
   coherent as new sections land. Existing rules elsewhere keep
   working unchanged — these tokens are purely additive.
   ============================================================ */
html {
    zoom: 0.9;
}

:root {
    /* ── Color palette (dark-first) ─────────────────────────── */
    --color-canvas:        #020005;    /* page background */
    --color-canvas-soft:   #0a050f;    /* one step lighter */
    --color-surface-0:     rgba(255,255,255,0.02);
    --color-surface-1:     rgba(255,255,255,0.04);
    --color-surface-2:     rgba(255,255,255,0.06);

    --color-line-soft:     rgba(255,255,255,0.05);
    --color-line:          rgba(255,255,255,0.10);
    --color-line-strong:   rgba(255,255,255,0.18);

    --color-text:          #ffffff;
    --color-text-muted:    #a1a1aa;
    --color-text-faint:    #52525b;

    --color-accent-purple: #a855f7;
    --color-accent-cyan:   #00e5ff;
    --color-accent-pink:   #ec4899;
    --color-accent-amber:  #fbbf24;
    --color-success:       #22c55e;
    --color-danger:        #ef4444;

    --gradient-headline:   linear-gradient(135deg, #fff 0%, #c084fc 45%, #00e5ff 100%);
    --gradient-cta:        linear-gradient(90deg, #7e22ce 0%, #06b6d4 100%);
    --gradient-cta-hover:  linear-gradient(90deg, #9333ea 0%, #0891b2 100%);

    /* ── Glow tints used for ambient lighting ───────────────── */
    --glow-purple:         rgba(168,85,247,0.30);
    --glow-cyan:           rgba(0,229,255,0.30);

    /* ── Type scale (modular 1.25 ratio, anchor 16px body) ──── */
    --font-sans:           'Inter', -apple-system, BlinkMacSystemFont,
                           'SF Pro Display', sans-serif;
    --font-mono:           'SF Mono', 'JetBrains Mono', 'Consolas', monospace;

    --fs-display:          clamp(3.5rem, 7vw, 6.5rem);   /* hero h1 */
    --fs-h1:               clamp(2.5rem, 5vw, 4rem);
    --fs-h2:               clamp(2rem, 3.5vw, 3rem);
    --fs-h3:               clamp(1.5rem, 2.5vw, 2rem);
    --fs-body-lg:          1.125rem;
    --fs-body:             1rem;
    --fs-body-sm:          0.875rem;
    --fs-caption:          0.75rem;
    --fs-eyebrow:          0.6875rem;   /* uppercase labels */

    --tracking-tight:      -0.04em;     /* display headlines */
    --tracking-normal:     0;
    --tracking-wide:       0.08em;
    --tracking-eyebrow:    0.2em;

    --leading-display:     0.95;
    --leading-tight:       1.15;
    --leading-body:        1.6;

    /* ── Spacing scale (8pt rhythm) ─────────────────────────── */
    --space-1:             0.25rem;     /* 4 */
    --space-2:             0.5rem;      /* 8 */
    --space-3:             0.75rem;     /* 12 */
    --space-4:             1rem;        /* 16 */
    --space-6:             1.5rem;      /* 24 */
    --space-8:             2rem;        /* 32 */
    --space-12:            3rem;        /* 48 */
    --space-16:            4rem;        /* 64 */
    --space-24:            6rem;        /* 96 */
    --space-32:            8rem;        /* 128 */

    /* ── Radii ───────────────────────────────────────────────── */
    --radius-sm:           8px;
    --radius-md:           14px;
    --radius-lg:           20px;
    --radius-xl:           28px;
    --radius-pill:         9999px;

    /* ── Motion tokens ──────────────────────────────────────── */
    --ease-out-quart:      cubic-bezier(0.25, 1, 0.5, 1);
    --ease-out-expo:       cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring:         cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --ease-in-out-quart:   cubic-bezier(0.76, 0, 0.24, 1);

    --dur-fast:            180ms;
    --dur-base:            320ms;
    --dur-slow:            560ms;
    --dur-very-slow:       1000ms;

    /* ── Z-index ladder ─────────────────────────────────────── */
    --z-bg:                -10;
    --z-base:              0;
    --z-content:           10;
    --z-overlay:           20;
    --z-nav:               50;
    --z-progress:          60;
    --z-modal:             70;
    --z-cursor:            999;
}

@media (prefers-reduced-motion: reduce) {
    :root {
        --dur-fast: 0ms;
        --dur-base: 0ms;
        --dur-slow: 0ms;
        --dur-very-slow: 0ms;
    }
}

/* ============================================================
   AUTO ZOOM-OUT @ desktop+ — bikin landing page kelihatan lebih
   "lega" di laptop FullHD/1080p tanpa user harus tekan Ctrl+- .
   Mobile + tablet tetap 100% biar konten tetap kebaca normal.
   `zoom` is now standardized (W3C CSS Containment 3) and works in
   Chrome / Edge / Safari / Firefox 126+.
   ============================================================ */
@media (min-width: 1024px) {
    html {
        zoom: 0.9;
    }
}

body {
    font-family: var(--font-sans);
    background-color: var(--color-canvas);
    color: var(--color-text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-feature-settings: "ss01", "cv11", "ss03";
}

/* Deep Purple to Black Gradient Background */
.bg-universe {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    z-index: -1;
    background: 
        radial-gradient(100% 100% at 50% 0%, rgba(30, 0, 51, 0.8) 0%, rgba(5, 0, 10, 0.9) 50%, #000000 100%);
}

/* Grid Pattern (Tech Vibe) */
/* Animasi Grid yang gerak perlahan */
.bg-grid {
    background-image: 
        linear-gradient(to right, rgba(168, 85, 247, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(168, 85, 247, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    perspective: 1000px;
    transform-style: preserve-3d;
}

/* Orb cahaya yang bakal kita gerakin pake GSAP */
#dynamic-orb {
    position: fixed;
    width: 60vw;
    height: 60vw;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    opacity: 0.15;
    pointer-events: none;
    transition: background 1s ease;
}

/* Orbs Animasi */
.glow-orb-purple {
    position: absolute; width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.15) 0%, transparent 70%);
    filter: blur(60px); z-index: -1; border-radius: 50%;
    animation: float-slow 8s infinite alternate;
}
.glow-orb-cyan {
    position: absolute; width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.1) 0%, transparent 70%);
    filter: blur(60px); z-index: -1; border-radius: 50%;
    animation: float-slow 10s infinite alternate-reverse;
}

@keyframes float-slow {
    0% { transform: translateY(0) translateX(0); }
    100% { transform: translateY(-50px) translateX(30px); }
}

/* GLASSMORPHISM CORE */
.glass-panel {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.glass-panel:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(168, 85, 247, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(168, 85, 247, 0.15);
}

/* Gradasi Teks */
.text-gradient {
    background: linear-gradient(90deg, #a855f7, #00e5ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Image Placeholder Mac Style */
.mac-image-container {
    background: #050505;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
}

/* Animasi Baru */
.reveal { opacity: 0; transform: translateY(40px); }

#cursor-blur {
    height: 300px; width: 300px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.2) 0%, transparent 60%);
    position: fixed; pointer-events: none; z-index: -1; transform: translate(-50%, -50%);
    filter: blur(40px);
}

#cursor-aura {
    height: 500px;
    width: 500px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.08) 0%, transparent 70%);
    position: fixed;
    pointer-events: none;
    z-index: -2; /* Di bawah kursor utama biar makin deep */
    transform: translate(-50%, -50%);
    filter: blur(80px);
    transition: opacity 0.5s ease;
}

/* Efek pas kursor keluar dari layar biar nggak nyangkut */
.hide-cursor { opacity: 0; }

/* Bungkusan luar buat nahan overflow dan ngasih efek bayangan di pinggir */
.elite-marquee-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 40px 0;
    margin: 30px 0;
}

/* Efek bayangan gelap (fade) di kiri dan kanan biar gesernya smooth ngilang */
.elite-marquee-wrapper::before,
.elite-marquee-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
.elite-marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #0d0d12 0%, transparent 100%); /* Sesuai warna background dashboard lu */
}
.elite-marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #0d0d12 0%, transparent 100%);
}

/* Track yang bakal jalan terus ke kiri */
.elite-marquee-track {
    display: flex;
    gap: 20px; /* Jarak antar card */
    width: max-content;
    /* Kecepatan geser 30 detik, linear biar stabil, infinite biar gak putus */
    animation: infinite-scroll 30s linear infinite;
}

/* Kalau di-hover mouse, dia berhenti bentar biar user bisa baca */
.elite-marquee-wrapper:hover .elite-marquee-track {
    animation-play-state: paused;
}

/* DESAIN GLASSMORPHISM 3D GACOR */
.glass-review-card {
    width: 320px;
    padding: 25px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    
    /* Border ala kaca 3D (terang di atas/kiri, gelap di bawah) */
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    
    /* Efek melayang 3D */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1), border-color 0.4s ease;
}

.glass-review-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(0, 229, 255, 0.4);
    box-shadow: 0 20px 40px rgba(0, 229, 255, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Animasi Pergeserannya */
@keyframes infinite-scroll {
    0% { transform: translateX(0); }
    /* Geser persis setengah dari total panjang konten, biar pas nyambung gak patah */
    100% { transform: translateX(calc(-50% - 10px)); } 
}

/* --- ELITE 3D GLASS EFFECT --- */
.glass-3d-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    transform-style: preserve-3d;
}

.glass-3d-card:hover {
    transform: translateY(-10px) rotateX(2deg) rotateY(-2deg);
    box-shadow: 0 40px 80px rgba(168, 85, 247, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(168, 85, 247, 0.4);
}

/* --- INTERACTIVE LIST ITEM --- */
.feature-item {
    padding: 16px;
    border-radius: 16px;
    transition: all 0.4s ease;
    border: 1px solid transparent;
    background: transparent;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 229, 255, 0.1);
    transform: translateX(10px);
    box-shadow: -5px 5px 20px rgba(0, 0, 0, 0.2);
}

.feature-icon-box {
    background: linear-gradient(135deg, rgba(255,255,255,0.05), transparent);
    box-shadow: inset 0 1px 1px rgba(255,255,255,0.2);
    transition: all 0.4s ease;
}

.feature-item:hover .feature-icon-box.purple-glow {
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.6), inset 0 1px 1px rgba(255,255,255,0.4);
    color: #fff;
}
.feature-item:hover .feature-icon-box.cyan-glow {
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.6), inset 0 1px 1px rgba(255,255,255,0.4);
    color: #fff;
}
.feature-item:hover .feature-icon-box.yellow-glow {
    box-shadow: 0 0 20px rgba(250, 204, 21, 0.6), inset 0 1px 1px rgba(255,255,255,0.4);
    color: #fff;
}

/* Text gradient animasi */
.text-gradient-gacor {
    background: linear-gradient(to right, #fff, #a855f7, #00e5ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: shine 5s linear infinite;
}

@keyframes shine {
    to { background-position: 200% center; }
}

/* Efek Gambar Melayang (Floating) */
.floating-img {
    animation: float-img 6s ease-in-out infinite;
}
@keyframes float-img {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(1deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

        /* --- ELITE 3D WALL STREET TICKER --- */
.ticker-wrapper {
    width: 100%;
    overflow: hidden;
    background: linear-gradient(180deg, #050508 0%, #0a0a10 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 2px solid rgba(0, 0, 0, 0.8);
    box-shadow: inset 0 5px 15px rgba(0,0,0,0.8), 0 10px 30px rgba(0,0,0,0.5);
    padding: 10px 0;
    position: absolute;
    top: 70px;
    left: 0;
    z-index: 40;
}
.ticker-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: ticker-scroll 40s linear infinite;
}
.ticker-wrapper:hover .ticker-track {
    animation-play-state: paused;
}
@keyframes ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 15px)); } 
}
.ticker-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'SF Mono', 'Consolas', monospace; /* Font terminal */
    font-size: 13px;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 6px;
    background: linear-gradient(145deg, rgba(20,20,30,0.8), rgba(5,5,10,0.9));
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.5), 0 4px 8px rgba(0,0,0,0.4); /* Efek masuk ke dalam layar */
    cursor: default;
    transition: transform 0.2s;
}
.ticker-item:hover {
    transform: scale(1.05);
    border-color: rgba(168, 85, 247, 0.5);
}
.ticker-symbol { color: #8b8b99; letter-spacing: 1px; }

/* Status Warna Text Harga */
.price-neutral { color: #e5e7eb; transition: color 0.3s; }
.flash-up { color: #00ff88 !important; text-shadow: 0 0 12px rgba(0, 255, 136, 0.8); transition: none; }
.flash-down { color: #ff0055 !important; text-shadow: 0 0 12px rgba(255, 0, 85, 0.8); transition: none; }

/* Titik Merah Berkedip */
.live-dot {
    width: 6px;
    height: 6px;
    background-color: #ff0055;
    border-radius: 50%;
    box-shadow: 0 0 8px #ff0055;
    animation: blink 1s infinite alternate;
}
@keyframes blink {
    0% { opacity: 0.3; transform: scale(0.8); }
    100% { opacity: 1; transform: scale(1.2); }
}

/* --- ELITE BACKGROUND AUTO-SCROLL (MARQUEE) --- */
.bg-auto-text-container {
    /* Kita kasih opacity super kecil biar gak ganggu teks utama */
    opacity: 0.03; /* Cuma 3% keliatan! */
    mix-blend-mode: overlay; /* Biar nge-blend sama background gradient */
}
.bg-auto-text-track {
    display: flex;
    width: max-content;
    /* Kita bikin jalannya super lambat: 120 detik per putaran! */
    animation: bg-scroll-auto 120s linear infinite;
}
.bg-auto-text-item {
    font-size: 250px; /* Teks Raksasa */
    font-weight: 900;
    text-transform: uppercase;
    white-space: nowrap;
    color: rgba(255, 255, 255, 0.4); /* Text tipis, bukan solid white */
    letter-spacing: -5px; /* tracking super rapet ala web elite */
    margin-right: 50px; /* Jarak antar duplikat */
}

/* Mesin Animasi Jalannya */
@keyframes bg-scroll-auto {
    0% { transform: translateX(0); }
    /* Geser separuh dari total panjang teks biar loopnya mulus */
    100% { transform: translateX(calc(-50% - 25px)); }
}

        /* --- APPLE GLASSY TEXT GLOW --- */
.text-glassy-glow {
    /* Bikin warna putihnya gak flat, tapi gradasi dari putih bersih ke abu-abu silver ala material kaca */
    background: linear-gradient(180deg, #ffffff 0%, #a1a1aa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    
    /* Glow putih yang nyebar luas tapi tipis (15% opacity), gak bikin pedih di mata */
    filter: drop-shadow(0px 8px 32px rgba(255, 255, 255, 0.15));
}

.text-gradient-glassy {
    /* Gradasi ungu ke cyan yang sama, tapi ditimpa efek clipping */
    background: linear-gradient(90deg, #a855f7 0%, #00e5ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    
    /* Glow ungu/cyan yang elegan buat ngangkat teks dari background gelap */
    filter: drop-shadow(0px 8px 40px rgba(168, 85, 247, 0.35));
}

@keyframes spin-neon {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.animate-spin-neon {
    animation: spin-neon 3s linear infinite;
}

.marquee-wrapper {
        width: 100%;
        mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    }
    .feature-card {
        min-width: 300px;
        height: 180px;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 16px;
        overflow: hidden;
        transition: transform 0.3s ease, border-color 0.3s ease;
    }
    .feature-card:hover {
        transform: scale(1.05);
        border-color: #a855f7;
        z-index: 10;
    }
    .feature-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .animate-scroll-left {
        animation: scroll-left 40s linear infinite;
    }
    .animate-scroll-right {
        animation: scroll-right 40s linear infinite;
    }
    @keyframes scroll-left {
        from { transform: translateX(0); }
        to { transform: translateX(-50%); }
    }
    @keyframes scroll-right {
        from { transform: translateX(-50%); }
        to { transform: translateX(0); }
    }

#master-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -10;
    background: #020005; /* Warna dasar void */
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Overlay buat bikin gambar chart di belakang tetep gelap & elite */
#master-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(2,0,5,0.8), rgba(2,0,5,0.9));
}

.bg-grid-pattern {
    background-image: radial-gradient(rgba(168, 85, 247, 0.2) 1px, transparent 1px);
    background-size: 40px 40px;
}

.dual-zone-bg {
        position: absolute;
        inset: 0;
        z-index: -1;
        width: 100%;
        height: 100%;
        pointer-events: none;
    }
.zone-top {
    position: absolute;
    top: 0;
    width: 100%;
    height: 60%;
    /* GANTI URL DI BAWAH INI */
    background-image: url('Screenshot 2026-04-25 175301.png');
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    filter: blur(3px);
    opacity: 1; /* Transparansi gambar (0.0 sampai 1.0) */
}
.zone-bottom {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 60%;
    /* GANTI URL DI BAWAH INI */
    background-image: url('Screenshot 2026-04-25 175331.png');
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    filter: blur(1px);
    opacity: 1; /* Transparansi gambar (0.0 sampai 1.0) */
}
.zone-overlay {
    position: absolute;
    inset: 0;
    /* Ini yang bikin atas dan bawah nge-blend */
    background: linear-gradient(to bottom, rgba(2,0,5,0.7) 0%, rgba(2,0,5,1) 50%, rgba(2,0,5,0.7) 100%);
}

.dashboard-bg {
    position: absolute;
    inset: 0;
    z-index: 0; /* Paling belakang di dalam section */
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}
.dashboard-image-layer {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    /* GANTI URL GAMBAR LU DI SINI */
    background-image: url('Screenshot 2026-04-25 175339.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* ATUR BLUR DAN OPACITY DI SINI */
    filter: blur(1px); 
    opacity: 0.8; 
    transform: scale(1.05); /* Biar pinggiran blurnya kaga putih */
}
.dashboard-overlay-layer {
    position: absolute;
    inset: 0;
    /* Gradasi biar tulisan lu kaga balapan sama gambar, dan nyambung ke section atas/bawah */
    background: linear-gradient(to bottom, rgba(2,0,5,1) 0%, rgba(2,0,5,0.4) 50%, rgba(2,0,5,1) 100%);
}

.accounts-bg {
    position: absolute;
    inset: 0;
    z-index: 0; /* Paling belakang */
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}
.accounts-image-layer {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    /* GANTI URL GAMBAR LU DI SINI */
    background-image: url('Screenshot 2026-04-25 175155.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* ATUR BLUR DAN OPACITY DI SINI */
    filter: blur(1px); 
    opacity: 0.9; 
    transform: scale(1.05); /* Biar pinggiran blurnya kaga bocor */
}
.accounts-overlay-layer {
    position: absolute;
    inset: 0;
    /* Gradien hitam pekat ke transparan biar nyambung sama section atas/bawah */
    background: linear-gradient(to bottom, rgba(2,0,5,1) 0%, rgba(2,0,5,0.5) 50%, rgba(2,0,5,1) 100%);
}

.export-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}
.export-image-layer {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    /* GANTI URL GAMBAR LU DI SINI (Disarankan gambar chart ijo-ijo PnL) */
    background-image: url('Screenshot 2026-04-25 175301.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* ATUR BLUR DAN OPACITY */
    filter: blur(1px); 
    opacity: 0.9; 
    transform: scale(1.05);
}
.export-overlay-layer {
    position: absolute;
    inset: 0;
    /* Transisi gelap dari atas, agak transparan di tengah (warna kehijauan), gelap lagi di bawah */
    background: linear-gradient(to bottom, rgba(2,0,5,1) 0%, rgba(2,10,5,0.6) 50%, rgba(2,0,5,1) 100%);
}

.privacy-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}
.privacy-image-layer {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    /* GANTI URL GAMBAR LU DI SINI (Disarankan gambar matrix/code/shield) */
    background-image: url('Screenshot 2026-04-25 175331.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* ATUR BLUR DAN OPACITY (Saran gw agak gelap aja krn ini tema privacy) */
    filter: blur(1px); 
    opacity: 0.9; 
    transform: scale(1.05);
}
.privacy-overlay-layer {
    position: absolute;
    inset: 0;
    /* Transisi biar nyambung sama background hitam atas & bawah */
    background: linear-gradient(to bottom, rgba(2,0,5,1) 0%, rgba(2,15,5,0.7) 50%, rgba(2,0,5,1) 100%);
}

.tutorial-bg {
        position: absolute;
        inset: 0;
        z-index: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        overflow: hidden;
    }
    .tutorial-image-layer {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        /* GANTI URL GAMBAR LU DI SINI (Disarankan gambar code/blueprint/dark tech) */
        background-image: url('Screenshot 2026-04-25 175210.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        /* ATUR BLUR DAN OPACITY (Biar teks step-by-step tetep kebaca jelas) */
        filter: blur(1px); 
        opacity: 0.9; 
        transform: scale(1.05);
    }
    .tutorial-overlay-layer {
        position: absolute;
        inset: 0;
        /* Transisi gelap dari atas ke hitam pekat di bawah buat nyambung ke footer */
        background: linear-gradient(to bottom, rgba(2,0,5,1) 0%, rgba(10,2,15,0.6) 50%, rgba(2,0,5,1) 100%);
    }
/* ============================================================
   HERO BACKGROUND VIDEO
   - Looping muted MP4 by default (chrome/safari/edge/firefox all OK)
   - `prefers-reduced-motion: reduce` users see the poster image
   - <=768px viewports also fall back to the poster to save mobile data
   ============================================================ */
.hero-bg-video {
    /* Defensive: object-fit + position keep aspect on weird viewport shapes */
    object-position: center;
    pointer-events: none;
    will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
    .hero-bg-video { display: none; }
    .hero-bg-fallback { opacity: 1 !important; }
}

@media (max-width: 768px) {
    .hero-bg-video { display: none; }
    .hero-bg-fallback { opacity: 1 !important; }
}

/* ============================================================
   HERO PREMIUM POLISH — phase 2 of the landing revamp
   ------------------------------------------------------------
   Adds the visible upgrades that make the first paint feel like
   a finished product instead of a tailwind-prototype:
     • Live status pill with pulsing dot + version + counter
     • Gradient headline accent that shimmers
     • Magnetic-feel CTA buttons with arrow morph on hover
     • Scroll-cue chevron at the bottom of the hero
     • Live trader stats strip (counter animation)
     • Trust badge cluster (broker logos)
   Each block is opt-in via a class — nothing here forces
   itself onto sections that don't add the markup.
   ============================================================ */

/* ── Live status pill (replaces the static "Built for Sniper Traders") ── */
.hero-live-pill {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-2) var(--space-4) var(--space-2) var(--space-3);
    border-radius: var(--radius-pill);
    background: rgba(168,85,247,0.06);
    border: 1px solid rgba(168,85,247,0.30);
    box-shadow: 0 0 24px rgba(168,85,247,0.15), inset 0 1px 0 rgba(255,255,255,0.08);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    font-size: var(--fs-caption);
    color: var(--color-text-muted);
}

.hero-live-pill__dot {
    position: relative;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-success);
    box-shadow: 0 0 8px var(--color-success);
    flex-shrink: 0;
}
.hero-live-pill__dot::after {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: var(--color-success);
    opacity: 0.4;
    animation: live-dot-pulse 1.6s ease-out infinite;
}
@keyframes live-dot-pulse {
    0%   { transform: scale(0.8); opacity: 0.5; }
    100% { transform: scale(2.4); opacity: 0; }
}

.hero-live-pill__version {
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    font-weight: 800;
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
    color: var(--color-accent-cyan);
}

.hero-live-pill__sep {
    width: 1px;
    height: 14px;
    background: var(--color-line);
}

.hero-live-pill__count {
    font-weight: 700;
    color: var(--color-text);
    letter-spacing: 0.03em;
}

/* ── Hero headline accent: aurora shimmer that sweeps across ── */
.text-aurora {
    background: var(--gradient-headline);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    animation: aurora-sweep 8s ease-in-out infinite;
    filter: drop-shadow(0 4px 24px rgba(168,85,247,0.3));
}
@keyframes aurora-sweep {
    0%, 100% { background-position: 0% 50%; }
    50%      { background-position: 100% 50%; }
}

/* ── Premium CTA: gradient-shifting fill + arrow that travels on hover ── */
.cta-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    padding: 1rem 2rem;
    border-radius: var(--radius-pill);
    background: var(--gradient-cta);
    background-size: 200% 100%;
    color: var(--color-text);
    font-weight: 800;
    letter-spacing: 0.02em;
    box-shadow: 0 0 24px rgba(168,85,247,0.4), inset 0 1px 0 rgba(255,255,255,0.18);
    transition: background-position var(--dur-base) var(--ease-out-quart),
                transform var(--dur-base) var(--ease-spring),
                box-shadow var(--dur-base) var(--ease-out-quart);
    overflow: hidden;
}
.cta-primary::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.18) 50%, transparent 100%);
    transform: translateX(-120%);
    transition: transform var(--dur-slow) var(--ease-out-expo);
    pointer-events: none;
}
.cta-primary:hover {
    background-position: 100% 50%;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 40px rgba(192,132,252,0.55), 0 18px 32px rgba(168,85,247,0.25);
}
.cta-primary:hover::before { transform: translateX(120%); }
.cta-primary__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255,255,255,0.18);
    transition: transform var(--dur-base) var(--ease-spring);
}
.cta-primary:hover .cta-primary__icon { transform: translateX(4px); }

.cta-ghost {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    padding: 1rem 2rem;
    border-radius: var(--radius-pill);
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--color-line);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: var(--color-text);
    font-weight: 800;
    transition: background var(--dur-base) var(--ease-out-quart),
                border-color var(--dur-base) var(--ease-out-quart),
                transform var(--dur-base) var(--ease-spring);
}
.cta-ghost:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(168,85,247,0.5);
    transform: translateY(-2px);
}

/* ── Scroll cue at the bottom of the hero ── */
.hero-scroll-cue {
    position: absolute;
    left: 50%;
    bottom: var(--space-12);
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
    pointer-events: none;
    color: var(--color-text-faint);
    font-size: var(--fs-eyebrow);
    letter-spacing: var(--tracking-eyebrow);
    text-transform: uppercase;
    font-weight: 700;
    z-index: var(--z-content);
}
.hero-scroll-cue__line {
    width: 1px;
    height: 56px;
    background: linear-gradient(to bottom, transparent, var(--color-text-faint));
    overflow: hidden;
    position: relative;
}
.hero-scroll-cue__line::after {
    content: "";
    position: absolute;
    top: -32px;
    left: 0;
    width: 100%;
    height: 32px;
    background: linear-gradient(to bottom, transparent, var(--color-accent-cyan));
    animation: scroll-cue-travel 2.6s var(--ease-in-out-quart) infinite;
}
@keyframes scroll-cue-travel {
    0%   { top: -32px; opacity: 0; }
    20%  { opacity: 1; }
    80%  { opacity: 1; }
    100% { top: 56px;  opacity: 0; }
}

/* ── Live stats strip (between hero and marquee) ── */
.live-stats-strip {
    width: 100%;
    border-top: 1px solid var(--color-line-soft);
    border-bottom: 1px solid var(--color-line-soft);
    background: linear-gradient(180deg, rgba(2,0,5,0.4) 0%, rgba(2,0,5,0.0) 100%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: var(--space-8) var(--space-6);
}
.live-stats-strip__inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-8);
}
@media (max-width: 768px) {
    .live-stats-strip__inner { grid-template-columns: repeat(2, 1fr); gap: var(--space-6); }
}
.live-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
    text-align: center;
}
.live-stat__value {
    font-family: var(--font-mono);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--color-text);
    letter-spacing: var(--tracking-tight);
    background: var(--gradient-headline);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}
.live-stat__label {
    font-size: var(--fs-eyebrow);
    letter-spacing: var(--tracking-eyebrow);
    text-transform: uppercase;
    color: var(--color-text-faint);
    font-weight: 700;
}
.live-stat__delta {
    font-size: var(--fs-caption);
    color: var(--color-success);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.live-stat__delta i { font-size: 9px; }

/* ── Trust badge cluster ("Works with: …") ── */
.trust-cluster {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: var(--space-4) var(--space-8);
    margin-top: var(--space-12);
    padding-top: var(--space-8);
    border-top: 1px dashed var(--color-line-soft);
    color: var(--color-text-faint);
    font-size: var(--fs-eyebrow);
    letter-spacing: var(--tracking-eyebrow);
    text-transform: uppercase;
    font-weight: 700;
}
.trust-cluster__label { color: var(--color-text-muted); }
.trust-cluster__item {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--color-text-muted);
    transition: color var(--dur-base) var(--ease-out-quart),
                transform var(--dur-base) var(--ease-spring);
}
.trust-cluster__item:hover {
    color: var(--color-text);
    transform: translateY(-2px);
}
.trust-cluster__item i { font-size: 14px; color: var(--color-accent-cyan); }

/* ── Reduced-motion: kill all the loop animations introduced here ── */
@media (prefers-reduced-motion: reduce) {
    .hero-live-pill__dot::after,
    .text-aurora,
    .hero-scroll-cue__line::after { animation: none !important; }
    .text-aurora { background-position: 0 50% !important; }
}

/* ============================================================
   PHASE 3a — COMPARISON TABLE
   ------------------------------------------------------------
   Single horizontal-scroll glass panel with the 5-vendor matrix.
   Self column is highlighted via a cyan border-left + gradient
   background; rival columns are intentionally muted so the eye
   reads them as "the pack". Mobile keeps the table readable via
   forced horizontal scroll on the wrapper.
   ============================================================ */
.compare-table-wrap {
    border: 1px solid var(--color-line);
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
}
.compare-table {
    width: 100%;
    min-width: 880px;
    border-collapse: collapse;
    font-size: var(--fs-body-sm);
}
.compare-table thead th {
    padding: var(--space-6) var(--space-4);
    border-bottom: 1px solid var(--color-line);
    font-weight: 800;
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
    font-size: var(--fs-eyebrow);
    color: var(--color-text-muted);
}
.compare-table__th-feature {
    text-align: left;
    color: var(--color-text-faint) !important;
    width: 38%;
}
.compare-table__th-self {
    text-align: center;
    background: linear-gradient(180deg, rgba(168,85,247,0.10), rgba(0,229,255,0.06));
    border-left: 1px solid rgba(168,85,247,0.3);
    border-right: 1px solid rgba(168,85,247,0.3);
    text-transform: none !important;
    letter-spacing: 0 !important;
    font-size: var(--fs-body) !important;
}
.compare-table__th-rival {
    text-align: center;
    color: var(--color-text-faint);
}
.compare-table tbody tr {
    transition: background var(--dur-base) var(--ease-out-quart);
}
.compare-table tbody tr:hover {
    background: rgba(255,255,255,0.02);
}
.compare-table tbody td {
    padding: var(--space-4) var(--space-4);
    border-bottom: 1px solid var(--color-line-soft);
    color: var(--color-text-muted);
}
.compare-table tbody td:first-child {
    color: var(--color-text);
    font-weight: 600;
}
.compare-table tbody td:nth-child(2) {
    background: linear-gradient(180deg, rgba(168,85,247,0.05), rgba(0,229,255,0.03));
    border-left: 1px solid rgba(168,85,247,0.2);
    border-right: 1px solid rgba(168,85,247,0.2);
    text-align: center;
    font-weight: 700;
}
.compare-table tbody td:nth-child(n+3) {
    text-align: center;
}
.compare-table tbody tr:last-child td {
    border-bottom: none;
}
.compare-cell-yes  { color: var(--color-success) !important; }
.compare-cell-yes i { font-size: 16px; filter: drop-shadow(0 0 6px rgba(34,197,94,0.6)); }
.compare-cell-no   { color: var(--color-danger) !important; opacity: 0.7; }
.compare-cell-no i { font-size: 16px; }
.compare-cell-partial {
    color: var(--color-accent-amber) !important;
    font-size: 0.75rem;
    font-weight: 700;
}

/* ============================================================
   PHASE 3a — PRICING TIERS
   ------------------------------------------------------------
   Three side-by-side glassmorphism cards. The middle (Pro) tier
   gets a featured ribbon, scaled-up height, and brighter border
   glow so the eye snaps to it. Free + Elite are sized down so
   the visual hierarchy reads "default → cheap fallback / luxury
   upgrade".
   ============================================================ */
.pricing-tier {
    position: relative;
    border-radius: var(--radius-xl);
    padding: 1px;
    background: linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.02));
    transition: transform var(--dur-base) var(--ease-spring);
}
.pricing-tier:hover { transform: translateY(-6px); }

.pricing-tier__inner {
    background: linear-gradient(180deg, rgba(10,5,15,0.85), rgba(2,0,5,0.95));
    border-radius: calc(var(--radius-xl) - 1px);
    padding: var(--space-8) var(--space-6);
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
}

/* Featured "pro" tier — gradient border + visual lift */
.pricing-tier--pro {
    background: linear-gradient(180deg, rgba(168,85,247,0.55), rgba(0,229,255,0.55));
    box-shadow: 0 30px 80px rgba(168,85,247,0.20),
                0 0 60px rgba(0,229,255,0.10);
    transform: translateY(-12px) scale(1.02);
}
.pricing-tier--pro:hover { transform: translateY(-18px) scale(1.03); }
.pricing-tier--pro .pricing-tier__inner {
    background: linear-gradient(180deg, rgba(20,8,30,0.95), rgba(5,0,12,0.98));
}

.pricing-tier__badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-cta);
    color: var(--color-text);
    font-size: var(--fs-eyebrow);
    font-weight: 900;
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    box-shadow: 0 6px 20px rgba(168,85,247,0.4);
    white-space: nowrap;
    z-index: 2;
}

.pricing-tier__head {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}
.pricing-tier__eyebrow {
    font-family: var(--font-mono);
    font-size: var(--fs-eyebrow);
    color: var(--color-accent-cyan);
    font-weight: 800;
    letter-spacing: var(--tracking-eyebrow);
    text-transform: uppercase;
}
.pricing-tier__name {
    font-size: 2rem;
    font-weight: 900;
    color: var(--color-text);
    letter-spacing: var(--tracking-tight);
    line-height: 1.1;
}
.pricing-tier__tag {
    color: var(--color-text-faint);
    font-size: var(--fs-body-sm);
    line-height: 1.5;
}

.pricing-tier__price {
    display: flex;
    align-items: baseline;
    gap: var(--space-1);
    padding-bottom: var(--space-6);
    border-bottom: 1px dashed var(--color-line-soft);
}
.pricing-tier__price-currency {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    font-weight: 700;
}
.pricing-tier__price-int {
    font-size: 4rem;
    font-weight: 900;
    color: var(--color-text);
    letter-spacing: var(--tracking-tight);
    line-height: 1;
}
.pricing-tier--pro .pricing-tier__price-int {
    background: var(--gradient-headline);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.pricing-tier__price-suffix {
    font-size: var(--fs-body-sm);
    color: var(--color-text-faint);
    font-weight: 600;
    margin-left: var(--space-2);
}

.pricing-tier__feats {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    flex: 1;
    list-style: none;
    padding: 0;
}
.pricing-tier__feats li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    color: var(--color-text-muted);
    font-size: var(--fs-body-sm);
    line-height: 1.5;
}
.pricing-tier__feats li i { padding-top: 4px; }

.pricing-tier__cta {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
    padding: var(--space-4) var(--space-6);
    border-radius: var(--radius-pill);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: var(--fs-body-sm);
    transition: transform var(--dur-base) var(--ease-spring),
                background var(--dur-base) var(--ease-out-quart),
                box-shadow var(--dur-base) var(--ease-out-quart);
}
.pricing-tier__cta--ghost {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--color-line);
    color: var(--color-text);
}
.pricing-tier__cta--ghost:hover {
    background: rgba(255,255,255,0.08);
    border-color: var(--color-accent-cyan);
    transform: translateY(-2px);
}
.pricing-tier__cta--primary {
    background: var(--gradient-cta);
    color: var(--color-text);
    box-shadow: 0 8px 24px rgba(168,85,247,0.4);
}
.pricing-tier__cta--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(192,132,252,0.5);
}

/* ============================================================
   PHASE 3a — FAQ ACCORDION
   ------------------------------------------------------------
   Pure-CSS via <details>/<summary>. Chevron rotates on open;
   answer slides in via max-height animation. We keep the open
   state user-controlled (no auto-collapse) — reading three
   answers in a row should be three clicks total.
   ============================================================ */
.faq-item {
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--color-line);
    overflow: hidden;
    transition: border-color var(--dur-base) var(--ease-out-quart),
                background var(--dur-base) var(--ease-out-quart);
}
.faq-item[open] {
    border-color: rgba(168,85,247,0.3);
    background: rgba(168,85,247,0.04);
}
.faq-item__summary {
    list-style: none;
    cursor: pointer;
    padding: var(--space-6) var(--space-6);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-4);
    color: var(--color-text);
    font-weight: 700;
    font-size: var(--fs-body-lg);
    line-height: 1.4;
    user-select: none;
    transition: color var(--dur-fast) var(--ease-out-quart);
}
.faq-item__summary::-webkit-details-marker { display: none; }
.faq-item__summary:hover { color: var(--color-accent-cyan); }
.faq-item__chevron {
    color: var(--color-text-faint);
    font-size: 14px;
    flex-shrink: 0;
    transition: transform var(--dur-base) var(--ease-out-quart),
                color var(--dur-base) var(--ease-out-quart);
}
.faq-item[open] .faq-item__chevron {
    transform: rotate(180deg);
    color: var(--color-accent-cyan);
}
.faq-item__answer {
    padding: 0 var(--space-6) var(--space-6) var(--space-6);
    color: var(--color-text-muted);
    line-height: var(--leading-body);
    font-size: var(--fs-body);
    border-top: 1px dashed var(--color-line-soft);
    padding-top: var(--space-4);
    margin-top: var(--space-2);
}
.faq-item__answer strong { color: var(--color-text); font-weight: 800; }
.faq-item__answer code {
    font-family: var(--font-mono);
    font-size: 0.85em;
    background: rgba(255,255,255,0.06);
    padding: 2px 8px;
    border-radius: var(--radius-sm);
    color: var(--color-accent-cyan);
}

@media (max-width: 768px) {
    .pricing-tier--pro {
        transform: none;
        margin: var(--space-6) 0;
    }
    .pricing-tier--pro:hover { transform: translateY(-6px); }
    .faq-item__summary { font-size: var(--fs-body); padding: var(--space-4); }
    .faq-item__answer  { padding: var(--space-4); }
}

/* ============================================================
   PHASE 3b — DEMO TOUR
   ------------------------------------------------------------
   Browser-chrome stage with 5 stacked panels. Only one panel
   has .is-active at a time — fades + scale-in via opacity +
   transform. Chips on top fire data-demo-target which the JS
   handler picks up. Auto-advance loops every 5s.
   ============================================================ */
.demo-tour {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}
.demo-tour__chips {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
    justify-content: center;
}
.demo-tour__chip {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-4);
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--color-line);
    border-radius: var(--radius-pill);
    color: var(--color-text-muted);
    font-size: var(--fs-body-sm);
    font-weight: 700;
    cursor: pointer;
    transition: all var(--dur-base) var(--ease-out-quart);
}
.demo-tour__chip i { font-size: 12px; color: var(--color-accent-cyan); }
.demo-tour__chip:hover {
    background: rgba(168,85,247,0.08);
    border-color: rgba(168,85,247,0.4);
    color: var(--color-text);
}
.demo-tour__chip.is-active {
    background: var(--gradient-cta);
    color: var(--color-text);
    border-color: transparent;
    box-shadow: 0 8px 24px rgba(168,85,247,0.35);
}
.demo-tour__chip.is-active i { color: var(--color-text); }

.demo-tour__stage {
    position: relative;
    width: 100%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
    border: 1px solid var(--color-line);
    box-shadow: 0 40px 100px rgba(0,0,0,0.6),
                0 0 80px rgba(168,85,247,0.10);
}
.demo-tour__chrome {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-4);
    background: rgba(0,0,0,0.5);
    border-bottom: 1px solid var(--color-line);
    backdrop-filter: blur(10px);
}
.demo-tour__chrome-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}
.demo-tour__chrome-url {
    flex: 1;
    text-align: center;
    font-family: var(--font-mono);
    font-size: var(--fs-eyebrow);
    color: var(--color-text-faint);
    letter-spacing: 0.05em;
}

.demo-tour__panel {
    position: absolute;
    inset: 0;
    top: 44px; /* below chrome bar */
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: scale(0.97);
    pointer-events: none;
    transition: opacity 600ms var(--ease-out-quart),
                transform 600ms var(--ease-out-expo);
}
.demo-tour__panel.is-active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
    position: relative;
    inset: auto;
    top: auto;
}
.demo-tour__panel-img {
    flex: 1;
    min-height: 480px;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
}
.demo-tour__panel-meta {
    padding: var(--space-6) var(--space-8);
    background: linear-gradient(180deg, transparent, rgba(2,0,5,0.92) 30%);
    border-top: 1px solid var(--color-line-soft);
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}
.demo-tour__panel-title {
    font-size: var(--fs-h3);
    font-weight: 900;
    color: var(--color-text);
    letter-spacing: var(--tracking-tight);
}
.demo-tour__panel-desc {
    color: var(--color-text-muted);
    font-size: var(--fs-body);
    line-height: var(--leading-body);
}

.demo-tour__dots {
    display: flex;
    justify-content: center;
    gap: var(--space-3);
}
.demo-tour__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    transition: all var(--dur-base) var(--ease-out-quart);
}
.demo-tour__dot.is-active {
    width: 32px;
    border-radius: 4px;
    background: var(--gradient-cta);
    box-shadow: 0 0 12px rgba(168,85,247,0.5);
}

@media (max-width: 768px) {
    .demo-tour__panel-img { min-height: 220px; }
    .demo-tour__chip span { display: none; }
    .demo-tour__chip i { font-size: 16px; }
    .demo-tour__panel-meta { padding: var(--space-4); }
}

/* ============================================================
   PHASE 3b — FOUNDER STORY
   ------------------------------------------------------------
   Glass card with two-column grid (portrait | narrative).
   Avatar uses an icon fallback (no headshot uploaded yet);
   when a real photo lands, drop it in as a background-image on
   .founder-card__avatar-fallback and remove the icon span.
   ============================================================ */
.founder-card {
    padding: var(--space-12);
    border-radius: var(--radius-xl);
}
.founder-card__grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: var(--space-12);
    align-items: start;
}

.founder-card__portrait-wrap {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    align-items: center;
    text-align: center;
}
.founder-card__portrait {
    position: relative;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(168,85,247,0.3), rgba(0,229,255,0.3));
    padding: 4px;
    box-shadow: 0 30px 60px rgba(168,85,247,0.25),
                0 0 80px rgba(0,229,255,0.15);
}
.founder-card__avatar-fallback {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #1a0a2e, #050010);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(168,85,247,0.4);
    font-size: 80px;
}
.founder-card__portrait-badge {
    position: absolute;
    bottom: 8px;
    right: -8px;
    background: var(--gradient-cta);
    color: var(--color-text);
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    font-size: var(--fs-eyebrow);
    font-weight: 900;
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 8px 20px rgba(168,85,247,0.4);
}
.founder-card__portrait-badge i { font-size: 10px; }

.founder-card__id {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
}
.founder-card__id-name {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--color-text);
    letter-spacing: var(--tracking-tight);
}
.founder-card__id-role {
    font-size: var(--fs-body-sm);
    color: var(--color-text-faint);
    font-weight: 600;
}
.founder-card__id-socials {
    display: inline-flex;
    gap: var(--space-2);
    margin-top: var(--space-2);
    justify-content: center;
}
.founder-card__id-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--color-line);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    transition: all var(--dur-base) var(--ease-out-quart);
}
.founder-card__id-socials a:hover {
    background: var(--gradient-cta);
    color: var(--color-text);
    border-color: transparent;
    transform: translateY(-2px);
}

.founder-card__story {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}
.founder-card__quote {
    font-size: 1.5rem;
    line-height: 1.4;
    font-weight: 600;
    color: var(--color-text);
    border-left: 3px solid var(--color-accent-cyan);
    padding-left: var(--space-6);
    font-style: italic;
}
.founder-card__quote em {
    font-style: italic;
    color: var(--color-accent-cyan);
}
.founder-card__para {
    color: var(--color-text-muted);
    line-height: var(--leading-body);
    font-size: var(--fs-body);
}
.founder-card__para em {
    color: var(--color-accent-cyan);
    font-style: italic;
}
.founder-card__para strong {
    color: var(--color-text);
    font-weight: 800;
}

.founder-card__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
    padding: var(--space-6) 0;
    border-top: 1px solid var(--color-line-soft);
    border-bottom: 1px solid var(--color-line-soft);
    margin-top: var(--space-2);
}
.founder-card__stat {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
}
.founder-card__stat-value {
    font-family: var(--font-mono);
    font-size: 2rem;
    font-weight: 900;
    background: var(--gradient-headline);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}
.founder-card__stat-label {
    font-size: var(--fs-eyebrow);
    color: var(--color-text-faint);
    text-transform: uppercase;
    letter-spacing: var(--tracking-eyebrow);
    font-weight: 700;
}
.founder-card__signoff {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-4) var(--space-6);
    background: rgba(0,229,255,0.06);
    border: 1px solid rgba(0,229,255,0.25);
    border-radius: var(--radius-md);
    color: var(--color-text);
    font-weight: 700;
    font-size: var(--fs-body);
}

@media (max-width: 768px) {
    .founder-card { padding: var(--space-6); }
    .founder-card__grid { grid-template-columns: 1fr; gap: var(--space-8); }
    .founder-card__quote { font-size: 1.125rem; padding-left: var(--space-4); }
    .founder-card__stats { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   PHASE 3b — PUBLIC ROADMAP TIMELINE
   ------------------------------------------------------------
   Vertical timeline with a center spine + alternating cards
   on desktop (left/right). Mobile collapses to single column.
   Status pills are color-coded:
     shipped  → green
     building → cyan
     voted    → purple
     backlog  → grey
   ============================================================ */
.roadmap-timeline {
    position: relative;
    padding: var(--space-8) 0;
}
.roadmap-timeline__line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg,
        rgba(34,197,94,0.4) 0%,
        rgba(34,197,94,0.4) 30%,
        rgba(0,229,255,0.4) 50%,
        rgba(168,85,247,0.4) 70%,
        rgba(255,255,255,0.05) 100%);
    transform: translateX(-1px);
}
.roadmap-item {
    position: relative;
    width: 50%;
    padding: var(--space-6) var(--space-8);
    margin-bottom: var(--space-8);
}
.roadmap-item:nth-child(odd) {
    margin-left: 50%;
    padding-left: var(--space-12);
    text-align: left;
}
.roadmap-item:nth-child(even) {
    padding-right: var(--space-12);
    text-align: left;
}
/* The line div is itself a child; skip it from the alternating logic */
.roadmap-item.roadmap-item:nth-child(2) {
    margin-left: 50%;
    padding-left: var(--space-12);
    padding-right: var(--space-8);
}
.roadmap-item.roadmap-item:nth-child(3) {
    margin-left: 0;
    padding-right: var(--space-12);
    padding-left: var(--space-8);
}
.roadmap-item__node {
    position: absolute;
    top: var(--space-8);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(180deg, rgba(20,20,30,1), rgba(5,5,12,1));
    border: 2px solid var(--color-line-strong);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    font-size: 14px;
    z-index: 2;
    box-shadow: 0 0 20px rgba(0,0,0,0.6);
}
.roadmap-item:nth-child(odd) .roadmap-item__node { left: -20px; }
.roadmap-item:nth-child(even) .roadmap-item__node { right: -20px; }

.roadmap-item--shipped .roadmap-item__node {
    border-color: var(--color-success);
    color: var(--color-success);
    box-shadow: 0 0 24px rgba(34,197,94,0.4);
}
.roadmap-item--building .roadmap-item__node {
    border-color: var(--color-accent-cyan);
    color: var(--color-accent-cyan);
    box-shadow: 0 0 24px rgba(0,229,255,0.4);
    animation: roadmap-pulse 2s var(--ease-in-out-quart) infinite;
}
@keyframes roadmap-pulse {
    0%, 100% { box-shadow: 0 0 24px rgba(0,229,255,0.4); }
    50%      { box-shadow: 0 0 36px rgba(0,229,255,0.7); }
}
.roadmap-item--voted .roadmap-item__node {
    border-color: var(--color-accent-purple);
    color: var(--color-accent-purple);
    box-shadow: 0 0 24px rgba(168,85,247,0.4);
}
.roadmap-item--backlog .roadmap-item__node {
    border-color: var(--color-text-faint);
    color: var(--color-text-faint);
}

.roadmap-item__card {
    padding: var(--space-6);
    border-radius: var(--radius-lg);
    transition: transform var(--dur-base) var(--ease-spring);
}
.roadmap-item__card:hover { transform: translateY(-4px); }

.roadmap-item__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-3);
    flex-wrap: wrap;
}
.roadmap-item__quarter {
    font-family: var(--font-mono);
    font-size: var(--fs-eyebrow);
    color: var(--color-text-faint);
    letter-spacing: var(--tracking-eyebrow);
    text-transform: uppercase;
    font-weight: 800;
}
.roadmap-item__pill {
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
    border: 1px solid;
}
.roadmap-item__pill--shipped {
    color: var(--color-success);
    background: rgba(34,197,94,0.1);
    border-color: rgba(34,197,94,0.3);
}
.roadmap-item__pill--building {
    color: var(--color-accent-cyan);
    background: rgba(0,229,255,0.1);
    border-color: rgba(0,229,255,0.3);
}
.roadmap-item__pill--voted {
    color: var(--color-accent-purple);
    background: rgba(168,85,247,0.1);
    border-color: rgba(168,85,247,0.3);
}
.roadmap-item__pill--backlog {
    color: var(--color-text-faint);
    background: rgba(255,255,255,0.04);
    border-color: var(--color-line);
}

.roadmap-item__title {
    font-size: var(--fs-h3);
    font-weight: 900;
    color: var(--color-text);
    letter-spacing: var(--tracking-tight);
    margin-bottom: var(--space-3);
    line-height: 1.2;
}
.roadmap-item__list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}
.roadmap-item__list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    color: var(--color-text-muted);
    font-size: var(--fs-body-sm);
    line-height: 1.5;
}
.roadmap-item__list li i { padding-top: 4px; flex-shrink: 0; }
.roadmap-item__list li strong {
    color: var(--color-accent-cyan);
    font-weight: 800;
}

@media (max-width: 768px) {
    .roadmap-timeline__line { left: 20px; transform: none; }
    .roadmap-item,
    .roadmap-item:nth-child(odd),
    .roadmap-item:nth-child(even),
    .roadmap-item.roadmap-item:nth-child(2),
    .roadmap-item.roadmap-item:nth-child(3) {
        width: 100%;
        margin-left: 0;
        padding: var(--space-4) 0 var(--space-4) var(--space-12);
        text-align: left;
    }
    .roadmap-item:nth-child(odd) .roadmap-item__node,
    .roadmap-item:nth-child(even) .roadmap-item__node {
        left: 0;
        right: auto;
    }
}

/* ============================================================
   PHASE 3c — SCROLL PROGRESS BAR
   ------------------------------------------------------------
   Thin gradient bar pinned to the top of the viewport that
   fills horizontally as the user scrolls. Sits above the nav
   visually but below it in z-order so the nav blur layer
   covers it gracefully when users scroll past sections.
   ============================================================ */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    z-index: var(--z-progress);
    pointer-events: none;
    background: rgba(255,255,255,0.04);
}
.scroll-progress__bar {
    height: 100%;
    width: 0%;
    background: var(--gradient-cta);
    box-shadow: 0 0 12px rgba(168,85,247,0.5),
                0 0 24px rgba(0,229,255,0.3);
    transition: width 60ms linear;
}

/* ============================================================
   PHASE 3c — DISCORD COMMUNITY CARD
   ------------------------------------------------------------
   Single glass card with two columns: server stats column +
   activity feed column. Uses Discord brand purple (#5865F2)
   accents for color-coding without overwhelming the existing
   purple/cyan palette.
   ============================================================ */
.community-card {
    padding: 0;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(88,101,242,0.2);
}
.community-card__grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    min-height: 560px;
}
.community-card__stats {
    padding: var(--space-8);
    background: linear-gradient(180deg, rgba(88,101,242,0.06), rgba(0,0,0,0.2));
    border-right: 1px solid var(--color-line);
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}
.community-card__server-head {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}
.community-card__server-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, #5865F2, #a855f7);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text);
    font-size: 22px;
    box-shadow: 0 8px 20px rgba(88,101,242,0.4);
}
.community-card__server-meta { display: flex; flex-direction: column; gap: 2px; }
.community-card__server-name {
    font-size: var(--fs-body-lg);
    font-weight: 900;
    color: var(--color-text);
    letter-spacing: var(--tracking-tight);
}
.community-card__server-tag {
    font-family: var(--font-mono);
    font-size: var(--fs-eyebrow);
    color: var(--color-text-faint);
    letter-spacing: 0.05em;
}

.community-card__counters {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3);
    padding-top: var(--space-4);
    border-top: 1px solid var(--color-line-soft);
}
.community-card__counters .community-card__counter:first-child {
    grid-column: 1 / 3;
}
.community-card__counter {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3);
    background: rgba(255,255,255,0.03);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-line-soft);
    flex-wrap: wrap;
}
.community-card__counter-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}
.community-card__counter-dot--green {
    background: var(--color-success);
    box-shadow: 0 0 8px var(--color-success);
    animation: live-dot-pulse 2s var(--ease-in-out-quart) infinite;
}
.community-card__counter-dot--purple {
    background: var(--color-accent-purple);
    box-shadow: 0 0 8px rgba(168,85,247,0.6);
}
.community-card__counter-dot--cyan {
    background: var(--color-accent-cyan);
    box-shadow: 0 0 8px rgba(0,229,255,0.6);
}
.community-card__counter-value {
    font-family: var(--font-mono);
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--color-text);
    letter-spacing: 0.02em;
}
.community-card__counter-label {
    font-size: var(--fs-eyebrow);
    color: var(--color-text-faint);
    text-transform: uppercase;
    letter-spacing: var(--tracking-eyebrow);
    font-weight: 700;
}

.community-card__channels {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    padding-top: var(--space-2);
    flex: 1;
}
.community-card__channels-eyebrow {
    font-size: var(--fs-eyebrow);
    color: var(--color-text-faint);
    text-transform: uppercase;
    letter-spacing: var(--tracking-eyebrow);
    font-weight: 800;
    margin-bottom: var(--space-2);
}
.community-card__channel {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-3);
    border-radius: var(--radius-sm);
    color: var(--color-text-muted);
    font-size: var(--fs-body-sm);
    font-weight: 600;
    transition: background var(--dur-base) var(--ease-out-quart);
}
.community-card__channel:hover { background: rgba(88,101,242,0.08); color: var(--color-text); }
.community-card__channel i { color: var(--color-text-faint); font-size: 11px; }
.community-card__channel-badge {
    margin-left: auto;
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--color-success);
    font-weight: 800;
}

.community-card__cta {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
    padding: var(--space-4) var(--space-6);
    border-radius: var(--radius-pill);
    background: linear-gradient(90deg, #5865F2, #7289da);
    color: var(--color-text);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: var(--fs-body-sm);
    box-shadow: 0 8px 24px rgba(88,101,242,0.4);
    transition: transform var(--dur-base) var(--ease-spring),
                box-shadow var(--dur-base) var(--ease-out-quart);
}
.community-card__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(88,101,242,0.6);
}

.community-card__feed {
    padding: var(--space-8);
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    background: rgba(0,0,0,0.15);
}
.community-card__feed-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: var(--space-4);
    border-bottom: 1px solid var(--color-line-soft);
    color: var(--color-text);
    font-weight: 700;
    font-size: var(--fs-body);
}
.community-card__feed-status {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--color-success);
    font-size: var(--fs-caption);
    font-weight: 800;
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
}
.community-card__live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-success);
    box-shadow: 0 0 8px var(--color-success);
    animation: live-dot-pulse 2s var(--ease-in-out-quart) infinite;
}

.community-card__messages {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    flex: 1;
    overflow-y: auto;
    max-height: 480px;
    padding-right: var(--space-2);
    scrollbar-width: thin;
}
.community-card__messages::-webkit-scrollbar { width: 4px; }
.community-card__messages::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 2px; }
.community-card__msg {
    display: flex;
    gap: var(--space-3);
    padding: var(--space-3);
    border-radius: var(--radius-md);
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--color-line-soft);
    transition: background var(--dur-base) var(--ease-out-quart);
}
.community-card__msg:hover { background: rgba(255,255,255,0.04); }
.community-card__msg-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    flex-shrink: 0;
    color: var(--color-text);
    font-weight: 900;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: -0.02em;
}
.community-card__msg-body { flex: 1; min-width: 0; }
.community-card__msg-head {
    display: flex;
    align-items: baseline;
    gap: var(--space-2);
    margin-bottom: var(--space-1);
}
.community-card__msg-name {
    color: var(--color-accent-cyan);
    font-weight: 800;
    font-size: var(--fs-body-sm);
}
.community-card__msg-time {
    color: var(--color-text-faint);
    font-size: var(--fs-eyebrow);
    font-weight: 600;
}
.community-card__msg-body p {
    color: var(--color-text-muted);
    font-size: var(--fs-body-sm);
    line-height: 1.5;
    margin: 0;
}
.community-card__feed-foot {
    color: var(--color-text-faint);
    font-size: var(--fs-caption);
    text-align: center;
    padding-top: var(--space-3);
    border-top: 1px dashed var(--color-line-soft);
    margin-top: auto;
}

@media (max-width: 768px) {
    .community-card__grid { grid-template-columns: 1fr; }
    .community-card__stats {
        border-right: none;
        border-bottom: 1px solid var(--color-line);
    }
}

/* ============================================================
   PHASE 3c — NEWSLETTER CARD
   ------------------------------------------------------------
   Glass card with two-column layout. Email field uses a leading
   icon, focus ring is the gradient CTA, and submit button has
   the same shimmer treatment as .cta-primary. Success state
   is hidden by default and revealed by the form-handler JS.
   ============================================================ */
.newsletter-card {
    padding: 0;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--color-line);
}
.newsletter-card__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
}
.newsletter-card__pitch {
    padding: var(--space-12) var(--space-8);
    background: linear-gradient(180deg, rgba(168,85,247,0.05), transparent);
    border-right: 1px solid var(--color-line);
}
.newsletter-card__perks {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    margin-top: var(--space-4);
}
.newsletter-card__perks li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    color: var(--color-text-muted);
    font-size: var(--fs-body-sm);
    line-height: 1.5;
}
.newsletter-card__perks li i { padding-top: 4px; flex-shrink: 0; }

.newsletter-card__form-wrap {
    padding: var(--space-12) var(--space-8);
    background: linear-gradient(180deg, rgba(0,229,255,0.03), transparent);
    display: flex;
    align-items: center;
}
.newsletter-card__form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}
.newsletter-card__label {
    font-size: var(--fs-eyebrow);
    text-transform: uppercase;
    letter-spacing: var(--tracking-eyebrow);
    font-weight: 800;
    color: var(--color-text-faint);
}
.newsletter-card__field {
    position: relative;
    display: flex;
    align-items: center;
}
.newsletter-card__field-icon {
    position: absolute;
    left: var(--space-4);
    color: var(--color-text-faint);
    pointer-events: none;
    font-size: 14px;
}
.newsletter-card__input {
    width: 100%;
    padding: var(--space-4) var(--space-4) var(--space-4) calc(var(--space-4) + 24px);
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--color-line);
    border-radius: var(--radius-md);
    color: var(--color-text);
    font-size: var(--fs-body);
    font-family: var(--font-sans);
    outline: none;
    transition: border-color var(--dur-base) var(--ease-out-quart),
                box-shadow var(--dur-base) var(--ease-out-quart),
                background var(--dur-base) var(--ease-out-quart);
}
.newsletter-card__input::placeholder { color: var(--color-text-faint); }
.newsletter-card__input:focus {
    border-color: var(--color-accent-cyan);
    box-shadow: 0 0 0 3px rgba(0,229,255,0.15);
    background: rgba(255,255,255,0.06);
}

.newsletter-card__check {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    color: var(--color-text-muted);
    font-size: var(--fs-body-sm);
    line-height: 1.4;
    cursor: pointer;
}
.newsletter-card__check input {
    margin-top: 3px;
    width: 16px;
    height: 16px;
    accent-color: var(--color-accent-cyan);
    flex-shrink: 0;
}

.newsletter-card__submit {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
    padding: var(--space-4) var(--space-6);
    background: var(--gradient-cta);
    color: var(--color-text);
    border-radius: var(--radius-pill);
    border: none;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: var(--fs-body);
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(168,85,247,0.4);
    transition: transform var(--dur-base) var(--ease-spring),
                box-shadow var(--dur-base) var(--ease-out-quart);
    overflow: hidden;
}
.newsletter-card__submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(192,132,252,0.5);
    background: var(--gradient-cta-hover);
}

.newsletter-card__success {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-4);
    background: rgba(0,229,255,0.06);
    border: 1px solid rgba(0,229,255,0.3);
    border-radius: var(--radius-md);
    color: var(--color-text);
    font-weight: 700;
}
.newsletter-card__success[hidden] { display: none; }

.newsletter-card__fineprint {
    color: var(--color-text-faint);
    font-size: var(--fs-caption);
    line-height: 1.5;
}
.newsletter-card__fineprint strong {
    color: var(--color-accent-cyan);
    font-weight: 800;
}

@media (max-width: 768px) {
    .newsletter-card__grid { grid-template-columns: 1fr; }
    .newsletter-card__pitch {
        border-right: none;
        border-bottom: 1px solid var(--color-line);
        padding: var(--space-8) var(--space-6);
    }
    .newsletter-card__form-wrap { padding: var(--space-8) var(--space-6); }
}

/* ============================================================
   PHASE 4 — MICRO-POLISH PASS
   ============================================================ */

/* 4.1 — marquee gradient masks now match the site bg (#020005)
   instead of the legacy #0d0d12. Wider fade for softer edge. */
.elite-marquee-wrapper::before,
.elite-marquee-wrapper::after {
    width: 200px !important;
    z-index: 5;
}
.elite-marquee-wrapper::before {
    background: linear-gradient(to right, #020005 0%, rgba(2,0,5,0.5) 50%, transparent 100%) !important;
}
.elite-marquee-wrapper::after {
    background: linear-gradient(to left, #020005 0%, rgba(2,0,5,0.5) 50%, transparent 100%) !important;
}

/* 4.2 — slow the marquee a touch (30s → 45s) so individual
   testimonials stay readable. Slightly longer hover-pause. */
.elite-marquee-track {
    animation-duration: 45s !important;
}

/* 4.3 — magnetic-feel hover for all primary CTAs.
   Adds a subtle scale + glow stretch on hover, anchored
   in transform-origin: center. Works on existing buttons
   without requiring class additions. */
.cta-primary,
.pricing-tier__cta--primary,
.community-card__cta,
.newsletter-card__submit {
    will-change: transform, box-shadow;
}
.cta-primary:hover,
.pricing-tier__cta--primary:hover,
.community-card__cta:hover,
.newsletter-card__submit:hover {
    transform: translateY(-3px) scale(1.025);
}
.cta-primary:active,
.pricing-tier__cta--primary:active,
.community-card__cta:active,
.newsletter-card__submit:active {
    transform: translateY(-1px) scale(0.98);
    transition-duration: 80ms;
}

/* 4.4 — section-to-section gradient bleed.
   Creates a soft transition by adding a subtle radial
   gradient at section boundaries so they don't read as
   hard cuts. Applies to all top-level <section> elements
   that have py-32 in their className.
*/
section[class*="py-32"]::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(168,85,247,0.15) 30%,
        rgba(0,229,255,0.15) 70%,
        transparent 100%);
    pointer-events: none;
    z-index: 1;
    opacity: 0.5;
}

/* 4.5 — global focus ring for keyboard users.
   Replaces the default browser outline with the brand
   gradient + ring offset. */
a:focus-visible,
button:focus-visible,
input:focus-visible,
.faq-item__summary:focus-visible {
    outline: 2px solid var(--color-accent-cyan);
    outline-offset: 3px;
    border-radius: 4px;
}

/* 4.6 — pricing tier hover refinement.
   Free/Elite cards now lift toward the Pro tier on hover
   for a unified row hover state. Pro lifts further. */
.pricing-tier:not(.pricing-tier--pro):hover {
    transform: translateY(-6px);
}
.pricing-tier--pro:hover {
    transform: translateY(-18px) scale(1.02);
}

/* 4.7 — reveal stagger refinement.
   Tighter timing (40ms/item) than the previous default
   so multi-card sections feel cohesive rather than slow. */
.reveal[data-stagger-index="0"] { transition-delay: 0ms; }
.reveal[data-stagger-index="1"] { transition-delay: 40ms; }
.reveal[data-stagger-index="2"] { transition-delay: 80ms; }
.reveal[data-stagger-index="3"] { transition-delay: 120ms; }
.reveal[data-stagger-index="4"] { transition-delay: 160ms; }
.reveal[data-stagger-index="5"] { transition-delay: 200ms; }

/* 4.8 — hero video bg gets a slow parallax via
   scroll-driven scale (handled by JS — no transition
   here, just transform-origin so it doesn't drift).
   Plus a vignette that darkens the corners so headline
   contrast lifts. */
#home::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center,
        transparent 35%,
        rgba(2,0,5,0.5) 75%,
        rgba(2,0,5,0.85) 100%);
    pointer-events: none;
    z-index: 1;
}
#home > .absolute.inset-0:first-child {
    transform-origin: center 30%;
}

/* 4.9 — accessibility: reduced motion overrides for the
   marquee + decorative pulses. Already handled at :root
   for transitions; also kill the marquee track animation
   for users who opt out. */
@media (prefers-reduced-motion: reduce) {
    .elite-marquee-track {
        animation: none !important;
    }
    .live-stat-orb,
    .floating-img,
    .animate-pulse,
    .animate-ping {
        animation: none !important;
    }
}

/* 4.10 — selection color polish. Match the brand palette
   instead of the browser default blue. */
::selection {
    background: rgba(168,85,247,0.4);
    color: var(--color-text);
}
::-moz-selection {
    background: rgba(168,85,247,0.4);
    color: var(--color-text);
}

/* ============================================================
   PHASE 5 — SECTION NAVIGATOR (sticky right-side dot rail)
   ============================================================ */
.section-nav {
    position: fixed;
    top: 50%;
    right: var(--space-4);
    transform: translateY(-50%);
    z-index: var(--z-overlay);
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    padding: var(--space-3) var(--space-2);
    background: rgba(2,0,5,0.7);
    border: 1px solid var(--color-line);
    border-radius: var(--radius-pill);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.section-nav__dot {
    position: relative;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    transition: all var(--dur-base) var(--ease-out-quart);
    cursor: pointer;
}
.section-nav__dot:hover {
    background: var(--color-accent-cyan);
    box-shadow: 0 0 12px rgba(0,229,255,0.6);
    transform: scale(1.3);
}
.section-nav__dot.is-active {
    background: var(--gradient-cta);
    box-shadow: 0 0 16px rgba(168,85,247,0.6);
    transform: scale(1.4);
}
.section-nav__label {
    position: absolute;
    right: calc(100% + var(--space-3));
    top: 50%;
    transform: translateY(-50%);
    padding: var(--space-2) var(--space-3);
    background: rgba(2,0,5,0.95);
    border: 1px solid var(--color-line);
    border-radius: var(--radius-sm);
    color: var(--color-text);
    font-size: var(--fs-eyebrow);
    font-weight: 800;
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--dur-base) var(--ease-out-quart);
}
.section-nav__dot:hover .section-nav__label,
.section-nav__dot.is-active .section-nav__label {
    opacity: 1;
}

@media (max-width: 1024px) { .section-nav { display: none; } }

/* ============================================================
   PHASE 6 — MOBILE + A11Y FINAL POLISH
   ============================================================ */

/* 6.1 — clamp display heading on small screens so it never
   overflows / produces 1-letter-per-line layouts. */
@media (max-width: 480px) {
    .text-aurora,
    [class*="text-5xl"],
    [class*="text-6xl"] {
        font-size: clamp(2rem, 9vw, 3rem) !important;
        line-height: 1.1 !important;
    }
    .text-7xl { font-size: clamp(2.5rem, 11vw, 3.5rem) !important; }
    h1, h2 { line-height: 1.15 !important; }
}

/* 6.2 — Tighten section padding on narrow screens. */
@media (max-width: 640px) {
    section[class*="py-32"] { padding-top: var(--space-16); padding-bottom: var(--space-16); }
    section[class*="py-24"] { padding-top: var(--space-12); padding-bottom: var(--space-12); }
}

/* 6.3 — Better long-form prose readability on small screens. */
@media (max-width: 480px) {
    p, li { line-height: 1.6 !important; }
}

/* 6.4 — Skip-to-content link for keyboard / screen-reader users.
   Visible only on focus. */
.skip-to-content {
    position: fixed;
    top: -100px;
    left: 0;
    padding: var(--space-3) var(--space-4);
    background: var(--gradient-cta);
    color: var(--color-text);
    font-weight: 800;
    z-index: 9999;
    border-radius: 0 0 var(--radius-md) 0;
    transition: top 200ms var(--ease-out-quart);
}
.skip-to-content:focus {
    top: 0;
    outline: 2px solid var(--color-accent-cyan);
}

/* 6.5 — Force the right-rail nav to not overlap the floating
   chat / cursor-aura / dynamic-orb on tiny viewports.
   Already display:none below 1024px, but bump z-index so
   tooltips win over modal-overlay-feeling blurs. */
.section-nav { z-index: 51; }

/* ============================================================
   SCREENSHOT GALLERY — captioned dual-marquee
   Replaces the legacy uncaptioned `.feature-card` cards.
   Each card is a <figure> with <img> + <figcaption>; the caption
   slides up from below on hover. Marquee pauses on hover so the
   caption is readable.
   ============================================================ */
.screenshot-card {
    position: relative;
    flex: 0 0 auto;
    width: 380px;
    height: 220px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
    margin: 0;
    transition:
        transform var(--dur-base) var(--ease-out-quart),
        border-color var(--dur-base) var(--ease-out-quart),
        box-shadow var(--dur-base) var(--ease-out-quart);
}
.screenshot-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--dur-slow) var(--ease-out-quart);
}
.screenshot-card figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: var(--space-4) var(--space-5);
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: linear-gradient(to top, rgba(2, 0, 5, 0.95) 0%, rgba(2, 0, 5, 0.7) 60%, transparent 100%);
    color: var(--color-text);
    transform: translateY(40%);
    opacity: 0;
    transition:
        transform var(--dur-base) var(--ease-out-quart),
        opacity   var(--dur-base) var(--ease-out-quart);
    pointer-events: none;
}
.screenshot-card figcaption strong {
    font-size: var(--fs-body);
    font-weight: 800;
    letter-spacing: -0.01em;
    color: #fff;
}
.screenshot-card figcaption span {
    font-size: var(--fs-caption, 0.78rem);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

/* Hover: lift card, zoom image, slide caption in. */
.screenshot-card:hover {
    transform: translateY(-6px);
    border-color: var(--color-accent-cyan);
    box-shadow:
        0 24px 60px rgba(0, 229, 255, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    z-index: 5;
}
.screenshot-card:hover img {
    transform: scale(1.04);
}
.screenshot-card:hover figcaption {
    transform: translateY(0);
    opacity: 1;
}

/* Pause the entire marquee strip while any card is hovered. */
.screenshot-gallery__strip:hover .marquee-track {
    animation-play-state: paused;
}

/* Soft edge masks matching site bg. */
.screenshot-gallery__strip {
    mask-image: linear-gradient(to right,
        transparent 0%,
        #000 8%,
        #000 92%,
        transparent 100%);
    -webkit-mask-image: linear-gradient(to right,
        transparent 0%,
        #000 8%,
        #000 92%,
        transparent 100%);
}

/* Mobile: shrink cards so two are partially visible. */
@media (max-width: 640px) {
    .screenshot-card {
        width: 280px;
        height: 165px;
    }
    .screenshot-card figcaption {
        padding: var(--space-3) var(--space-4);
    }
}

/* ============================================================
   SECTION BG IMAGE LAYERS — for live-stats, demo, compare,
   founder, pricing, roadmap, community, faq, newsletter.
   Same blur+overlay pattern as dashboard/accounts/export/tutorial.
   To swap an image, change the `background-image` URL on the
   `<section>-image-layer` rule below — no HTML change needed.
   ============================================================ */
.livestats-bg, .demo-bg, .compare-bg, .founder-bg, .pricing-bg,
.roadmap-bg, .community-bg, .faq-bg, .newsletter-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}
.livestats-image-layer, .demo-image-layer, .compare-image-layer,
.founder-image-layer, .pricing-image-layer, .roadmap-image-layer,
.community-image-layer, .faq-image-layer, .newsletter-image-layer {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(2px);
    opacity: 0.85;
    transform: scale(1.05);
}
.livestats-overlay-layer, .demo-overlay-layer, .compare-overlay-layer,
.founder-overlay-layer, .pricing-overlay-layer, .roadmap-overlay-layer,
.community-overlay-layer, .faq-overlay-layer, .newsletter-overlay-layer {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(2, 0, 5, 1) 0%,
        rgba(2, 0, 5, 0.55) 50%,
        rgba(2, 0, 5, 1) 100%
    );
}

/* === per-section bg image assignments (swap path here) === */
.livestats-image-layer  { background-image: url('Screenshot\ 2026-05-10\ 155242.png'); }
.demo-image-layer       { background-image: url('Screenshot\ 2026-05-10\ 160011.png'); }
.compare-image-layer    { background-image: url('Screenshot\ 2026-05-10\ 155553.png'); }
.founder-image-layer    { background-image: url('1.png'); }
.pricing-image-layer    { background-image: url('Screenshot\ 2026-05-10\ 160414.png'); }
.roadmap-image-layer    { background-image: url('Screenshot\ 2026-05-10\ 160742.png'); }
.community-image-layer  { background-image: url('Screenshot 2026-04-25 175111.png'); }
.faq-image-layer        { background-image: url('Screenshot 2026-04-25 175223.png'); }
.newsletter-image-layer { background-image: url('Screenshot 2026-04-25 175255.png'); }

/* Section-specific overlay tints — keep accent color for the section. */
.demo-overlay-layer       { background: linear-gradient(to bottom, rgba(2,0,5,1) 0%, rgba(15,5,20,0.55) 50%, rgba(2,0,5,1) 100%); }
.compare-overlay-layer    { background: linear-gradient(to bottom, rgba(2,0,5,1) 0%, rgba(0,15,20,0.55) 50%, rgba(2,0,5,1) 100%); }
.founder-overlay-layer    { background: linear-gradient(to bottom, rgba(2,0,5,1) 0%, rgba(15,5,20,0.55) 50%, rgba(2,0,5,1) 100%); }
.pricing-overlay-layer    { background: linear-gradient(to bottom, rgba(2,0,5,1) 0%, rgba(15,10,20,0.55) 50%, rgba(2,0,5,1) 100%); }
.roadmap-overlay-layer    { background: linear-gradient(to bottom, rgba(2,0,5,1) 0%, rgba(2,15,5,0.55) 50%, rgba(2,0,5,1) 100%); }
.community-overlay-layer  { background: linear-gradient(to bottom, rgba(2,0,5,1) 0%, rgba(10,10,30,0.55) 50%, rgba(2,0,5,1) 100%); }
.faq-overlay-layer        { background: linear-gradient(to bottom, rgba(2,0,5,1) 0%, rgba(15,5,20,0.55) 50%, rgba(2,0,5,1) 100%); }
.newsletter-overlay-layer { background: linear-gradient(to bottom, rgba(2,0,5,1) 0%, rgba(0,15,20,0.55) 50%, rgba(2,0,5,1) 100%); }
.livestats-overlay-layer  { background: linear-gradient(to bottom, rgba(2,0,5,1) 0%, rgba(0,15,20,0.55) 50%, rgba(2,0,5,1) 100%); }

/* ============================================================
   TESTIMONIALS dual screenshot bg (split top/bottom). Marquee
   strip is tall, so two different screenshots stack vertically
   with a center-fade overlay. Swap path on either layer below.
   ============================================================ */
.testimonials-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}
.testimonials-image-layer-top,
.testimonials-image-layer-bottom {
    position: absolute;
    left: 0;
    width: 100%;
    height: 60%;
    background-size: cover;
    background-repeat: no-repeat;
    filter: blur(2px);
    opacity: 0.85;
    transform: scale(1.05);
}
.testimonials-image-layer-top {
    top: 0;
    background-position: top;
    background-image: url('Screenshot\ 2026-05-10\ 155553.png');
}
.testimonials-image-layer-bottom {
    bottom: 0;
    background-position: bottom;
    background-image: url('Screenshot\ 2026-05-10\ 155316.png');
}
.testimonials-overlay-layer {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(2, 0, 5, 1) 0%,
        rgba(2, 0, 5, 0.6) 30%,
        rgba(2, 0, 5, 0.85) 50%,
        rgba(2, 0, 5, 0.6) 70%,
        rgba(2, 0, 5, 1) 100%
    );
}