/* =========================================================
   SlashTee — Drop 001 splash page
   Archetype: streetwear-hype × cinematic horror
   ========================================================= */

:root {
  --bg: #0a0a0a;
  --bg-2: #101010;
  --bg-3: #161616;
  --ink: #f1ebe3;
  --ink-dim: #9b948c;
  --ink-mute: #5c5751;
  --red: #e0111b;
  --red-hot: #ff2a2a;
  --red-deep: #7a0a10;
  --line: rgba(241, 235, 227, 0.12);
  --line-strong: rgba(241, 235, 227, 0.28);

  --font-display: 'Anton', 'Impact', 'Arial Narrow', sans-serif;
  --font-body: 'Barlow', 'Helvetica Neue', Arial, sans-serif;
  --font-mono: 'IBM Plex Mono', 'SF Mono', Menlo, monospace;
  --font-cond: 'Barlow Condensed', 'Arial Narrow', sans-serif;

  --wrap: 1240px;
  --pad: clamp(1.25rem, 4vw, 3rem);
  --sect: clamp(5rem, 10vw, 9rem);
  --ease: cubic-bezier(.2, .7, .2, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.is-locked { overflow: hidden; }
img, picture { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
::selection { background: var(--red); color: #fff; }

.wrap { width: min(var(--wrap), 100% - var(--pad) * 2); margin-inline: auto; }
.wrap--narrow { width: min(820px, 100% - var(--pad) * 2); }
.section { padding-block: var(--sect); position: relative; }
.mono { font-family: var(--font-mono); }

/* ---------- Type system ---------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin: 0 0 1.25rem;
}
.eyebrow--red { color: var(--red-hot); }
.blink { display: inline-block; animation: blink 1.4s steps(1) infinite; margin-right: .35rem; font-size: .7em; vertical-align: 1px; }
@keyframes blink { 50% { opacity: 0; } }

.display {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: 0.005em;
  margin: 0 0 1.5rem;
  font-size: clamp(3rem, 7.5vw, 6.5rem);
}
.display em { font-style: normal; color: var(--red); }
.display--md { font-size: clamp(2.6rem, 5.5vw, 4.75rem); }
.display--lg { font-size: clamp(2.8rem, 6vw, 5rem); }
.display--xl { font-size: clamp(4rem, 12vw, 11rem); line-height: 0.88; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-mono); font-size: .8rem; letter-spacing: .14em; text-transform: uppercase;
  padding: 1rem 1.5rem; border: 1px solid transparent;
  position: relative; overflow: hidden; isolation: isolate;
  transition: color .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
  white-space: nowrap;
}
.btn .arrow { transition: transform .3s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }
.btn--red { background: var(--red); color: #fff; border-color: var(--red); }
.btn--red::before {
  content: ""; position: absolute; inset: 0; background: #fff; z-index: -1;
  transform: translateX(-125%) skewX(-18deg); transform-origin: right;
  transition: transform .4s var(--ease-out);
}
.btn--red:hover { color: var(--red); }
.btn--red:hover::before { transform: translateX(0) skewX(0); }
.btn--ghost { border-color: var(--line-strong); color: var(--ink); background: rgba(10,10,10,.35); backdrop-filter: blur(6px); }
.btn--ghost:hover { border-color: var(--ink); background: var(--ink); color: var(--bg); }
.btn--sm { padding: .7rem 1.1rem; font-size: .7rem; }
.btn--tall { padding: 1.15rem 1.6rem; }
.btn:focus-visible { outline: 2px solid var(--red-hot); outline-offset: 3px; }

/* ---------- Corner frame device (from the ST-001 mockup) ---------- */
.frame { position: relative; }
.frame::before, .frame::after {
  content: ""; position: absolute; width: 22px; height: 22px; pointer-events: none;
  border-color: var(--red); border-style: solid; z-index: 3;
}
.frame::before { top: -1px; left: -1px; border-width: 2px 0 0 2px; }
.frame::after  { bottom: -1px; right: -1px; border-width: 0 2px 2px 0; }

/* ---------- Ticker ---------- */
.ticker {
  background: var(--red); color: #fff; overflow: hidden;
  font-family: var(--font-mono); font-size: .72rem; letter-spacing: .16em; text-transform: uppercase;
  height: 34px; display: flex; align-items: center; position: relative; z-index: 60;
}
.ticker__track { display: flex; gap: 2.5rem; white-space: nowrap; animation: ticker 28s linear infinite; will-change: transform; }
.ticker__track span { padding-inline: .25rem; }
.ticker__track i { font-style: normal; opacity: .65; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 2rem;
  padding: .55rem var(--pad);
  background: linear-gradient(to bottom, rgba(10,10,10,.92), rgba(10,10,10,.75));
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav__logo { display: block; line-height: 0; }
.nav__logo img { height: 60px; width: auto; filter: drop-shadow(0 0 14px rgba(224,17,27,.25)); transition: transform .3s var(--ease); }
.nav__logo:hover img { transform: scale(1.04); }
.nav__links { display: flex; justify-content: center; gap: 2.2rem; font-family: var(--font-mono); font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-dim); }
.nav__links a { position: relative; padding-block: .2rem; transition: color .2s; }
.nav__links a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 1px; background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease-out); }
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { transform: scaleX(1); }

/* ---------- HERO ---------- */
.hero {
  position: relative; min-height: calc(100svh - 34px - 78px);
  display: grid; align-items: end;
  overflow: hidden; isolation: isolate;
  --mx: 62%; --my: 45%;
}
.hero__media { position: absolute; inset: 0; z-index: -1; background: #000; }
.hero__base, .hero__reveal { position: absolute; inset: 0; }
.hero__base img, .hero__reveal img { width: 100%; height: 100%; object-fit: cover; object-position: 62% 40%; }
.hero__base img { filter: brightness(.42) saturate(.75) contrast(1.05); }
.hero__reveal {
  -webkit-mask-image: radial-gradient(circle 300px at var(--mx) var(--my), rgba(0,0,0,1) 0%, rgba(0,0,0,.75) 35%, rgba(0,0,0,0) 100%);
          mask-image: radial-gradient(circle 300px at var(--mx) var(--my), rgba(0,0,0,1) 0%, rgba(0,0,0,.75) 35%, rgba(0,0,0,0) 100%);
  transition: -webkit-mask-position .05s, mask-position .05s;
}
.hero__reveal img { filter: brightness(1.05) contrast(1.05); }
.hero__bulb {
  position: absolute; left: 0; right: 0; top: 0; height: 60%;
  background: radial-gradient(ellipse 30% 55% at 76% 0%, rgba(255, 214, 160, .28), transparent 70%);
  animation: flicker 6.5s infinite; mix-blend-mode: screen; pointer-events: none;
}
@keyframes flicker {
  0%, 18%, 22%, 24%, 55%, 57%, 100% { opacity: 1; }
  19%, 21% { opacity: .15; }
  23% { opacity: .55; }
  56% { opacity: .3; }
  56.5% { opacity: .9; }
  74% { opacity: .82; }
}
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(10,10,10,.92) 0%, rgba(10,10,10,.75) 32%, rgba(10,10,10,.15) 62%, rgba(10,10,10,0) 100%),
    linear-gradient(to top, rgba(10,10,10,.95) 0%, rgba(10,10,10,.35) 30%, rgba(10,10,10,0) 60%);
}

.hero__hud { position: absolute; inset: 0; pointer-events: none; z-index: 2; }
.hud {
  position: absolute; font-family: var(--font-mono); font-size: .68rem; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(241,235,227,.6); display: inline-flex; align-items: center; gap: .5rem;
}
.hud--tl { top: 1.5rem; left: var(--pad); }
.hud--tr { top: 1.5rem; right: var(--pad); color: var(--red-hot); }
.hud--bl { bottom: 1.5rem; left: var(--pad); }
.hud--br { bottom: 1.5rem; right: var(--pad); }
.rec { width: 9px; height: 9px; border-radius: 50%; background: var(--red-hot); box-shadow: 0 0 10px var(--red-hot); animation: blink 1.2s steps(1) infinite; }

.hero__content {
  position: relative; z-index: 2;
  width: min(var(--wrap), 100% - var(--pad) * 2); margin-inline: auto;
  padding: 2rem 2rem 2.25rem 2rem;
  margin-bottom: clamp(3.5rem, 8vh, 5.5rem); margin-top: 6.5rem;
  max-width: 720px; justify-self: start;
  margin-left: max(var(--pad), (100% - var(--wrap)) / 2);
}
.hero__title {
  font-family: var(--font-display); font-weight: 400; text-transform: uppercase;
  font-size: clamp(3.5rem, 8vw, 7.25rem); line-height: .9; letter-spacing: .005em;
  margin: 0 0 1.5rem; color: var(--ink);
}
.hero__title .line { display: block; overflow: hidden; padding-bottom: .06em; margin-bottom: -.06em; }
.hero__title em { font-style: normal; color: var(--red); }
.hero__lede { font-size: clamp(1rem, 1.25vw, 1.15rem); color: var(--ink-dim); max-width: 32rem; margin: 0 0 1.75rem; }
.hero__lede strong { color: var(--ink); font-weight: 600; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .9rem; margin-bottom: 1.75rem; }
.hero__trust {
  list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: .5rem 1.6rem;
  font-family: var(--font-mono); font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-dim);
}
.hero__trust li::before { content: "/ "; color: var(--red); }

