/* =========================================================
   BLACKWOOD — landing page
   Brand: #D4003C red · #D6D6D6 grey · #000 black · #FFD782 gold
   Type:  Anton (big headings) · Bahnschrift (everything else) — per brand guide, nothing else
   ========================================================= */

@font-face { font-family: "Anton"; src: url("assets/fonts/Anton-Regular.woff2") format("woff2"), url("assets/fonts/Anton-Regular.ttf") format("truetype"); font-display: swap; }
@font-face { font-family: "Bahnschrift"; src: url("assets/fonts/Bahnschrift-Regular.woff2") format("woff2"), url("assets/fonts/Bahnschrift-Regular.otf") format("opentype"); font-weight: 400; font-display: swap; }
@font-face { font-family: "Bahnschrift"; src: url("assets/fonts/Bahnschrift-Bold.woff2") format("woff2"), url("assets/fonts/Bahnschrift-Bold.otf") format("opentype"); font-weight: 700; font-display: swap; }
@font-face { font-family: "Bahnschrift"; src: url("assets/fonts/Bahnschrift-Light.woff2") format("woff2"), url("assets/fonts/Bahnschrift-Light.otf") format("opentype"); font-weight: 300; font-display: swap; }
@font-face { font-family: "Bahnschrift SC"; src: url("assets/fonts/Bahnschrift-SemiBold-SemiCondensed.woff2") format("woff2"), url("assets/fonts/Bahnschrift-SemiBold-SemiCondensed.otf") format("opentype"); font-weight: 600; font-display: swap; }

