/* TC2066 Landing — OT/TC compliant
   Hard edges. No radius. No gradients. No glow. No blur on chrome.
   Two accents max: --accent-system + --accent-human.
*/

@import url("design-system.css");

:root {
  --hero-poster-cols: 6;
  --balance-system: 35; /* % of vertical real-estate that is "system layer" */
  --balance-human: 65;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg-1);
  color: var(--fg-1);
  font-family: var(--font-system);
  font-size: var(--t-body);
  line-height: var(--lh-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Selection */
::selection { background: var(--accent-human); color: #0D0D0B; }

/* Hard scrollbar */
::-webkit-scrollbar { width: 10px; height: 10px; background: var(--bg-1); }
::-webkit-scrollbar-thumb { background: var(--accent-system); }

/* ============================================================
   TOP BAR — TDR system chrome. 56px tall. Hard 1px rule below.
   ============================================================ */
.topbar {
  position: sticky; top: 0; z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: stretch;
  height: 56px;
  background: var(--bg-1);
  border-bottom: var(--hair);
  font-family: var(--font-system);
}
.topbar-brand {
  display: flex; align-items: center; gap: 12px;
  padding: 0 20px;
  border-right: var(--hair);
  text-decoration: none; color: var(--fg-1);
}
.brand-mark {
  width: 22px; height: 22px;
  background: var(--accent-system);
  position: relative;
  flex-shrink: 0;
}
.brand-mark::before {
  content: ""; position: absolute;
  inset: 4px 4px auto auto; width: 6px; height: 6px;
  background: var(--bg-1);
}
.brand-mark::after {
  content: ""; position: absolute;
  left: 0; top: 0; width: 100%; height: 100%;
  border: 1px solid var(--bg-1);
}
.brand-text {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: var(--track-faction);
  text-transform: uppercase;
  line-height: 1;
}
.brand-text small {
  display: block;
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 9px;
  letter-spacing: var(--track-wider);
  color: var(--fg-2);
  margin-top: 3px;
}
.topbar-nav {
  display: flex; align-items: stretch;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: var(--track-wider);
  text-transform: uppercase;
}
.topbar-nav a {
  display: flex; align-items: center;
  padding: 0 16px;
  color: var(--fg-2);
  text-decoration: none;
  border-right: var(--hair);
  transition: background var(--dur-fast) var(--ease-linear), color var(--dur-fast) var(--ease-linear);
}
.topbar-nav a:hover {
  background: var(--bg-3);
  color: var(--fg-1);
}
.topbar-status {
  display: flex; align-items: center; gap: 16px;
  padding: 0 20px;
  border-left: var(--hair);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: var(--track-wide);
  color: var(--fg-2);
  text-transform: uppercase;
}
.topbar-status .live-dot {
  display: inline-block;
  width: 7px; height: 7px;
  background: var(--accent-system);
  margin-right: 6px;
  animation: pulse-dot 1.4s steps(2, end) infinite;
}
@keyframes pulse-dot {
  0%, 50% { opacity: 1; }
  50.01%, 100% { opacity: 0.25; }
}
.topbar-status .grid-ref { color: var(--fg-1); }

/* Side rail (desktop only) */
.side-rail {
  position: fixed;
  left: 0; top: 56px; bottom: 0;
  width: 56px;
  background: var(--bg-1);
  border-right: var(--hair);
  z-index: 40;
  display: flex; flex-direction: column;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: var(--track-wider);
  text-transform: uppercase;
  color: var(--fg-2);
  padding: 16px 0;
}
.side-rail-spine {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  margin-top: auto;
  letter-spacing: var(--track-faction);
  padding: 16px 0;
  border-top: var(--hair);
  width: 100%;
  text-align: center;
}
.side-rail-num {
  font-weight: 700; color: var(--fg-1);
  border: 1px solid var(--rule);
  padding: 4px 6px;
  margin-bottom: 12px;
}
.side-rail .jp {
  margin: 16px 0 8px;
  color: var(--accent-system);
}
.page {
  padding-left: 56px;
}

/* ============================================================
   HERO — Wall-of-posters mosaic with locked headline
   ============================================================ */
.hero {
  position: relative;
  min-height: calc(100vh - 56px);
  border-bottom: var(--rule-heavy);
  overflow: hidden;
  background: var(--bg-1);
}
.poster-wall {
  position: absolute; inset: 0;
  display: grid;
  grid-template-columns: repeat(var(--hero-poster-cols), 1fr);
  grid-auto-rows: minmax(140px, 1fr);
  gap: 0;
  z-index: 1;
}
.poster-tile {
  position: relative;
  border-right: var(--hair);
  border-bottom: var(--hair);
  overflow: hidden;
  background: var(--bg-2);
}
.poster-tile-inner {
  position: absolute; inset: 0;
  transition: transform var(--dur-slow) var(--ease), opacity var(--dur-slow) var(--ease);
}
.poster-tile-inner.swap-out {
  opacity: 0;
  transform: translateY(-8%);
}
.poster-tile img, .poster-tile video {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center top;
  filter: grayscale(0.3) contrast(1.15) brightness(0.55) saturate(0.8);
}
.poster-tile.tile-video video {
  /* Frame the dino-soldier's head — pull up so the head stays in shot */
  object-position: center 22%;
  transform: scale(1.05);
}
.poster-tile.tile-text {
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
  text-align: center;
}
.poster-tile.tile-text .text {
  font-family: var(--font-human);
  font-weight: 700;
  font-size: clamp(20px, 2.4vw, 38px);
  line-height: 0.92;
  letter-spacing: var(--track-tight);
  text-transform: uppercase;
  color: var(--fg-1);
}
.poster-tile.tile-text .text em {
  font-style: normal;
  color: var(--accent-human);
}
.poster-tile.tile-text.invert {
  background: var(--accent-human);
}
.poster-tile.tile-text.invert .text { color: #0D0D0B; }
.poster-tile.tile-text.invert .text em { color: #0D0D0B; text-decoration: line-through; text-decoration-thickness: 3px; }

/* ============================================================
   COLORWAYS — apply to text + module tiles
   ============================================================ */
.poster-tile.cw-acid    { --cw-bg: #0D0D0B; --cw-fg: #E8E4DC; --cw-em: #D4C84A; }
.poster-tile.cw-hot     { --cw-bg: #0D0D0B; --cw-fg: #E8E4DC; --cw-em: #E8255A; }
.poster-tile.cw-teal    { --cw-bg: #0D0D0B; --cw-fg: #E8E4DC; --cw-em: #2BAAFF; }
.poster-tile.cw-orange  { --cw-bg: #0D0D0B; --cw-fg: #E8E4DC; --cw-em: #E87C2A; }
.poster-tile.cw-brass   { --cw-bg: #0D0D0B; --cw-fg: #E8E4DC; --cw-em: #C8923A; }
.poster-tile.cw-cold    { --cw-bg: #0D0D0B; --cw-fg: #E8E4DC; --cw-em: #4A8FBF; }

.poster-tile.tile-text.cw-acid   .text em,
.poster-tile.tile-text.cw-hot    .text em,
.poster-tile.tile-text.cw-teal   .text em,
.poster-tile.tile-text.cw-orange .text em,
.poster-tile.tile-text.cw-brass  .text em,
.poster-tile.tile-text.cw-cold   .text em { color: var(--cw-em); }

.poster-tile.tile-text.invert.cw-acid    { background: #D4C84A; }
.poster-tile.tile-text.invert.cw-hot     { background: #E8255A; }
.poster-tile.tile-text.invert.cw-teal    { background: #2BAAFF; }
.poster-tile.tile-text.invert.cw-orange  { background: #E87C2A; }
.poster-tile.tile-text.invert.cw-brass   { background: #C8923A; }
.poster-tile.tile-text.invert.cw-cold    { background: #4A8FBF; }

/* ============================================================
   MODULE POSTER — name-driven, like a recruiting bill
   ============================================================ */
.poster-tile.tile-module {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px 14px 12px;
  background: var(--cw-bg);
  color: var(--cw-fg);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease);
}
.poster-tile.tile-module::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      transparent 0 3px,
      rgba(255,255,255,0.018) 3px 4px
    );
  pointer-events: none;
}
.poster-tile.tile-module::after {
  content: "";
  position: absolute;
  left: 10px; right: 10px;
  bottom: 32px;
  height: 6px;
  background: var(--cw-em);
  opacity: 0.85;
}
.poster-tile.tile-module .tile-module-big {
  font-family: var(--font-human);
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 56px);
  line-height: 0.86;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--cw-em);
  z-index: 1;
  word-break: break-word;
  hyphens: manual;
}
.poster-tile.tile-module .tile-module-sub {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: var(--track-wider);
  text-transform: uppercase;
  color: var(--cw-fg);
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  border-top: 1px solid rgba(232,228,220,0.3);
  padding-top: 6px;
  margin-top: 8px;
}
.poster-tile.tile-module .tile-module-sub .arrow {
  color: var(--cw-em);
  font-family: var(--font-system);
  font-size: 14px;
}
.poster-tile.tile-module .corner.tl {
  color: var(--cw-em);
  z-index: 2;
}
.poster-tile.tile-module:hover {
  background: var(--cw-em);
}
.poster-tile.tile-module:hover .tile-module-big,
.poster-tile.tile-module:hover .corner.tl,
.poster-tile.tile-module:hover .tile-module-sub .arrow {
  color: #0D0D0B;
}
.poster-tile.tile-module:hover .tile-module-sub {
  color: #0D0D0B;
  border-top-color: rgba(13,13,11,0.4);
}
.poster-tile.tile-module:hover::after {
  background: #0D0D0B;
}

/* photo / video tiles: when wrapped in <a>, kill the underline */
a.poster-tile { text-decoration: none; color: inherit; }
.poster-tile.tile-mono {
  background: #0D0D0B;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 14px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: var(--track-wide);
  color: var(--fg-2);
  text-transform: uppercase;
}
.poster-tile.tile-mono b {
  color: var(--accent-system);
  font-size: 11px;
  letter-spacing: var(--track-wider);
}
.poster-tile.tile-mono .lg {
  font-family: var(--font-system);
  color: var(--fg-1);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
}
.poster-tile.tile-jp {
  display: flex; align-items: center; justify-content: center;
  background: #0D0D0B;
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: clamp(28px, 3.6vw, 56px);
  color: var(--accent-system);
  letter-spacing: 0.05em;
}
.poster-tile.tile-jp.human { color: var(--accent-human); background: var(--bg-1); }
.poster-tile.tile-photo::after {
  content: "";
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent 0 2px, rgba(0,0,0,0.18) 2px 3px);
  pointer-events: none;
}
.poster-tile.tile-warning {
  background: var(--color-warning);
  color: #E8E4DC;
  display: flex; align-items: center; justify-content: center;
  padding: 14px;
  text-align: center;
  font-family: var(--font-system);
  font-weight: 700;
  font-size: clamp(14px, 1.4vw, 18px);
  letter-spacing: var(--track-wider);
  text-transform: uppercase;
  line-height: 1.05;
}
.poster-tile .corner {
  position: absolute;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: var(--track-wide);
  color: rgba(232, 228, 220, 0.75);
  text-transform: uppercase;
  z-index: 2;
}
.poster-tile .corner.tl { top: 6px; left: 8px; }
.poster-tile .corner.br { bottom: 6px; right: 8px; }
.poster-tile-link {
  position: absolute; inset: 0;
  z-index: 3;
  text-decoration: none;
  display: block;
}
.poster-tile-link:hover ~ .poster-tile-overlay,
.poster-tile-link:focus ~ .poster-tile-overlay {
  opacity: 1;
}
.poster-tile-overlay {
  position: absolute; inset: 0;
  background: rgba(13, 13, 11, 0.75);
  border: 2px solid var(--accent-system);
  display: flex; align-items: center; justify-content: center;
  padding: 12px;
  text-align: center;
  font-family: var(--font-system);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: var(--track-wider);
  text-transform: uppercase;
  color: var(--accent-system);
  opacity: 0;
  transition: opacity var(--dur-fast) var(--ease-linear);
  pointer-events: none;
  z-index: 2;
}

/* Hero locked headline — pinned center, hard rules */
.hero-headline {
  position: absolute;
  z-index: 10;
  left: 0; right: 0;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  padding: 32px 8vw;
}
.hero-headline-card {
  position: relative;
  max-width: min(1100px, 88vw);
  margin: 0 auto;
  padding: 28px 32px 32px;
  background: var(--bg-1);
  border: 2px solid var(--accent-system);
  pointer-events: auto;
  box-shadow: var(--shadow-poster);
}
.hero-headline-card::before {
  content: "";
  position: absolute;
  top: -2px; left: -2px;
  width: 24px; height: 24px;
  border-top: 2px solid var(--accent-human);
  border-left: 2px solid var(--accent-human);
}
.hero-headline-card::after {
  content: "";
  position: absolute;
  bottom: -2px; right: -2px;
  width: 24px; height: 24px;
  border-bottom: 2px solid var(--accent-human);
  border-right: 2px solid var(--accent-human);
}
.hero-tagline {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: var(--track-wider);
  text-transform: uppercase;
  color: var(--accent-system);
  margin-bottom: 18px;
}
.hero-tagline-rule {
  flex: 1; height: 1px; background: var(--rule);
}
.hero-headline-card h1 {
  font-family: var(--font-human);
  font-weight: 700;
  font-size: clamp(56px, 11vw, 168px);
  line-height: 0.82;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--fg-1);
  margin: 0;
}
.hero-headline-card h1.title-stack {
  display: block;
  font-size: clamp(56px, 10.4vw, 156px);
  line-height: 0.84;
  letter-spacing: -0.025em;
}
.title-stack .line {
  display: block;
  position: relative;
}
.title-stack .line-terra {
  /* TERRA — pushed slightly right so CONFLICTUS hangs under it */
  padding-left: 0.04em;
}
.title-stack .line-conflictus {
  /* CONFLICTUS — full bleed, the structural anchor */
  letter-spacing: -0.035em;
}
.title-stack .line-conflictus .colon {
  color: var(--accent-system);
}
.title-stack .line-ot {
  /* OPERATOR TACTICS — half-size, accent, indented */
  font-size: 0.46em;
  line-height: 1;
  letter-spacing: 0.01em;
  margin-top: 0.18em;
  padding-left: 0.04em;
  display: flex;
  align-items: baseline;
  gap: 0.4em;
}
.title-stack .line-ot::before {
  content: "";
  display: inline-block;
  width: 0.28em;
  height: 0.28em;
  background: var(--accent-system);
  flex-shrink: 0;
  align-self: center;
}
.title-stack .line-ot em {
  font-style: normal;
  color: var(--accent-human);
}

.hero-subhead {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: var(--hair);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-2);
}
.hero-subhead .strike {
  position: relative;
  color: var(--fg-1);
  letter-spacing: 0.16em;
  font-weight: 600;
  flex-shrink: 0;
}
.hero-subhead .strike::after {
  content: "";
  position: absolute;
  left: -2px; right: -2px;
  top: 50%;
  height: 2px;
  background: var(--accent-system);
}
.hero-subhead-rule {
  flex: 1;
  height: 1px;
  background: var(--rule);
}
.hero-subhead-tag {
  flex-shrink: 0;
  color: var(--accent-system);
}
.hero-headline-card h1 em {
  font-style: normal;
  color: var(--accent-human);
}
.hero-headline-card h1 .strike {
  position: relative;
  display: inline-block;
}
.hero-headline-card h1 .strike::after {
  content: "";
  position: absolute;
  left: -2%; right: -2%;
  top: 52%;
  height: 0.07em;
  background: var(--accent-system);
}
.hero-deck {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
  margin-top: 22px;
  padding-top: 18px;
  border-top: var(--hair);
}
.hero-deck-text {
  font-family: var(--font-system);
  font-size: 16px;
  line-height: 1.4;
  color: var(--fg-1);
  max-width: 600px;
}
.hero-deck-text b {
  color: var(--accent-human);
  font-weight: 700;
}
.hero-cta {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.btn {
  display: inline-flex; align-items: center;
  gap: 10px;
  padding: 12px 18px;
  font-family: var(--font-system);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: var(--track-wider);
  text-transform: uppercase;
  text-decoration: none;
  background: transparent;
  color: var(--fg-1);
  border: 1px solid var(--rule);
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease-linear), border-color var(--dur-fast) var(--ease-linear), color var(--dur-fast) var(--ease-linear);
}
.btn:hover {
  background: var(--bg-3);
  border-color: var(--fg-1);
}
.btn.primary {
  background: var(--accent-system);
  color: #0D0D0B;
  border-color: var(--accent-system);
}
.btn.primary:hover {
  background: var(--fg-1);
  border-color: var(--fg-1);
  color: #0D0D0B;
}
.btn.human {
  background: var(--accent-human);
  color: #0D0D0B;
  border-color: var(--accent-human);
}
.btn.human:hover { background: var(--fg-1); border-color: var(--fg-1); }
.btn .arrow { font-family: var(--font-mono); }

.hero-meta-strip {
  position: absolute;
  z-index: 9;
  left: 0; right: 0; bottom: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: stretch;
  background: var(--bg-1);
  border-top: var(--hair);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: var(--track-wider);
  text-transform: uppercase;
  color: var(--fg-2);
}
.hero-meta-strip > div {
  padding: 12px 20px;
  display: flex; align-items: center; gap: 8px;
}
.hero-meta-strip .meta-track {
  border-left: var(--hair); border-right: var(--hair);
  overflow: hidden;
  white-space: nowrap;
}
.hero-meta-strip .meta-track-inner {
  display: inline-flex; gap: 32px;
  animation: marquee 60s linear infinite;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}
.hero-meta-strip .meta-track-inner span { display: inline-flex; gap: 8px; }
.hero-meta-strip .meta-track-inner span b {
  color: var(--accent-system);
  font-weight: 400;
}
.hero-meta-strip .marker {
  width: 8px; height: 8px;
  background: var(--accent-system);
  display: inline-block;
}

/* ============================================================
   STEP-THROUGH — "What this opens" READ / RUN / PLAY
   ============================================================ */
.steps {
  border-bottom: var(--rule-heavy);
  padding: 80px 0;
  background: var(--bg-1);
}
.steps-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 0 32px 32px;
  border-bottom: var(--hair);
  margin-bottom: 0;
}
.steps-head .eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: var(--track-wider);
  text-transform: uppercase;
  color: var(--accent-system);
}
.steps-head h2 {
  font-family: var(--font-human);
  font-weight: 700;
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: -0.01em;
  line-height: 0.9;
  text-transform: uppercase;
  margin: 0;
}
.steps-head h2 em { font-style: normal; color: var(--accent-human); }
.steps-head .ref {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: var(--track-wider);
  text-transform: uppercase;
  color: var(--fg-2);
  text-align: right;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.step {
  position: relative;
  padding: 36px 32px 32px;
  border-right: var(--hair);
  min-height: 540px;
  display: flex; flex-direction: column;
  background: var(--bg-1);
  overflow: hidden;
}
.step:last-child { border-right: 0; }
.step-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: var(--track-wider);
  color: var(--fg-2);
  text-transform: uppercase;
}
.step-num b { color: var(--accent-system); }
.step-title {
  font-family: var(--font-human);
  font-weight: 700;
  font-size: clamp(48px, 6vw, 84px);
  line-height: 0.85;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 16px 0 0;
}
.step-title em {
  font-style: normal;
  color: var(--accent-human);
}
.step-jp {
  font-family: var(--font-jp);
  font-size: 14px;
  color: var(--accent-system);
  letter-spacing: 0.1em;
  margin-top: 6px;
}
.step-body {
  margin-top: 24px;
  font-family: var(--font-system);
  font-size: 15px;
  line-height: 1.45;
  color: var(--fg-1);
  max-width: 380px;
}
.step-aside {
  margin-top: 18px;
  padding: 14px 14px 12px;
  background: rgba(232,228,220,0.04);
  border-left: 3px solid var(--accent-human);
  max-width: 380px;
}
.step-aside-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: var(--track-wider);
  text-transform: uppercase;
  color: var(--accent-system);
  margin-bottom: 6px;
}
.step-aside p {
  font-family: var(--font-system);
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--fg-1);
  margin: 0;
}
.step-aside b { color: var(--accent-human); font-weight: 700; }
.step-aside em { font-style: italic; color: var(--fg-2); }
.step-list {
  margin-top: auto;
  padding-top: 24px;
  list-style: none;
  padding-inline: 0;
  display: grid; gap: 1px;
  background: var(--rule);
  border: var(--hair);
}
.step-list li {
  background: var(--bg-1);
  padding: 10px 12px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  font-family: var(--font-system);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: var(--track-wide);
}
.step-list li a {
  color: var(--fg-1);
  text-decoration: none;
  display: contents;
}
.step-list li:hover { background: var(--bg-3); }
.step-list li b {
  font-weight: 700;
  color: var(--fg-1);
}
.step-list li .arrow {
  font-family: var(--font-mono);
  color: var(--accent-system);
  font-size: 11px;
}
.step-list li .meta {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--fg-2);
  letter-spacing: var(--track-wider);
}
.step.current::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 100%;
  height: 4px;
  background: var(--accent-system);
}

/* ============================================================
   SECTION CHROME (shared)
   ============================================================ */
.sxn {
  border-bottom: var(--rule-heavy);
  background: var(--bg-1);
}
.sxn-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: end;
  gap: 24px;
  padding: 28px 32px;
  border-bottom: var(--hair);
}
.sxn-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: var(--track-wider);
  color: var(--accent-system);
  text-transform: uppercase;
  border: 1px solid var(--accent-system);
  padding: 6px 10px;
  align-self: start;
}
.sxn-title-block .eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: var(--track-wider);
  text-transform: uppercase;
  color: var(--fg-2);
}
.sxn-title-block h2 {
  font-family: var(--font-human);
  font-weight: 700;
  font-size: clamp(40px, 5vw, 72px);
  letter-spacing: -0.01em;
  line-height: 0.9;
  text-transform: uppercase;
  margin: 6px 0 0;
}
.sxn-title-block h2 em {
  font-style: normal;
  color: var(--accent-human);
}
.sxn-meta {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: var(--track-wider);
  text-transform: uppercase;
  color: var(--fg-2);
  text-align: right;
  align-self: start;
}
.sxn-meta b { color: var(--fg-1); display: block; font-size: 12px; }