.hero__scroll {
  position: absolute; left: 50%; bottom: 1.4rem; transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  font-family: var(--font-mono); font-size: .62rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-dim);
}
.hero__scroll i { width: 1px; height: 38px; background: linear-gradient(var(--red), transparent); animation: drop 1.8s var(--ease) infinite; }
@keyframes drop { 0% { transform: scaleY(0); transform-origin: top; } 60% { transform: scaleY(1); transform-origin: top; } 61% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }
.hero__hint { position: absolute; right: var(--pad); bottom: 3.6rem; z-index: 2; margin: 0; font-family: var(--font-mono); font-size: .62rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-mute); opacity: 0; transition: opacity 1s; }
.hero.is-ready .hero__hint { opacity: 1; }
@media (hover: none) { .hero__hint { display: none; } }

/* Staggered hero entrance */
.hero__content > * { opacity: 0; transform: translateY(24px); animation: rise .9s var(--ease-out) forwards; }
.hero__content > :nth-child(1) { animation-delay: .15s; }
.hero__content > :nth-child(2) { animation-delay: .3s; }
.hero__content > :nth-child(3) { animation-delay: .5s; }
.hero__content > :nth-child(4) { animation-delay: .65s; }
.hero__content > :nth-child(5) { animation-delay: .8s; }
@keyframes rise { to { opacity: 1; transform: none; } }

