:root {
  color-scheme: dark;
  --ink: #07070b;
  --ink-soft: #101018;
  --text: #fff8ec;
  --muted: #c8c0d6;
  --muted-strong: #e7d9f7;
  --line: rgba(255, 248, 236, 0.18);
  --magenta: #ff2abf;
  --hot: #ff4a64;
  --wasabi: #b6ff38;
  --cyan: #27e5ff;
  --orange: #ffb032;
  --panel: rgba(13, 10, 19, 0.72);
  --nav-h: 76px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  background: var(--ink);
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 14px);
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 42, 191, 0.18), transparent 36rem),
    radial-gradient(circle at 82% 10%, rgba(39, 229, 255, 0.12), transparent 34rem),
    var(--ink);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body::before {
  z-index: 90;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.055) 0 1px, rgba(0, 0, 0, 0.13) 1px 4px, transparent 4px 8px),
    linear-gradient(90deg, rgba(255, 42, 191, 0.055), transparent 18%, transparent 82%, rgba(39, 229, 255, 0.05)),
    radial-gradient(ellipse at center, transparent 58%, rgba(0, 0, 0, 0.3) 100%);
  mix-blend-mode: screen;
  opacity: 0.28;
  animation: crtDrift 5.5s linear infinite, crtFlicker 6s steps(8, end) infinite;
}

body::after {
  z-index: 91;
  background:
    linear-gradient(90deg, transparent 0 8%, rgba(39, 229, 255, 0.18) 8.4% 8.8%, transparent 9.4% 47%, rgba(255, 42, 191, 0.18) 47.6% 48%, transparent 48.8% 100%),
    repeating-linear-gradient(90deg, transparent 0 88px, rgba(182, 255, 56, 0.06) 89px 91px, transparent 92px 190px);
  mix-blend-mode: screen;
  opacity: 0.06;
  transform: translate3d(0, 0, 0);
}

body.is-signal-jump::after {
  animation: signalJump 320ms steps(2, end) both;
}

img,
video,
iframe {
  display: block;
  max-width: 100%;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-140%);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff8ec;
  color: #09070e;
  padding: 10px 14px;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: var(--nav-h);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px 28px;
  color: var(--text);
  transition: background 240ms ease, border-color 240ms ease, backdrop-filter 240ms ease;
}

.site-nav::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-bottom: 0;
  background: linear-gradient(180deg, rgba(7, 7, 11, 0.76), rgba(7, 7, 11, 0));
  transition: background 240ms ease, box-shadow 240ms ease;
}

.site-nav.is-scrolled::before {
  background: rgba(7, 7, 11, 0.84);
  backdrop-filter: blur(18px);
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.12);
}

.brand-link,
.nav-links,
.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
}

.brand-link {
  gap: 0;
  font-weight: 900;
  font-size: 1.02rem;
}

.brand-link img {
  width: clamp(96px, 8vw, 118px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(255, 42, 191, 0.38));
}

.nav-links {
  justify-content: center;
  gap: 22px;
  color: rgba(255, 248, 236, 0.78);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
  padding: 10px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, var(--wasabi), var(--magenta));
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.nav-cta {
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  border: 1px solid rgba(182, 255, 56, 0.5);
  border-radius: 999px;
  background: rgba(182, 255, 56, 0.12);
  color: var(--wasabi);
  padding: 0 16px;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 0 28px rgba(182, 255, 56, 0.12);
}

.audio-toggle {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 70;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(182, 255, 56, 0.44);
  border-radius: 999px;
  background:
    radial-gradient(circle at 34% 28%, rgba(182, 255, 56, 0.22), transparent 46%),
    rgba(7, 7, 11, 0.72);
  color: var(--wasabi);
  cursor: pointer;
  box-shadow: 0 0 34px rgba(182, 255, 56, 0.14), inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  transition: transform 180ms ease, color 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.audio-toggle:hover,
.audio-toggle:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(182, 255, 56, 0.8);
  box-shadow: 0 0 42px rgba(182, 255, 56, 0.22), inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.audio-toggle::after {
  content: "";
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(182, 255, 56, 0.18);
  border-radius: inherit;
  opacity: 0;
  transform: scale(0.86);
  transition: opacity 180ms ease, transform 180ms ease;
}

.audio-toggle.is-playing::after {
  opacity: 1;
  transform: scale(1);
  animation: audioPulse 1.6s ease-in-out infinite;
}

.audio-toggle.is-muted {
  border-color: rgba(255, 248, 236, 0.2);
  background: rgba(7, 7, 11, 0.72);
  color: rgba(255, 248, 236, 0.72);
}

.audio-icon {
  width: 24px;
  height: 24px;
  grid-area: 1 / 1;
}

.audio-icon-off,
.audio-toggle.is-muted .audio-icon-on {
  display: none;
}

.audio-toggle.is-muted .audio-icon-off {
  display: block;
}

.nav-cta svg,
.button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.hero {
  position: relative;
  min-height: 100svh;
  isolation: isolate;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 120px 40px 56px;
}

.hero-media,
.hero-scrim,
.hero-media img {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -3;
  transform: scale(calc(1.04 + (var(--progress, 0) * 0.08)));
  transition: transform 80ms linear;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
  filter: saturate(1.18) contrast(1.08);
}

.hero-scrim {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(7, 7, 11, 0.9) 0%, rgba(7, 7, 11, 0.62) 34%, rgba(7, 7, 11, 0.16) 68%, rgba(7, 7, 11, 0.56) 100%),
    linear-gradient(0deg, rgba(7, 7, 11, 0.94) 0%, rgba(7, 7, 11, 0.38) 42%, rgba(7, 7, 11, 0.22) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 100% 12px, 14px 100%;
  mix-blend-mode: screen;
  opacity: calc(0.22 + (var(--progress, 0) * 0.22));
}

.hero::after {
  content: "";
  position: absolute;
  inset: -30% 0 auto;
  z-index: -1;
  height: 42%;
  pointer-events: none;
  background:
    linear-gradient(95deg, transparent 0 20%, rgba(182, 255, 56, 0.18) 23%, transparent 29% 100%),
    linear-gradient(105deg, transparent 0 54%, rgba(39, 229, 255, 0.16) 58%, transparent 64% 100%);
  mix-blend-mode: screen;
  transform: translateY(calc(var(--progress, 0) * 180%)) skewY(-6deg);
}

.hero-content {
  width: min(100%, 880px);
  transform: translateY(calc(var(--progress, 0) * -34px));
}

.hero-logo {
  width: min(620px, 100%);
  margin: 0 0 12px -12px;
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.42)) drop-shadow(0 0 28px rgba(255, 42, 191, 0.28));
}