/* ============================================================
   FEATURE: OT CORE — split: poster + briefing
   ============================================================ */
.feature-core {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 620px;
}
.feature-core .left {
  position: relative;
  background: var(--bg-1);
  padding: 48px;
  display: flex; flex-direction: column; justify-content: space-between;
  border-right: var(--hair);
  overflow: hidden;
}
.feature-core .left .slogan {
  font-family: var(--font-human);
  font-weight: 700;
  font-size: clamp(72px, 10vw, 168px);
  line-height: 0.82;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--fg-1);
}
.feature-core .left .slogan em { font-style: normal; color: var(--accent-human); }
.feature-core .left .stamp {
  position: absolute;
  bottom: 48px; right: 48px;
  border: 2px solid var(--accent-human);
  color: var(--accent-human);
  padding: 10px 16px;
  font-family: var(--font-system);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: var(--track-wider);
  text-transform: uppercase;
  transform: rotate(-6deg);
  background: rgba(13, 13, 11, 0.7);
}
.feature-core .right {
  background: var(--bg-1);
  padding: 32px;
  display: flex; flex-direction: column;
  position: relative;
}
.feature-core .right h3 {
  font-family: var(--font-system);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: var(--track-wider);
  text-transform: uppercase;
  color: var(--accent-system);
  margin: 0 0 8px;
  padding-bottom: 12px;
  border-bottom: var(--hair);
}
.feature-core .right .body {
  font-family: var(--font-system);
  font-size: 16px;
  line-height: 1.5;
  color: var(--fg-1);
  margin-bottom: 24px;
}
.feature-core .right .body p { margin: 0 0 14px; }
.feature-core .right .body p:last-child { margin: 0; }

