/* ============================================
   WOT — WIDE OPEN THROTTLE | Phase 1
   Black dominant. One accent. Mobile first.
   ============================================ */

:root {
    --black: #000000;
    --accent: #e9e9ee;        /* chrome silver — the monochrome accent */
    --accent-dim: #b9b9c0;
    --white: #f7f7f5;
    --grey: #8c8c90;          /* cool grey, secondary text */

    /* Metallic / chrome gradients for the shiny treatment */
    --chrome: linear-gradient(180deg, #ffffff 0%, #d2d2d8 38%, #8e8e96 52%, #f2f2f5 70%, #b4b4bc 100%);
    --chrome-soft: linear-gradient(180deg, #ffffff 0%, #cfcfd4 45%, #ffffff 100%);
    --glass: linear-gradient(180deg, rgba(255,255,255,0.14), rgba(255,255,255,0.02));

    --font-display: 'Bebas Neue', 'Arial Narrow', sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;

    --max: 1200px;
    --pad: clamp(1.25rem, 5vw, 4rem);
}

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

/* Ensure the hidden attribute always wins over display rules (wizard buttons) */
[hidden] { display: none !important; }

/* ============================ INTRO SPLASH ============================ */
html.intro-active { overflow: hidden; }
html.intro-skip .intro { display: none; }
.intro {
    position: fixed;
    inset: 0;
    z-index: 3000;
    background: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.75rem;
    padding: 2rem clamp(1.5rem, 6vw, 5rem);
    text-align: center;
    will-change: transform;
    transition: transform 1.05s cubic-bezier(.76, 0, .24, 1);
}
/* Glowing light strip on the bottom edge as the curtain lifts */
.intro::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 2px;
    background: var(--chrome);
    box-shadow: 0 0 30px 4px rgba(255,255,255,0.55);
    opacity: 0;
    transition: opacity .3s ease;
}
/* Phase 1: text lifts + fades */
.intro.is-exiting .intro-quote,
.intro.is-exiting .intro-rule,
.intro.is-exiting .intro-hint {
    opacity: 0;
    transform: translateY(-14px);
    transition: opacity .45s ease, transform .55s cubic-bezier(.4,0,.2,1);
}
/* Phase 2: black panel slides up like a garage door */
.intro.is-lift {
    transform: translateY(-100%);
    pointer-events: none;
}
.intro.is-lift::after { opacity: 1; }

/* Hero eases in behind the lifting curtain */
html.intro-revealing .hero-content { animation: heroReveal 1.2s cubic-bezier(.2,.7,.2,1) both; }
html.intro-revealing .hero-video { animation: heroVideoReveal 1.6s ease both; }
@keyframes heroReveal { from { opacity: 0; transform: translateY(26px) scale(.985); } to { opacity: 1; transform: none; } }
@keyframes heroVideoReveal { from { transform: scale(1.08); } to { transform: scale(1); } }
@media (prefers-reduced-motion: reduce) {
    html.intro-revealing .hero-content,
    html.intro-revealing .hero-video { animation: none; }
}
.intro-quote {
    max-width: 18ch;
    font-family: 'Inter', sans-serif;
    font-weight: 200;
    font-size: clamp(1.6rem, 5.2vw, 3.4rem);
    line-height: 1.18;
    letter-spacing: 0.005em;
    color: #f7f7f5;
    text-wrap: balance;
}
.intro-quote .intro-line {
    display: block;
    opacity: 0;
    transform: translateY(18px);
    animation: introLineIn .9s cubic-bezier(.2,.7,.2,1) forwards;
}
.intro-quote .intro-line:nth-child(1) { animation-delay: .25s; }
.intro-quote .intro-line:nth-child(2) { animation-delay: .65s; }
.intro-quote .intro-line:nth-child(2) { color: #c9c9cf; }
@keyframes introLineIn { to { opacity: 1; transform: none; } }

.intro-rule {
    width: 0; height: 2px;
    background: var(--chrome);
    box-shadow: 0 0 14px rgba(255,255,255,0.4);
    animation: introRule 1s ease forwards;
    animation-delay: 1.1s;
}
@keyframes introRule { to { width: clamp(60px, 12vw, 120px); } }

.intro-hint {
    font-size: 0.72rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #5f5f64;
    opacity: 0;
    animation: introHint 1s ease forwards;
    animation-delay: 1.8s;
}
@keyframes introHint { to { opacity: 1; } }

@media (prefers-reduced-motion: reduce) {
    .intro-quote .intro-line, .intro-rule, .intro-hint { animation: none; opacity: 1; transform: none; }
    .intro-rule { width: clamp(60px, 12vw, 120px); }
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ---------- Shared ---------- */
.section-title {
    font-family: var(--font-body);
    font-weight: 200;
    line-height: 1.05;
    letter-spacing: 0.01em;
    font-size: clamp(2rem, 6.5vw, 3.7rem);
    text-transform: uppercase;
    background: var(--chrome);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 2px 10px rgba(0,0,0,0.55));
}
.section-title.center { text-align: center; }

.curiosity {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 5vw, 2.4rem);
    letter-spacing: 0.02em;
    text-transform: uppercase;
    line-height: 1;
    background: var(--chrome-soft);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.btn-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    color: #0a0a0a;
    font-family: var(--font-display);
    font-size: 1.3rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 1rem 2.5rem;
    border: 1px solid var(--white);
    border-radius: 2px;
    cursor: pointer;
    transition: background .25s ease, color .25s ease, transform .12s ease;
    min-height: 54px;
    line-height: 1;
}
.btn-primary:hover { background: transparent; color: var(--white); }
.btn-primary:active { transform: translateY(1px); }
.btn-primary.full { width: 100%; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    html { scroll-behavior: auto; }
}

/* ============================ STICKY BAR ============================ */
.sticky-bar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem var(--pad);
    background: rgba(0,0,0,0.9);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transform: translateY(-110%);
    transition: transform .4s ease;
}
.sticky-bar.visible { transform: translateY(0); }
.sticky-logo {
    font-family: var(--font-display);
    font-size: 1.8rem;
    letter-spacing: 0.12em;
    color: var(--white);
    display: flex;
    align-items: center;
}
.sticky-logo img { height: 22px; width: auto; display: block; }
.sticky-cta {
    font-family: var(--font-display);
    font-size: 1.05rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: var(--white);
    color: #0a0a0a;
    padding: 0.6rem 1.35rem;
    border-radius: 2px;
    border: 1px solid var(--white);
    transition: background .25s ease, color .25s ease;
}
.sticky-cta:hover { background: transparent; color: var(--white); }