.hero h1,
.cinema-copy h2,
.lore-grid h2,
.world-copy h2,
.dimensions-copy h2,
.breach-copy h2,
.breach-teaser h3,
.systems-heading h2,
.poster-copy h2,
.cast-copy h2,
.surge-copy h2,
.loop-copy h2,
.finale-copy h2 {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Black", Inter, sans-serif;
  font-weight: 900;
  line-height: 0.93;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  font-size: 5.3rem;
  text-wrap: balance;
  text-shadow: 0 7px 28px rgba(0, 0, 0, 0.55);
}

.hero p {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--muted-strong);
  font-size: 1.22rem;
  font-weight: 650;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  min-height: 54px;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 22px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 950;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible,
.nav-cta:hover,
.nav-cta:focus-visible {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--wasabi);
  color: #101207;
  box-shadow: 0 0 42px rgba(182, 255, 56, 0.25);
}

.button.secondary {
  background: rgba(255, 248, 236, 0.08);
  color: var(--text);
  border-color: rgba(255, 248, 236, 0.22);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.button.ghost {
  background: transparent;
  color: var(--text);
  border-color: rgba(255, 248, 236, 0.28);
}

.hero-status {
  position: absolute;
  right: 32px;
  bottom: 34px;
  width: 250px;
  border-left: 2px solid var(--magenta);
  padding-left: 18px;
  color: var(--muted);
}

.hero-status span,
.hero-status strong,
.hero-status small {
  display: block;
}

.hero-status span,
.section-index,
.world-number,
.surge-copy span {
  color: var(--wasabi);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.hero-status strong {
  margin-top: 6px;
  color: var(--text);
  font-size: 1.04rem;
  line-height: 1.12;
}

.hero-status small {
  margin-top: 6px;
  font-size: 0.86rem;
}

.scroll-cue {
  position: absolute;
  left: 40px;
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 248, 236, 0.68);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.scroll-cue span {
  width: 42px;
  height: 2px;
  background: linear-gradient(90deg, var(--magenta), transparent);
  animation: cuePulse 1.4s ease-in-out infinite;
}

.hero-signal-ribbon {
  position: absolute;
  right: -8vw;
  bottom: 116px;
  z-index: 2;
  display: flex;
  gap: 12px;
  min-width: 760px;
  transform: rotate(-3deg) translateX(calc(var(--progress, 0) * -16vw));
  pointer-events: none;
}

.hero-signal-ribbon span {
  border: 1px solid rgba(255, 248, 236, 0.2);
  background: rgba(7, 7, 11, 0.54);
  color: var(--text);
  padding: 10px 15px;
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
  box-shadow: 0 0 34px rgba(255, 42, 191, 0.16);
}

.cinema-roll {
  position: relative;
  height: 220svh;
  background: #09070d;
}

.cinema-sticky {
  position: sticky;
  top: 0;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 0.9fr 1.35fr;
  align-items: center;
  gap: 36px;
  padding: 96px 40px 64px;
  overflow: hidden;
}

.cinema-sticky::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 15% 40%, rgba(255, 42, 191, 0.18), transparent 30rem),
    radial-gradient(circle at 85% 50%, rgba(39, 229, 255, 0.13), transparent 35rem),
    linear-gradient(180deg, #07070b, #140b17 45%, #050508);
}

.cinema-sticky::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    repeating-linear-gradient(100deg, transparent 0 74px, rgba(255, 248, 236, 0.05) 75px 76px),
    linear-gradient(90deg, transparent, rgba(182, 255, 56, 0.12), transparent);
  mix-blend-mode: screen;
  opacity: calc(0.18 + (var(--progress, 0) * 0.32));
  transform: translateX(calc((var(--progress, 0) - 0.5) * 12vw));
}

.cinema-copy {
  transform: translateY(calc((1 - var(--progress, 0)) * 34px));
}

.cinema-copy p {
  margin: 0 0 10px;
  color: var(--magenta);
  font-family: Impact, Haettenschweiler, "Arial Black", Inter, sans-serif;
  font-size: 3rem;
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
}

.cinema-copy h2 {
  max-width: 520px;
  color: var(--text);
  font-size: 6.2rem;
  text-shadow: 0 0 50px rgba(255, 42, 191, 0.2);
}

.trailer-frame {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  width: 100%;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  padding: 0;
  cursor: pointer;
  background: #000;
  color: var(--text);
  transform: scale(calc(0.86 + (var(--progress, 0) * 0.14))) translateY(calc((1 - var(--progress, 0)) * 24px));
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.52), 0 0 0 1px rgba(255, 255, 255, 0.12);
  transition: box-shadow 180ms ease;
}