.kv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: var(--hair);
  margin-bottom: 24px;
}
.kv-grid .kv {
  padding: 12px;
  border-right: var(--hair);
  border-bottom: var(--hair);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: var(--track-wide);
  text-transform: uppercase;
  color: var(--fg-2);
}
.kv-grid .kv b {
  display: block;
  font-family: var(--font-system);
  font-size: 16px;
  color: var(--fg-1);
  font-weight: 700;
  letter-spacing: 0;
  margin-top: 6px;
  text-transform: uppercase;
}
.kv-grid .kv:nth-child(2n) { border-right: 0; }
.kv-grid .kv:nth-last-child(-n+2) { border-bottom: 0; }

/* ============================================================
   ATLAS — live iframe preview
   ============================================================ */
.atlas {
  display: grid;
  grid-template-columns: 320px 1fr;
  min-height: 640px;
}
.atlas-side {
  padding: 32px;
  border-right: var(--hair);
  display: flex; flex-direction: column;
  background: var(--bg-1);
}
.atlas-side h3 {
  font-family: var(--font-human);
  font-weight: 700;
  font-size: 36px;
  line-height: 0.92;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 0 0 16px;
}
.atlas-side h3 em { font-style: normal; color: var(--accent-human); }
.atlas-side p {
  font-family: var(--font-system);
  font-size: 14px;
  line-height: 1.45;
  color: var(--fg-1);
  margin: 0 0 16px;
}
.atlas-side .coords {
  margin-top: auto;
  padding-top: 18px;
  border-top: var(--hair);
  display: grid;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: var(--track-wider);
  color: var(--fg-2);
  text-transform: uppercase;
}
.atlas-side .coords b { color: var(--accent-system); display: inline-block; min-width: 90px; }
.atlas-frame {
  position: relative;
  background: #0A0C10;
  overflow: hidden;
}
.atlas-frame iframe {
  width: 100%; height: 100%;
  border: 0;
  display: block;
  filter: contrast(1.05) saturate(0.85);
}
.atlas-frame .scrim {
  position: absolute; inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(0deg, transparent 0 3px, rgba(0,0,0,0.18) 3px 4px);
  z-index: 2;
}
.atlas-frame .corner-marks {
  position: absolute; inset: 16px;
  pointer-events: none;
  z-index: 3;
}
.atlas-frame .corner-marks::before, .atlas-frame .corner-marks::after,
.atlas-frame .corner-marks > span {
  position: absolute;
  width: 16px; height: 16px;
  border: 1px solid var(--accent-system);
}
.atlas-frame .corner-marks::before {
  top: 0; left: 0;
  border-right: 0; border-bottom: 0;
}
.atlas-frame .corner-marks::after {
  bottom: 0; right: 0;
  border-left: 0; border-top: 0;
}
.atlas-frame .corner-marks > span:first-child {
  top: 0; right: 0;
  border-left: 0; border-bottom: 0;
}
.atlas-frame .corner-marks > span:last-child {
  bottom: 0; left: 0;
  border-right: 0; border-top: 0;
}
.atlas-frame .badge {
  position: absolute;
  top: 12px; right: 12px;
  z-index: 4;
  padding: 6px 10px;
  background: var(--bg-1);
  border: 1px solid var(--accent-system);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: var(--track-wider);
  text-transform: uppercase;
  color: var(--accent-system);
}
.atlas-frame .badge .live-dot {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--accent-system);
  margin-right: 6px;
  animation: pulse-dot 1.4s steps(2, end) infinite;
}