/* ============================ HERO ============================ */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 0;
    will-change: transform;
    filter: grayscale(100%) contrast(1.12) brightness(0.82);
}
.hero-overlay {
    position: absolute; inset: 0; z-index: 1;
    background:
        radial-gradient(120% 80% at 50% 30%, rgba(0,0,0,0.25), rgba(0,0,0,0.85) 100%),
        linear-gradient(180deg, rgba(0,0,0,0.5), rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.95));
}
.hero-content {
    position: relative;
    z-index: 2;
    padding: 6rem var(--pad) 5rem;
    max-width: 900px;
    will-change: transform;
}
.hero-logo {
    height: clamp(36px, 8vw, 52px);
    width: auto;
    margin: 0 auto 1.25rem;
    opacity: 0.95;
    filter: drop-shadow(0 4px 24px rgba(0,0,0,0.6));
}
.hero-logo-wrap { margin: 0; line-height: 0; }
.hero-logo--xl {
    height: auto;
    width: min(92vw, 880px);
    margin: 0 auto;
    filter: drop-shadow(0 8px 40px rgba(0,0,0,0.7));
}
.sr-only {
    position: absolute; width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.tm { font-size: 0.4em; vertical-align: super; letter-spacing: 0; -webkit-text-fill-color: var(--accent-dim); }
.hero-title {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 0.86;
    text-transform: uppercase;
    font-size: clamp(4rem, 19vw, 11rem);
    letter-spacing: 0.005em;
    background: linear-gradient(180deg, #ffffff 0%, #e3e3e8 30%, #9a9aa2 54%, #ffffff 72%, #c7c7cf 100%);
    background-size: 100% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 3px 18px rgba(0,0,0,0.7));
    animation: chromeShine 6s ease-in-out infinite;
}
@keyframes chromeShine { 0%,100%{ background-position: 50% 0%; } 50%{ background-position: 50% 100%; } }
@media (prefers-reduced-motion: reduce) { .hero-title { animation: none; } }
.hero-title .title-line { display: block; }
.hero-sub {
    font-family: var(--font-body);
    font-weight: 200;
    font-size: clamp(1.05rem, 3vw, 1.7rem);
    letter-spacing: 0.04em;
    color: var(--white);
    margin-top: 1.4rem;
}
.hero-body {
    font-size: clamp(1rem, 2.6vw, 1.25rem);
    color: var(--grey);
    margin-top: 1rem;
    letter-spacing: 0.02em;
}
.hero-cta { margin-top: 2.25rem; }
.hero-fine {
    margin-top: 1.25rem;
    font-size: 0.85rem;
    color: var(--grey);
    line-height: 1.6;
}

.scroll-indicator {
    position: absolute;
    bottom: 1.75rem; left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}
.scroll-line {
    display: block;
    width: 1px; height: 48px;
    background: linear-gradient(var(--accent), transparent);
    animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:.3;transform:scaleY(.6)} 50%{opacity:1;transform:scaleY(1)} }

/* ============================ SOCIAL PROOF ============================ */
.proof {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    padding: clamp(3rem, 8vw, 5rem) var(--pad);
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    background: linear-gradient(180deg, #050505, #000);
}
.proof-item {
    position: relative;
    overflow: hidden;
    display: flex; flex-direction: column; gap: 0.35rem;
    padding: 1.75rem 1.25rem;
    border: 1px solid rgba(255,255,255,0.06);
    border-top: 2px solid var(--accent);
    background: rgba(255,255,255,0.02);
    border-radius: 3px;
}
.proof-number {
    font-family: var(--font-display);
    font-size: clamp(3rem, 11vw, 5rem);
    line-height: 0.9;
    letter-spacing: 0.01em;
    background: var(--chrome);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}
.proof-label {
    font-size: 0.8rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--grey);
}

