:root {
  --ink: #0b0a08;
  --ink-soft: #11100c;
  --paper: #e7dfc9;
  --paper-muted: #afa994;
  --acid: #d9ff43;
  --signal: #e0582b;
  --line: rgba(231, 223, 201, 0.18);
  --line-dark: rgba(11, 10, 8, 0.18);
  --content: 1240px;
  --pad: clamp(20px, 5vw, 72px);
  --display: "Arial Narrow", "Roboto Condensed", "Helvetica Neue", Arial, sans-serif;
  --body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  background: var(--ink);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--paper);
  background:
    radial-gradient(circle at 90% 18%, rgba(148, 125, 63, 0.08), transparent 28%),
    var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

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

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

::selection {
  color: var(--ink);
  background: var(--acid);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--acid);
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 76px;
  padding: 0 var(--pad);
  border-bottom: 1px solid rgba(231, 223, 201, 0.14);
  background: linear-gradient(to bottom, rgba(7, 7, 5, 0.78), rgba(7, 7, 5, 0.14));
  transition: background 240ms ease, min-height 240ms ease, backdrop-filter 240ms ease;
}

.site-header.scrolled {
  min-height: 64px;
  background: rgba(9, 9, 7, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  color: var(--paper);
  font-family: var(--display);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  display: block;
  width: 18px;
  height: 18px;
  border: 1px solid currentColor;
}

.brand-mark::before,
.brand-mark::after {
  position: absolute;
  content: "";
  background: currentColor;
}

.brand-mark::before {
  top: 50%;
  left: -4px;
  width: 24px;
  height: 1px;
}

.brand-mark::after {
  top: -4px;
  left: 50%;
  width: 1px;
  height: 24px;
}

.brand-index {
  color: var(--acid);
  font-family: var(--body);
  font-size: 8px;
  letter-spacing: 0.08em;
  transform: translateY(-7px);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 46px);
}

.site-nav a {
  position: relative;
  padding: 10px 0;
  color: rgba(231, 223, 201, 0.72);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--acid);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

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

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