/* ============================================================
   GM MAPS strip
   ============================================================ */
.maps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.map-card {
  position: relative;
  border-right: var(--hair);
  background: var(--bg-1);
  padding: 0;
  display: flex; flex-direction: column;
  text-decoration: none;
  color: var(--fg-1);
  min-height: 360px;
  overflow: hidden;
  transition: background var(--dur-fast) var(--ease-linear);
}
.map-card:hover { background: var(--bg-3); }
.map-card:last-child { border-right: 0; }
.map-card .preview {
  height: 220px;
  background: #0A0C10;
  position: relative;
  overflow: hidden;
  border-bottom: var(--hair);
}
.map-card .preview::after {
  content: "";
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent 0 2px, rgba(0,0,0,0.2) 2px 3px);
  pointer-events: none;
}
.map-card .preview iframe {
  position: absolute;
  width: 280%; height: 280%;
  top: -90%; left: -90%;
  border: 0;
  pointer-events: none;
  filter: contrast(1.1) saturate(0.85);
}
.map-card .preview .map-svg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  display: block;
}
.map-card .preview .map-overlay-tag {
  position: absolute;
  top: 8px; left: 10px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--accent-system);
  padding: 3px 6px;
  background: rgba(13,13,11,0.7);
  border: 1px solid var(--accent-system);
  text-transform: uppercase;
  z-index: 2;
}
.map-card:hover .preview .map-svg {
  filter: brightness(1.08);
}
.map-card .preview img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.1) brightness(0.7) saturate(0.85);
}
.map-card .meta {
  padding: 16px;
  flex: 1;
  display: flex; flex-direction: column; gap: 8px;
}
.map-card .num {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: var(--track-wider);
  color: var(--accent-system);
  text-transform: uppercase;
}
.map-card .name {
  font-family: var(--font-human);
  font-weight: 700;
  font-size: 22px;
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.map-card .desc {
  font-family: var(--font-system);
  font-size: 12px;
  line-height: 1.4;
  color: var(--fg-2);
  margin-top: 4px;
}
.map-card .open {
  margin-top: auto;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: var(--track-wider);
  text-transform: uppercase;
  color: var(--accent-human);
  display: flex; align-items: center; gap: 6px;
  padding-top: 12px;
  border-top: var(--hair);
}

/* ============================================================
   RAID RACERS — full bleed video + spec card
   ============================================================ */
.raid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  min-height: 720px;
  position: relative;
}
.raid .stage {
  position: relative;
  overflow: hidden;
  background: var(--bg-1);
  border-right: var(--hair);
  display: flex;
  align-items: stretch;
  justify-content: center;
}
/* The video frame fills the stage now — no flanking dark space. The stage
   itself has `overflow: hidden`, so any over-extension of the portrait video
   is clipped at the stage edges. */