/* ============================ ABOUT ============================ */
.about {
    padding: clamp(4rem, 10vw, 7rem) var(--pad);
    background: #030303;
}
.about-grid {
    max-width: var(--max);
    margin: 0 auto;
    display: grid;
    gap: clamp(2rem, 6vw, 4rem);
    grid-template-columns: 1fr;
}
.about-photos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}
.photo-tile {
    aspect-ratio: 1 / 1;
    background: linear-gradient(135deg, #141414, #050505);
    border: 1px solid rgba(255,255,255,0.06);
    position: relative;
    overflow: hidden;
    transition: transform .35s ease, border-color .35s ease;
}
.photo-tile:hover { transform: scale(1.02); border-color: rgba(235,235,240,0.35); z-index: 1; }
.photo-tile--hero {
    background:
        linear-gradient(180deg, rgba(0,0,0,0.15), rgba(0,0,0,0.75)),
        url('assets/hero-poster.jpg') center / cover no-repeat;
}
.photo-tile--a { background: linear-gradient(160deg, #1a0a0a 0%, #0a0a0a 50%, #120808 100%); }
.photo-tile--b { background: linear-gradient(200deg, #101820 0%, #080808 100%); }
.photo-tile--c { background: linear-gradient(140deg, #181818 0%, #0c0c0c 60%, #1a1010 100%); }
.photo-tile--d { background: linear-gradient(220deg, #0f1218 0%, #080808 100%); }
.photo-tile--e { background: linear-gradient(170deg, #141414 0%, #0a0808 100%); }
.photo-tile::after {
    content: attr(data-label);
    position: absolute;
    bottom: 8px; left: 10px;
    font-family: var(--font-display);
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.18);
}
.photo-tile::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 30%, rgba(235,235,240,0.12), transparent 60%);
}
.about-text { align-self: center; }
.about-copy { margin-top: 1.5rem; color: var(--grey); font-size: 1.08rem; font-weight: 300; }
.about-copy p { margin-bottom: 1.1rem; }
.about-copy .lead-line {
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 200;
    font-size: clamp(1.7rem, 4.5vw, 2.4rem);
    letter-spacing: 0.01em;
    line-height: 1.15;
}
.about-copy .curiosity { margin-top: 0.5rem; }

/* ============================ PILLARS ============================ */
.pillars { padding: clamp(3rem, 8vw, 6rem) var(--pad); border-top: 1px solid rgba(255,255,255,0.07); }
.pillars-grid {
    max-width: var(--max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.07);
}
.pillar {
    background: var(--black);
    padding: 2.25rem 1.75rem;
}
.pillar h3 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 2rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}
.pillar h3::before {
    content: '';
    display: block;
    width: 36px; height: 3px;
    background: var(--accent);
    margin-bottom: 1rem;
}
.pillar p { color: var(--grey); font-size: 1rem; }

/* ============================ MAP ============================ */
.map-section {
    padding: clamp(4rem, 10vw, 7rem) var(--pad);
    text-align: center;
    background:
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(235,235,240,0.06), transparent 60%),
        #000;
}
.map-visual {
    max-width: var(--max);
    margin: 2.5rem auto;
    aspect-ratio: 950 / 620;
    background: radial-gradient(ellipse at 50% 45%, #0e0e0e, #030303);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(235,235,240,0.08),
        0 24px 80px rgba(0,0,0,0.65),
        inset 0 1px 0 rgba(255,255,255,0.04);
}
/* Corner accents */
.map-visual::before,
.map-visual::after {
    content: '';
    position: absolute;
    width: 28px; height: 28px;
    border: 2px solid var(--accent);
    opacity: 0.55;
    z-index: 4;
    pointer-events: none;
}
.map-visual::before { top: 12px; left: 12px; border-right: 0; border-bottom: 0; }
.map-visual::after { bottom: 12px; right: 12px; border-left: 0; border-top: 0; }

.map-world {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.32;
    filter: drop-shadow(0 0 24px rgba(255,255,255,0.04));
    z-index: 1;
    pointer-events: none;
}

.map-dots { position: absolute; inset: 0; z-index: 2; }
.map-dots .dot {
    position: absolute;
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 10px rgba(235,235,240,0.95), 0 0 20px rgba(235,235,240,0.4);
    transform: translate(-50%, -50%);
    animation: dotPulse 3s ease-in-out infinite;
}
.map-dots .dot.sm { width: 4px; height: 4px; opacity: 0.75; box-shadow: 0 0 6px rgba(235,235,240,0.7); }
@keyframes dotPulse { 0%,100%{opacity:.5; transform:translate(-50%,-50%) scale(1)} 50%{opacity:1; transform:translate(-50%,-50%) scale(1.15)} }

.map-vignette {
    position: absolute; inset: 0; z-index: 3; pointer-events: none;
    background:
        radial-gradient(ellipse 90% 80% at 50% 50%, transparent 40%, rgba(0,0,0,0.55) 100%),
        linear-gradient(180deg, rgba(0,0,0,0.35) 0%, transparent 20%, transparent 80%, rgba(0,0,0,0.4) 100%);
}

.map-copy {
    color: var(--grey);
    font-size: 1.05rem;
    max-width: 520px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    border: 1px solid rgba(255,255,255,0.07);
    border-top: 2px solid var(--accent);
    background: rgba(255,255,255,0.02);
    border-radius: 4px;
}
.map-copy p { margin-bottom: 0.85rem; }
.map-copy .curiosity { margin-top: 0.5rem; }

/* ============================ REGISTER ============================ */
.register {
    padding: clamp(4rem, 10vw, 7rem) var(--pad);
    background:
        linear-gradient(180deg, #060606, #000);
    border-top: 1px solid rgba(255,255,255,0.07);
}
.register-inner { max-width: 560px; margin: 0 auto; }
.register-sub {
    text-align: center;
    color: var(--grey);
    font-weight: 300;
    font-size: 1.08rem;
    margin-top: 1rem;
    margin-bottom: 2.5rem;
}
.register-form { display: flex; flex-direction: column; gap: 1.25rem; }

/* ---- Wizard ---- */
.wizard { display: flex; flex-direction: column; }
.wizard-progress { margin-bottom: 2rem; }
.wizard-progress-track {
    height: 3px;
    background: rgba(255,255,255,0.12);
    border-radius: 2px;
    overflow: hidden;
}
.wizard-progress-fill {
    height: 100%;
    width: 14%;
    background: var(--accent);
    border-radius: 2px;
    transition: width .35s ease;
}
.wizard-step-label {
    display: block;
    margin-top: 0.6rem;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--grey);
}
.step {
    border: 0;
    margin: 0; padding: 0;
    display: none;
    flex-direction: column;
    gap: 1.1rem;
    animation: stepIn .35s ease;
}
.step.is-active { display: flex; }
.step legend {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 6vw, 2.25rem);
    letter-spacing: 0.03em;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 0.4rem;
    padding: 0;
}
.step-help { color: var(--grey); font-size: 0.95rem; margin-top: -0.4rem; }

/* Follow rows: white icon badge + handle input + follow button */
.social-list { display: flex; flex-direction: column; gap: 0.85rem; }
.social-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0.7rem;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    background: rgba(255,255,255,0.02);
    transition: border-color .25s ease, background .25s ease;
}
.social-row.is-complete { border-color: rgba(255,255,255,0.45); background: rgba(255,255,255,0.05); }
.social-icon {
    width: 42px; height: 42px;
    flex-shrink: 0;
    border-radius: 10px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.9), 0 2px 8px rgba(0,0,0,0.4);
}
.social-icon svg { width: 22px; height: 22px; fill: #0a0a0a; display: block; }
.social-handle {
    flex: 1;
    min-width: 0;
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(255,255,255,0.16);
    color: var(--white);
    padding: 0.5rem 0.25rem;
    font-family: var(--font-body);
    font-size: 0.98rem;
    border-radius: 0;
    transition: border-color .2s ease;
}
.social-handle::placeholder { color: #5a5a5e; }
.social-handle:focus { outline: none; border-bottom-color: var(--white); }

.follow-btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1.1rem;
    border: 1px solid rgba(255,255,255,0.55);
    border-radius: 999px;
    background: transparent;
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
    transition: background .25s ease, color .25s ease, border-color .25s ease, transform .12s ease;
}
.follow-btn:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.follow-btn:active { transform: translateY(1px); }
.follow-btn.is-followed {
    background: var(--white);
    color: #0a0a0a;
    border-color: var(--white);
}
@media (max-width: 480px) {
    .social-row { flex-wrap: wrap; }
    .social-handle { order: 3; flex-basis: 100%; }
}
@keyframes stepIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

.opt { color: #5f5f5c; text-transform: none; letter-spacing: 0; font-size: 0.78em; }

.wizard-nav {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.75rem;
}
.wizard-nav .btn-primary { flex: 1; }
.btn-ghost {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.22);
    font-family: var(--font-display);
    font-size: 1.35rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 1rem 1.75rem;
    border-radius: 2px;
    cursor: pointer;
    min-height: 56px;
    line-height: 1;
    transition: border-color .25s ease, color .25s ease;
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

/* ---- Media upload ---- */
.media-disclaimer {
    font-size: 0.82rem;
    color: var(--grey);
    line-height: 1.55;
    margin-bottom: 1rem;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 4px;
    background: rgba(255,255,255,0.03);
}
.media-upload { margin-top: 0.25rem; }
.media-drop {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    text-align: center;
    padding: 2rem 1rem;
    border: 1.5px dashed rgba(255,255,255,0.22);
    border-radius: 4px;
    background: #0a0a0a;
    cursor: pointer;
    transition: border-color .2s ease, background .2s ease;
}
.media-drop:hover { border-color: var(--accent); background: #0e0e0e; }
.media-drop-icon { font-family: var(--font-display); font-size: 2.5rem; line-height: 1; color: var(--accent); }
.media-drop-text { font-size: 0.95rem; color: var(--white); }
.media-drop-hint { font-size: 0.78rem; color: var(--grey); }
.media-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}
@media (min-width: 560px) {
    .media-grid { grid-template-columns: repeat(3, 1fr); }
}
.media-grid-item {
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 4px;
    overflow: hidden;
    background: #0a0a0a;
}
.media-grid-item img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
}
.media-grid-caption input {
    width: 100%;
    border: none;
    border-top: 1px solid rgba(255,255,255,0.08);
    background: #111;
    color: var(--white);
    font-size: 0.8rem;
    padding: 0.5rem 0.6rem;
    font-family: inherit;
}
.media-grid-caption input::placeholder { color: rgba(255,255,255,0.35); }
.media-grid-caption input:focus { outline: none; background: #161616; }
.media-grid-remove {
    position: absolute;
    top: 0.35rem;
    right: 0.35rem;
    width: 1.6rem;
    height: 1.6rem;
    border: none;
    border-radius: 50%;
    background: rgba(0,0,0,0.72);
    color: var(--white);
    font-size: 1.1rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}
.media-grid-remove:hover { background: rgba(0,0,0,0.9); }
.media-grid-add {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    aspect-ratio: 1;
    border: 1.5px dashed rgba(255,255,255,0.22);
    border-radius: 4px;
    background: #0a0a0a;
    cursor: pointer;
    text-align: center;
    padding: 0.5rem;
    transition: border-color .2s ease, background .2s ease;
}
.media-grid-add:hover { border-color: var(--accent); background: #0e0e0e; }
.media-grid-add-icon { font-family: var(--font-display); font-size: 1.75rem; line-height: 1; color: var(--accent); }
.media-grid-add-text { font-size: 0.72rem; color: var(--grey); text-transform: uppercase; letter-spacing: 0.05em; }

.tag-note { font-size: 0.85rem; color: var(--grey); line-height: 1.55; }
.tag-note strong { color: var(--white); }
.tag-note .tag-edit { color: var(--white); text-decoration: underline; text-underline-offset: 2px; white-space: nowrap; }
.tag-note .tag-edit:hover { color: var(--accent); }

.consent {
    display: flex;
    gap: 0.65rem;
    align-items: flex-start;
    font-size: 0.9rem;
    color: var(--grey);
    line-height: 1.5;
    cursor: pointer;
}
.consent input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--accent); flex-shrink: 0; cursor: pointer; }
.consent strong { color: var(--white); }

.field { display: flex; flex-direction: column; gap: 0.5rem; }
.field label {
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--grey);
}
.field input, .field select, .field textarea {
    width: 100%;
    background: #0c0c0c;
    border: 1px solid rgba(255,255,255,0.14);
    color: var(--white);
    padding: 1rem 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    border-radius: 2px;
    transition: border-color .2s ease;
}
.field textarea { resize: vertical; min-height: 88px; line-height: 1.5; }
.field input:focus, .field select:focus, .field textarea:focus {
    outline: none;
    border-color: var(--accent);
}
.field select { appearance: none; -webkit-appearance: none; cursor: pointer;
    background-image: linear-gradient(45deg, transparent 50%, var(--grey) 50%), linear-gradient(135deg, var(--grey) 50%, transparent 50%);
    background-position: calc(100% - 20px) center, calc(100% - 14px) center;
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
}
.field input::placeholder { color: #555; }
.field-note { font-size: 0.78rem; color: var(--grey); line-height: 1.5; margin-top: 0.1rem; }
.field-note a { color: var(--white); text-decoration: underline; text-underline-offset: 2px; }
.form-error { color: var(--accent); font-size: 0.85rem; min-height: 1rem; }
.register-fine a { color: var(--white); text-decoration: underline; text-underline-offset: 2px; }
.register-fine {
    text-align: center;
    color: var(--grey);
    font-size: 0.82rem;
    margin-top: 1.5rem;
    line-height: 1.6;
}

/* Confirmation */
.confirmation { text-align: center; }
.confirm-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 12vw, 5rem);
    line-height: 0.9;
    color: var(--accent);
    text-transform: uppercase;
}
.confirm-number {
    margin: 1.5rem auto;
    display: inline-flex;
    flex-direction: column;
    gap: 0.4rem;
    padding: 1.5rem 2.5rem;
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 2px;
    background: #0a0a0a;
}
.confirm-number-label { font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--grey); }
.confirm-number-value { font-family: var(--font-display); font-size: clamp(2.5rem, 10vw, 3.5rem); line-height: 1; }
.confirm-country { font-size: 1rem; letter-spacing: 0.05em; color: var(--white); }
.confirm-note { color: var(--grey); margin-bottom: 2rem; }
.confirm-repost { text-align: left; max-width: 520px; margin: 0 auto 2rem; }
.confirm-repost-label {
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--grey);
    margin-bottom: 0.45rem;
    text-align: center;
}
.confirm-repost-help { color: var(--grey); font-size: 0.92rem; margin-bottom: 1rem; text-align: center; line-height: 1.5; }
.confirm-repost-hint { text-align: center; font-size: 0.82rem; color: var(--accent); margin-top: 0.75rem; }
.confirm-repost-label .opt { text-transform: none; letter-spacing: 0; font-size: 0.85em; }
.repost-row .repost-preview {
    flex: 1;
    min-width: 0;
    font-size: 0.88rem;
    color: var(--grey);
    line-height: 1.35;
}
.repost-btn { cursor: pointer; }
@media (max-width: 480px) {
    .repost-row { flex-wrap: wrap; }
    .repost-row .repost-preview { order: 3; flex-basis: 100%; padding-left: calc(42px + 0.75rem); }
}
.confirm-divider { height: 1px; background: rgba(255,255,255,0.1); margin: 2.25rem 0; }
.confirm-referral-q { font-family: var(--font-display); font-size: 1.5rem; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 0.5rem; }
.confirm-referral-copy { color: var(--grey); margin-bottom: 1.25rem; }
.referral-link-box {
    text-align: left;
    max-width: 520px;
    margin: 0 auto 1.25rem;
    padding: 0.9rem 1rem;
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 4px;
    background: #0a0a0a;
}
.referral-link-label {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--grey);
    margin-bottom: 0.45rem;
}
.referral-link-url {
    display: block;
    font-size: 0.88rem;
    color: var(--white);
    word-break: break-all;
    line-height: 1.45;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.referral-link-url:hover { color: var(--accent); }
.referral-welcome {
    text-align: center;
    max-width: 36rem;
    margin: 0 auto 1.5rem;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 4px;
    background: rgba(255,255,255,0.03);
    color: var(--white);
    font-size: 0.95rem;
    line-height: 1.5;
}
.referral-welcome strong { color: var(--accent); font-weight: 600; }
.referral-feedback { color: var(--accent); font-size: 0.85rem; min-height: 1rem; margin-top: 0.85rem; letter-spacing: 0.06em; }

/* ============================ COMING / COUNTDOWN ============================ */
.coming {
    padding: clamp(4rem, 11vw, 8rem) var(--pad);
    text-align: center;
    background:
        radial-gradient(120% 90% at 50% 0%, rgba(235,235,240,0.08), transparent 55%),
        #000;
    border-top: 1px solid rgba(255,255,255,0.07);
}
.coming-inner { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 1.75rem; }
.coming-copy { color: var(--grey); font-weight: 300; font-size: 1.08rem; }
.coming-copy p { margin-bottom: 0.85rem; }
.countdown {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: clamp(0.4rem, 2vw, 1.25rem);
}
.count-unit { display: flex; flex-direction: column; align-items: center; min-width: clamp(56px, 18vw, 96px); }
.count-value {
    font-family: var(--font-display);
    font-size: clamp(2.75rem, 13vw, 5rem);
    line-height: 0.9;
    color: var(--white);
}
.count-label { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--grey); margin-top: 0.4rem; }
.count-sep { font-family: var(--font-display); font-size: clamp(2.25rem, 10vw, 4rem); line-height: 0.9; color: var(--accent); }
.coming-after { color: var(--grey); }