.trailer-frame:hover,
.trailer-frame:focus-visible {
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.52), 0 0 0 2px var(--wasabi), 0 0 70px rgba(182, 255, 56, 0.2);
}

.trailer-loop,
.trailer-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  filter: saturate(1.14) contrast(1.05);
}

.trailer-loop {
  opacity: 0.95;
}

.trailer-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 8px),
    linear-gradient(120deg, transparent 0 40%, rgba(182, 255, 56, 0.16) 44%, transparent 48% 100%);
  mix-blend-mode: screen;
  opacity: 0.34;
  transform: translateY(calc((1 - var(--progress, 0)) * 26px));
}

.trailer-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.54)),
    linear-gradient(90deg, rgba(255, 42, 191, 0.24), rgba(39, 229, 255, 0.06));
}

.play-core {
  position: absolute;
  inset: 0;
  z-index: 2;
  margin: auto;
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255, 248, 236, 0.88);
  border-radius: 999px;
  background: rgba(7, 7, 11, 0.44);
  backdrop-filter: blur(12px);
  color: var(--wasabi);
  animation: playPulse 1.8s ease-in-out infinite;
}

.play-core svg {
  width: 36px;
  height: 36px;
  margin-left: 4px;
}

.frame-caption {
  position: absolute;
  left: 22px;
  bottom: 18px;
  z-index: 2;
  color: rgba(255, 248, 236, 0.8);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.scroll-reel {
  position: relative;
  min-height: 390svh;
  background: #050508;
}

.reel-sticky {
  position: sticky;
  top: 0;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 108px 40px 88px;
  isolation: isolate;
}

.reel-video,
.reel-shots,
.reel-shot {
  position: absolute;
  inset: 0;
}

.reel-video {
  z-index: -4;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.26;
  filter: saturate(1.25) contrast(1.15) blur(1px);
  transform: scale(calc(1.08 + (var(--progress, 0) * 0.08)));
}

.reel-shots {
  z-index: -3;
}

.reel-shot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.08) translateX(2vw);
  filter: saturate(1.16) contrast(1.08);
  transition: opacity 420ms ease, transform 700ms var(--ease);
}

.reel-shot.is-active {
  opacity: 1;
  transform: scale(1.02) translateX(0);
}

.reel-sticky::before,
.reel-sticky::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.reel-sticky::before {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 5, 8, 0.9), rgba(5, 5, 8, 0.18) 54%, rgba(5, 5, 8, 0.88)),
    linear-gradient(0deg, rgba(5, 5, 8, 0.94), rgba(5, 5, 8, 0.08) 48%, rgba(5, 5, 8, 0.72));
}

.reel-sticky::after {
  z-index: -1;
  background:
    repeating-linear-gradient(90deg, rgba(255, 248, 236, 0.055) 0 1px, transparent 1px 56px),
    linear-gradient(120deg, rgba(255, 42, 191, 0.18), transparent 34%, rgba(39, 229, 255, 0.12));
  mix-blend-mode: screen;
  opacity: 0.54;
  transform: translateX(calc((var(--progress, 0) - 0.5) * 16vw));
}

.reel-copy {
  width: min(100%, 790px);
  transform: translateY(calc((0.5 - var(--progress, 0)) * 36px));
}

.reel-kicker {
  display: block;
  color: var(--wasabi);
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.reel-copy h2 {
  margin-top: 16px;
  max-width: 820px;
  font-size: clamp(3.2rem, 7.2vw, 5.9rem);
  line-height: 0.92;
  text-shadow: 0 0 58px rgba(255, 42, 191, 0.32);
}

.reel-copy p {
  max-width: 560px;
  margin: 22px 0 0;
  color: var(--muted-strong);
  font-size: 1.18rem;
  font-weight: 760;
}

.reel-timeline {
  position: absolute;
  right: 40px;
  bottom: 76px;
  z-index: 2;
  display: grid;
  gap: 10px;
  width: min(28vw, 360px);
}

.reel-timeline span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
  border-top: 1px solid rgba(255, 248, 236, 0.18);
  color: rgba(255, 248, 236, 0.5);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
  transition: color 220ms ease, transform 220ms ease;
}

.reel-timeline span::after {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 0 20px currentColor;
}

.reel-timeline span.is-active {
  color: var(--wasabi);
  transform: translateX(-10px);
}

.lore-band,
.dimensions-band,
.breach-band,
.systems-band,
.roster-band,
.cast-band,
.loop-band,
.finale {
  position: relative;
  padding: 110px 40px;
}

.lore-band {
  background:
    linear-gradient(180deg, rgba(7, 7, 11, 0.92), rgba(18, 8, 20, 0.94)),
    #0c0710;
  overflow: hidden;
}

.lore-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  width: min(100%, 1180px);
  margin: 22px auto 0;
}

.section-index {
  width: min(100%, 1180px);
  margin: 0 auto;
}

.lore-grid h2 {
  font-size: 5.5rem;
}

.lore-copy {
  align-self: end;
  color: var(--muted-strong);
  font-size: 1.25rem;
  font-weight: 650;
}

.lore-copy p {
  margin: 0;
}

.lore-copy p + p {
  margin-top: 22px;
}

.lore-ticker {
  display: flex;
  gap: 18px;
  width: max-content;
  margin-top: 72px;
  animation: ticker 32s linear infinite;
}

.lore-ticker span {
  border: 1px solid rgba(255, 248, 236, 0.22);
  padding: 13px 18px;
  color: var(--text);
  font-weight: 950;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 0 40px rgba(255, 42, 191, 0.08);
}