.raid .stage .video-frame {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.raid .stage video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  filter: contrast(1.1) brightness(0.78) saturate(0.9);
}
/* Veo watermark cover — small block hugging the bottom-right of the stage. */
.raid .stage .veo-mask {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 11%;
  height: 5.5%;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(135deg, #5a1810 0%, #8a2f17 55%, #b04a25 100%);
  border-top: 1px solid rgba(0, 0, 0, 0.35);
  border-left: 1px solid rgba(0, 0, 0, 0.35);
}
.raid .stage::after {
  content: "";
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent 0 3px, rgba(0,0,0,0.18) 3px 4px),
    linear-gradient(180deg, transparent 60%, rgba(13,13,11,0.7));
  pointer-events: none;
}
.raid .stage .overlay {
  position: absolute;
  left: 32px; bottom: 32px;
  z-index: 2;
  max-width: 60%;
}
.raid .stage .overlay .slogan {
  font-family: var(--font-human);
  font-weight: 700;
  font-size: clamp(48px, 6vw, 96px);
  line-height: 0.85;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--fg-1);
}
.raid .stage .overlay .slogan em { font-style: normal; color: var(--accent-human); }
.raid .stage .overlay .sub {
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: var(--track-wider);
  text-transform: uppercase;
  color: var(--fg-1);
}
.raid .spec {
  background: var(--bg-1);
  padding: 0;
  display: flex; flex-direction: column;
  gap: 0;
  overflow-y: auto;
}

