/* ── Design Tokens ──────────────────────────────────────────── */
:root {
    --black:        #0A0A0A;
    --black-soft:   #111111;
    --black-card:   #161616;
    --cherry:       #8B001A;
    --cherry-bright:#A8002A;
    --gold:         #C9A84C;
    --gold-light:   #E2C97E;
    --cream:        #F5F0E8;
    --muted:        #7A7A7A;
    --border:       rgba(201,168,76,0.18);

    --font-serif:  'Cormorant Garamond', Georgia, serif;
    --font-sans:   'Montserrat', system-ui, sans-serif;

    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--black);
    color: var(--cream);
    font-family: var(--font-sans);
    font-weight: 300;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ── Scroll Reveal ───────────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out);
}

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

/* ── HERO ────────────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background:
        radial-gradient(ellipse 70% 60% at 50% 110%, rgba(139,0,26,0.22) 0%, transparent 70%),
        var(--black);
    overflow: hidden;
}

/* subtle noise texture overlay */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: 0.35;
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 40px 24px 80px;
    animation: fadeUp 1.2s var(--ease-out) both;
}

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

/* Capsule icon */
.capsule {
    margin-bottom: 36px;
    opacity: 0.9;
    filter: drop-shadow(0 0 18px rgba(201,168,76,0.25));
    animation: fadeUp 1.2s var(--ease-out) 0.1s both;
}

/* Brand name */
.brand-name {
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: clamp(64px, 14vw, 130px);
    letter-spacing: 0.14em;
    line-height: 1;
    color: var(--cream);
    margin-bottom: 24px;
    animation: fadeUp 1.2s var(--ease-out) 0.2s both;
}

/* Tagline */
.tagline {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 300;
    font-size: clamp(20px, 3.5vw, 30px);
    color: var(--gold);
    letter-spacing: 0.06em;
    margin-bottom: 52px;
    animation: fadeUp 1.2s var(--ease-out) 0.35s both;
}

/* Hero CTA */
.hero-cta {
    display: inline-block;
    padding: 16px 44px;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    transition: background 0.3s var(--ease-out), color 0.3s var(--ease-out),
                box-shadow 0.3s var(--ease-out);
    animation: fadeUp 1.2s var(--ease-out) 0.5s both;
}

.hero-cta:hover {
    background: var(--gold);
    color: var(--black);
    box-shadow: 0 0 36px rgba(201,168,76,0.25);
}

/* Scroll hint line */
.scroll-hint {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.scroll-line {
    display: block;
    width: 1px;
    height: 56px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2.4s ease-in-out infinite;
    margin: 0 auto;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.2; transform: scaleY(0.6); }
    50%       { opacity: 0.8; transform: scaleY(1); }
}

/* ── INTRO ───────────────────────────────────────────────────── */
.intro {
    padding: 110px 0 100px;
    border-top: 1px solid var(--border);
    background: var(--black-soft);
}

.intro-text {
    font-family: var(--font-serif);
    font-size: clamp(22px, 3vw, 36px);
    font-weight: 300;
    line-height: 1.55;
    text-align: center;
    max-width: 780px;
    margin: 0 auto;
    color: var(--cream);
    letter-spacing: 0.01em;
}

/* ── BENEFITS ────────────────────────────────────────────────── */
.benefits {
    padding: 110px 0;
    background: var(--black);
    border-top: 1px solid var(--border);
}

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

.benefit {
    padding: 56px 40px;
    background: var(--black-card);
    border: 1px solid var(--border);
    transition: border-color 0.3s ease, background 0.3s ease;
}

.benefit:hover {
    border-color: rgba(201,168,76,0.45);
    background: #181818;
}

.benefit-num {
    display: block;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 13px;
    letter-spacing: 0.2em;
    color: var(--gold);
    margin-bottom: 24px;
}

.benefit-title {
    font-family: var(--font-serif);
    font-size: 26px;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: var(--cream);
    margin-bottom: 16px;
}

.benefit-desc {
    font-size: 14px;
    line-height: 1.75;
    color: var(--muted);
    font-weight: 300;
    letter-spacing: 0.02em;
}

/* ── HOW IT WORKS ────────────────────────────────────────────── */
.how-it-works {
    padding: 110px 0;
    background: var(--black-soft);
    border-top: 1px solid var(--border);
}

.section-label {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 64px;
    display: block;
    text-align: center;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
}