.header-meta {
  display: flex;
  justify-self: end;
  align-items: center;
  gap: 9px;
  color: rgba(231, 223, 201, 0.66);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.live-dot,
.status-led {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 0 4px rgba(217, 255, 67, 0.1), 0 0 12px rgba(217, 255, 67, 0.7);
  animation: pulse 2.2s infinite;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: max(760px, 100svh);
  isolation: isolate;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-image,
.hero-noise,
.hero-grid {
  position: absolute;
  inset: 0;
}

.hero-image {
  z-index: -4;
  background-image:
    linear-gradient(90deg, rgba(5, 5, 4, 0.99) 0%, rgba(5, 5, 4, 0.92) 24%, rgba(5, 5, 4, 0.36) 60%, rgba(5, 5, 4, 0.2) 100%),
    linear-gradient(0deg, rgba(5, 5, 4, 0.88), transparent 40%),
    url("assets/liminal-corridor.webp");
  background-position: center, center, center;
  background-size: cover;
  transform: scale(1.02);
}

.hero-noise {
  z-index: -2;
  opacity: 0.1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-grid {
  z-index: -1;
  opacity: 0.23;
  background-image:
    linear-gradient(rgba(231, 223, 201, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(231, 223, 201, 0.07) 1px, transparent 1px);
  background-size: 8.333vw 8.333vw;
  mask-image: linear-gradient(to right, black, transparent 62%);
}

.hero-content {
  width: min(var(--content), calc(100% - var(--pad) * 2));
  margin: 96px auto 124px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: clamp(24px, 4vh, 42px);
  color: rgba(231, 223, 201, 0.67);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow i {
  width: 22px;
  height: 1px;
  background: rgba(231, 223, 201, 0.36);
}

.hero h1 {
  max-width: 870px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(66px, 10.2vw, 156px);
  font-stretch: condensed;
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.72;
  text-transform: uppercase;
}

.hero h1 > span {
  display: block;
}

.title-outline {
  padding-bottom: 0.12em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(231, 223, 201, 0.9);
  transform: translateX(clamp(18px, 4.5vw, 68px));
}

.hero-subtitle {
  margin: 8px 0 18px;
  color: var(--acid);
  font-family: var(--display);
  font-size: clamp(22px, 2.2vw, 34px);
  font-weight: 800;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.hero-lead {
  max-width: 600px;
  margin: 0 0 32px;
  color: rgba(231, 223, 201, 0.76);
  font-size: clamp(15px, 1.25vw, 18px);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid rgba(231, 223, 201, 0.32);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

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

.button-primary {
  color: var(--ink);
  border-color: var(--acid);
  background: var(--acid);
}

.button-primary:hover,
.button-primary:focus-visible {
  border-color: var(--paper);
  background: var(--paper);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  color: var(--ink);
  border-color: var(--paper);
  background: var(--paper);
}

.play-icon {
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid currentColor;
}

.hero-facts {
  position: absolute;
  right: var(--pad);
  bottom: 34px;
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: clamp(22px, 4vw, 64px);
}

.hero-facts div {
  display: grid;
  gap: 2px;
}

.hero-facts span {
  color: rgba(231, 223, 201, 0.46);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.hero-facts strong {
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.04em;
}

.scroll-cue {
  position: absolute;
  bottom: 34px;
  left: var(--pad);
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(231, 223, 201, 0.42);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.scroll-cue span {
  display: block;
  width: 38px;
  height: 1px;
  overflow: hidden;
  background: rgba(231, 223, 201, 0.25);
}

.scroll-cue span::after {
  display: block;
  width: 16px;
  height: 1px;
  content: "";
  background: var(--acid);
  animation: scan 2.2s ease-in-out infinite;
}

.section {
  width: min(var(--content), calc(100% - var(--pad) * 2));
  margin: 0 auto;
  padding-top: clamp(84px, 10vw, 150px);
  padding-bottom: clamp(84px, 10vw, 150px);
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 34px;
  color: rgba(231, 223, 201, 0.48);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-kicker::after {
  width: 56px;
  height: 1px;
  content: "";
  background: currentColor;
  opacity: 0.42;
}

.section-kicker span {
  color: var(--acid);
}

.section-kicker.light {
  color: rgba(11, 10, 8, 0.52);
}

.section-kicker.light span {
  color: var(--ink);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.55fr);
  gap: clamp(36px, 8vw, 110px);
  align-items: end;
  margin-bottom: clamp(36px, 5vw, 70px);
}

.section-heading h2,
.story-heading h2,
.details-title h2,
.where-grid h2,
.faq-heading h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(42px, 5.2vw, 78px);
  font-stretch: condensed;
  font-weight: 850;
  letter-spacing: -0.045em;
  line-height: 0.98;
  text-transform: uppercase;
}

.section-heading p,
.details-title > p:last-child {
  margin: 0;
  color: var(--paper-muted);
  font-size: 14px;
}

.player-shell {
  border: 1px solid var(--line);
  background: #060604;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
}

.player-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #050504;
}

.player-frame img,
.player-vignette,
.player-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.player-frame img {
  object-fit: cover;
  filter: saturate(0.58) contrast(1.08) brightness(0.62);
}

.player-vignette {
  background:
    linear-gradient(180deg, rgba(4, 4, 3, 0.5), transparent 30%, transparent 68%, rgba(4, 4, 3, 0.65)),
    radial-gradient(circle at 50% 50%, transparent 30%, rgba(4, 4, 3, 0.42));
}

.player-label {
  position: absolute;
  z-index: 2;
  top: 22px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.64);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
}

.player-label span {
  color: #ff5a43;
}

.player-button {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  display: grid;
  justify-items: center;
  gap: 13px;
  padding: 0;
  color: var(--paper);
  border: 0;
  background: transparent;
  cursor: pointer;
  transform: translate(-50%, -50%);
}

.player-button > span:last-child {
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.player-button-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: clamp(66px, 8vw, 98px);
  height: clamp(66px, 8vw, 98px);
  border: 1px solid rgba(231, 223, 201, 0.7);
  border-radius: 50%;
  background: rgba(8, 8, 6, 0.28);
  backdrop-filter: blur(6px);
  transition: color 200ms ease, background 200ms ease, transform 200ms ease;
}

.player-button-icon::before {
  width: 0;
  height: 0;
  margin-left: 5px;
  content: "";
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid currentColor;
}

.player-button:hover .player-button-icon,
.player-button:focus-visible .player-button-icon {
  color: var(--ink);
  background: var(--acid);
  transform: scale(1.06);
}

.player-frame iframe {
  z-index: 4;
  display: none;
  border: 0;
}

.player-frame.is-playing iframe {
  display: block;
}

.player-status {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  color: rgba(231, 223, 201, 0.46);
  border-top: 1px solid var(--line);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.player-status span:first-child {
  display: flex;
  align-items: center;
  gap: 9px;
}

.status-led {
  width: 5px;
  height: 5px;
}

.noscript {
  color: var(--paper-muted);
  font-size: 13px;
}

.story-section {
  border-top: 1px solid transparent;
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(340px, 0.65fr);
  gap: clamp(52px, 11vw, 170px);
  align-items: start;
}

.overline {
  margin: 0 0 16px;
  color: var(--acid);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.story-copy {
  padding-top: 36px;
  color: var(--paper-muted);
  font-size: 15px;
}

.story-copy p {
  margin: 0 0 24px;
}

.story-copy .story-intro {
  color: var(--paper);
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.45;
}

.quote-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 26px;
  align-items: start;
  margin-top: clamp(64px, 9vw, 120px);
  padding: clamp(28px, 5vw, 62px);
  color: var(--ink);
  background: var(--acid);
  overflow: hidden;
}

.quote-card::after {
  position: absolute;
  right: -70px;
  bottom: -90px;
  width: 260px;
  height: 260px;
  content: "";
  border: 1px solid rgba(11, 10, 8, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 0 34px rgba(11, 10, 8, 0.04), 0 0 0 72px rgba(11, 10, 8, 0.035);
}

.quote-mark {
  font-family: Georgia, serif;
  font-size: 76px;
  line-height: 0.8;
}

.quote-card blockquote {
  max-width: 760px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(28px, 4.3vw, 60px);
  font-weight: 850;
  letter-spacing: -0.035em;
  line-height: 1.03;
  text-transform: uppercase;
}

.quote-card cite {
  grid-column: 2;
  font-size: 10px;
  font-style: normal;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.corridor-code {
  position: relative;
  z-index: 1;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 8px;
  letter-spacing: 0.12em;
  writing-mode: vertical-rl;
}

.details-section {
  border-top: 1px solid var(--line);
}

.details-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(430px, 0.8fr);
  gap: clamp(58px, 11vw, 170px);
}

.details-title {
  position: sticky;
  top: 110px;
  align-self: start;
}

.details-title > p:last-child {
  max-width: 420px;
  margin-top: 28px;
}

.facts-table {
  margin: 0;
  border-top: 1px solid var(--line);
}

.facts-table > div {
  display: grid;
  grid-template-columns: minmax(130px, 0.55fr) minmax(0, 1fr);
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.facts-table dt {
  color: rgba(231, 223, 201, 0.42);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.facts-table dd {
  margin: 0;
  color: var(--paper);
  font-size: 14px;
}

.where-section {
  position: relative;
  color: var(--ink);
  background: #c9b87e;
  isolation: isolate;
  overflow: hidden;
}

.where-backdrop {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.42;
  background:
    linear-gradient(90deg, rgba(218, 204, 158, 0.96) 0%, rgba(218, 204, 158, 0.86) 42%, rgba(218, 204, 158, 0.22) 100%),
    url("assets/liminal-corridor.webp") center 58% / cover;
  filter: grayscale(0.35) contrast(0.88);
}

.where-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 0.65fr);
  gap: clamp(60px, 12vw, 180px);
}

.where-grid .overline {
  color: rgba(11, 10, 8, 0.58);
}

.where-copy > p:first-child {
  margin: 4px 0 32px;
  font-size: clamp(17px, 1.65vw, 21px);
  line-height: 1.5;
}

.platform-links {
  display: grid;
  border-top: 1px solid var(--line-dark);
}

.platform-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-dark);
  text-decoration: none;
  transition: padding 180ms ease, background 180ms ease;
}

.platform-links a:hover,
.platform-links a:focus-visible {
  padding-right: 14px;
  padding-left: 14px;
  background: rgba(231, 223, 201, 0.34);
}

.platform-links span {
  display: grid;
  font-family: var(--display);
  font-size: 20px;
  font-weight: 850;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.platform-links small {
  margin-bottom: 2px;
  font-family: var(--body);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.14em;
  opacity: 0.55;
}

.platform-links b {
  font-size: 22px;
  font-weight: 400;
}

.availability-note {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 24px 0 0;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.07em;
  opacity: 0.65;
  text-transform: uppercase;
}

.availability-note span {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: Georgia, serif;
  text-transform: none;
}

.faq-section {
  border-bottom: 1px solid var(--line);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(420px, 0.8fr);
  gap: clamp(58px, 11vw, 170px);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: grid;
  grid-template-columns: 1fr 24px;
  gap: 24px;
  align-items: center;
  padding: 22px 0;
  font-size: 14px;
  font-weight: 650;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  position: relative;
  width: 18px;
  height: 18px;
}

.faq-list summary span::before,
.faq-list summary span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 1px;
  content: "";
  background: var(--acid);
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.faq-list summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-list details p {
  max-width: 590px;
  margin: -4px 42px 24px 0;
  color: var(--paper-muted);
  font-size: 14px;
}

.site-footer {
  display: grid;
  grid-template-columns: 0.6fr 1fr 0.7fr;
  gap: 44px;
  align-items: center;
  padding: 34px var(--pad);
  color: rgba(231, 223, 201, 0.42);
  background: #070705;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--paper);
  font-family: var(--display);
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0.16em;
}

.footer-brand .brand-mark {
  width: 14px;
  height: 14px;
}

.site-footer p {
  margin: 0;
  text-align: center;
}

.footer-meta {
  display: flex;
  justify-content: flex-end;
  gap: 24px;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

@keyframes pulse {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 1; }
}

@keyframes scan {
  0% { transform: translateX(-16px); }
  100% { transform: translateX(48px); }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .header-meta {
    display: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 3;
    display: grid;
    gap: 6px;
    width: 40px;
    height: 40px;
    padding: 11px 7px;
    color: var(--paper);
    border: 0;
    background: transparent;
  }

  .menu-toggle span:not(.visually-hidden) {
    display: block;
    width: 26px;
    height: 1px;
    background: currentColor;
    transition: transform 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 14px;
    padding: 80px var(--pad);
    visibility: hidden;
    background: rgba(8, 8, 6, 0.98);
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
  }

  .site-nav.open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav a {
    color: var(--paper);
    font-family: var(--display);
    font-size: clamp(34px, 9vw, 62px);
    font-weight: 850;
    letter-spacing: -0.02em;
  }

  .section-heading,
  .story-layout,
  .details-grid,
  .where-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .details-title {
    position: static;
  }

  .story-copy {
    max-width: 680px;
    padding-top: 0;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 18px;
    text-align: center;
  }

  .footer-brand,
  .footer-meta {
    justify-content: center;
  }
}

@media (max-width: 680px) {
  :root {
    --pad: 20px;
  }

  .site-header {
    min-height: 64px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-image {
    background-image:
      linear-gradient(90deg, rgba(5, 5, 4, 0.94), rgba(5, 5, 4, 0.44)),
      linear-gradient(0deg, rgba(5, 5, 4, 0.94), transparent 58%),
      url("assets/liminal-corridor.webp");
    background-position: center, center, 62% center;
  }

  .hero-content {
    margin-top: 82px;
    margin-bottom: 158px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(44px, 14.2vw, 66px);
    letter-spacing: -0.075em;
    line-height: 0.78;
  }

  .title-outline {
    transform: translateX(8px);
  }

  .hero-subtitle {
    margin-top: 12px;
    font-size: 18px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-facts {
    right: var(--pad);
    bottom: 34px;
    left: var(--pad);
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding-top: 15px;
    border-top: 1px solid var(--line);
  }

  .hero-facts strong {
    font-size: 9px;
  }

  .scroll-cue {
    display: none;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .section-heading h2,
  .story-heading h2,
  .details-title h2,
  .where-grid h2,
  .faq-heading h2 {
    font-size: clamp(38px, 12vw, 56px);
  }

  .player-label {
    top: 12px;
    left: 12px;
    max-width: calc(100% - 24px);
    font-size: 7px;
  }

  .player-status {
    flex-direction: column;
    gap: 6px;
    font-size: 8px;
  }

  .quote-card {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .quote-mark {
    font-size: 54px;
  }

  .quote-card cite {
    grid-column: 1;
  }

  .corridor-code {
    position: absolute;
    top: 20px;
    right: 18px;
  }

  .facts-table > div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .where-copy > p:first-child {
    margin-top: 0;
  }

  .faq-list summary {
    font-size: 13px;
  }

  .footer-meta {
    flex-direction: column;
    gap: 4px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