/* ---------- THE RULE ---------- */
.rule { background: var(--bg); overflow: hidden; }
.rule__grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.rule .display { position: sticky; top: 7rem; }
.rule__copy p { color: var(--ink-dim); font-size: 1.125rem; margin: 0 0 1.4rem; }
.rule__list { list-style: none; padding: 0; margin: 2.25rem 0 0; border-top: 1px solid var(--line); }
.rule__list li {
  display: grid; grid-template-columns: 6.5rem 1fr; gap: 1rem; align-items: baseline;
  padding: 1rem 0; border-bottom: 1px solid var(--line);
  font-family: var(--font-display); text-transform: uppercase; font-size: 1.5rem; letter-spacing: .01em;
}
.rule__list li span { font-family: var(--font-mono); font-size: .7rem; letter-spacing: .18em; color: var(--red-hot); }
.rule__slash {
  position: absolute; left: -10%; right: -10%; bottom: -1px; height: 3px;
  background: var(--red); transform: rotate(-2.5deg); transform-origin: left; opacity: .85;
}

/* ---------- THE SHIRT ---------- */
.shirt { background: var(--bg-2); border-top: 1px solid var(--line); }
.shirt__head { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; flex-wrap: wrap; }
.shirt__grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: clamp(2rem, 5vw, 5rem); align-items: start; }