.step {
    padding: 56px 40px;
    background: var(--black-soft);
    transition: background 0.3s ease;
}

.step:hover {
    background: #141414;
}

.step-num {
    display: block;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 48px;
    font-weight: 300;
    color: rgba(201,168,76,0.18);
    line-height: 1;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.step-title {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 16px;
    letter-spacing: 0.02em;
}

.step-desc {
    font-size: 14px;
    line-height: 1.8;
    color: var(--muted);
    font-weight: 300;
    letter-spacing: 0.02em;
}

/* ── ABOUT ───────────────────────────────────────────────────── */
.about {
    padding: 120px 0;
    background: var(--black);
    border-top: 1px solid var(--border);
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.about-eyebrow {
    display: block;
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
}

.about-title {
    font-family: var(--font-serif);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 600;
    line-height: 1.2;
    color: var(--cream);
    letter-spacing: 0.02em;
    margin-bottom: 32px;
}

.about-body {
    font-size: 14px;
    line-height: 1.85;
    color: var(--muted);
    font-weight: 300;
    letter-spacing: 0.02em;
    margin-bottom: 18px;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    align-self: center;
}

.stat {
    padding: 40px 32px;
    background: var(--black-card);
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: background 0.3s ease;
}

.stat:hover {
    background: #181818;
}

.stat-num {
    font-family: var(--font-serif);
    font-size: clamp(28px, 3.5vw, 38px);
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.02em;
    line-height: 1;
}

.stat-label {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
}

/* ── WAITLIST ────────────────────────────────────────────────── */
.waitlist {
    padding: 120px 0;
    background:
        radial-gradient(ellipse 60% 80% at 50% 0%, rgba(139,0,26,0.15) 0%, transparent 70%),
        var(--black-soft);
    border-top: 1px solid var(--border);
    text-align: center;
}

.waitlist-inner {
    max-width: 620px;
}

.waitlist-title {
    font-family: var(--font-serif);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--cream);
    margin-bottom: 20px;
}

.waitlist-sub {
    font-size: 14px;
    color: var(--muted);
    letter-spacing: 0.03em;
    line-height: 1.8;
    margin-bottom: 48px;
}

.waitlist-form {
    display: flex;
    gap: 0;
    max-width: 500px;
    margin: 0 auto;
}

.waitlist-input {
    flex: 1;
    padding: 16px 24px;
    background: transparent;
    border: 1px solid var(--border);
    border-right: none;
    color: var(--cream);
    font-family: var(--font-sans);
    font-size: 13px;
    letter-spacing: 0.05em;
    outline: none;
    transition: border-color 0.25s ease;
}

.waitlist-input::placeholder {
    color: var(--muted);
}

.waitlist-input:focus {
    border-color: var(--gold);
}

.waitlist-btn {
    padding: 16px 32px;
    background: var(--gold);
    border: 1px solid var(--gold);
    color: var(--black);
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease;
    white-space: nowrap;
}

.waitlist-btn:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
}

.form-message {
    margin-top: 20px;
    font-size: 13px;
    letter-spacing: 0.05em;
    min-height: 20px;
    color: var(--gold);
}

/* ── FOOTER ──────────────────────────────────────────────────── */
.footer {
    padding: 36px 0;
    border-top: 1px solid var(--border);
    background: var(--black);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-brand {
    font-family: var(--font-serif);
    font-size: 14px;
    letter-spacing: 0.18em;
    color: var(--muted);
    text-transform: uppercase;
}

.footer-email {
    font-size: 13px;
    letter-spacing: 0.05em;
    color: var(--muted);
    transition: color 0.2s ease;
}

.footer-email:hover {
    color: var(--gold);
}

/* ── Focus styles (keyboard navigation) ─────────────────────── */
:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 4px;
}

.waitlist-input:focus-visible {
    outline: none;
    border-color: var(--gold);
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 768px) {
    .benefits-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .about-inner {
        grid-template-columns: 1fr;
        gap: 56px;
    }

    .about-stats {
        grid-template-columns: 1fr 1fr;
    }

    .benefit {
        padding: 44px 28px;
    }

    .waitlist-form {
        flex-direction: column;
        gap: 0;
    }

    .waitlist-input {
        border-right: 1px solid var(--border);
        border-bottom: none;
    }

    .waitlist-input:focus {
        border-color: var(--gold);
    }

    .waitlist-btn {
        padding: 16px;
    }

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

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
}