/* ============================ MOMENTS ============================ */
.moments { padding: clamp(4rem, 10vw, 7rem) var(--pad); text-align: center; }
.moments-grid {
    max-width: var(--max);
    margin: 2.5rem auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}
.moment-tile {
    aspect-ratio: 1 / 1;
    background: linear-gradient(135deg, #131313, #050505);
    border: 1px solid rgba(255,255,255,0.06);
    position: relative;
    overflow: hidden;
    transition: transform .4s ease, border-color .35s ease;
}
.moment-tile--photo {
    background:
        linear-gradient(180deg, rgba(0,0,0,0.1), rgba(0,0,0,0.7)),
        url('assets/hero-poster.jpg') center / cover no-repeat;
}
.moment-tile--a { background: linear-gradient(145deg, #1a1010, #080808); }
.moment-tile--b { background: linear-gradient(160deg, #101820, #060606); }
.moment-tile--c { background: linear-gradient(200deg, #141414, #0a0808); }
.moment-tile--d { background: linear-gradient(120deg, #121820, #080808); }
.moment-tile--e { background: linear-gradient(180deg, #161616, #0a0a0a); }
.moment-tile--f { background: linear-gradient(210deg, #181010, #080808); }
.moment-tile--g { background: linear-gradient(135deg, #0f0f0f, #1a0a0a); }
.moments-social p { font-size: 0.8rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--grey); margin-bottom: 0.85rem; }
.moments-links { display: flex; flex-direction: column; gap: 0.6rem; align-items: center; }
.moments-links a { color: var(--white); letter-spacing: 0.04em; transition: color .2s ease; }
.moments-links a:hover { color: var(--accent); }

/* ============================ FOOTER ============================ */
.footer {
    padding: clamp(2rem, 5vw, 3rem) var(--pad);
    border-top: 1px solid rgba(255,255,255,0.07);
    text-align: left;
}
.footer-inner {
    max-width: var(--max);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.footer-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem 2.5rem;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}
.footer-logo img { height: 40px; width: auto; display: block; }
.footer-name {
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--grey);
    margin: 0;
    white-space: nowrap;
}
.footer-social {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem 1.75rem;
}
.footer-social a {
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: color .2s ease;
    white-space: nowrap;
}
.footer-social a:hover { color: var(--accent); }
.footer-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 0.85rem;
    font-size: 0.82rem;
    color: var(--grey);
}
.footer-links a { transition: color .2s ease; white-space: nowrap; }
.footer-links a:hover { color: var(--white); }
.footer-links a + a::before {
    content: '·';
    margin-right: 0.85rem;
    color: rgba(255,255,255,0.28);
    pointer-events: none;
}
.footer-copy {
    font-size: 0.78rem;
    color: var(--grey);
    margin: 0;
    line-height: 1.5;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255,255,255,0.07);
}
@media (max-width: 640px) {
    .footer-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.1rem;
    }
    .footer-social,
    .footer-links { width: 100%; }
}

/* ============================ RESPONSIVE (≥720px) ============================ */
@media (min-width: 720px) {
    .proof { flex-direction: row; justify-content: center; gap: clamp(3rem, 9vw, 7rem); }
    .about-grid { grid-template-columns: 1fr 1fr; align-items: center; }
    .about-photos { grid-template-columns: repeat(3, 1fr); }
    .pillars-grid { grid-template-columns: repeat(2, 1fr); }
    .moments-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
    .pillars-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================
   VISUAL POLISH PASS
   ============================================ */

/* Scroll progress + film grain */
.scroll-progress {
    position: fixed; top: 0; left: 0; height: 3px; width: 0;
    background: var(--accent); z-index: 1100;
    box-shadow: 0 0 10px rgba(235,235,240,0.7);
    transition: width .1s linear;
}
.grain {
    position: fixed; inset: 0; pointer-events: none; z-index: 990; opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
@media (prefers-reduced-motion: reduce) { .grain { display: none; } }

/* Eyebrow kickers */
.eyebrow {
    display: inline-block;
    font-size: 0.74rem;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.9rem;
    font-weight: 600;
}
.eyebrow.center { display: block; text-align: center; }

/* Hero accent line + entrance */
.hero-accent {
    display: inline-block;
    width: 64px; height: 2px;
    background: var(--accent);
    margin: 1.4rem auto 0.25rem;
    box-shadow: 0 0 12px rgba(235,235,240,0.6);
}

/* Accessible focus */
.btn-primary:focus-visible, .btn-ghost:focus-visible, .sticky-cta:focus-visible,
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

/* Pillars header + hover */
.pillars-header { text-align: center; margin-bottom: clamp(2rem, 5vw, 3rem); }
.pillar { transition: transform .3s ease, background .3s ease; }
.pillar:hover { transform: translateY(-5px); background: #0a0a0a; }
.pillar:hover h3::before { width: 56px; transition: width .3s ease; }

/* Map: pulsing rings on clusters */
.map-dots .ring {
    position: absolute; border: 1px solid rgba(235,235,240,0.6); border-radius: 50%;
    transform: translate(-50%, -50%); width: 14px; height: 14px;
    animation: ringPulse 3.4s ease-out infinite;
}
@keyframes ringPulse {
    0% { width: 10px; height: 10px; opacity: 0.8; }
    100% { width: 70px; height: 70px; opacity: 0; }
}
@media (prefers-reduced-motion: reduce) { .map-dots .ring, .map-dots .dot { animation: none; } }

/* Moments: bento + hover zoom */
.moments-grid { grid-auto-flow: dense; }
.moment-tile { transition: transform .4s ease; }
.moment-tile::after {
    content: ''; position: absolute; inset: auto auto 10px 10px;
    width: 14px; height: 14px;
    border-left: 2px solid var(--accent); border-bottom: 2px solid var(--accent);
    opacity: 0; transition: opacity .3s ease;
}
.moment-tile:hover { transform: scale(1.03); z-index: 2; border-color: rgba(235,235,240,0.3); }
.moment-tile::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(circle at 30% 70%, rgba(235,235,240,0.12), transparent 55%);
    opacity: 0;
    transition: opacity .35s ease;
}
.moment-tile:hover::before { opacity: 1; }

/* Countdown card */
.countdown {
    padding: clamp(1.25rem, 4vw, 2rem) clamp(1rem, 3vw, 2rem);
    border: 1px solid rgba(255,255,255,0.1);
    border-top: 3px solid var(--accent);
    border-radius: 4px;
    background: #060606;
}
.count-value {
    font-variant-numeric: tabular-nums;
    background: var(--chrome);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}

/* Anchor offset so the sticky bar never covers headings */
section[id], span[id] { scroll-margin-top: 84px; }

/* Safe-area insets for notched phones */
@supports (padding: max(0px)) {
    .sticky-bar {
        padding-left: max(var(--pad), env(safe-area-inset-left));
        padding-right: max(var(--pad), env(safe-area-inset-right));
    }
}

/* Overflow safety */
.hero-title, .section-title, .pillar h3, .step legend { overflow-wrap: break-word; }

/* Reveal stagger (delay applied inline by JS) */

/* Bento spans (desktop) */
@media (min-width: 720px) {
    .moment-tile.wide { grid-column: span 2; }
    .moment-tile.tall { grid-row: span 2; }
}

/* Very small phones */
@media (max-width: 380px) {
    .count-unit { min-width: 48px; }
    .count-sep { font-size: 2rem; }
    .hero-content { padding-left: 1.1rem; padding-right: 1.1rem; }
    .sticky-cta { font-size: 0.95rem; padding: 0.55rem 1rem; }
    .btn-primary { font-size: 1.2rem; padding: 0.9rem 1.5rem; }
}

/* ============================================
   SLAP PASS — kinetic marquee, 3D tilt, magnetic, polish
   ============================================ */

/* Kinetic chrome marquee */
.marquee {
    overflow: hidden;
    white-space: nowrap;
    padding: clamp(0.9rem, 2.5vw, 1.5rem) 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    background: linear-gradient(180deg, #050505, #0b0b0b 50%, #050505);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
    display: inline-flex;
    width: max-content;
    animation: marqueeScroll 26s linear infinite;
}
.marquee--reverse .marquee-track { animation-direction: reverse; }
.marquee-track span {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 5vw, 3rem);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding-right: 0.4em;
    background: var(--chrome);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.marquee-track span i { font-style: normal; color: var(--accent-dim); -webkit-text-fill-color: var(--accent-dim); margin: 0 0.25em; }
/* Outline variant */
.marquee--outline .marquee-track span {
    background: none;
    color: transparent;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.55);
}
.marquee--outline .marquee-track span i { -webkit-text-stroke: 0; -webkit-text-fill-color: var(--white); color: var(--white); }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee:hover .marquee-track { animation-play-state: paused; }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* 3D tilt cards */
[data-tilt] {
    transform: perspective(800px) rotateX(var(--ry, 0deg)) rotateY(var(--rx, 0deg));
    transform-style: preserve-3d;
    transition: transform .25s ease;
    will-change: transform;
}
[data-tilt].tilting { transition: transform .05s linear; }
[data-tilt]::after { transition: opacity .25s ease; }
/* Glare */
[data-tilt] .tilt-glare {
    position: absolute; inset: 0; pointer-events: none; z-index: 5;
    background: radial-gradient(circle at var(--gx, 50%) var(--gy, 50%), rgba(255,255,255,0.22), transparent 45%);
    opacity: 0;
    transition: opacity .25s ease;
    mix-blend-mode: screen;
}
[data-tilt].tilting .tilt-glare { opacity: 1; }
@media (hover: none) { [data-tilt] { transform: none !important; } [data-tilt] .tilt-glare { display: none; } }
@media (prefers-reduced-motion: reduce) { [data-tilt] { transform: none !important; } }

/* Pillar index numerals */
.pillar { position: relative; }
.pillar-num {
    position: absolute;
    top: 1rem; right: 1.1rem;
    font-family: var(--font-display);
    font-size: 2.4rem;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.16);
    transition: -webkit-text-stroke-color .3s ease;
    pointer-events: none;
}
.pillar:hover .pillar-num { -webkit-text-stroke-color: rgba(255,255,255,0.4); }

/* Stat number shimmer on hover */
.proof-item .proof-number {
    background-size: 100% 200%;
    transition: filter .3s ease;
}
.proof-item:hover .proof-number { animation: chromeShine 2.4s ease-in-out infinite; }

/* Bolder hero CTA presence */
.hero .btn-primary { font-size: clamp(1.25rem, 3.6vw, 1.6rem); padding: 1.15rem 2.6rem; }

/* Section divider sparkle on titles */
.section-title.center { position: relative; }

/* ---------- How it works (steps) ---------- */
.steps {
    padding: clamp(4rem, 10vw, 7rem) var(--pad);
    border-top: 1px solid rgba(255,255,255,0.07);
    background: #030303;
}
.steps-header { text-align: center; margin-bottom: clamp(2.5rem, 6vw, 4rem); }
.steps-grid {
    max-width: var(--max);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
}
.step-card {
    position: relative;
    overflow: hidden;
    flex: 1;
    padding: 2.25rem 1.75rem;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.005));
    text-align: center;
}
.step-card-num {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    color: #0a0a0a;
    background: var(--chrome);
    width: 54px; height: 54px;
    line-height: 54px;
    border-radius: 50%;
    margin-bottom: 1.1rem;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.9), 0 4px 16px rgba(0,0,0,0.5);
}
.step-card h3 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 1.7rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
}
.step-card p { color: var(--grey); font-size: 1.02rem; font-weight: 300; }
.step-card-arrow {
    display: none;
    font-family: var(--font-body);
    font-size: 1.8rem;
    color: var(--accent-dim);
    align-self: center;
}
.steps-cta { text-align: center; margin-top: clamp(2rem, 5vw, 3rem); }

@media (min-width: 860px) {
    .steps-grid { flex-direction: row; align-items: center; }
    .step-card-arrow { display: block; }
}

/* ---------- FAQ accordion ---------- */
.faq {
    padding: clamp(4rem, 10vw, 7rem) var(--pad);
    border-top: 1px solid rgba(255,255,255,0.07);
}
.faq-inner { max-width: 820px; margin: 0 auto; }
.faq-header { text-align: center; margin-bottom: clamp(2.5rem, 6vw, 3.5rem); }
.faq-item {
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    background: rgba(255,255,255,0.02);
    margin-bottom: 0.85rem;
    overflow: hidden;
    transition: border-color .3s ease, background .3s ease;
}
.faq-item.open { border-color: rgba(255,255,255,0.28); background: rgba(255,255,255,0.04); }
.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    text-align: left;
    background: none;
    border: 0;
    cursor: pointer;
    padding: 1.35rem 1.5rem;
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.01em;
}
.faq-icon {
    position: relative;
    flex-shrink: 0;
    width: 18px; height: 18px;
}
.faq-icon::before, .faq-icon::after {
    content: '';
    position: absolute;
    background: var(--accent);
    transition: transform .3s ease, opacity .3s ease;
}
.faq-icon::before { top: 8px; left: 0; width: 18px; height: 2px; }
.faq-icon::after { left: 8px; top: 0; width: 2px; height: 18px; }
.faq-item.open .faq-icon::after { transform: scaleY(0); opacity: 0; }
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}
.faq-a p { padding: 0 1.5rem 1.4rem; color: var(--grey); font-size: 1rem; line-height: 1.7; }
.faq-a a { color: var(--white); text-decoration: underline; text-underline-offset: 2px; }

/* Typewriter map copy */
.map-type { text-align: center; }
.map-type .type-line {
    display: block;
    margin-bottom: 0.6rem;
    min-height: 1.5em;
    white-space: pre-wrap;
}
.map-type .type-line:not(.type-final) {
    font-family: var(--font-body);
    font-weight: 200;
    font-size: clamp(1.05rem, 2.6vw, 1.4rem);
    letter-spacing: 0.02em;
    color: var(--white);
}
.map-type .type-line::after {
    content: '';
    display: inline-block;
    width: 0.6ch; height: 1em;
    margin-left: 2px;
    background: var(--accent);
    vertical-align: -0.12em;
    opacity: 0;
}
.map-type .type-line.is-typing::after { opacity: 1; animation: caretBlink 0.9s steps(1) infinite; }
.map-type .type-final { min-height: 1.1em; margin-top: 0.5rem; }
@keyframes caretBlink { 50% { opacity: 0; } }
