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

html, body {
    height: 100%;
    background: #0a0a0a;
    color: #eee;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    overflow-x: hidden;
}

/* ── Noise texture ── */
.noise {
    position: fixed; inset: 0; z-index: 2;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    opacity: 0.038;
}

/* ── Background orbs ── */
.bg {
    position: fixed; inset: 0; z-index: 0;
    overflow: hidden; pointer-events: none;
}
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    animation: drift 20s ease-in-out infinite;
}
.orb-1 {
    width: 520px; height: 520px;
    background: radial-gradient(circle, rgba(88,101,242,0.14) 0%, transparent 70%);
    top: -200px; left: -120px;
    animation-duration: 18s;
}
.orb-2 {
    width: 420px; height: 420px;
    background: radial-gradient(circle, rgba(88,101,242,0.08) 0%, transparent 70%);
    bottom: -160px; right: -100px;
    animation-delay: -9s; animation-duration: 24s;
}
.orb-3 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(88,101,242,0.05) 0%, transparent 70%);
    top: 55%; left: 50%;
    animation-delay: -5s; animation-duration: 30s;
}
@keyframes drift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%       { transform: translate(25px, -35px) scale(1.05); }
    66%       { transform: translate(-18px, 22px) scale(0.97); }
}

/* ── Page wrapper ── */
.page {
    position: relative; z-index: 1;
    min-height: 100vh;
    display: flex; flex-direction: column;
    align-items: center;
}