@keyframes ticker {
  from { transform: translateX(4vw); }
  to { transform: translateX(-52%); }
}

@keyframes cuePulse {
  0%, 100% { transform: scaleX(0.7); opacity: 0.55; }
  50% { transform: scaleX(1.18); opacity: 1; }
}

@keyframes playPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(182, 255, 56, 0.24); }
  50% { box-shadow: 0 0 0 18px rgba(182, 255, 56, 0); }
}

@keyframes audioPulse {
  0%, 100% { opacity: 0.4; transform: scale(0.92); }
  50% { opacity: 1; transform: scale(1.08); }
}

@keyframes crtDrift {
  from { background-position: 0 0, 0 0, center; }
  to { background-position: 0 32px, 18px 0, center; }
}

@keyframes crtFlicker {
  0%, 100% { opacity: 0.24; }
  10% { opacity: 0.31; }
  11% { opacity: 0.2; }
  18% { opacity: 0.3; }
  42% { opacity: 0.25; }
  43% { opacity: 0.34; }
  44% { opacity: 0.22; }
  77% { opacity: 0.3; }
}

@keyframes signalJump {
  0% { opacity: 0; transform: translate3d(0, 0, 0) skewX(0deg); }
  18% { opacity: 0.34; transform: translate3d(-10px, -1px, 0) skewX(8deg); }
  38% { opacity: 0.16; transform: translate3d(14px, 2px, 0) skewX(-6deg); }
  64% { opacity: 0.28; transform: translate3d(-5px, 0, 0) skewX(3deg); }
  100% { opacity: 0.06; transform: translate3d(0, 0, 0) skewX(0deg); }
}

.worlds {
  background: #050508;
}

.world-panel {
  position: relative;
  min-height: 120svh;
  display: grid;
  align-items: center;
  padding: 80px 40px;
  overflow: hidden;
}

.world-media {
  position: sticky;
  top: 0;
  min-height: 100svh;
  margin: -80px -40px;
  grid-row: 1;
  grid-column: 1;
  transform: scale(calc(1.02 + (var(--progress, 0) * 0.06)));
}

.world-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 8, 0.88), rgba(5, 5, 8, 0.22) 52%, rgba(5, 5, 8, 0.72)),
    linear-gradient(180deg, rgba(5, 5, 8, 0.08), rgba(5, 5, 8, 0.86));
}

.world-media img {
  width: 100%;
  height: 100svh;
  object-fit: cover;
  filter: saturate(1.2) contrast(1.08);
}

.world-copy {
  position: sticky;
  top: 22vh;
  z-index: 2;
  width: min(100%, 650px);
  grid-row: 1;
  grid-column: 1;
  transform: translateY(calc((1 - var(--progress, 0)) * 18px));
}

.world-number {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--cyan);
}

.world-copy h2 {
  font-size: 6rem;
}

.world-copy p {
  max-width: 560px;
  margin: 22px 0 0;
  color: var(--muted-strong);
  font-size: 1.18rem;
  font-weight: 700;
}

.world-neo .world-number {
  color: var(--orange);
}

.world-subway .world-number {
  color: var(--wasabi);
}

.dimensions-band {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: 52px;
  align-items: center;
  background:
    radial-gradient(circle at 22% 32%, rgba(255, 176, 50, 0.14), transparent 30rem),
    radial-gradient(circle at 84% 24%, rgba(255, 42, 191, 0.16), transparent 32rem),
    linear-gradient(180deg, #050508, #120812 56%, #050508);
  overflow: hidden;
}

.dimensions-copy {
  width: min(100%, 680px);
}

.dimensions-copy .section-index {
  width: auto;
  margin: 0 0 18px;
}

.dimensions-copy h2 {
  font-size: 5.2rem;
}

.dimensions-copy p {
  margin: 24px 0 0;
  color: var(--muted-strong);
  font-size: 1.18rem;
  font-weight: 700;
}

.dimension-stack {
  display: grid;
  gap: 12px;
  transform: rotate(-4deg);
}

.dimension-stack span {
  display: flex;
  align-items: center;
  min-height: 92px;
  padding: 0 28px;
  border: 1px solid rgba(255, 248, 236, 0.16);
  background:
    linear-gradient(90deg, rgba(255, 42, 191, 0.24), rgba(182, 255, 56, 0.12)),
    rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-family: Impact, Haettenschweiler, "Arial Black", Inter, sans-serif;
  font-size: clamp(2.5rem, 6vw, 5.6rem);
  font-weight: 900;
  line-height: 0.9;
  text-transform: uppercase;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.24);
}

.dimension-stack span:nth-child(2) {
  transform: translateX(42px);
  background:
    linear-gradient(90deg, rgba(255, 176, 50, 0.32), rgba(255, 42, 191, 0.14)),
    rgba(255, 255, 255, 0.04);
}

.dimension-stack span:nth-child(3) {
  transform: translateX(-18px);
}

.dimension-stack span:nth-child(4) {
  transform: translateX(76px);
}

.dimension-stack span:nth-child(5) {
  transform: translateX(18px);
}

.breach-band {
  min-height: 88svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: 56px;
  align-items: end;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(5, 5, 8, 0.92), rgba(5, 5, 8, 0.34) 58%, rgba(5, 5, 8, 0.9)),
    linear-gradient(0deg, rgba(5, 5, 8, 0.9), rgba(5, 5, 8, 0.18) 52%, rgba(5, 5, 8, 0.94)),
    url("/assets/cybersushi-mech-graveyard.jpg") center / cover no-repeat;
}