.stage { background: #000; }
.stage__viewport { position: relative; aspect-ratio: 1019 / 1400; overflow: hidden; background: #000; }
.stage__img { position: absolute; inset: 0; opacity: 0; transform: scale(1.03); transition: opacity .55s var(--ease), transform .8s var(--ease-out); }
.stage__img.is-active { opacity: 1; transform: none; }
.stage__img img { width: 100%; height: 100%; object-fit: cover; }
.stage__zoom {
  position: absolute; top: 1rem; right: 1rem; width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center; color: var(--ink);
  background: rgba(10,10,10,.6); border: 1px solid var(--line-strong); backdrop-filter: blur(6px);
  transition: background .25s, color .25s, transform .25s var(--ease);
}
.stage__zoom svg { width: 20px; height: 20px; }
.stage__zoom:hover { background: var(--red); border-color: var(--red); color: #fff; transform: scale(1.06); }
.stage__badge {
  position: absolute; left: 1rem; bottom: 1rem; font-family: var(--font-mono); font-size: .6rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-dim); background: rgba(10,10,10,.6); padding: .35rem .6rem; border: 1px solid var(--line);
}
.stage__tabs { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); }
.stage__tabs button {
  padding: 1rem .5rem; font-family: var(--font-mono); font-size: .68rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-dim); display: flex; flex-direction: column; gap: .25rem; align-items: flex-start; padding-left: 1rem;
  border-right: 1px solid var(--line); transition: background .25s, color .25s; position: relative;
}
.stage__tabs button:last-child { border-right: 0; }
.stage__tabs button span { color: var(--ink-mute); }
.stage__tabs button:hover { color: var(--ink); background: rgba(255,255,255,.03); }
.stage__tabs button.is-active { background: var(--ink); color: var(--bg); }
.stage__tabs button.is-active span { color: var(--red); }

.spec { padding-top: .5rem; }
.spec__lede { color: var(--ink-dim); font-size: 1.125rem; margin: 0 0 2rem; }
.spec__list { margin: 0 0 2rem; border-top: 1px solid var(--line); }
.spec__list > div { display: grid; grid-template-columns: 7rem 1fr; gap: 1rem; padding: .9rem 0; border-bottom: 1px solid var(--line); }
.spec__list dt { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--red-hot); padding-top: .2rem; }
.spec__list dd { margin: 0; font-weight: 500; }
.spec__cta p { font-family: var(--font-mono); font-size: .7rem; letter-spacing: .1em; color: var(--ink-mute); margin: 1rem 0 0; text-transform: uppercase; }

/* ---------- EVIDENCE ---------- */
.evidence { background: #050505; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.evidence__grid { display: grid; grid-template-columns: 1.35fr 1fr; grid-template-rows: auto auto; gap: clamp(1.5rem, 3vw, 2.5rem); margin-top: 1.5rem; }
.still { margin: 0; background: #000; }
.still picture { overflow: hidden; }
.still img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease-out), filter .6s; filter: saturate(.85); }
.still:hover img { transform: scale(1.03); filter: saturate(1); }
.still--a { grid-column: 1; grid-row: 1 / span 2; }
.still--a picture { aspect-ratio: 4 / 3; }
.still--b { grid-column: 2; grid-row: 1; }
.still--b picture { aspect-ratio: 3 / 4; }
.still figcaption {
  display: flex; flex-direction: column; gap: .25rem; padding: .9rem 1rem; border-top: 1px solid var(--line);
  font-family: var(--font-mono); font-size: .72rem; letter-spacing: .06em; color: var(--ink-dim);
}
.still figcaption span { color: var(--red-hot); letter-spacing: .18em; text-transform: uppercase; font-size: .65rem; }
.evidence__quote { grid-column: 2; grid-row: 2; margin: 0; align-self: end; padding: 1.5rem 0 0; border-top: 1px solid var(--line); }
.evidence__quote p { font-family: var(--font-display); text-transform: uppercase; font-size: clamp(1.5rem, 2.4vw, 2.1rem); line-height: 1.05; margin: 0 0 1rem; }
.evidence__quote cite { font-style: normal; font-family: var(--font-mono); font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-dim); }

