@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@400;500;600&family=Space+Mono:wght@400;700&display=swap');

/* ── RESET & TOKENS ─────────────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg: #080808;
    --s1: #131313;
    --s2: #181818;
    --bd: #2e2e2e;
    --bd2: #3d3d3d;
    --t1: #f0ece4;
    --t2: #c8c4bc;
    --t3: #8a8680;
    --red: #c8291c;
    --red2: #a01f15;
    --yellow: #d4a017;
    --green: #1c7a3e;
    --mono: 'Space Mono', monospace;
    --sans: 'Inter', sans-serif;
    --hero: 'Bebas Neue', cursive;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background: var(--bg);
    color: var(--t1);
    font-family: var(--sans);
    -webkit-font-smoothing: antialiased;
}

/* FILM GRAIN */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: .35;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='f'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23f)' opacity='.06'/%3E%3C/svg%3E");
}

/* DIVIDERS */
hr {
    border: none;
    border-top: 1px solid var(--bd);
}

hr.hr--flush {
    margin-top: 0;
}

/* ── URGENCY BAR ─────────────────────────────────────────────────── */
#urgency-bar {
    background: var(--red);
    padding: .6rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    flex-wrap: wrap;
    text-align: center;
}

.ub-text {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: .08em;
    color: #fff;
    text-transform: uppercase;
}

.ub-text b {
    font-weight: 700;
}

#countdown {
    font-family: var(--mono);
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    background: rgba(0, 0, 0, .3);
    padding: .2rem .6rem;
    letter-spacing: .08em;
}

/* ── NAV ─────────────────────────────────────────────────────────── */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1.25rem;
    min-height: 52px;
    border-bottom: 1px solid var(--bd);
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(8, 8, 8, .97);
    backdrop-filter: blur(12px);
    margin-top: 20px;
}

.nav-brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo {
    height: 28px;
    width: auto;
    display: block;
}

.nav-pill {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #fff;
    background: var(--red);
    border: none;
    padding: 0 1rem;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
}

.nav-pill:hover {
    background: var(--red2);
}

/* ── HERO ─────────────────────────────────────────────────────────── */
.hero {
    max-width: 480px;
    margin: 0 auto;
    padding: 3rem 1.5rem 2rem;
    text-align: center;
}

/* LAUNCH BADGE */
.launch-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(212, 160, 23, .1);
    border: 1px solid rgba(212, 160, 23, 1);
    padding: .4rem .9rem;
    margin-bottom: 2rem;
}

.lb-dot {
    width: 6px;
    height: 6px;
    background: var(--yellow);
    border-radius: 50%;
    flex-shrink: 0;
    animation: pulse 1.4s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .3;
    }
}

.lb-text {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: .16em;
    color: var(--yellow);
    text-transform: uppercase;
}

/* BOOK */
.book-outer {
    position: relative;
    display: inline-block;
    margin: 0 1.5rem 2rem;
}

.book-img {
    width: 100%;
    display: block;
    border-radius: 2px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, .9), 0 0 0 1px rgba(255, 255, 255, .05);
}

/* PRICE TAG */
.price-tag {
    position: absolute;
    top: -12px;
    right: -16px;
    background: var(--red);
    padding: .4rem .7rem;
    text-align: center;
    box-shadow: 0 4px 16px rgba(200, 41, 28, .5);
}

.pt-was {
    font-family: var(--mono);
    font-size: 11px;
    color: rgba(255, 255, 255, .6);
    letter-spacing: .06em;
    text-decoration: line-through;
    display: block;
}

.pt-now {
    font-family: var(--hero);
    font-size: 1.5rem;
    color: #fff;
    line-height: 1;
    display: block;
}

.pt-label {
    font-family: var(--mono);
    font-size: 10px;
    color: rgba(255, 255, 255, .7);
    letter-spacing: .08em;
    text-transform: uppercase;
    display: block;
    margin-top: 1px;
}

/* SLOTS PROGRESS BAR — replaces 100-pip dot row */
.slots-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    margin-bottom: 1.5rem;
}

.slots-progress {
    width: 100%;
    max-width: 280px;
    height: 5px;
    background: var(--bd2);
}

.slots-fill {
    height: 100%;
    background: var(--red);
    transition: width .3s ease;
}

.slots-text {
    font-family: var(--mono);
    font-size: 14px;
    color: var(--t2);
    letter-spacing: .06em;
}

.slots-text b {
    color: var(--t1);
}

/* HEADLINE */
h1 {
    font-family: var(--hero);
    font-size: clamp(3.5rem, 15vw, 6rem);
    line-height: .9;
    color: var(--t1);
    letter-spacing: .03em;
    margin-bottom: .75rem;
}