/* OPERATOR GENESIS card — top of right column */
.raid .gen-tool {
  position: relative;
  padding: 24px 28px 22px;
  background:
    repeating-linear-gradient(0deg, transparent 0 30px, rgba(255,255,255,0.015) 30px 31px),
    var(--bg-2);
  border-bottom: var(--hair);
  font-family: var(--font-system);
}
.raid .gen-tool::before {
  /* corner crop marks for the genesis card */
  content: "";
  position: absolute;
  top: 8px; right: 8px;
  width: 14px; height: 14px;
  border-top: 1px solid var(--accent-system);
  border-right: 1px solid var(--accent-system);
  pointer-events: none;
}
.raid .gen-tool::after {
  content: "";
  position: absolute;
  bottom: 8px; left: 8px;
  width: 14px; height: 14px;
  border-bottom: 1px solid var(--accent-system);
  border-left: 1px solid var(--accent-system);
  pointer-events: none;
}
.raid .gen-tool .gen-head {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 10px;
}
.raid .gen-tool .gen-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--accent-system);
  text-transform: uppercase;
}
.raid .gen-tool .gen-id {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--fg-2);
}
.raid .gen-tool .gen-name {
  font-family: var(--font-human);
  font-weight: 700;
  font-size: clamp(28px, 3.2vw, 38px);
  line-height: 0.95;
  letter-spacing: -0.005em;
  color: var(--fg-1);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.raid .gen-tool .gen-sub {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-2);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
}
.raid .gen-tool .gen-sub .dot { color: var(--accent-system); opacity: 0.6; }
.raid .gen-tool .gen-sub [data-bind="splice"] {
  color: var(--accent-human);
}

/* stats row */
.raid .gen-tool .gen-stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  margin-bottom: 14px;
}
.raid .gen-tool .gen-stats .stat {
  background: var(--bg-1);
  padding: 10px 6px;
  text-align: center;
}
.raid .gen-tool .gen-stats .stat b {
  display: block;
  font-family: var(--font-human);
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
  color: var(--fg-1);
  margin-bottom: 4px;
}
.raid .gen-tool .gen-stats .stat span {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  color: var(--fg-2);
}