.breach-band::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(90deg, rgba(255, 248, 236, 0.06) 0 1px, transparent 1px 36px),
    linear-gradient(120deg, rgba(255, 176, 50, 0.14), rgba(255, 42, 191, 0.08) 54%, rgba(39, 229, 255, 0.12));
  mix-blend-mode: screen;
  opacity: 0.5;
}

.breach-copy,
.breach-teaser {
  position: relative;
  z-index: 1;
}

.breach-copy {
  width: min(100%, 820px);
}

.breach-copy .section-index {
  width: auto;
  margin: 0 0 18px;
}

.breach-copy h2 {
  font-size: 5.4rem;
}

.breach-copy p {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--muted-strong);
  font-size: 1.18rem;
  font-weight: 700;
}

.breach-teaser {
  padding: 32px;
  border: 1px solid rgba(255, 248, 236, 0.2);
  background: rgba(5, 5, 8, 0.6);
  box-shadow: 0 28px 110px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(16px);
}

.breach-teaser span {
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.breach-teaser h3 {
  margin: 16px 0 20px;
  color: var(--text);
  font-size: 4.3rem;
}

.breach-teaser p {
  margin: 0;
  color: var(--muted-strong);
  font-size: 1.06rem;
  font-weight: 700;
}

.systems-band {
  background:
    linear-gradient(180deg, rgba(5, 5, 8, 0.96) 0%, rgba(18, 8, 18, 0.9) 55%, rgba(5, 5, 8, 0.98) 100%),
    url("/assets/cybersushi-level-03-subway-hackers-v2.jpg") center / cover no-repeat;
  background-attachment: fixed;
}

.systems-heading {
  width: min(100%, 1180px);
  margin: 0 auto 42px;
}

.systems-heading .section-index {
  width: auto;
  margin: 0 0 18px;
}

.systems-heading h2 {
  max-width: 990px;
  font-size: 4.8rem;
}

.systems-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  width: min(100%, 1180px);
  margin: 0 auto;
  background: rgba(255, 248, 236, 0.16);
}

.system-card {
  min-height: 330px;
  padding: 28px;
  background: rgba(9, 7, 13, 0.86);
}

.system-card.reveal {
  opacity: 1;
  transform: none;
}

.system-card span {
  color: var(--magenta);
  font-weight: 950;
}

.system-card h3 {
  margin: 54px 0 18px;
  color: var(--text);
  font-family: Impact, Haettenschweiler, "Arial Black", Inter, sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 0.98;
  text-transform: uppercase;
}

.system-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 650;
}

.poster-break {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 92px 40px;
  background: #050508;
}

.poster-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  transform: scale(calc(1.02 + (var(--progress, 0) * 0.06)));
}

.poster-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.22) contrast(1.08);
}

.poster-break::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 5, 8, 0.88), rgba(5, 5, 8, 0.22) 62%),
    linear-gradient(0deg, rgba(5, 5, 8, 0.9), rgba(5, 5, 8, 0.05));
}

.poster-copy {
  position: relative;
  z-index: 2;
  width: min(100%, 680px);
}

.poster-copy h2 {
  font-size: 5.4rem;
}

.poster-copy p {
  margin: 22px 0 0;
  color: var(--muted-strong);
  font-size: 1.2rem;
  font-weight: 700;
}

.roster-band {
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 42, 191, 0.16), transparent 28rem),
    radial-gradient(circle at 86% 30%, rgba(182, 255, 56, 0.12), transparent 30rem),
    linear-gradient(180deg, #050508, #110912 58%, #050508);
}

.roster-band::before {
  content: "";
  position: absolute;
  inset: 8% auto auto -10%;
  width: 62vw;
  height: 62vw;
  border: 1px solid rgba(255, 248, 236, 0.08);
  border-radius: 999px;
  pointer-events: none;
  transform: translateY(calc((var(--progress, 0) - 0.5) * -120px));
  box-shadow: inset 0 0 140px rgba(255, 42, 191, 0.08);
}

.roster-heading,
.roster-feature,
.roster-track {
  position: relative;
  z-index: 1;
  width: min(100%, 1180px);
  margin-inline: auto;
}

.roster-heading {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 52px;
  align-items: end;
}

.roster-heading .section-index {
  width: auto;
  margin: 0 0 18px;
}

.roster-heading h2 {
  font-size: 5.3rem;
}

.roster-heading p {
  margin: 0;
  color: var(--muted-strong);
  font-size: 1.15rem;
  font-weight: 730;
}

.roster-feature {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) 1.1fr;
  gap: 34px;
  align-items: center;
  margin-top: 54px;
  border-top: 1px solid rgba(255, 248, 236, 0.16);
  border-bottom: 1px solid rgba(255, 248, 236, 0.16);
  padding: 28px 0;
}

.roster-portrait {
  min-height: 380px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 176, 50, 0.28), transparent 14rem),
    radial-gradient(circle at 52% 72%, rgba(39, 229, 255, 0.16), transparent 16rem);
}

.roster-portrait img {
  width: min(88%, 520px);
  filter: drop-shadow(0 34px 80px rgba(0, 0, 0, 0.52)) drop-shadow(0 0 38px rgba(255, 176, 50, 0.22));
  transform: translateY(calc((0.5 - var(--progress, 0)) * 22px));
}

.roster-bio span,
.roster-card span {
  color: var(--wasabi);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.roster-bio h3 {
  margin: 12px 0 18px;
  font-size: clamp(4.2rem, 12vw, 9.5rem);
  line-height: 0.82;
}

.roster-bio p {
  max-width: 540px;
  margin: 0;
  color: var(--muted-strong);
  font-size: 1.18rem;
  font-weight: 730;
}

.roster-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 34px;
  background: rgba(255, 248, 236, 0.14);
  transform: translateX(calc((0.5 - var(--progress, 0)) * 26px));
}