h1 em {
    font-style: normal;
    color: var(--red);
}

.hero-sub {
    font-size: 15px;
    color: var(--t2);
    line-height: 1.75;
    margin-bottom: 2rem;
}

.hero-sub strong {
    color: var(--t1);
    font-weight: 500;
}

/* FORM */
.form-wrap {
    text-align: left;
}

.opt-in {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    margin-bottom: .5rem;
}

.opt-in input {
    background: var(--s1);
    border: 1px solid var(--bd2);
    color: var(--t1);
    font-family: var(--mono);
    font-size: 12px;
    padding: 0 1rem;
    min-height: 44px;
    outline: none;
    transition: border-color .15s;
    -webkit-appearance: none;
    border-radius: 0;
    letter-spacing: .04em;
    width: 100%;
}

.opt-in input::placeholder {
    color: var(--t3);
}

.opt-in input:focus {
    border-color: var(--red);
}

.cta-btn {
    width: 100%;
    background: var(--red);
    border: none;
    color: #fff;
    font-family: var(--mono);
    font-size: 13px;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 0 1rem;
    min-height: 44px;
    cursor: pointer;
    transition: background .15s;
    font-weight: 700;
}

.cta-btn:hover {
    background: var(--red2);
}

.micros {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
    margin-top: .45rem;
    justify-content: center;
}

.mc {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--t3);
    letter-spacing: .04em;
    display: flex;
    align-items: center;
    gap: .3rem;
}

.mc::before {
    content: '✓';
    color: var(--green);
}

.success-box {
    display: none;
    margin-top: .6rem;
    padding: .75rem 1rem;
    border: 1px solid rgba(28, 122, 62, .3);
    background: rgba(28, 122, 62, .07);
    font-family: var(--mono);
    font-size: 13px;
    color: #3dba6f;
    letter-spacing: .04em;
}

.success-box--center {
    text-align: center;
    margin-top: .75rem;
}

/* ── SECTION ─────────────────────────────────────────────────────── */
.sec {
    max-width: 480px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.sec-label {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .14em;
    color: var(--red);
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: .6rem;
}

.sec-label::before {
    content: '';
    width: 18px;
    height: 1px;
    background: var(--red);
    flex-shrink: 0;
}

.sec-label--center {
    justify-content: center;
    margin-bottom: 1.25rem;
}

h2 {
    font-family: var(--hero);
    font-size: clamp(2.4rem, 9vw, 3.8rem);
    line-height: .92;
    color: var(--t1);
    letter-spacing: .03em;
    margin-bottom: 1rem;
}

.body-text {
    font-size: 14px;
    color: var(--t2);
    line-height: 1.8;
}

.body-text strong {
    color: var(--t1);
    font-weight: 500;
}

/* LOSS BOX */
.loss-box {
    border-left: 2px solid var(--red);
    background: rgba(200, 41, 28, .07);
    padding: 1rem 1.1rem;
    margin-top: 1.25rem;
}

.loss-box p {
    font-size: 14px;
    color: var(--t1);
    line-height: 1.7;
}

.loss-box strong {
    color: #fff;
}

/* ── STATS ───────────────────────────────────────────────────────── */
/* Mobile: stacked rows with number + label inline */
.stats-band {
    background: var(--s1);
    border-top: 1px solid var(--bd);
    border-bottom: 1px solid var(--bd);
}

.stats-inner {
    max-width: 480px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1px;
    background: var(--bd);
}

.stat {
    background: var(--s1);
    padding: 1.1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.sn {
    font-family: var(--hero);
    font-size: 2.4rem;
    color: var(--t1);
    line-height: 1;
    flex-shrink: 0;
    min-width: 80px;
}

.sl {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--t2);
    letter-spacing: .04em;
    line-height: 1.5;
    text-transform: uppercase;
}

/* ── IDENTITY ────────────────────────────────────────────────────── */
.id-block {
    background: var(--s1);
    border: 1px solid var(--bd);
    padding: 1.25rem 1.25rem 1rem;
    margin-top: 1.25rem;
}

.id-eyebrow {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--t3);
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: .4rem;
}

.id-headline {
    font-family: var(--hero);
    font-size: 1.8rem;
    color: var(--t1);
    letter-spacing: .03em;
    margin-bottom: 1rem;
    line-height: 1;
}

.id-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .75rem;
}

.id-cell {
    background: var(--s2);
    border: 1px solid var(--bd);
    padding: .85rem .9rem;
}