/* loadout key/value rows */
.raid .gen-tool .gen-loadout {
  display: grid;
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  margin-bottom: 16px;
}
.raid .gen-tool .gen-loadout .row {
  display: grid;
  grid-template-columns: 78px 1fr;
  background: var(--bg-1);
  padding: 8px 12px;
  font-size: 12px;
  align-items: center;
}
.raid .gen-tool .gen-loadout .row .k {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--accent-system);
}
.raid .gen-tool .gen-loadout .row .v {
  font-family: var(--font-system);
  color: var(--fg-1);
}

.raid .gen-tool .gen-actions {
  display: flex; gap: 8px; flex-wrap: wrap;
}

/* roll animation flash */
.raid .gen-tool.rolling .gen-name,
.raid .gen-tool.rolling .gen-sub,
.raid .gen-tool.rolling .gen-stats .stat b,
.raid .gen-tool.rolling .gen-loadout .v {
  animation: genFlicker 0.18s steps(2) 0s 2;
}
@keyframes genFlicker {
  0% { opacity: 0.2; transform: translateX(-2px); }
  50% { opacity: 1; }
  100% { opacity: 0.4; transform: translateX(1px); }
}

/* skirmish copy block — below the gen tool */
.raid .spec-body-block {
  padding: 24px 28px 28px;
  display: flex; flex-direction: column;
}
.raid .spec-body-block h3 {
  font-family: var(--font-human);
  font-weight: 700;
  font-size: 28px;
  line-height: 0.95;
  letter-spacing: -0.005em;
  color: var(--fg-1);
  text-transform: uppercase;
  margin: 0 0 12px;
}
.raid .spec-body-block h3 em { font-style: normal; color: var(--accent-human); }
.raid .spec-body-block .body {
  font-family: var(--font-system);
  font-size: 13px;
  line-height: 1.55;
  color: var(--fg-2);
  margin-bottom: 16px;
}
.raid .spec-body-block .ladder {
  display: grid; gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  margin-bottom: 14px;
}
.raid .spec-body-block .ladder .row {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  background: var(--bg-1);
  padding: 8px 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--fg-2);
  align-items: center;
}
.raid .spec-body-block .ladder .row b { color: var(--accent-system); }
.raid .spec-body-block .ladder .row span:nth-child(2) {
  font-family: var(--font-system);
  color: var(--fg-1);
  font-size: 12px;
  letter-spacing: 0;
}
.raid .spec-body-block .ladder .row .heat { color: var(--accent-human); }

/* ============================================================
   SANDBOX — 16-cell grid
   ============================================================ */