.roster-card {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  padding: 18px;
  background:
    radial-gradient(circle at 50% 26%, rgba(39, 229, 255, 0.12), transparent 12rem),
    #09070d;
}

.roster-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 28%, rgba(5, 5, 8, 0.22) 58%, rgba(5, 5, 8, 0.92)),
    repeating-linear-gradient(0deg, transparent 0 12px, rgba(255, 255, 255, 0.035) 13px);
}

.roster-card img {
  position: absolute;
  inset: 8px 0 auto;
  width: 100%;
  height: 245px;
  object-fit: contain;
  filter: drop-shadow(0 24px 50px rgba(0, 0, 0, 0.42));
  transition: transform 260ms var(--ease);
}

.roster-card:hover img {
  transform: translateY(-8px) scale(1.04);
}

.roster-card span,
.roster-card h3,
.roster-card p {
  position: relative;
  z-index: 1;
}

.roster-card span {
  display: block;
  margin-top: 238px;
}

.roster-card h3 {
  margin: 8px 0 10px;
  font-size: 2.55rem;
}

.roster-card p {
  margin: 0;
  color: rgba(255, 248, 236, 0.72);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.34;
}

.cast-band {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 56px;
  align-items: start;
  background:
    linear-gradient(90deg, rgba(5, 5, 8, 0.84), rgba(5, 5, 8, 0.7) 42%, rgba(5, 5, 8, 0.92)),
    radial-gradient(circle at 90% 30%, rgba(182, 255, 56, 0.14), transparent 26rem),
    url("/assets/cybersushi-yume-hero-v2.jpg") 12% center / cover no-repeat,
    linear-gradient(180deg, #050508, #100810);
  overflow: hidden;
}

.cast-band::before {
  content: "";
  position: absolute;
  inset: 10% -20% auto auto;
  width: 70vw;
  height: 70vw;
  border: 1px solid rgba(39, 229, 255, 0.1);
  border-radius: 999px;
  pointer-events: none;
  transform: translateY(calc((var(--progress, 0) - 0.5) * 180px));
  box-shadow: inset 0 0 120px rgba(39, 229, 255, 0.06);
}

.cast-copy .section-index {
  width: auto;
  margin: 0 0 18px;
}

.cast-copy h2 {
  font-size: 4.8rem;
}

.cast-copy p {
  margin: 24px 0 0;
  color: var(--muted-strong);
  font-size: 1.16rem;
  font-weight: 700;
}

.character-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  transform: translateY(calc((0.5 - var(--progress, 0)) * 40px));
}

.character-card {
  position: relative;
  min-height: 248px;
  overflow: hidden;
  border: 1px solid rgba(255, 248, 236, 0.16);
  background:
    radial-gradient(circle at 78% 18%, var(--card-glow, rgba(255, 42, 191, 0.18)), transparent 9rem),
    linear-gradient(145deg, rgba(255, 42, 191, 0.16), rgba(39, 229, 255, 0.08)),
    rgba(255, 255, 255, 0.04);
  padding: 18px;
  color: var(--text);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  transition: transform 220ms var(--ease), border-color 220ms ease, box-shadow 220ms ease;
}

.character-card::before {
  content: "";
  position: absolute;
  inset: auto -18% -22% auto;
  width: 170px;
  height: 170px;
  border: 1px solid rgba(255, 248, 236, 0.14);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 248, 236, 0.1), transparent 62%);
}

.character-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(0deg, transparent 0 11px, rgba(255, 255, 255, 0.035) 12px),
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.3));
  opacity: 0.58;
}

.character-card:hover {
  transform: translateY(-6px);
  border-color: rgba(182, 255, 56, 0.5);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.36), 0 0 42px rgba(182, 255, 56, 0.1);
}

.character-card span,
.character-card h3,
.character-card p {
  position: relative;
  z-index: 1;
}