.id-cell-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--t1);
    margin-bottom: .25rem;
    line-height: 1.3;
}

.id-cell-body {
    font-size: 13px;
    color: var(--t2);
    line-height: 1.55;
}

/* ── URGENCY ROW ─────────────────────────────────────────────────── */
.urg-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1px;
    background: var(--bd);
    margin-top: 1.25rem;
}

.urg-row--spaced {
    margin-top: 1.5rem;
}

.urg-item {
    background: var(--s1);
    padding: 1rem 1.1rem;
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: .75rem;
    align-items: start;
}

.urg-t {
    font-family: var(--hero);
    font-size: 1.25rem;
    color: var(--red);
    line-height: 1.05;
}

.urg-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--t1);
    margin-bottom: .2rem;
}

.urg-desc {
    font-size: 13px;
    color: var(--t2);
    line-height: 1.5;
}

/* ── CHAPTERS ────────────────────────────────────────────────────── */
/* Mobile: 1 column stacked */
.ch-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1px;
    background: var(--bd);
    margin-top: 1.25rem;
}

.ch-item {
    background: var(--s1);
    padding: .85rem .9rem;
}

.ch-n {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--red);
    letter-spacing: .08em;
    margin-bottom: .25rem;
}

.ch-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--t1);
    margin-bottom: .15rem;
    line-height: 1.35;
}

.ch-desc {
    font-size: 13px;
    color: var(--t2);
    line-height: 1.45;
}

/* ── OBJECTIONS ──────────────────────────────────────────────────── */
/* Mobile: 1 column */
.obj-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1px;
    background: var(--bd);
    margin-top: 1.25rem;
}

.obj-card {
    background: var(--s1);
    padding: 1rem 1.1rem;
}

.obj-q {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--t3);
    letter-spacing: .04em;
    margin-bottom: .45rem;
    font-style: italic;
}

.obj-a {
    font-size: 14px;
    color: var(--t1);
    line-height: 1.65;
}

.obj-a strong {
    color: #fff;
    font-weight: 500;
}

/* ── FINAL CTA ───────────────────────────────────────────────────── */
.final-cta {
    max-width: 480px;
    margin: 0 auto;
    padding: 3rem 1.5rem 4rem;
    text-align: center;
}

.price-was {
    font-family: var(--mono);
    font-size: 13px;
    color: var(--t3);
    letter-spacing: .05em;
    margin-bottom: .2rem;
}

.price-was s {
    opacity: .6;
}

.price-free {
    font-family: var(--hero);
    font-size: 3.5rem;
    color: var(--green);
    display: block;
    line-height: 1;
    margin-bottom: .25rem;
    letter-spacing: .05em;
}

.price-note {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--t3);
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.final-cta .opt-in {
    text-align: left;
    margin-bottom: .5rem;
}

.final-cta .micros {
    justify-content: center;
}

/* ── FOOTER ──────────────────────────────────────────────────────── */
footer {
    border-top: 1px solid var(--bd);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .75rem;
    text-align: center;
}

.foot-brand {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--t3);
    letter-spacing: .1em;
    text-transform: uppercase;
}

.foot-links {
    display: flex;
    gap: 1.5rem;
}

.foot-links a {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--t3);
    text-decoration: none;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.foot-links a:hover {
    color: var(--t2);
}

/* ── DESKTOP (≥ 720px) ───────────────────────────────────────────── */
@media (min-width: 720px) {

    .hero,
    .sec,
    .final-cta {
        max-width: 560px;
    }

    .hero {
        padding: 4.5rem 2rem 3rem;
    }

    .sec {
        padding: 5rem 2rem;
    }

    /* form: inline row */
    .opt-in {
        flex-direction: row;
    }

    .opt-in input {
        flex: 1;
    }

    .cta-btn {
        width: auto;
        white-space: nowrap;
    }

    /* stats: 3 columns, centred */
    .stats-inner {
        max-width: 560px;
        grid-template-columns: repeat(3, 1fr);
    }

    .stat {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.5rem .75rem;
        gap: .3rem;
    }

    .sn {
        min-width: unset;
        font-size: 2.2rem;
    }

    .sl {
        font-size: 11px;
    }

    /* grids: 2 columns */
    .id-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ch-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .obj-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .urg-row {
        grid-template-columns: repeat(3, 1fr);
    }

    .final-cta {
        padding: 4rem 2rem 5rem;
    }

    .final-cta .opt-in {
        max-width: 440px;
        margin: 0 auto .5rem;
    }

    footer {
        flex-direction: row;
        justify-content: space-between;
        padding: 1.5rem 2.5rem;
    }
}