.sandbox {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
}
.sandbox .cell {
  position: relative;
  border-right: var(--hair);
  border-bottom: var(--hair);
  background: var(--bg-1);
  padding: 16px 14px;
  min-height: 130px;
  display: flex; flex-direction: column; gap: 4px;
  text-decoration: none;
  color: var(--fg-1);
  overflow: hidden;
  transition: background var(--dur-fast) var(--ease-linear);
}
.sandbox .cell:hover {
  background: var(--bg-3);
}
.sandbox .cell:hover .heat-bar { width: 100%; }
.sandbox .cell .ref {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: var(--track-wider);
  text-transform: uppercase;
  color: var(--fg-2);
}
.sandbox .cell .name {
  font-family: var(--font-human);
  font-weight: 700;
  font-size: 22px;
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--fg-1);
}
.sandbox .cell .tag {
  margin-top: auto;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: var(--track-wide);
  text-transform: uppercase;
  color: var(--fg-2);
}
.sandbox .cell .heat-bar {
  height: 3px;
  background: var(--accent-human);
  width: 30%;
  margin-top: 6px;
  transition: width var(--dur-slow) var(--ease);
}
.sandbox .cell.warning .heat-bar { background: var(--color-warning); }
.sandbox .cell.system .heat-bar { background: var(--accent-system); }
.sandbox .cell.featured {
  background: var(--accent-human);
  color: #0D0D0B;
}
.sandbox .cell.featured .name { color: #0D0D0B; }
.sandbox .cell.featured .ref, .sandbox .cell.featured .tag { color: #0D0D0B; opacity: 0.7; }
.sandbox .cell.featured .heat-bar { background: #0D0D0B; }

/* ============================================================
   DESIGNER NOTE — full poster section
   ============================================================ */
.designer {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  background: var(--bg-1);
  position: relative;
  min-height: 640px;
}
.designer .stage {
  position: relative;
  background: var(--accent-human);
  padding: 56px 48px;
  color: #0D0D0B;
  border-right: var(--hair);
  overflow: hidden;
  display: flex; flex-direction: column;
}
.designer .stage::before {
  content: "";
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(45deg, transparent 0 4px, rgba(0,0,0,0.04) 4px 5px);
  pointer-events: none;
}
.designer .stage .credit {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: var(--track-wider);
  text-transform: uppercase;
}
.designer .stage h2 {
  font-family: var(--font-human);
  font-weight: 700;
  font-size: clamp(64px, 8vw, 128px);
  line-height: 0.85;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #0D0D0B;
  margin: 24px 0 0;
}
.designer .stage h2 .strike {
  position: relative;
  display: inline-block;
}
.designer .stage h2 .strike::after {
  content: "";
  position: absolute;
  left: -2%; right: -2%;
  top: 52%;
  height: 0.07em;
  background: #0D0D0B;
}
.designer .stage .signature {
  margin-top: auto;
  padding-top: 32px;
  font-family: var(--font-human);
  font-weight: 700;
  font-size: 36px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 0.95;
}
.designer .stage .signature small {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: var(--track-wider);
  text-transform: uppercase;
  margin-top: 6px;
}
.designer .body {
  padding: 56px 48px;
  font-family: var(--font-system);
  font-size: 16px;
  line-height: 1.55;
  color: var(--fg-1);
  display: flex; flex-direction: column;
  gap: 16px;
  max-height: 720px;
  overflow-y: auto;
}
.designer .body p { margin: 0; }
.designer .body em { font-style: italic; color: var(--accent-system); }
.designer .body strong { color: var(--accent-human); font-weight: 700; }
.designer .body .pullquote {
  font-family: var(--font-human);
  font-weight: 700;
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--fg-1);
  border-left: 3px solid var(--accent-human);
  padding-left: 16px;
  margin: 8px 0;
}

/* ============================================================
   ARCADE strip — playable prototypes
   ============================================================ */
.arcade {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.arcade-card {
  position: relative;
  border-right: var(--hair);
  padding: 32px;
  background: var(--bg-1);
  text-decoration: none;
  color: var(--fg-1);
  min-height: 280px;
  display: flex; flex-direction: column; justify-content: space-between;
  overflow: hidden;
  transition: background var(--dur-fast) var(--ease-linear);
}
.arcade-card:hover { background: var(--bg-3); }
.arcade-card:last-child { border-right: 0; }
.arcade-card .label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: var(--track-wider);
  text-transform: uppercase;
  color: var(--accent-system);
}
.arcade-card h3 {
  font-family: var(--font-human);
  font-weight: 700;
  font-size: 44px;
  line-height: 0.9;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 12px 0;
}
.arcade-card p {
  font-family: var(--font-system);
  font-size: 13px;
  line-height: 1.45;
  color: var(--fg-2);
  margin: 0;
}
.arcade-card .play {
  margin-top: 16px;
  font-family: var(--font-system);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: var(--track-wider);
  text-transform: uppercase;
  display: flex; justify-content: space-between;
  padding: 10px 12px;
  border: 1px solid var(--accent-human);
  color: var(--accent-human);
}
.arcade-card:hover .play { background: var(--accent-human); color: #0D0D0B; }

/* ============================================================
   INDEX — full menu
   ============================================================ */
.index-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.index-col {
  border-right: var(--hair);
  padding: 24px 24px 32px;
  background: var(--bg-1);
}
.index-col:last-child { border-right: 0; }
.index-col h3 {
  font-family: var(--font-system);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: var(--track-wider);
  text-transform: uppercase;
  color: var(--accent-system);
  padding-bottom: 12px;
  border-bottom: var(--hair);
  margin: 0 0 12px;
}
.index-col ul {
  list-style: none;
  padding: 0; margin: 0;
  display: grid; gap: 1px;
}
.index-col li a {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 8px;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(58, 58, 54, 0.5);
  text-decoration: none;
  color: var(--fg-1);
  font-family: var(--font-system);
  font-size: 13px;
  letter-spacing: var(--track-wide);
  text-transform: uppercase;
  transition: color var(--dur-fast) var(--ease-linear);
}
.index-col li a:hover { color: var(--accent-system); }
.index-col li a .alt {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--fg-2);
  letter-spacing: var(--track-wider);
}
.index-col li a:hover .alt { color: var(--accent-human); }

/* ============================================================
   FOOTER
   ============================================================ */
.foot {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 18px 32px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: var(--track-wider);
  text-transform: uppercase;
  color: var(--fg-2);
  border-bottom: var(--hair);
}
.foot b { color: var(--accent-system); }
.foot-tag { display: flex; gap: 16px; align-items: center; }
.foot-tag .dot { width: 6px; height: 6px; background: var(--accent-human); display: inline-block; }
.foot-policy {
  padding: 24px 32px;
  font-family: var(--font-system);
  font-size: 12px;
  line-height: 1.5;
  color: var(--fg-2);
  max-width: 1100px;
}
.foot-policy strong { color: var(--fg-1); }
.foot-policy a { color: var(--accent-human); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1100px) {
  .feature-core, .raid, .designer, .atlas {
    grid-template-columns: 1fr;
  }
  .feature-core .left, .raid .stage, .designer .stage, .atlas-side {
    border-right: 0;
    border-bottom: var(--hair);
  }
  .raid { grid-template-rows: 640px auto; min-height: 0; }
  .atlas-frame { min-height: 420px; }
  .maps-grid { grid-template-columns: repeat(2, 1fr); }
  .map-card:nth-child(2n) { border-right: 0; }
  .arcade { grid-template-columns: 1fr; }
  .arcade-card { border-right: 0; border-bottom: var(--hair); }
  .sandbox { grid-template-columns: repeat(4, 1fr); }
  .index-grid { grid-template-columns: 1fr; }
  .index-col { border-right: 0; border-bottom: var(--hair); }
  .steps-grid { grid-template-columns: 1fr; }
  .step { border-right: 0; border-bottom: var(--hair); }
  .step:last-child { border-bottom: 0; }
}
@media (max-width: 720px) {
  :root { --hero-poster-cols: 4; }
  .page { padding-left: 0; }
  .side-rail { display: none; }
  .topbar-status { display: none; }
  .hero-headline-card h1 { font-size: clamp(48px, 14vw, 96px); }
  .hero-headline-card h1.title-stack { font-size: clamp(44px, 13vw, 88px); }
  .hero-subhead { flex-wrap: wrap; gap: 8px; }
  .hero-subhead-rule { display: none; }
  .hero-meta-strip { grid-template-columns: 1fr; }
  .hero-meta-strip .meta-track { display: none; }
  .sxn-head { grid-template-columns: 1fr; }
  .sandbox { grid-template-columns: repeat(2, 1fr); }
  .feature-core .left, .designer .stage { padding: 32px 24px; }
  .feature-core .right, .designer .body { padding: 28px 24px; }
}