/* ---------- HOW ---------- */
.how { background: var(--bg-2); }
.steps { list-style: none; margin: 2rem 0 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.step { padding: 2.25rem 2rem 2.25rem 0; border-right: 1px solid var(--line); position: relative; }
.step + .step { padding-left: 2rem; }
.step:last-child { border-right: 0; }
.step__num { font-family: var(--font-display); font-size: 4rem; line-height: 1; color: var(--red); display: block; margin-bottom: 1.25rem; }
.step h3 { font-family: var(--font-display); text-transform: uppercase; font-weight: 400; font-size: 1.6rem; margin: 0 0 .6rem; letter-spacing: .01em; }
.step p { color: var(--ink-dim); margin: 0; }

/* ---------- WAITLIST ---------- */
.waitlist { background: #000; overflow: hidden; text-align: left; }
.waitlist__bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 80% 100%, rgba(224,17,27,.28), transparent 70%),
    radial-gradient(ellipse 50% 40% at 10% 0%, rgba(224,17,27,.12), transparent 70%);
}
.waitlist .wrap { position: relative; }
.waitlist__lede { color: var(--ink-dim); font-size: 1.15rem; max-width: 34rem; margin: 0 0 2.5rem; }
.wl-form { background: rgba(16,16,16,.8); border: 1px solid var(--line); padding: 1.5rem; backdrop-filter: blur(8px); }
.wl-form__row { display: grid; grid-template-columns: 1fr 9rem auto; gap: .75rem; align-items: end; }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field__label { font-family: var(--font-mono); font-size: .62rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-dim); }
.field input, .field select {
  height: 3.6rem; padding: 0 1rem; background: #0a0a0a; border: 1px solid var(--line-strong); color: var(--ink);
  font-family: var(--font-body); font-size: 1rem; border-radius: 0; width: 100%; appearance: none; -webkit-appearance: none;
  transition: border-color .2s, box-shadow .2s;
}
.field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%239b948c' stroke-width='1.5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.4rem; }
.field input::placeholder { color: var(--ink-mute); }
.field input:focus, .field select:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(224,17,27,.2); }
.wl-form.is-error .field--grow input { border-color: var(--red-hot); animation: shake .4s; }
@keyframes shake { 25% { transform: translateX(-4px); } 50% { transform: translateX(4px); } 75% { transform: translateX(-2px); } }
.wl-form__error { color: var(--red-hot); font-family: var(--font-mono); font-size: .72rem; letter-spacing: .06em; margin: .9rem 0 0; }
.wl-form__fine { color: var(--ink-mute); font-size: .8rem; margin: 1rem 0 0; }
.btn__loading { display: none; }
.btn.is-loading .btn__label { display: none; }
.btn.is-loading .btn__loading { display: inline; }
.btn.is-loading { pointer-events: none; opacity: .85; }

/* ---------- FAQ ---------- */
.faq { background: var(--bg-2); border-top: 1px solid var(--line); }
.faq__list { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item summary {
  list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1.35rem 0; font-family: var(--font-display); text-transform: uppercase; font-size: 1.35rem; letter-spacing: .01em;
  transition: color .2s;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--red-hot); }
.faq__item summary i { position: relative; width: 16px; height: 16px; flex: none; }
.faq__item summary i::before, .faq__item summary i::after { content: ""; position: absolute; background: var(--red); left: 0; top: 7px; width: 16px; height: 2px; transition: transform .3s var(--ease); }
.faq__item summary i::after { transform: rotate(90deg); }
.faq__item[open] summary i::after { transform: rotate(0); }
.faq__body { overflow: hidden; }
.faq__body p { color: var(--ink-dim); margin: 0 0 1.5rem; max-width: 60ch; }
.faq__item[open] .faq__body { animation: unfold .35s var(--ease-out); }
@keyframes unfold { from { opacity: 0; transform: translateY(-6px); } }

/* ---------- CLOSER + FOOTER ---------- */
.closer { background: #000; padding: var(--sect) var(--pad) 2rem; text-align: center; border-top: 1px solid var(--line); position: relative; overflow: hidden; }
.closer::before {
  content: ""; position: absolute; inset: auto -20% -30% -20%; height: 60%;
  background: radial-gradient(ellipse at 50% 100%, rgba(224,17,27,.22), transparent 70%); pointer-events: none;
}
.closer__logo { position: relative; margin: 0 auto 1.5rem; width: min(78vw, 640px); }
.closer__logo img { width: 100%; height: auto; filter: drop-shadow(0 0 40px rgba(224,17,27,.25)); }
.closer__tag { font-family: var(--font-mono); font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-dim); margin: 0 0 1.75rem; position: relative; }
.closer .btn { position: relative; }
.billing {
  position: relative; margin: 4rem auto 0; max-width: 1000px;
  font-family: var(--font-cond); font-weight: 600; font-size: .78rem; line-height: 1.45; letter-spacing: .04em; text-transform: uppercase;
  color: var(--ink-dim); opacity: .8; transform: scaleX(.86); transform-origin: center;
}
.footer {
  position: relative; margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap;
  font-family: var(--font-mono); font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-dim);
}
.footer nav { display: flex; gap: 1.5rem; }
.footer a { position: relative; }
.footer a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -3px; height: 1px; background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease-out); }
.footer a:hover::after { transform: scaleX(1); }