.character-card span {
  display: inline-flex;
  color: var(--wasabi);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.character-card h3 {
  margin: 72px 0 14px;
  font-family: Impact, Haettenschweiler, "Arial Black", Inter, sans-serif;
  font-size: clamp(1.85rem, 2.8vw, 3.05rem);
  font-weight: 900;
  line-height: 0.9;
  text-transform: uppercase;
  overflow-wrap: anywhere;
  text-shadow: 0 0 28px rgba(255, 42, 191, 0.22);
}

.character-card p {
  margin: 0;
  color: rgba(255, 248, 236, 0.76);
  font-size: 0.93rem;
  font-weight: 700;
  line-height: 1.34;
}

.character-mochi {
  --card-glow: rgba(255, 176, 50, 0.32);
  background:
    linear-gradient(135deg, rgba(5, 5, 8, 0.28), rgba(5, 5, 8, 0.86)),
    linear-gradient(0deg, rgba(5, 5, 8, 0.9), rgba(5, 5, 8, 0.02) 62%),
    url("/assets/cybersushi-mochi-hero-card.jpg") center / cover no-repeat,
    rgba(255, 255, 255, 0.04);
}

.character-yume {
  --card-glow: rgba(39, 229, 255, 0.26);
  background:
    linear-gradient(180deg, rgba(5, 5, 8, 0.08), rgba(5, 5, 8, 0.86)),
    linear-gradient(90deg, rgba(5, 5, 8, 0.7), rgba(5, 5, 8, 0.24)),
    url("/assets/cybersushi-yume-hero-v2.jpg") center 42% / cover no-repeat;
}

.character-maw {
  --card-glow: rgba(255, 42, 191, 0.32);
  background:
    linear-gradient(180deg, rgba(5, 5, 8, 0.34), rgba(5, 5, 8, 0.86)),
    url("/assets/cybersushi-maw-engine.jpg") center / cover no-repeat;
}

.character-architect {
  --card-glow: rgba(255, 255, 255, 0.2);
  background:
    linear-gradient(180deg, rgba(5, 5, 8, 0.2), rgba(5, 5, 8, 0.86)),
    url("/assets/cybersushi-architect-v2.jpg") center 20% / cover no-repeat;
}

.character-spook {
  --card-glow: rgba(255, 74, 100, 0.28);
  background:
    linear-gradient(180deg, rgba(5, 5, 8, 0.24), rgba(5, 5, 8, 0.86)),
    url("/assets/cybersushi-spook.jpg") center / cover no-repeat;
}

.character-companion {
  --card-glow: rgba(255, 176, 50, 0.28);
  background:
    linear-gradient(180deg, rgba(5, 5, 8, 0.1), rgba(5, 5, 8, 0.86)),
    url("/assets/cybersushi-wasabi-companions-v2.jpg") center 20% / cover no-repeat;
}

.character-core {
  --card-glow: rgba(255, 74, 100, 0.3);
  background:
    linear-gradient(180deg, rgba(5, 5, 8, 0.12), rgba(5, 5, 8, 0.86)),
    url("/assets/cybersushi-rice-core-v2.jpg") center 18% / cover no-repeat;
}

.character-companion h3 {
  font-size: clamp(1.45rem, 2vw, 2.15rem);
}

.character-mech {
  --card-glow: rgba(39, 229, 255, 0.3);
  grid-column: span 3;
  background:
    linear-gradient(120deg, rgba(5, 5, 8, 0.76), rgba(5, 5, 8, 0.34)),
    url("/assets/cybersushi-mech-graveyard.jpg") center / cover no-repeat;
}

.surge-film {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 100px 40px;
  background: #050508;
}

.surge-video,
.surge-overlay {
  position: absolute;
  inset: 0;
}

.surge-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.22) contrast(1.08);
}

.surge-overlay {
  background:
    linear-gradient(90deg, rgba(5, 5, 8, 0.88), rgba(5, 5, 8, 0.2) 62%),
    linear-gradient(0deg, rgba(5, 5, 8, 0.92), rgba(5, 5, 8, 0.15));
}

.surge-copy {
  position: relative;
  z-index: 2;
  width: min(100%, 760px);
}

.surge-copy span {
  color: var(--orange);
}

.surge-copy h2 {
  margin-top: 14px;
  font-size: 5.7rem;
}

.surge-copy p {
  max-width: 540px;
  margin: 22px 0 0;
  color: var(--muted-strong);
  font-size: 1.18rem;
  font-weight: 700;
}

.loop-band {
  min-height: 86svh;
  display: grid;
  place-items: center;
  background:
    linear-gradient(180deg, rgba(5, 5, 8, 0.34), rgba(5, 5, 8, 0.92)),
    linear-gradient(120deg, rgba(255, 42, 191, 0.18), rgba(39, 229, 255, 0.08) 52%, rgba(255, 176, 50, 0.13)),
    url("/assets/cybersushi-level-03-subway-hackers-v2.jpg") center / cover no-repeat;
}

.loop-copy {
  width: min(100%, 930px);
  text-align: center;
}

.loop-copy span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--wasabi);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.loop-copy h2 {
  font-size: 6rem;
}

.loop-copy p {
  max-width: 720px;
  margin: 24px auto 0;
  color: var(--muted-strong);
  font-size: 1.22rem;
  font-weight: 700;
}

.finale {
  display: grid;
  grid-template-columns: 320px minmax(0, 780px);
  justify-content: center;
  align-items: center;
  gap: 48px;
  background:
    linear-gradient(90deg, rgba(5, 5, 8, 0.92), rgba(5, 5, 8, 0.72), rgba(5, 5, 8, 0.94)),
    radial-gradient(circle at 50% 10%, rgba(255, 42, 191, 0.18), transparent 28rem),
    url("/assets/cybersushi-level-02-neo-city-rooftop.jpg") center / cover no-repeat,
    linear-gradient(180deg, #09070d, #050508);
}

.finale-art {
  width: 320px;
  border-radius: 28px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12), 0 40px 110px rgba(255, 42, 191, 0.22);
}

.finale-copy h2 {
  font-size: 5.4rem;
}

.finale-copy p {
  max-width: 640px;
  margin: 22px 0 0;
  color: var(--muted-strong);
  font-size: 1.18rem;
  font-weight: 700;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  border-top: 1px solid rgba(255, 248, 236, 0.12);
  padding: 28px 20px;
  background: #050508;
  color: rgba(255, 248, 236, 0.66);
  font-size: 0.9rem;
  font-weight: 700;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--wasabi);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 760ms var(--ease), transform 760ms var(--ease);
}

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