/* ── Nav ── */
.nav {
    width: 100%; max-width: 600px;
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 24px 0;
}
.nav-logo {
    display: flex; align-items: center; gap: 10px;
    text-decoration: none;
}
.nav-bat {
    width: 30px; height: auto;
    object-fit: contain;
    mix-blend-mode: screen;
    filter: brightness(1.1);
}
.nav-wordmark {
    font-size: 11px; font-weight: 900; letter-spacing: 6px; color: #fff;
}
.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-link {
    font-size: 13px; font-weight: 600; color: #3a3a3a;
    text-decoration: none; transition: color 0.2s;
}
.nav-link:hover { color: #aaa; }
.btn-install-nav {
    font-size: 12px; font-weight: 600; color: #5865f2;
    background: none; border: 1px solid rgba(88,101,242,0.3);
    border-radius: 6px; padding: 6px 14px; cursor: pointer;
    transition: border-color 0.15s, color 0.15s;
}
.btn-install-nav:hover { border-color: #5865f2; color: #7b87ff; }

/* ── Hero ── */
.hero {
    width: 100%; max-width: 600px;
    padding: 48px 24px 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.hero-body { position: relative; z-index: 2; }
.hero-art {
    align-self: flex-end;
    position: relative;
    margin-top: -16px;
    margin-right: -8px;
}
.hero-bat {
    width: 180px; height: auto;
    mix-blend-mode: screen;
    filter: brightness(1.15);
    animation: batFloat 7s ease-in-out infinite;
    display: block;
}
.hero-glow {
    position: absolute;
    width: 140px; height: 50px;
    background: radial-gradient(ellipse, rgba(88,101,242,0.28), transparent 70%);
    bottom: -8px; left: 50%; transform: translateX(-50%);
    filter: blur(14px);
    border-radius: 50%;
}
@keyframes batFloat {
    0%, 100% { transform: translateY(0) rotate(-1deg); }
    50%       { transform: translateY(-14px) rotate(1.5deg); }
}

/* Eyebrow */
.eyebrow {
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.5px;
    color: #5865f2;
    margin-bottom: 20px;
    animation: fadeUp 0.5s ease both;
}

/* Hero title — OVERSIZED, personality */
.hero-title {
    font-size: clamp(56px, 20vw, 96px);
    font-weight: 900;
    letter-spacing: -4px;
    line-height: 0.88;
    color: #fff;
    margin-bottom: 28px;
    animation: fadeUp 0.5s ease 0.1s both;
}
.ht-line { display: block; }
.accent-line { color: rgba(88,101,242,0.9); }

.hero-sub {
    font-size: 14px;
    color: #3e3e3e;
    line-height: 1.7;
    max-width: 320px;
    margin-bottom: 32px;
    animation: fadeUp 0.5s ease 0.2s both;
}

/* ── CTAs ── */
.cta-group {
    display: flex; flex-direction: column;
    gap: 10px; max-width: 260px;
    animation: fadeUp 0.5s ease 0.28s both;
}
.btn-primary {
    display: flex; align-items: center; justify-content: center;
    padding: 15px 24px;
    background: #fff; color: #000;
    border: none; border-radius: 8px;
    font-size: 14px; font-weight: 700;
    cursor: pointer; text-decoration: none;
    transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
    letter-spacing: 0.3px;
}
.btn-primary:hover {
    background: #e8e8ff;
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(255,255,255,0.1);
}
.btn-primary:active { transform: scale(0.98); }
.btn-ghost {
    display: flex; align-items: center; justify-content: center;
    padding: 15px 24px;
    background: transparent; color: #444;
    border: 1px solid #181818; border-radius: 8px;
    font-size: 14px; font-weight: 600;
    text-decoration: none;
    transition: border-color 0.15s, color 0.15s;
}
.btn-ghost:hover { border-color: #2e2e2e; color: #aaa; }
.btn-install {
    display: flex; align-items: center; justify-content: center;
    padding: 12px;
    background: transparent; color: #2a2a2a;
    border: 1px solid #111; border-radius: 8px;
    font-size: 11px; font-weight: 500;
    cursor: pointer;
    transition: color 0.15s, border-color 0.15s;
}
.btn-install:hover { color: #555; border-color: #242424; }
.hidden { display: none !important; }

/* ── Ticker ── */
.ticker-wrap {
    width: 100%;
    overflow: hidden;
    margin: 48px 0 0;
    padding: 11px 0;
    border-top: 1px solid #111;
    border-bottom: 1px solid #111;
    mask-image: linear-gradient(90deg, transparent 0%, black 12%, black 88%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 12%, black 88%, transparent 100%);
}
.ticker-track {
    display: inline-flex; gap: 26px;
    white-space: nowrap;
    animation: ticker 32s linear infinite;
    font-size: 10px; font-weight: 700;
    letter-spacing: 2.5px; text-transform: uppercase;
    color: #1c1c1c;
}
.ticker-track .dot { color: #5865f2; opacity: 0.5; }
@keyframes ticker {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ── App mockup ── */
.app-preview {
    width: 100%; max-width: 280px;
    margin: 44px auto 0;
    animation: fadeUp 0.7s ease 0.32s both;
    position: relative;
}
.app-preview::after {
    content: '';
    position: absolute;
    bottom: -12px; left: 50%; transform: translateX(-50%);
    width: 50%; height: 28px;
    background: rgba(88,101,242,0.18);
    filter: blur(16px);
    border-radius: 50%;
    z-index: -1;
}
.app-frame {
    background: #0e0e0e;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(88,101,242,0.07),
        0 24px 60px rgba(0,0,0,0.9);
}
.af-bar {
    display: flex; align-items: center; justify-content: space-between;
    padding: 12px 14px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.af-title { font-size: 10px; font-weight: 900; letter-spacing: 5px; color: #fff; }
.af-icons { display: flex; gap: 8px; }
.af-icon  { width: 14px; height: 14px; background: #191919; border-radius: 3px; }
.af-stories {
    display: flex; gap: 10px; padding: 10px 14px;
    overflow: hidden;
    border-bottom: 1px solid rgba(255,255,255,0.03);
}
.af-story { display: flex; flex-direction: column; align-items: center; gap: 3px; flex-shrink: 0; }
.af-story-ring { width: 40px; height: 40px; border-radius: 50%; border: 2px solid; padding: 2px; }
.af-story-ring.on  { border-color: #5865f2; }
.af-story-ring.off { border-color: #1e1e1e; }
.af-story-av   { width: 100%; height: 100%; border-radius: 50%; }
.af-story-name { font-size: 7px; color: #333; width: 40px; text-align: center; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.af-post { padding: 10px 14px; border-bottom: 1px solid rgba(255,255,255,0.03); }
.af-post-head { display: flex; align-items: center; gap: 7px; margin-bottom: 6px; }
.af-av   { width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0; }
.af-name { font-size: 9px; font-weight: 600; color: #bbb; }
.af-time { font-size: 8px; color: #272727; margin-left: auto; }
.af-text { font-size: 9px; color: #4a4a4a; line-height: 1.4; }
.af-img  { width: 100%; height: 50px; border-radius: 6px; margin-top: 6px; }
.af-acts { display: flex; gap: 10px; margin-top: 6px; }
.af-act  { font-size: 8px; color: #272727; }
.af-act.liked { color: #e8507a; }
.af-nav {
    display: flex; justify-content: space-around;
    padding: 9px 0;
    border-top: 1px solid rgba(255,255,255,0.03);
}
.af-nd { width: 18px; height: 18px; border-radius: 50%; background: #191919; }
.af-nd.on { background: rgba(88,101,242,0.65); }

/* ── Features ── */
.what {
    width: 100%; max-width: 600px;
    padding: 64px 24px 0;
}
.section-label {
    font-size: 10px; font-weight: 700;
    letter-spacing: 2.5px; text-transform: uppercase;
    color: #1e1e1e; margin-bottom: 20px;
}
.what-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
}
.what-card {
    padding: 22px 18px;
    background: rgba(255,255,255,0.016);
    border: 1px solid #0f0f0f;
    transition: background 0.2s, border-color 0.2s;
}
.what-card:hover {
    background: rgba(255,255,255,0.032);
    border-color: #181818;
}
.what-num {
    font-size: 11px; font-weight: 700;
    color: #5865f2; letter-spacing: 1px;
    margin-bottom: 12px;
    font-variant-numeric: tabular-nums;
}
.what-card h3 { font-size: 13px; font-weight: 700; color: #c0c0c0; margin-bottom: 6px; }
.what-card p  { font-size: 11px; color: #2e2e2e; line-height: 1.6; }

/* ── CTA band ── */
.cta-band {
    width: 100%; max-width: 600px;
    padding: 64px 24px;
    display: flex; flex-direction: column;
    align-items: center; gap: 12px; text-align: center;
}
.cta-band-title {
    font-size: clamp(28px, 8vw, 42px);
    font-weight: 900; letter-spacing: -1px;
    color: #fff;
}
.cta-band-sub { font-size: 13px; color: #2e2e2e; margin-bottom: 8px; }
.cta-band .btn-primary { max-width: 240px; width: 100%; }

/* ── Conspiracy callout ── */
.conspiracy {
    width: 100%; max-width: 600px;
    padding: 52px 24px 0;
}
.conspiracy-inner {
    border: 1px solid #111;
    border-left: 3px solid #5865f2;
    border-radius: 2px;
    padding: 34px 28px;
    background: rgba(88,101,242,0.035);
    position: relative;
    overflow: hidden;
}
.conspiracy-inner::after {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(88,101,242,0.08), transparent 70%);
    pointer-events: none;
}
.conspiracy-tag {
    font-size: 10px; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase;
    color: #5865f2; margin-bottom: 18px;
}
.conspiracy-title {
    font-size: clamp(22px, 6vw, 32px);
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 16px;
}
.conspiracy-accent { color: #5865f2; }
.conspiracy-body {
    font-size: 13px; color: #323232;
    line-height: 1.75; max-width: 380px;
    margin-bottom: 30px;
}
.conspiracy-stats { display: flex; gap: 32px; }
.cs { display: flex; flex-direction: column; }
.cs-n {
    font-size: 22px; font-weight: 900;
    color: #e0e0e0; letter-spacing: -0.5px;
    font-variant-numeric: tabular-nums;
}
.cs-l {
    font-size: 10px; color: #242424;
    text-transform: uppercase; letter-spacing: 1.5px;
    margin-top: 2px;
}

/* ── Footer ── */
.footer {
    width: 100%; max-width: 600px;
    padding: 36px 24px 56px;
    display: flex; flex-direction: column;
    align-items: center; gap: 10px;
}
.footer-bat {
    width: 38px; height: auto;
    mix-blend-mode: screen;
    filter: brightness(0.28);
}
.footer-wordmark {
    font-size: 10px; font-weight: 900;
    letter-spacing: 7px; color: #161616;
}
.footer-text { font-size: 11px; color: #181818; }

/* ── Reveal on scroll ── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Shared animations ── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}