/* ---------- MODAL: "You made the cut" ---------- */
.modal { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 1rem; }
.modal[hidden] { display: none; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.86); backdrop-filter: blur(6px); opacity: 0; animation: fade .4s forwards; }
@keyframes fade { to { opacity: 1; } }
.modal__slash {
  position: absolute; top: 50%; left: -20%; width: 140%; height: 18vh; background: var(--red);
  transform: translateY(-50%) rotate(-14deg) scaleX(0); transform-origin: left center;
  animation: slashIn .55s var(--ease-out) .05s forwards, slashOut .45s var(--ease) .7s forwards;
  box-shadow: 0 0 80px rgba(224,17,27,.6);
}
@keyframes slashIn { to { transform: translateY(-50%) rotate(-14deg) scaleX(1); } }
@keyframes slashOut { to { transform: translateY(-50%) rotate(-14deg) scaleX(1) scaleY(0); opacity: 0; } }
.modal__card {
  position: relative; width: min(600px, 100%); background: var(--bg-2); border: 1px solid var(--line-strong);
  padding: clamp(1.75rem, 4vw, 3rem); opacity: 0; transform: translateY(24px) scale(.97);
  animation: cardIn .6s var(--ease-out) .85s forwards;
}
@keyframes cardIn { to { opacity: 1; transform: none; } }
.modal__close { position: absolute; top: .9rem; right: .9rem; width: 40px; height: 40px; display: grid; place-items: center; color: var(--ink-dim); font-size: 1rem; transition: color .2s, transform .3s var(--ease); }
.modal__close:hover { color: var(--ink); transform: rotate(90deg); }
.modal__copy { color: var(--ink-dim); margin: 0 0 1.75rem; }
.modal__copy b { color: var(--ink); font-weight: 600; word-break: break-all; }
.ticket { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); margin-bottom: 1.75rem; background: #0a0a0a; }
.ticket > div { padding: .9rem 1rem; border-right: 1px solid var(--line); display: flex; flex-direction: column; gap: .35rem; }
.ticket > div:last-child { border-right: 0; }
.ticket span { font-family: var(--font-mono); font-size: .6rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-mute); }
.ticket b { font-family: var(--font-display); font-size: 1.5rem; line-height: 1; letter-spacing: .02em; text-transform: uppercase; }
.ticket b.red { color: var(--red-hot); }
.modal__actions { display: flex; flex-wrap: wrap; gap: .75rem; }
.modal__fine { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-mute); margin: 1.5rem 0 0; }

/* ---------- LIGHTBOX ---------- */
.lightbox { position: fixed; inset: 0; z-index: 110; display: grid; place-items: center; padding: 2rem; }
.lightbox[hidden] { display: none; }
.lightbox__backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.94); cursor: zoom-out; }
.lightbox img { position: relative; max-width: calc(100vw - 4rem); max-height: calc(100vh - 4rem); width: auto; height: auto; object-fit: contain; box-shadow: 0 30px 80px rgba(0,0,0,.6); animation: cardIn .4s var(--ease-out) forwards; }
.lightbox__close { position: absolute; top: 1.25rem; right: 1.25rem; width: 44px; height: 44px; display: grid; place-items: center; color: var(--ink); border: 1px solid var(--line-strong); z-index: 2; }
.lightbox__close:hover { background: var(--red); border-color: var(--red); }

/* ---------- Grain overlay ---------- */
.grain {
  position: fixed; inset: -50%; width: 200%; height: 200%; pointer-events: none; z-index: 90; opacity: .07;
  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='.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 .6 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 300px 300px;
  animation: grain 1.2s steps(6) infinite;
}
@keyframes grain {
  0% { transform: translate(0,0); } 20% { transform: translate(-3%, 2%); } 40% { transform: translate(2%, -4%); }
  60% { transform: translate(-4%, -1%); } 80% { transform: translate(3%, 3%); } 100% { transform: translate(0,0); }
}