.trailer-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 44px;
  background: rgba(0, 0, 0, 0.86);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.trailer-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal-frame {
  width: min(1120px, 100%);
  aspect-ratio: 16 / 9;
  background: #000;
  box-shadow: 0 38px 140px rgba(0, 0, 0, 0.68), 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.modal-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.modal-close {
  position: fixed;
  top: 24px;
  right: 24px;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  cursor: pointer;
}

.modal-close svg {
  width: 24px;
  height: 24px;
}

@media (min-width: 1600px) {
  .hero h1,
  .world-copy h2,
  .cinema-copy h2,
  .surge-copy h2 {
    font-size: 6.6rem;
  }

  .hero-content {
    width: 1020px;
  }
}

@media (max-width: 1050px) {
  .nav-links {
    display: none;
  }

  .site-nav {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .hero h1,
  .lore-grid h2,
  .breach-copy h2,
  .poster-copy h2,
  .finale-copy h2,
  .surge-copy h2 {
    font-size: 4rem;
  }

  .cinema-sticky,
  .roster-heading,
  .roster-feature,
  .lore-grid,
  .breach-band,
  .cast-band,
  .finale {
    grid-template-columns: 1fr;
  }

  .cinema-copy h2,
  .roster-heading h2,
  .world-copy h2,
  .dimensions-copy h2,
  .breach-teaser h3,
  .systems-heading h2,
  .cast-copy h2,
  .loop-copy h2 {
    font-size: 4.4rem;
  }

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

  .roster-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .character-mech {
    grid-column: span 2;
  }

  .finale-art {
    width: 240px;
  }
}

@media (max-width: 720px) {
  :root {
    --nav-h: 64px;
  }

  .site-nav {
    padding: 10px 14px;
  }

  .brand-link img {
    width: 84px;
    height: auto;
  }

  .nav-cta {
    min-height: 42px;
    padding: 0 12px;
    font-size: 0.72rem;
  }

  .audio-toggle {
    right: 14px;
    bottom: 14px;
    width: 48px;
    height: 48px;
  }

  body::before {
    opacity: 0.2;
  }

  .hero,
  .cinema-sticky,
  .reel-sticky,
  .lore-band,
  .dimensions-band,
  .breach-band,
  .systems-band,
  .poster-break,
  .roster-band,
  .cast-band,
  .loop-band,
  .surge-film,
  .finale {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero {
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .hero-media img {
    object-position: 58% center;
  }

  .hero h1 {
    font-size: 3.05rem;
  }

  .hero p,
  .lore-copy,
  .breach-copy p,
  .breach-teaser p,
  .poster-copy p,
  .surge-copy p,
  .finale-copy p,
  .cast-copy p {
    font-size: 1.04rem;
  }

  .hero-logo {
    width: 92%;
    margin-left: -8px;
  }

  .hero-status {
    display: none;
  }

  .hero-signal-ribbon {
    right: -180px;
    bottom: 86px;
    min-width: 620px;
  }

  .hero-signal-ribbon span {
    padding: 8px 12px;
  }

  .scroll-cue {
    left: 18px;
    bottom: 26px;
  }

  .button {
    width: 100%;
    min-height: 52px;
  }

  .cinema-roll {
    height: auto;
  }

  .scroll-reel {
    min-height: auto;
  }

  .cinema-sticky {
    position: relative;
    min-height: auto;
    padding-top: 86px;
    padding-bottom: 86px;
  }

  .reel-sticky {
    position: relative;
    min-height: 100svh;
    padding-top: 88px;
    padding-bottom: 72px;
  }

  .reel-copy {
    transform: none;
  }

  .reel-copy p {
    font-size: 1.04rem;
  }

  .reel-timeline {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 28px;
  }

  .reel-timeline span.is-active {
    transform: none;
  }

  .cinema-copy p {
    font-size: 2rem;
  }

  .reel-copy h2,
  .cinema-copy h2,
  .lore-grid h2,
  .roster-heading h2,
  .world-copy h2,
  .dimensions-copy h2,
  .breach-copy h2,
  .breach-teaser h3,
  .systems-heading h2,
  .poster-copy h2,
  .cast-copy h2,
  .surge-copy h2,
  .loop-copy h2,
  .finale-copy h2 {
    font-size: 3.08rem;
  }

  .dimensions-band,
  .breach-band {
    grid-template-columns: 1fr;
  }

  .systems-band {
    background-attachment: scroll;
  }

  .dimensions-copy p,
  .breach-copy p,
  .loop-copy p {
    font-size: 1.04rem;
  }

  .dimension-stack {
    transform: none;
  }

  .dimension-stack span,
  .dimension-stack span:nth-child(n) {
    min-height: 74px;
    padding: 0 18px;
    transform: none;
  }

  .lore-grid {
    gap: 28px;
  }

  .lore-ticker {
    animation-duration: 38s;
  }

  .world-panel {
    min-height: 100svh;
    padding: 60px 18px;
  }

  .world-media {
    margin: -60px -18px;
  }

  .world-copy {
    top: 18vh;
  }

  .world-copy p {
    font-size: 1.04rem;
  }

  .systems-grid,
  .roster-track,
  .character-grid {
    grid-template-columns: 1fr;
  }

  .roster-heading,
  .roster-feature {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .roster-feature {
    margin-top: 36px;
  }

  .roster-portrait {
    min-height: 300px;
  }

  .roster-bio h3 {
    font-size: 4.4rem;
  }

  .roster-card {
    min-height: 350px;
  }

  .roster-track {
    transform: none;
  }

  .system-card {
    min-height: 250px;
  }

  .system-card h3 {
    margin-top: 34px;
  }

  .character-grid {
    transform: none;
  }

  .character-card,
  .character-mochi,
  .character-mech {
    grid-column: auto;
    min-height: 220px;
  }

  .character-card h3 {
    margin-top: 54px;
  }

  .finale {
    justify-content: stretch;
  }

  .finale-art {
    width: 190px;
  }

  .trailer-modal {
    padding: 18px;
  }

  .modal-close {
    top: 14px;
    right: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .hero-media,
  .world-media,
  .poster-media,
  .reel-video,
  .reel-shot,
  .trailer-frame,
  .cinema-copy,
  .reel-copy,
  .world-copy,
  .hero-content,
  .hero-signal-ribbon,
  .roster-portrait img,
  .roster-track,
  .character-grid {
    transform: none !important;
  }
}