:root {
  --red: #D4003C;
  --red-dim: #7a0022;
  --grey: #D6D6D6;
  --grey-2: #9a9a9a;
  --grey-3: #4a4a4a;
  --black: #000;
  --ink: #0a0a0a;
  --day: #16120e;          /* warm dark for daytime scenes */
  --day-2: #1f1913;
  --gold: #FFD782;
  --gold-dim: #8a6f36;
  --anton: "Anton", "Impact", sans-serif;
  --body: "Bahnschrift", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --cond: "Bahnschrift", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --semi: "Bahnschrift SC", "Bahnschrift", Arial, sans-serif;
  --gutter: clamp(20px, 5vw, 96px);
  --rail: 84px;
  --ease: cubic-bezier(.2, .7, .1, 1);
  --ease-hard: cubic-bezier(.9, 0, .1, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-snap-type: y proximity; }
/* only elements that opt in with scroll-snap-align snap; nothing else on the page does */
html, body { margin: 0; background: var(--black); color: var(--grey); }
body {
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
h1, h2, h3, p, ul, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }

.ico { width: 1.25em; height: 1.25em; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: square; stroke-linejoin: miter; flex: none; }

/* film grain overlay: subtle, static */
body::after {
  content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 9990;
  opacity: .055; mix-blend-mode: screen;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 .8 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* ---------- type ---------- */
.h-big {
  font-family: var(--anton);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(2.4rem, 5.2vw, 5.4rem);
  line-height: .95;
  letter-spacing: .005em;
  color: #fff;
}
.lede { font-size: clamp(1.05rem, 1.35vw, 1.3rem); line-height: 1.5; color: var(--grey); max-width: 58ch; }
.copy p + p { margin-top: 1.1em; }
.copy p:not(.lede) { color: var(--grey-2); max-width: 60ch; }
.copy .h-big + .lede { margin-top: 1.4rem; }
.label { font-family: var(--cond); letter-spacing: 0; font-size: .9rem; color: var(--grey-2); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55em;
  font-family: var(--semi); font-weight: 600; text-transform: uppercase; letter-spacing: .08em;
  font-size: .82rem; padding: .78em 1.35em; text-decoration: none; white-space: nowrap;
  border: 1px solid currentColor; border-radius: 0;
  transition: background .2s, color .2s, border-color .2s, transform .2s var(--ease);
  position: relative;
}
.btn--red { background: var(--red); border-color: var(--red); color: #fff; }
.btn--red:hover { background: #fff; border-color: #fff; color: var(--black); }
.btn--ghost { color: var(--grey); border-color: rgba(214,214,214,.35); }
.btn--ghost:hover { border-color: #fff; color: #fff; }
.btn--lg { font-size: .92rem; padding: 1em 1.7em; }
.btn .ico { width: 1em; height: 1em; }

/* ---------- rail: a plain scene index ---------- */
.rail {
  position: fixed; left: 0; top: 0; bottom: 0; width: var(--rail); z-index: 50;
  background: rgba(0,0,0,.55); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-right: 1px solid rgba(214,214,214,.1);
  display: flex; flex-direction: column; align-items: center;
  padding: 88px 0 26px; font-family: var(--cond); color: var(--grey-2); pointer-events: none;
  /* stays out of the hero; slides in once the first scene starts */
  opacity: 0; transform: translateX(-14px); transition: opacity .45s var(--ease), transform .45s var(--ease);
}
.rail.is-on { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .rail { transition: none; } }
.rail__clock { display: flex; flex-direction: column; align-items: center; line-height: 1; }
.rail__clock span:first-child { font-family: var(--anton); font-size: 1.15rem; color: #fff; letter-spacing: .02em; font-variant-numeric: tabular-nums; }
#railAmpm { font-size: .8rem; margin-top: .4em; }

.rail__scenes { flex: 1; display: flex; flex-direction: column; justify-content: center; gap: 14px; margin: 26px 0; }
.rail__scenes li { font-family: var(--anton); font-size: 1rem; line-height: 1; color: #2f2f2f; text-align: center; transition: color .25s; }
.rail__scenes li.is-now { color: var(--red); }
.rail__scenes li.is-past { color: var(--grey-3); }

.rail__foot { display: flex; flex-direction: column; align-items: center; gap: 10px; font-size: .8rem; text-align: center; line-height: 1.35; }
/* a 24-hour sky: midnight at the top, noon at the bottom, the marker riding the hour */
.rail__sky { width: 40px; height: 40px; overflow: visible; margin-bottom: 2px; }
.rail__sky path { fill: none; stroke-width: 1.6; stroke-linecap: round; }
.rail__sky-day { stroke: rgba(255,215,130,.45); }
.rail__sky-night { stroke: rgba(212,0,60,.45); }
.rail__sun { fill: var(--gold); stroke: #000; stroke-width: 1.8; transition: fill .4s; }
body.is-night .rail__sun { fill: var(--red); }
#railMode { color: var(--gold); }
body.is-night #railMode { color: var(--red); }

/* ---------- nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60; height: 72px;
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 24px;
  padding: 0 var(--gutter) 0 calc(var(--rail) + 24px);
  transition: background .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}
.nav.is-solid { background: rgba(0,0,0,.82); backdrop-filter: blur(6px); border-color: rgba(214,214,214,.08); }
/* studio mark, hairline, game wordmark: the AttritoM7 flash links out to the studio site */
.nav__logo { display: flex; align-items: center; gap: 14px; }
.nav__logo a { display: block; line-height: 0; }
.nav__studio img { height: 30px; width: auto; transition: opacity .2s; }
.nav__studio:hover img { opacity: .75; }
.nav__logo-rule { width: 1px; height: 26px; background: rgba(214,214,214,.28); }
.nav__game img { height: 22px; width: auto; }
.nav__links { display: flex; gap: 28px; justify-content: center; font-family: var(--cond); letter-spacing: 0; font-size: .9rem; }
.nav__links a { text-decoration: none; color: var(--grey-2); position: relative; padding: 6px 0; }
.nav__links a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 1px; background: var(--red); transition: right .25s var(--ease); }
.nav__links a:hover { color: #fff; }
.nav__links a:hover::after { right: 0; }
.nav__right { display: flex; gap: 10px; }
.nav__burger { display: none; width: 44px; height: 44px; flex-direction: column; justify-content: center; gap: 6px; align-items: center; }
.nav__burger span { width: 22px; height: 1.5px; background: #fff; }

/* ---------- hero ---------- */
.hero { position: relative; height: 100svh; min-height: 640px; overflow: hidden; background: var(--black); }
.hero__media { position: absolute; inset: 0; }
.hero__video { width: 100%; height: 100%; object-fit: cover; opacity: .9; }
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(to top, #000 0%, rgba(0,0,0,.55) 30%, rgba(0,0,0,.05) 60%),
    linear-gradient(to right, rgba(0,0,0,.6), rgba(0,0,0,0) 60%);
}
.hero__inner {
  position: absolute; left: calc(var(--rail) + var(--gutter)); right: var(--gutter); bottom: clamp(88px, 14vh, 150px);
  max-width: 900px;
}
.hero__presents { display: flex; align-items: center; gap: 16px; font-family: var(--cond); letter-spacing: 0; font-size: 1rem; color: var(--grey-2); margin-bottom: 22px; }
.hero__presents img { height: clamp(44px, 4.2vw, 64px); width: auto; opacity: .95; }
.hero__logo img { width: min(680px, 78vw); height: auto; }
.hero__tag { display: flex; flex-wrap: wrap; gap: 0 .5em; margin-top: 22px; font-family: var(--anton); text-transform: uppercase; font-size: clamp(1.15rem, 2.2vw, 1.9rem); letter-spacing: .02em; line-height: 1.1; color: #fff; }
.hero__tag span:last-child { color: var(--red); }
.hero__release { display: flex; align-items: flex-end; gap: 16px; margin-top: 26px; }
.hero__release-date { font-family: var(--anton); font-size: clamp(2.2rem, 3.6vw, 3.4rem); line-height: .85; color: #fff; text-transform: uppercase; }
.hero__release-copy { font-family: var(--body); font-weight: 300; font-size: 1rem; line-height: 1.3; color: var(--grey); padding-bottom: 2px; border-left: 1px solid var(--red); padding-left: 14px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero__fade { position: absolute; left: calc(var(--rail) + var(--gutter)); right: var(--gutter); bottom: 28px; display: flex; justify-content: flex-end; align-items: flex-end; }
.hero__scroll { font-family: var(--cond); letter-spacing: 0; font-size: .95rem; color: var(--grey-2); padding-right: 30px; position: relative; }
.hero__scroll::after { content: ""; position: absolute; right: 0; bottom: 0; width: 1px; height: 46px; background: linear-gradient(to bottom, transparent, var(--red)); transform-origin: top; animation: scrollcue 1.8s var(--ease) infinite; }
@keyframes scrollcue { 0% { transform: scaleY(0); transform-origin: top } 50% { transform: scaleY(1); transform-origin: top } 51% { transform-origin: bottom } 100% { transform: scaleY(0); transform-origin: bottom } }

/* ---------- screenplay slug lines ---------- */
.slug {
  display: flex; align-items: baseline; gap: 18px;
  font-family: var(--cond); font-weight: 700; letter-spacing: 0; font-size: .92rem; color: var(--grey);
  padding: 0 var(--gutter) 0 calc(var(--rail) + var(--gutter));
  margin-bottom: clamp(36px, 6vh, 72px);
}
.slug__no {
  font-family: var(--anton); font-size: clamp(3rem, 6vw, 5.4rem); line-height: 1; letter-spacing: 0;
  color: transparent; -webkit-text-stroke: 1.5px var(--red); font-weight: 400;
  position: relative; padding-right: .36em;
}
/* Anton stands beside the scene number, the way he stands inside the wordmark */
.slug__no::after {
  content: ""; position: absolute; right: .02em; bottom: .055em;
  width: .29em; height: .88em;
  background: var(--red);
  -webkit-mask: url("assets/logo/anton-silhouette.svg") bottom center / contain no-repeat;
  mask: url("assets/logo/anton-silhouette.svg") bottom center / contain no-repeat;
}
.slug--night .slug__no::after { background: var(--red); }
.slug__no--plain { padding-right: 0; }
.slug__no--plain::after { display: none; }
.slug__line { flex: 1; position: relative; padding-bottom: 14px; }
.slug__line::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: linear-gradient(to right, var(--red) 0, var(--red) 120px, rgba(214,214,214,.12) 120px); }

/* ---------- scenes ---------- */
.scene { position: relative; padding: clamp(80px, 12vh, 160px) 0; }
.scene--day { background: var(--day); }
.scene--store { background: var(--day-2); }
.scene--cash { background: var(--day); }
.scene--night { background: var(--black); }
.scene + .scene::before { content: ""; position: absolute; left: var(--rail); right: 0; top: 0; height: 1px; background: rgba(214,214,214,.06); }

.grid { display: grid; gap: clamp(28px, 4vw, 64px); padding: 0 var(--gutter) 0 calc(var(--rail) + var(--gutter)); }
.copy { align-self: center; }

/* frames: hard-edged, filmic caption */
.frame { position: relative; margin: 0; background: var(--ink); display: flex; flex-direction: column; }
.frame img, .frame video { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 16/9; flex: 1 1 auto; min-height: 0; }
.frame--tall img, .frame--tall video { aspect-ratio: 4/5; }
.frame--small img, .frame--small video { aspect-ratio: 16/10; }
.frame--wide img, .frame--wide video { aspect-ratio: 21/9; }
.frame figcaption {
  position: absolute; left: 0; bottom: 0; right: 0; padding: 26px 14px 12px;
  font-family: var(--cond); letter-spacing: 0; font-size: .95rem; color: #fff;
  /* heavy enough to hold up over a blown-out daylight frame */
  background: linear-gradient(to top, rgba(0,0,0,.94) 0%, rgba(0,0,0,.88) 40%, rgba(0,0,0,.55) 72%, rgba(0,0,0,0) 100%);
  text-shadow: 0 1px 4px rgba(0,0,0,.95);
}
.frame figcaption { border-left: 2px solid var(--red); }

/* ---------- reveal animations (JS adds .in) ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-reveal="wipe"] { opacity: 1; transform: none; }
.reveal[data-reveal="wipe"] > * { clip-path: inset(0 100% 0 0); transition: clip-path 1s var(--ease-hard); }
.reveal[data-reveal="wipe"] > figcaption { transition-delay: .25s; }
.reveal[data-reveal="wipe"].in > * { clip-path: inset(0 0 0 0); }
.reveal[data-reveal="up"] { transform: translateY(34px); }
.reveal[data-reveal="up"].in { transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal[data-reveal="wipe"] > * { opacity: 1; transform: none; clip-path: none; transition: none; }
}

/* ---------- SC.01 apartment ---------- */
.apt { display: grid; gap: clamp(28px, 4vw, 56px); padding: 0 var(--gutter) 0 calc(var(--rail) + var(--gutter)); }
.apt__head { display: grid; grid-template-columns: 7fr 5fr; gap: clamp(24px, 4vw, 64px); align-items: end; }
.apt__head .lede { max-width: none; padding-bottom: .35em; }
.apt__wide video { aspect-ratio: 2/1; }

/* morning routine strip: times run against the clock rail */
.routine { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(214,214,214,.1); border: 1px solid rgba(214,214,214,.1); counter-reset: none; }
.routine li { background: var(--day); padding: 22px 22px 24px; display: grid; grid-template-columns: 26px 1fr; gap: 10px 14px; align-items: center; position: relative; }
.routine li::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .7s var(--ease); }
.routine.in li::before { transform: scaleX(1); }
.routine.in li:nth-child(2)::before { transition-delay: .15s }
.routine.in li:nth-child(3)::before { transition-delay: .3s }
.routine.in li:nth-child(4)::before { transition-delay: .45s }
.routine time { grid-column: 1 / -1; font-family: var(--anton); font-size: 1.6rem; line-height: 1; color: var(--gold); letter-spacing: .02em; }
.routine .ico { width: 24px; height: 24px; color: var(--gold); }
.routine span { font-size: .95rem; color: var(--grey); line-height: 1.4; }


/* how a night begins: four numbered beats */
.nightsteps { margin-top: 2.2rem; display: grid; border-top: 1px solid rgba(214,214,214,.14); max-width: 560px; }
.nightsteps li { display: grid; grid-template-columns: 58px 1fr; gap: 0 16px; padding: 16px 0 18px; border-bottom: 1px solid rgba(214,214,214,.1); }
.nightsteps b { font-family: var(--anton); font-weight: 400; font-size: 2rem; line-height: 1; color: transparent; -webkit-text-stroke: 1.2px var(--red); letter-spacing: .02em; padding-top: 2px; }
.nightsteps h3 { font-family: var(--semi); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; font-size: .98rem; color: #fff; }
.nightsteps p { margin-top: 6px; font-size: .95rem; color: var(--grey-2); max-width: 46ch; }
.terminal__cap { padding: 12px 14px 14px; border-top: 1px solid rgba(214,214,214,.1); font-family: var(--body); font-size: .88rem; color: var(--grey-2); letter-spacing: 0; line-height: 1.45; }

/* checklist (used by the basement scene) */
.checklist { margin-top: 2rem; display: grid; gap: 10px; max-width: 520px; }
.checklist li { display: flex; align-items: center; gap: 14px; padding: 12px 14px; border: 1px solid rgba(214,214,214,.12); font-size: .95rem; color: var(--grey); background: rgba(0,0,0,.25); }
.checklist .ico { color: var(--gold); width: 22px; height: 22px; }
.checklist--night .ico { color: var(--red); }

/* ---------- SC.02 store ---------- */
.store__sign { padding: 0 var(--gutter) 0 calc(var(--rail) + var(--gutter)); margin-bottom: clamp(32px, 5vh, 56px); display: flex; flex-direction: column; }
.store__sign-main {
  font-family: var(--anton); font-size: clamp(3.2rem, 9vw, 9rem); line-height: .9; letter-spacing: .04em; color: var(--gold);
  text-shadow: 0 0 22px rgba(255,215,130,.35), 0 0 2px rgba(255,215,130,.8);
  animation: neon 6s linear infinite;
}
@keyframes neon { 0%, 92%, 100% { opacity: 1 } 93% { opacity: .55 } 94% { opacity: 1 } 96% { opacity: .7 } 97% { opacity: 1 } }
.store__sign-sub { font-family: var(--cond); letter-spacing: .06em; font-size: .9rem; color: var(--gold-dim); margin-top: 6px; text-transform: uppercase; }

.grid--store { grid-template-columns: 5fr 6fr; align-items: center; }

/* DVD rental case */
.dvdcase { display: grid; grid-template-columns: 34px 1fr; background: #141414; border: 1px solid rgba(214,214,214,.16); box-shadow: 12px 12px 0 rgba(0,0,0,.35); }
.dvdcase__spine { display: flex; flex-direction: row-reverse; justify-content: space-between; align-items: center; gap: 12px; padding: 16px 0; overflow: hidden; background: #1e1a16; border-right: 1px solid rgba(214,214,214,.1); font-family: var(--cond); font-weight: 700; letter-spacing: .14em; font-size: .82rem; color: var(--gold); writing-mode: vertical-rl; transform: rotate(180deg); }
.dvdcase__cover { position: relative; padding: 14px; }
.dvdcase__cover video { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.dvdcase__sticker { position: absolute; top: -8px; right: -10px; background: var(--red); color: #fff; font-family: var(--cond); font-weight: 700; font-size: .92rem; letter-spacing: .06em; text-align: center; line-height: 1.15; padding: 10px 8px; transform: rotate(6deg); clip-path: polygon(0 0, 100% 0, 92% 100%, 8% 100%); }

.ledger { margin-top: 2rem; border-top: 1px solid rgba(214,214,214,.16); font-family: var(--cond); letter-spacing: 0; font-size: .95rem; }
.ledger__row { display: flex; align-items: baseline; gap: 10px; padding: 12px 0; border-bottom: 1px dashed rgba(214,214,214,.16); color: var(--grey-2); }
.ledger__row i { flex: 1; border-bottom: 1px dotted rgba(214,214,214,.28); transform: translateY(-4px); }
.ledger__row b { font-family: var(--anton); font-weight: 400; font-size: 1.25rem; color: #fff; letter-spacing: .03em; }
.ledger__row--gold b { color: var(--gold); }
.ledger__note { padding: 12px 0 0; font-family: var(--body); text-transform: none; letter-spacing: 0; font-size: .92rem; color: var(--red); }

.shelfrow { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin: clamp(48px, 8vh, 96px) var(--gutter) 0 calc(var(--rail) + var(--gutter)); background: rgba(214,214,214,.1); border: 1px solid rgba(214,214,214,.1); }
.shelf { background: var(--day-2); padding: 26px 24px 28px; position: relative; }
.shelf::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .8s var(--ease) .2s; }
.shelf.in::before { transform: scaleX(1); }
.shelf .ico { color: var(--gold); width: 30px; height: 30px; }
.shelf h3 { font-family: var(--semi); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; font-size: 1rem; color: #fff; margin: 16px 0 8px; }
.shelf p { font-size: .92rem; color: var(--grey-2); }

.grid--shelves { grid-template-columns: 1fr 1fr; margin-top: clamp(28px, 4vw, 64px); }

/* ---------- SC.03 cash ---------- */
.cash { padding: 0 var(--gutter) 0 calc(var(--rail) + var(--gutter)); }
.cash__head { max-width: 900px; }
.cash__head .lede { margin-top: 1.4rem; }
.cash__cols { display: grid; grid-template-columns: 1fr 200px 1fr; gap: 24px; align-items: stretch; margin-top: clamp(40px, 6vh, 72px); }
.cashcol { padding: 30px 30px 34px; border: 1px solid rgba(214,214,214,.12); background: rgba(0,0,0,.28); position: relative; }
.cashcol header { display: flex; align-items: baseline; gap: 12px; margin-bottom: 16px; }
.cashcol header .ico { width: 28px; height: 28px; align-self: center; }
.cashcol h3 { font-family: var(--anton); font-weight: 400; text-transform: uppercase; font-size: 2rem; letter-spacing: .02em; color: #fff; }
.cashcol header span { margin-left: auto; font-family: var(--cond); letter-spacing: 0; font-size: .92rem; }
.cashcol p { color: var(--grey-2); margin-bottom: 18px; }
.cashcol ul li { padding: 9px 0 9px 22px; border-top: 1px solid rgba(214,214,214,.08); font-size: .95rem; position: relative; }
/* silhouette bullet: Anton from the wordmark, coloured by the list */
.bullets > li { position: relative; }
.bullets > li::before {
  content: ""; position: absolute; left: 1px; top: 11px; width: 7px; height: 21px;
  background: currentColor;
  -webkit-mask: url("assets/logo/anton-silhouette.svg") center / contain no-repeat;
  mask: url("assets/logo/anton-silhouette.svg") center / contain no-repeat;
}
.cashcol--clean { border-color: rgba(255,215,130,.28); }
.cashcol--clean .ico, .cashcol--clean header span { color: var(--gold); }
.cashcol--clean .bullets > li::before { background: var(--gold); }
.cashcol--dirty { border-color: rgba(212,0,60,.4); }
.cashcol--dirty .ico, .cashcol--dirty header span { color: var(--red); }
.cashcol--dirty .bullets > li::before { background: var(--red); }
.cash__launder { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 10px; padding: 20px 8px; font-size: .82rem; color: var(--grey-2); }
.cash__launder .ico { width: 34px; height: 34px; color: var(--grey); }
.cash__launder b { font-family: var(--anton); font-weight: 400; font-size: 2.6rem; color: #fff; line-height: 1; }

/* ---------- shutter ---------- */
.shutter { height: 260vh; position: relative; background: #000; }
.shutter__sticky { position: sticky; top: 0; height: 100vh; overflow: hidden; z-index: 70; }  /* above the rail (50) and the nav (60): the shutter closes over everything */
.shutter__street, .shutter__night { position: absolute; inset: 0; background-size: cover; background-position: center; }
.shutter__street { filter: brightness(.85); }
.shutter__night { opacity: 0; filter: brightness(.7) saturate(1.1); }
.shutter__gate {
  position: absolute; left: 0; right: 0; top: 0; height: 100%;
  transform: translateY(-100%);
  background:
    repeating-linear-gradient(to bottom, #2a2a2a 0 22px, #101010 22px 26px, #383838 26px 30px, #161616 30px 34px),
    #1a1a1a;
  box-shadow: 0 18px 40px rgba(0,0,0,.7);
  will-change: transform;
}
.shutter__gate::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 14px; background: #0c0c0c; border-top: 2px solid #3d3d3d; }
.shutter__text { position: absolute; left: calc(var(--rail) + var(--gutter)); right: var(--gutter); bottom: 14vh; z-index: 2; }
.shutter__line { font-family: var(--anton); text-transform: uppercase; line-height: 1; font-size: clamp(1.6rem, 4vw, 3.6rem); color: #fff; opacity: 0; transform: translateY(20px); transition: opacity .5s, transform .6s var(--ease); }
.shutter__line--big { font-size: clamp(2.6rem, 7vw, 7rem); color: var(--red); margin-top: .2em; }
.shutter__line.on { opacity: 1; transform: none; }

/* ---------- SC.04 basement ---------- */
.grid--basement { grid-template-columns: 6fr 5fr; align-items: center; }
.grid--basement2 { grid-template-columns: 1fr 1fr; margin-top: clamp(40px, 6vh, 80px); }

.terminal { background: #050505; border: 1px solid rgba(214,214,214,.14); font-family: var(--cond); font-size: .95rem; letter-spacing: 0; box-shadow: 0 0 0 1px #000, 0 30px 60px rgba(0,0,0,.6); }
.terminal__bar { display: flex; justify-content: space-between; padding: 10px 14px; border-bottom: 1px solid rgba(214,214,214,.14); color: var(--grey-2); font-size: .82rem; }
.terminal__list li { display: grid; grid-template-columns: 110px 1fr auto; gap: 12px; padding: 9px 14px; border-bottom: 1px solid rgba(214,214,214,.06); color: var(--grey-3); }
.terminal__list li.is-unread { color: var(--grey); }
.terminal__list li.is-main { background: rgba(212,0,60,.12); border-left: 2px solid var(--red); }
.terminal__list b { font-weight: 600; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.terminal__list span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.terminal__list em { font-style: normal; color: var(--red); }
.terminal__body { padding: 16px 14px 18px; border-bottom: 1px solid rgba(214,214,214,.1); }
.terminal__body p { margin: 0 0 6px; color: var(--grey-2); }
.terminal__k { display: inline-block; width: 46px; color: var(--red); font-weight: 600; }
.terminal__msg { color: var(--grey) !important; margin-top: 12px !important; line-height: 1.5; font-family: var(--body); font-size: .95rem; letter-spacing: 0; }
.terminal__msg--dim { color: var(--grey-3) !important; margin-top: 4px !important; }
.terminal__foot { display: flex; gap: 8px; padding: 10px 14px; }
.terminal__foot span { flex: 1; text-align: center; padding: 8px; text-transform: uppercase; letter-spacing: .08em; font-weight: 700; font-size: .8rem; border: 1px solid rgba(214,214,214,.2); }
.terminal__foot span:first-child { background: var(--red); border-color: var(--red); color: #fff; }

/* ---------- SC.05 city ---------- */
.city { padding: 0 var(--gutter) 0 calc(var(--rail) + var(--gutter)); }
.tiles { display: inline-flex; gap: 4px; padding: 6px; background: #d9d6cf; border: 4px solid #1a1a1a; }
.tiles span { display: grid; place-items: center; width: clamp(38px, 6.4vw, 78px); aspect-ratio: 1; background: #0f0f0f; color: #ece9e2; font-family: var(--anton); font-size: clamp(1.3rem, 4vw, 3.2rem); line-height: 1; border: 1px solid #2a2a2a; }
.tiles span:nth-child(3), .tiles span:nth-child(4) { color: var(--red); }
.city__sub { margin-top: 12px; font-family: var(--cond); letter-spacing: 0; font-size: .84rem; color: var(--grey-2); }

.city__grid {
  display: grid; margin-top: clamp(36px, 6vh, 64px); gap: 20px;
  grid-template-columns: repeat(12, 1fr);
  grid-template-areas:
    "a a a a a a a b b b b b"
    "a a a a a a a copy copy copy copy copy"
    "c c c c d d d d e e e e";
}
.city__a { grid-area: a; }
.city__b { grid-area: b; }
.city__c { grid-area: c; }
.city__d { grid-area: d; }
.city__e { grid-area: e; }
.city__copy { grid-area: copy; align-self: center; padding: 10px 0 10px 20px; }
.city__copy .h-big { font-size: clamp(2rem, 3.6vw, 3.6rem); }
.city__copy p { margin-top: 1rem; color: var(--grey-2); }
.city__a img { aspect-ratio: 16/11; }
.city__b video { aspect-ratio: 16/9; }
.city__c img, .city__d video, .city__e img { aspect-ratio: 4/3; }
[data-parallax] { will-change: transform; }

/* ---------- SC.06 stepper ---------- */
.stepper { position: relative; display: grid; grid-template-columns: 1fr 1fr; padding: 0 var(--gutter) 0 calc(var(--rail) + var(--gutter)); gap: clamp(28px, 5vw, 80px); }
.stepper__sticky { position: sticky; top: 0; height: 100vh; display: flex; align-items: center; }
.stepper__screen { position: relative; width: 100%; aspect-ratio: 16/9; background: #000; overflow: hidden; border: 1px solid rgba(214,214,214,.1); }
.stepper__screen video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .12s; }
.stepper__screen video.is-active { opacity: 1; }
.stepper__hud { position: absolute; inset: 0; pointer-events: none; font-family: var(--cond); text-transform: uppercase; letter-spacing: .06em; font-size: .92rem; color: var(--grey); }
.stepper__hud::before { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 40%; background: linear-gradient(to top, rgba(0,0,0,.8), transparent); }
.stepper__hud::after { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 28%; background: linear-gradient(to bottom, rgba(0,0,0,.6), transparent); }
#hudAmmo { position: absolute; left: 16px; bottom: 14px; z-index: 1; font-family: var(--anton); font-size: 1.5rem; letter-spacing: .05em; color: #fff; }
#hudAmmo i { font-style: normal; font-size: .9rem; color: var(--grey-2); }
#hudLabel { position: absolute; right: 16px; top: 14px; z-index: 1; padding: 6px 10px; border: 1px solid var(--red); background: rgba(0,0,0,.45); color: #fff; }
.stepper__steps { padding: 0 0 12vh; }
.step { min-height: 72vh; display: flex; flex-direction: column; justify-content: center; opacity: .28; transition: opacity .4s; }
.step.is-active { opacity: 1; }
.step .ico { width: 34px; height: 34px; color: var(--red); margin-bottom: 18px; }
.step h3 { font-family: var(--anton); font-weight: 400; text-transform: uppercase; font-size: clamp(1.8rem, 3vw, 3rem); line-height: 1; color: #fff; }
.step p { margin-top: 14px; color: var(--grey-2); max-width: 46ch; }
.step .lede { color: var(--grey); }

/* ---------- SC.07 takedown strip ---------- */
.td__intro { padding: 0 var(--gutter) 0 calc(var(--rail) + var(--gutter)); max-width: 1000px; }
.td__intro .lede { margin-top: 1.4rem; }
.strip { height: 280vh; position: relative; margin-top: clamp(36px, 6vh, 72px); }
.strip__sticky { position: sticky; top: 0; height: 100vh; overflow: hidden; display: flex; align-items: center; }
.strip__track { display: flex; gap: 24px; padding-left: calc(var(--rail) + var(--gutter)); will-change: transform; }
.tdcard { position: relative; flex: none; width: min(62vw, 720px); background: #0a0a0a; border: 1px solid rgba(214,214,214,.12); margin: 0; overflow: hidden; }
.tdcard video { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }
/* caption reads like a slot plate bolted to the bottom of the card */
.tdcard figcaption { display: flex; align-items: stretch; background: var(--red); color: #fff; border-top: 0; padding: 0; }
.tdcard__slot { display: grid; place-items: center; min-width: 62px; padding: 0 14px; background: rgba(0,0,0,.3); font-family: var(--anton); font-size: 1.3rem; line-height: 1; letter-spacing: .04em; }
.tdcard__name { flex: 1; display: flex; align-items: center; padding: 14px 18px; font-size: 1.02rem; letter-spacing: .01em; }
.tdcard__lock { display: flex; align-items: center; gap: 8px; padding: 14px 18px; font-size: .88rem; color: rgba(255,255,255,.75); }
.tdcard__lock .ico { width: 17px; height: 17px; }
/* locked slots stay dark: the red plate is the reward for unlocking one */
.tdcard--locked figcaption { background: #131313; color: var(--grey-2); border-top: 1px solid rgba(214,214,214,.12); }
.tdcard--locked .tdcard__slot { background: rgba(212,0,60,.14); color: var(--red); }
.tdcard--locked .tdcard__lock { color: var(--gold); }
.tdcard--locked video { filter: grayscale(.45) brightness(.72); }
.strip__hint { position: absolute; right: var(--gutter); bottom: 32px; display: flex; align-items: center; gap: 10px; font-family: var(--cond); letter-spacing: 0; font-size: .95rem; color: var(--grey-2); }
.strip__hint .ico { animation: nudge 1.4s var(--ease) infinite; }
@keyframes nudge { 0%, 100% { transform: translateX(0) } 50% { transform: translateX(6px) } }

.td__facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin: clamp(36px, 6vh, 72px) var(--gutter) 0 calc(var(--rail) + var(--gutter)); background: rgba(214,214,214,.1); border: 1px solid rgba(214,214,214,.1); }
.fact { background: #000; padding: 28px 26px; display: grid; grid-template-columns: 34px 1fr; grid-template-rows: auto auto; gap: 6px 16px; }
.fact .ico { width: 30px; height: 30px; color: var(--red); grid-row: span 2; }
.fact b { font-family: var(--anton); font-weight: 400; font-size: 1.9rem; line-height: 1; color: #fff; }
.fact span { font-size: .92rem; color: var(--grey-2); }

/* ---------- SC.08 director ---------- */
.scene--director { padding-top: 0; }
.director { position: relative; min-height: 100vh; display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; }
.director__bg { position: absolute; inset: -10% 0; width: 100%; height: 120%; object-fit: cover; object-position: center 30%; filter: brightness(.8); will-change: transform; }
.director::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, #000 0%, rgba(0,0,0,.4) 45%, rgba(0,0,0,.2) 100%); }
.slug--over { position: absolute; top: clamp(80px, 12vh, 160px); left: 0; right: 0; z-index: 2; margin: 0; }
.director__copy { position: relative; z-index: 2; padding: 0 var(--gutter) clamp(60px, 10vh, 120px) calc(var(--rail) + var(--gutter)); max-width: 1100px; }
.director__q { font-family: var(--body); font-weight: 300; font-size: clamp(1.1rem, 1.8vw, 1.6rem); color: var(--grey); max-width: 46ch; }
.director__q--red { color: var(--red); font-weight: 400; margin-top: 1.2rem; }
.director__big { font-family: var(--anton); text-transform: uppercase; font-size: clamp(2.6rem, 7.2vw, 7.6rem); line-height: .92; color: #fff; margin: 1.2rem 0 0; }
.director__row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; padding: clamp(40px, 6vh, 80px) var(--gutter) 0 calc(var(--rail) + var(--gutter)); }
.director__row img { aspect-ratio: 4/3; }

/* ---------- SC.09 sleep / the wristwatch ---------- */
.sleep { display: grid; gap: clamp(24px, 4vw, 48px); padding: 0 var(--gutter) 0 calc(var(--rail) + var(--gutter)); }
.sleep__head { display: grid; grid-template-columns: 6fr 6fr; gap: clamp(24px, 4vw, 64px); align-items: end; }
.sleep__head .lede { max-width: none; }
.sleep__head p + p { margin-top: 1em; color: var(--grey-2); }

/* pinned demo: scrolling the section turns the hands through one full day */
.watch { height: 340vh; position: relative; }
/* one snap marker per beat, so the page itself settles on each moment of the day */
.watch__stops { position: absolute; inset: 0; pointer-events: none; }
.watch__stops span { position: absolute; left: 0; width: 1px; height: 1px; scroll-snap-align: start; scroll-snap-stop: normal; }
.watch__stops span:nth-child(1) { top: 24vh; }
.watch__stops span:nth-child(2) { top: 72vh; }
.watch__stops span:nth-child(3) { top: 120vh; }
.watch__stops span:nth-child(4) { top: 168vh; }
.watch__stops span:nth-child(5) { top: 216vh; }
.watch__sticky { position: sticky; top: 0; height: 100vh; display: grid; grid-template-columns: 7fr 5fr; gap: clamp(24px, 4vw, 72px); align-items: center; }
.watch__face { margin: 0; display: grid; place-items: center; }
.watch__svg { width: min(100%, 78vh); height: auto; overflow: visible; filter: drop-shadow(0 30px 40px rgba(0,0,0,.7)); }

.watch__ticks line { stroke: rgba(214,214,214,.25); stroke-width: 1.1; }
.watch__ticks line.maj { stroke: var(--grey); stroke-width: 2.4; }
.watch__nums text { font-family: var(--anton); font-size: 30px; fill: #fff; text-anchor: middle; letter-spacing: .02em; }
.watch__brand { font-family: var(--cond); font-weight: 700; font-size: 11px; letter-spacing: .3em; fill: var(--grey); }
.watch__brand--sub { font-weight: 400; font-size: 8.5px; letter-spacing: .28em; fill: var(--grey-3); }
.watch__ampm rect, .watch__date rect { fill: #000; stroke: #333; }
.watch__ampm text { font-family: var(--cond); font-weight: 700; font-size: 13px; letter-spacing: .18em; fill: var(--gold); transition: fill .4s; }
.watch__ampm text.is-pm { fill: var(--red); }
#watchTint { transition: fill .6s, opacity .6s; }
.watch__date text { font-family: var(--cond); font-weight: 700; font-size: 13px; letter-spacing: .14em; fill: #fff; }
.hand path { fill: var(--grey); stroke: #000; stroke-width: 1; }
.hand--minute path { fill: #fff; }
.hand { transform-origin: 300px 300px; transform-box: view-box; will-change: transform; }
.watch__cap { fill: var(--red); stroke: #000; stroke-width: 1.5; }
@media (prefers-reduced-motion: reduce) { .hand { transition: none; } }

.watch__side { display: grid; gap: 22px; align-content: center; }
.watch__now { display: flex; align-items: baseline; gap: 16px; }
.watch__now span { font-family: var(--anton); font-size: clamp(3rem, 6vw, 5.4rem); line-height: 1; color: #fff; letter-spacing: .02em; font-variant-numeric: tabular-nums; }
.watch__now small { font-size: 1rem; color: var(--grey-2); }
.phases li { display: grid; grid-template-columns: 12px 76px 1fr; align-items: center; gap: 0 14px; padding: 12px 0; border-top: 1px solid rgba(214,214,214,.1); color: var(--grey-3); transition: color .3s; }
.phases li:last-child { border-bottom: 1px solid rgba(214,214,214,.1); }
.phases time { font-family: var(--anton); font-size: 1.35rem; letter-spacing: .02em; }
.phases li::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: currentColor; opacity: .35; transition: opacity .3s, transform .3s; }
.phases li.day::before { background: var(--gold); } .phases li.night::before { background: var(--red); }
.phases li.is-on { color: #fff; }
.phases li.is-on::before { opacity: 1; transform: scale(1.35); }
.phases li.is-done { color: var(--grey-2); }
.phases span { font-size: 1rem; }
.watch__hint { font-size: .92rem; color: var(--grey-2); max-width: 40ch; }

/* ---------- roadmap ---------- */
.roadmap { padding: 0 var(--gutter) 0 calc(var(--rail) + var(--gutter)); }
.acts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: clamp(36px, 6vh, 64px); position: relative; }
.acts::before { content: ""; position: absolute; left: 0; right: 0; top: 118px; height: 1px; background: rgba(214,214,214,.12); }
.act { position: relative; padding: 28px 26px 30px; border: 1px solid rgba(214,214,214,.12); background: #050505; }
.act--one { border-color: var(--red); }
.act--one::before { content: "OUT NOW"; position: absolute; top: -1px; right: -1px; padding: 6px 10px; background: var(--red); color: #fff; font-family: var(--cond); font-weight: 700; letter-spacing: .06em; font-size: .92rem; }
.act__lockup { display: flex; flex-direction: column; align-items: flex-start; gap: 6px; }
.act__lockup img { height: 26px; width: auto; }
.act__lockup span { font-family: var(--cond); letter-spacing: .4em; font-size: .92rem; color: var(--grey); padding-left: 2px; position: relative; }
.act__lockup span::after { content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 1px; background: rgba(214,214,214,.3); }
.act time { display: block; margin-top: 22px; font-family: var(--anton); font-size: 2rem; line-height: 1; color: #fff; letter-spacing: .03em; }
.act--one time { color: var(--red); }
.act ul { margin-top: 18px; }
.act li { padding: 8px 0 8px 20px; border-top: 1px solid rgba(214,214,214,.08); font-size: .95rem; color: var(--grey-2); }
.act .bullets > li::before { top: 10px; height: 19px; width: 6px; background: var(--grey-2); }
.act--one .bullets > li::before { background: var(--red); }
.act__price { display: flex; align-items: baseline; gap: 10px; margin-top: 18px; }
.act__price b { font-family: var(--anton); font-weight: 400; font-size: 1.8rem; color: #fff; }
.act__price span { font-family: var(--cond); letter-spacing: 0; font-size: .95rem; color: var(--grey-2); }
.roadmap__note { margin-top: 20px; font-family: var(--cond); letter-spacing: 0; font-size: .95rem; color: var(--gold); }

/* ---------- specs ---------- */
.specs { padding: 0 var(--gutter) 0 calc(var(--rail) + var(--gutter)); }
.spectable { width: 100%; border-collapse: collapse; font-size: .95rem; }
.spectable th, .spectable td { text-align: left; padding: 14px 16px; border-bottom: 1px solid rgba(214,214,214,.1); vertical-align: top; }
.spectable thead th { font-family: var(--anton); font-weight: 400; text-transform: uppercase; font-size: 1.4rem; letter-spacing: .03em; color: #fff; border-bottom-color: rgba(214,214,214,.3); }
.spectable thead th small { display: block; font-family: var(--cond); font-size: .95rem; letter-spacing: 0; color: var(--grey-2); margin-top: 2px; }
.spectable tbody th { font-family: var(--cond); text-transform: uppercase; letter-spacing: .06em; font-size: .84rem; color: var(--red); width: 120px; padding-top: 18px; }
.spectable td { color: var(--grey); }
.specs__warn { margin-top: 28px; max-width: 80ch; font-size: .82rem; color: var(--grey-3); }

/* ---------- footer: end card, then a poster billing block ---------- */
.foot { background: #000; border-top: 1px solid rgba(214,214,214,.08); padding: clamp(80px, 14vh, 160px) var(--gutter) 34px calc(var(--rail) + var(--gutter)); }
.foot__card { display: grid; grid-template-columns: minmax(0, 7fr) minmax(280px, 5fr); gap: clamp(28px, 5vw, 96px); align-items: end; }
.foot__logo { width: min(640px, 100%); }
.foot__release { display: flex; flex-direction: column; gap: 22px; padding-bottom: 6px; }
.foot__line { font-family: var(--body); font-weight: 300; font-size: 1.05rem; line-height: 1.45; color: var(--grey); border-left: 1px solid var(--red); padding-left: 16px; }
.foot .hero__cta { margin-top: 0; }

/* billing block: the way a one-sheet credits a film. Anton is a billing face by nature. */
.billing {
  margin-top: clamp(56px, 9vh, 110px); padding: 26px 0 22px;
  border-top: 1px solid rgba(214,214,214,.16); border-bottom: 1px solid rgba(214,214,214,.16);
  display: flex; flex-wrap: wrap; justify-content: center; align-items: flex-end; column-gap: clamp(22px, 3vw, 44px); row-gap: 18px;
  text-align: center;
}
.billing p { display: flex; flex-direction: column; align-items: center; gap: 5px; }
.billing small { font-family: var(--cond); font-size: .66rem; letter-spacing: .12em; text-transform: uppercase; color: var(--grey-3); }
.billing span { font-family: var(--anton); font-size: clamp(1rem, 1.35vw, 1.3rem); line-height: 1; letter-spacing: .05em; text-transform: uppercase; color: var(--grey-2); white-space: nowrap; }
.billing p:first-child span { color: #fff; }
.billing span i { font-style: normal; font-family: var(--cond); font-size: .7em; letter-spacing: .1em; color: var(--grey-3); padding: 0 .3em; }

.foot__bar { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; margin-top: 30px; }
.foot__meta { display: flex; flex-wrap: wrap; gap: 8px 24px; font-family: var(--cond); font-size: .88rem; letter-spacing: 0; color: var(--grey-3); align-self: flex-end; padding-bottom: 6px; }
.foot__meta a { color: var(--grey-2); text-decoration: none; }
.foot__meta a:hover { color: #fff; }
.foot__pub { display: flex; align-items: center; gap: 22px; margin-left: auto; }
.foot__pub-dev { height: 30px; width: auto; opacity: .7; }
.foot__pub-x { width: 1px; height: 38px; background: rgba(214,214,214,.18); }
.foot__pub-izilla { display: block; line-height: 0; }
.foot__pub-izilla img { height: 54px; width: auto; transition: filter .25s, opacity .25s; }
.foot__pub-izilla:hover img { filter: brightness(1.15); }

/* ---------- modals ---------- */
.modal { border: 0; padding: 0; background: #000; max-width: none; box-shadow: 0 40px 100px rgba(0,0,0,.85); color: var(--grey); }
.modal::backdrop { background: rgba(0,0,0,.92); }
.modal__close { width: 44px; height: 44px; font-size: 2rem; line-height: 1; color: var(--grey-2); font-family: var(--body); }
.modal__close:hover { color: #fff; }

/* trailer: a projection window with a slug bar */
.modal--trailer { width: min(1200px, 94vw); border: 1px solid rgba(214,214,214,.16); }
.trailer__bar { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 18px; padding: 0 0 0 18px; height: 52px; border-bottom: 1px solid rgba(214,214,214,.12); font-family: var(--cond); letter-spacing: 0; }
.trailer__title { font-family: var(--anton); text-transform: uppercase; font-size: 1.1rem; letter-spacing: .04em; color: #fff; }
.trailer__slug { font-size: .82rem; color: var(--grey-3); letter-spacing: .08em; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.trailer__bar .modal__close { height: 52px; width: 52px; border-left: 1px solid rgba(214,214,214,.12); }
.trailer__screen { position: relative; aspect-ratio: 16/9; background: #000; }
.trailer__screen::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 2px; background: var(--red); z-index: 1; }
.trailer__screen iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }

/* purchase: two counters, one open */
.modal--buy { width: min(560px, 94vw); border: 1px solid rgba(214,214,214,.16); }
.buy { padding: 26px 26px 22px; display: grid; gap: 10px; }
.buy__head { display: grid; grid-template-columns: 1fr auto; grid-template-rows: auto auto; column-gap: 16px; margin-bottom: 12px; }
.buy__kicker { grid-column: 1; font-family: var(--cond); font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: var(--red); }
.buy__title { grid-column: 1; font-family: var(--anton); font-weight: 400; text-transform: uppercase; font-size: clamp(2rem, 4vw, 2.8rem); line-height: 1; color: #fff; margin-top: 8px; }
.buy__head .modal__close { grid-column: 2; grid-row: 1 / span 2; align-self: start; margin: -10px -10px 0 0; }
.buy__opt { display: grid; grid-template-columns: 30px 1fr auto; align-items: center; gap: 16px; padding: 16px 18px; border: 1px solid rgba(214,214,214,.2); text-decoration: none; color: #fff; background: #050505; transition: background .2s, color .2s, border-color .2s; }
.buy__opt .ico { width: 28px; height: 28px; color: var(--red); }
.buy__mark { width: 30px; height: 30px; object-fit: contain; justify-self: center; }
.buy__opt--soon .buy__mark { opacity: .85; }
.buy__txt { display: flex; flex-direction: column; gap: 3px; }
.buy__txt b { font-family: var(--semi); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; font-size: .95rem; }
.buy__txt small { font-family: var(--body); font-size: .88rem; color: var(--grey-2); }
.buy__go { transition: transform .25s var(--ease); }
a.buy__opt:hover { background: #fff; color: var(--black); border-color: #fff; }
a.buy__opt:hover .ico { color: var(--black); }
a.buy__opt:hover .buy__txt small { color: #333; }
a.buy__opt:hover .buy__go { transform: translateX(5px); }
.buy__opt--soon { color: var(--grey-2); border-style: dashed; border-color: rgba(214,214,214,.16); cursor: default; }
.buy__opt--soon .ico { color: var(--grey-3); }
.buy__opt--soon .buy__txt b { color: var(--grey); }
.buy__opt--soon em { font-style: normal; font-family: var(--cond); font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); border: 1px solid rgba(255,215,130,.4); padding: 5px 8px; white-space: nowrap; }
.buy__note { margin-top: 8px; font-size: .85rem; color: var(--grey-3); }

/* hard cut: a black frame between two places on the page */
.cut { position: fixed; inset: 0; background: #000; z-index: 9980; opacity: 0; pointer-events: none; transition: opacity .24s ease; }
.cut.on { opacity: 1; pointer-events: auto; }
@media (prefers-reduced-motion: reduce) { .cut { transition: none; } }

/* =========================================================
   responsive
   ========================================================= */
@media (max-width: 1100px) {
  .apt__head { grid-template-columns: 1fr; align-items: start; }
  .routine { grid-template-columns: 1fr 1fr; }
  .shelfrow { grid-template-columns: 1fr 1fr; }
  .cash__cols { grid-template-columns: 1fr; }
  .cash__launder { flex-direction: row; text-align: left; justify-content: flex-start; padding: 12px 0; }
  .city__grid { grid-template-areas: "a a a a a a a a a a a a" "copy copy copy copy copy copy copy b b b b b" "c c c c d d d d e e e e"; }
}
@media (max-width: 860px) {
  :root { --rail: 0px; }
  .rail { display: none; }
  .nav { grid-template-columns: auto 1fr auto; padding-left: var(--gutter); }
  .nav__links, .nav__right .btn--ghost { display: none; }
  .nav__right .btn--red { font-size: .72rem; padding: .7em 1em; }
  .nav__logo { gap: 10px; }
  .nav__studio img { height: 24px; }
  .nav__logo-rule { height: 20px; }
  .nav__game img { height: 18px; }
  .hero { min-height: 560px; }
  .hero__logo img { width: min(560px, 86vw); }
  .apt__head { grid-template-columns: 1fr; }
  .routine { grid-template-columns: 1fr; }
  .apt__wide video { aspect-ratio: 16/9; }
  .grid--store, .grid--shelves, .grid--basement, .grid--basement2 { grid-template-columns: 1fr; }
  .foot__card { grid-template-columns: 1fr; }
  .billing { justify-content: flex-start; text-align: left; row-gap: 16px; }
  .billing p { align-items: flex-start; }
  .billing span { white-space: normal; }
  .foot__bar { flex-direction: column; align-items: flex-start; }
  .foot__pub { margin-left: 0; }
  .nightsteps li { grid-template-columns: 44px 1fr; }
  .nightsteps b { font-size: 1.6rem; }
  .buy { padding: 20px 18px 18px; }
  .buy__opt { grid-template-columns: 24px 1fr; gap: 14px; }
  .buy__go { display: none; }
  .buy__opt--soon em { grid-column: 2; justify-self: start; }
  .trailer__slug { display: none; }
  .sleep__head { grid-template-columns: 1fr; align-items: start; }
  .watch { height: 300vh; }
  .watch__stops span:nth-child(1) { top: 20vh; }
  .watch__stops span:nth-child(2) { top: 60vh; }
  .watch__stops span:nth-child(3) { top: 100vh; }
  .watch__stops span:nth-child(4) { top: 140vh; }
  .watch__stops span:nth-child(5) { top: 180vh; }
  .watch__sticky { grid-template-columns: 1fr; align-content: start; gap: 8px; padding-top: 80px; }
  .watch__svg { width: min(78vw, 46vh); }
  .watch__now span { font-size: 2.6rem; }
  .phases li { padding: 8px 0; }
  .phases span { font-size: .92rem; }
  .watch__hint { display: none; }
  .shelfrow { grid-template-columns: 1fr; }
  .city__grid { grid-template-columns: 1fr 1fr; grid-template-areas: "a a" "copy copy" "b b" "c d" "e e"; }
  .city__copy { padding-left: 0; }
  .stepper { grid-template-columns: 1fr; gap: 0; }
  .stepper__sticky { height: auto; position: sticky; top: 72px; z-index: 3; background: #000; padding: 8px 0; }
  .stepper__steps { padding: 20px 0 40px; }
  .step { min-height: 0; padding: 36px 0; border-bottom: 1px solid rgba(214,214,214,.08); }
  .strip { height: auto; margin-top: 32px; }
  .strip__sticky { position: static; height: auto; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; padding-bottom: 24px; }
  .strip__track { transform: none !important; padding-right: var(--gutter); }
  .tdcard { width: 82vw; scroll-snap-align: start; }
  .strip__hint { display: none; }
  .td__facts, .director__row, .acts { grid-template-columns: 1fr; }
  .acts::before { display: none; }
  .spectable thead { display: none; }
  .spectable tr { display: grid; grid-template-columns: 90px 1fr; }
  .spectable tbody th { grid-row: span 2; }
  .spectable td { border-bottom: 0; padding: 8px 12px; }
  .spectable td:nth-child(2)::before { content: "MIN · "; font-family: var(--cond); letter-spacing: 0; font-size: .95rem; color: var(--grey-3); }
  .spectable td:nth-child(3)::before { content: "REC · "; font-family: var(--cond); letter-spacing: 0; font-size: .95rem; color: var(--grey-3); }
  .spectable tr { border-bottom: 1px solid rgba(214,214,214,.1); }
  /* the contract inbox: stack sender over subject instead of truncating both */
  .terminal__list li { grid-template-columns: 1fr auto; gap: 2px 10px; padding: 10px 12px; }
  .terminal__list b { grid-column: 1; }
  .terminal__list span { grid-column: 1 / -1; grid-row: 2; white-space: normal; color: var(--grey-2); font-size: .82rem; }
  .terminal__list em { grid-column: 2; grid-row: 1; }
  .terminal__k { width: 42px; }
  /* section jump list needs to be reachable on a phone */
  .nav__burger { display: flex; }
  .nav { gap: 10px; }
  .shutter { height: 180vh; }
  .shutter__text { bottom: 10vh; }
  .slug { flex-direction: column; gap: 6px; }
  .slug__no { font-size: 2.6rem; }
}