/* ---------- Scroll reveals ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease-out), transform .9s var(--ease-out); transition-delay: var(--d, 0s); }
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .rule__grid, .shirt__grid { grid-template-columns: 1fr; }
  .rule .display { position: static; }
  .evidence__grid { grid-template-columns: 1fr 1fr; }
  .still--a { grid-column: 1 / -1; grid-row: 1; }
  .still--b { grid-column: 1; grid-row: 2; }
  .evidence__quote { grid-column: 2; grid-row: 2; }
  .steps { grid-template-columns: 1fr; }
  .step { border-right: 0; border-bottom: 1px solid var(--line); padding: 1.75rem 0; }
  .step + .step { padding-left: 0; }
  .step:last-child { border-bottom: 0; }
}
@media (max-width: 760px) {
  .nav { grid-template-columns: 1fr auto; gap: 1rem; }
  .nav__links { display: none; }
  .nav__logo img { height: 44px; }
  .hero { min-height: calc(100svh - 34px - 62px); --mx: 60%; --my: 42%; }
  .hero__base img, .hero__reveal img { object-position: 68% 30%; }
  .hero__base img { filter: brightness(.5) saturate(.8); }
  .hero__reveal { -webkit-mask-image: radial-gradient(circle 200px at var(--mx) var(--my), rgba(0,0,0,1) 0%, rgba(0,0,0,.7) 35%, rgba(0,0,0,0) 100%); mask-image: radial-gradient(circle 200px at var(--mx) var(--my), rgba(0,0,0,1) 0%, rgba(0,0,0,.7) 35%, rgba(0,0,0,0) 100%); }
  .hero__scrim { background: linear-gradient(to top, rgba(10,10,10,.97) 0%, rgba(10,10,10,.8) 38%, rgba(10,10,10,.25) 70%, rgba(10,10,10,0) 100%); }
  .hero__content { padding: 1.5rem 1.25rem 1.75rem; margin-bottom: 3.5rem; margin-top: 30vh; margin-left: var(--pad); width: calc(100% - var(--pad) * 2); }
  .hero__content .eyebrow { font-size: .66rem; letter-spacing: .14em; }
  .hero__trust { gap: .4rem 1rem; }
  .hero__title { font-size: clamp(3.2rem, 17vw, 5rem); }
  .hero__cta .btn { flex: 1 1 auto; justify-content: center; }
  .hud--bl, .hud--br { display: none; }
  .hero__scroll { display: none; }
  .display { font-size: clamp(2.6rem, 12vw, 4rem); }
  .display--xl { font-size: clamp(3.6rem, 20vw, 6rem); }
  .evidence__grid { grid-template-columns: 1fr; }
  .still--b, .evidence__quote { grid-column: 1; }
  .still--b { grid-row: 2; } .evidence__quote { grid-row: 3; }
  .wl-form__row { grid-template-columns: 1fr; }
  .wl-form .btn--tall { justify-content: center; }
  .ticket { grid-template-columns: 1fr 1fr; }
  .ticket > div:nth-child(2) { border-right: 0; }
  .ticket > div:nth-child(1), .ticket > div:nth-child(2) { border-bottom: 1px solid var(--line); }
  .stage__tabs { grid-template-columns: repeat(2, 1fr); }
  .stage__tabs button:nth-child(2) { border-right: 0; }
  .stage__tabs button:nth-child(1), .stage__tabs button:nth-child(2) { border-bottom: 1px solid var(--line); }
  .spec__list > div { grid-template-columns: 5.5rem 1fr; }
  .rule__list li { grid-template-columns: 5.5rem 1fr; font-size: 1.2rem; }
  .billing { transform: none; font-size: .7rem; }
  .footer { justify-content: center; text-align: center; }
  .modal__slash { height: 12vh; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .ticker__track { animation: none; }
  .grain { display: none; }
  .reveal { opacity: 1; transform: none; }
  .hero__content > * { opacity: 1; transform: none; }
  .modal__card { opacity: 1; transform: none; }
  .modal__slash { display: none; }
}
