:root {
  --paper: #eeeade;
  --paper-2: #fffdf5;
  --ink: #10120f;
  --muted: #55574e;
  --blue: #1743dc;
  --sky: #79d1ff;
  --pink: #ff4f93;
  --orange: #ff5a30;
  --acid: #dcff31;
  --green: #35d268;
  --line: 3px solid var(--ink);
  --shadow: 8px 8px 0 var(--ink);
  --serif: Georgia, "Times New Roman", serif;
  --mono: "Courier New", Courier, monospace;
  --display: "Arial Black", Impact, Haettenschweiler, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 16px;
  line-height: 1.5;
}
body.menu-open { overflow: hidden; }
::selection { background: var(--pink); color: var(--ink); }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
img { display: block; max-width: 100%; }

.skip-link {
  position: fixed;
  top: .5rem;
  left: .5rem;
  z-index: 100;
  padding: .75rem 1rem;
  background: var(--acid);
  border: var(--line);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

:focus-visible {
  outline: 3px solid var(--paper-2);
  outline-offset: 2px;
  box-shadow: 0 0 0 7px var(--ink);
}

.site-header {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: .75rem clamp(1rem, 3vw, 3rem);
  background: var(--ink);
  color: var(--paper-2);
  border-bottom: 4px solid var(--acid);
  position: sticky;
  top: 0;
  z-index: 50;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  font-family: var(--display);
  font-size: clamp(.9rem, 1.6vw, 1.2rem);
  letter-spacing: -.04em;
  text-decoration: none;
  white-space: nowrap;
}
.brand img { width: 30px; height: 30px; }
.site-nav { display: flex; align-items: center; gap: clamp(.8rem, 2vw, 1.7rem); }
.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: .35rem .15rem;
  font-size: .75rem;
  font-weight: 700;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}
.site-nav a[aria-current="page"] { color: var(--acid); }
.nav-cta {
  padding: .7rem .85rem;
  background: var(--acid);
  color: var(--ink) !important;
  border: 2px solid var(--paper-2);
  text-decoration: none;
}
.nav-cta:hover { background: var(--pink); }
.nav-toggle {
  display: none;
  min-width: 52px;
  min-height: 42px;
  border: 2px solid var(--paper-2);
  background: transparent;
  color: var(--paper-2);
  font-size: .75rem;
  font-weight: 700;
  cursor: pointer;
}

.shell { width: min(1440px, 100%); margin-inline: auto; }
.section { padding: clamp(4.5rem, 8vw, 8rem) clamp(1rem, 5vw, 5rem); border-bottom: 4px solid var(--ink); }
.section.paper { background: var(--paper); }
.section.white { background: var(--paper-2); }
.section.blue { background: var(--blue); color: var(--paper-2); }
.section.pink { background: var(--pink); }
.section.acid { background: var(--acid); }
.section.orange { background: var(--orange); }
.section.dot-grid {
  background-color: var(--paper-2);
  background-image: radial-gradient(rgba(16, 18, 15, .2) 1px, transparent 1px);
  background-size: 12px 12px;
}
.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, .75fr);
  gap: clamp(2rem, 5vw, 6rem);
  align-items: end;
  margin-bottom: clamp(2.5rem, 5vw, 5rem);
}
.section-head > .kicker { grid-column: 1 / -1; }
.section-head h2, .page-hero h1, .cta-title {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(3rem, 6vw, 6.4rem);
  line-height: .92;
  letter-spacing: -.055em;
}
.section-head > p { max-width: 580px; margin: 0; font-size: .9rem; line-height: 1.7; }
.kicker {
  display: block;
  margin: 0 0 .8rem;
  font-size: .75rem;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.kicker.inverse { color: var(--acid); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-width: 220px;
  min-height: 54px;
  padding: .9rem 1rem;
  border: var(--line);
  box-shadow: 5px 5px 0 var(--ink);
  background: var(--paper-2);
  color: var(--ink);
  font-size: .78rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}
.button.primary { background: var(--acid); }
.button.pink { background: var(--pink); }
.button.dark { background: var(--ink); color: var(--paper-2); box-shadow: 5px 5px 0 var(--acid); }
.button:hover { transform: translate(2px, 2px); box-shadow: 3px 3px 0 var(--ink); background: var(--pink); }
.button.dark:hover { color: var(--acid); box-shadow: 3px 3px 0 var(--acid); }
.button-row { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero {
  min-height: min(840px, calc(100vh - 72px));
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, .85fr);
  border-bottom: 4px solid var(--ink);
  background-color: var(--paper);
  background-image:
    linear-gradient(rgba(16,18,15,.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16,18,15,.12) 1px, transparent 1px);
  background-size: 28px 28px;
}
.hero-copy {
  padding: clamp(4rem, 7vw, 7.5rem) clamp(1rem, 5vw, 5rem);
  border-right: 4px solid var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.eyebrow {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .45rem .65rem;
  background: var(--ink);
  color: var(--acid);
  font-size: .75rem;
  font-weight: 700;
}
.eyebrow::before { content: "●"; color: var(--pink); }
.hero h1 {
  max-width: 950px;
  margin: 2.5rem 0 2rem;
  font-family: var(--display);
  font-size: clamp(4rem, 8vw, 8.5rem);
  line-height: .82;
  letter-spacing: -.078em;
  text-wrap: balance;
}
.hero h1 .world { color: var(--pink); text-shadow: 4px 4px 0 var(--ink); -webkit-text-stroke: 1px var(--ink); }
.hero h1 .playable { color: var(--blue); display: block; }
.hero-lede { max-width: 760px; margin: 0; font-family: var(--serif); font-size: clamp(1.15rem, 2vw, 1.55rem); line-height: 1.55; }
.hero .button-row { margin-top: 2.2rem; }
.hero-aside { padding: clamp(2rem, 4vw, 4.5rem) clamp(1rem, 3vw, 3rem); display: flex; align-items: center; }

.window { width: 100%; border: 4px solid var(--ink); box-shadow: 10px 10px 0 var(--pink); background: #c9c9c1; }
.window-bar {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .55rem .75rem;
  background: var(--sky);
  border-bottom: 3px solid var(--ink);
  font-size: .75rem;
  font-weight: 700;
}
.window-body { padding: 1rem; }
.terminal-status { padding: .8rem; background: var(--ink); color: #77ff89; font-size: .75rem; line-height: 1.7; }
.terminal-status b { color: var(--acid); }
.scanner-title { margin: 1.4rem 0; font-family: var(--display); font-size: clamp(1.8rem, 3vw, 3.2rem); line-height: .95; letter-spacing: -.06em; }
.scanner-tabs { display: grid; grid-template-columns: repeat(2, 1fr); border: 2px solid var(--ink); }
.scanner-tabs button {
  min-height: 48px;
  border: 0;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--paper-2);
  font-size: .75rem;
  font-weight: 700;
  cursor: pointer;
}
.scanner-tabs button:nth-child(2n) { border-right: 0; }
.scanner-tabs button:nth-child(n+3) { border-bottom: 0; }
.scanner-tabs button:hover, .scanner-tabs button[aria-selected="true"] { background: var(--acid); }
.scanner-output { min-height: 250px; margin-top: 1rem; padding: 1.15rem; background: var(--ink); color: var(--paper-2); border: 3px inset #aaa; }
.scanner-output code, .scanner-output small { color: var(--acid); font-size: .75rem; font-weight: 700; }
.scanner-output h2 { margin: .9rem 0; font-family: var(--serif); font-size: 1.75rem; line-height: 1.1; font-weight: 400; }
.scanner-output p { margin: 0 0 1rem; color: #e7e7df; font-size: .875rem; line-height: 1.65; }

.access-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .8rem 1.5rem;
  padding: 1rem clamp(1rem, 3vw, 3rem);
  background: var(--acid);
  border-bottom: 4px solid var(--ink);
  font-size: .75rem;
  font-weight: 700;
}
.access-strip i { color: var(--pink); font-style: normal; }

.game-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(1.5rem, 3vw, 3rem); }
.game-card { border: 4px solid var(--ink); box-shadow: var(--shadow); background: var(--paper-2); display: flex; flex-direction: column; min-width: 0; }
.game-card[data-color="pink"] .window-bar { background: var(--pink); }
.game-card[data-color="acid"] .window-bar { background: var(--acid); }
.game-card[data-color="orange"] .window-bar { background: var(--orange); }
.game-card[data-color="blue"] .window-bar { background: var(--sky); }
.game-shot { position: relative; display: block; aspect-ratio: 16 / 9; overflow: hidden; background: var(--ink); border-bottom: 4px solid var(--ink); }
.game-shot img { width: 100%; height: 100%; object-fit: cover; transition: transform .16s ease; }
.game-shot:hover img { transform: scale(1.02); }
.play-chip { position: absolute; right: 1rem; bottom: 1rem; min-height: 44px; display: inline-flex; align-items: center; padding: .65rem .75rem; background: var(--acid); border: 3px solid var(--ink); font-size: .75rem; font-weight: 700; }
.game-card-body { flex: 1; display: flex; flex-direction: column; padding: 1.5rem; }
.game-meta { display: flex; justify-content: space-between; gap: 1rem; font-size: .75rem; font-weight: 700; text-transform: uppercase; }
.game-card h3 { margin: 1.3rem 0 .8rem; font-family: var(--serif); font-size: clamp(2rem, 3.5vw, 3.7rem); line-height: .98; letter-spacing: -.04em; font-weight: 400; }
.game-card p { margin: 0 0 1.25rem; font-size: .875rem; line-height: 1.7; }
.game-card small { font-size: .75rem; }
.game-actions { margin-top: auto; display: flex; flex-wrap: wrap; gap: .75rem; }
.text-link { display: inline-flex; align-items: center; min-height: 36px; padding-block: .35rem; font-size: .75rem; font-weight: 700; text-underline-offset: 5px; }
.game-actions .text-link { min-height: 44px; padding: .65rem .45rem; }
.game-actions .text-link + .text-link { padding-left: 1rem; border-left: 2px solid var(--ink); }

.evidence-list { display: grid; grid-template-columns: repeat(4, 1fr); border: 4px solid var(--ink); box-shadow: var(--shadow); }
.evidence-list article { min-height: 280px; padding: 1.4rem; background: var(--paper-2); border-right: 2px solid var(--ink); }
.evidence-list article:last-child { border-right: 0; }
.evidence-list span { font-size: .75rem; font-weight: 700; color: var(--blue); }
.evidence-list h3 { margin: 1.5rem 0 1rem; font-family: var(--serif); font-size: 1.7rem; line-height: 1.05; font-weight: 400; }
.evidence-list p { margin: 0; font-size: .875rem; line-height: 1.65; }

.process-list { list-style: none; margin: 0; padding: 2rem 0 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
.process-list li { min-height: 410px; position: relative; padding: 1.4rem; background: var(--paper); color: var(--ink); border: 4px solid var(--ink); box-shadow: 6px 6px 0 rgba(0,0,0,.6); display: flex; flex-direction: column; }
.folder-tab { position: absolute; top: -35px; left: -4px; padding: .45rem .7rem; background: var(--acid); border: 4px solid var(--ink); border-bottom: 0; font-size: .75rem; font-weight: 700; }
.process-number { color: var(--ink); font-family: var(--display); font-size: 4rem; line-height: 1; letter-spacing: -.08em; }
.process-list h3 { margin: 1.2rem 0 .8rem; font-family: var(--serif); font-size: 1.85rem; line-height: 1.08; font-weight: 400; }
.process-list p { font-size: .875rem; line-height: 1.7; }
.deliverable { margin-top: auto; padding-top: 1rem; border-top: 2px dashed var(--ink); font-size: .75rem; font-weight: 700; }

.plain-grid { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: clamp(2rem, 6vw, 7rem); align-items: start; }
.plain-grid h2 { margin: 0; font-family: var(--display); font-size: clamp(3.4rem, 7vw, 7.4rem); line-height: .84; letter-spacing: -.07em; }
.plain-copy { max-width: 780px; }
.plain-copy > p:first-child { margin-top: 0; font-family: var(--serif); font-size: 1.3rem; line-height: 1.6; }
.plain-copy p { line-height: 1.75; }
.rule-list { margin-top: 2.5rem; border-top: 3px solid var(--ink); }
.rule-list article { padding: 1.4rem 0; border-bottom: 1px solid var(--ink); }
.rule-list h3 { margin: 0 0 .6rem; font-family: var(--serif); font-size: 1.6rem; font-weight: 400; }
.rule-list p { margin: 0; font-size: .875rem; }

.terminal-grid { display: grid; grid-template-columns: minmax(300px, .8fr) minmax(0, 1.2fr); gap: clamp(2rem, 7vw, 8rem); align-items: center; }
.terminal { border: 4px solid var(--ink); box-shadow: 10px 10px 0 var(--acid); }
.terminal pre { margin: 0; min-height: 330px; padding: 1.5rem; overflow: auto; background: #050705; color: #71ff82; font-family: var(--mono); font-size: .75rem; line-height: 1.95; }
.terminal b { color: var(--acid); }
.terminal-copy h2 { margin: 0 0 1.7rem; font-family: var(--serif); font-size: clamp(2.8rem, 5vw, 5.3rem); line-height: .95; letter-spacing: -.05em; font-weight: 400; }
.terminal-copy p { max-width: 720px; font-family: var(--serif); font-size: 1.15rem; line-height: 1.7; }

.page-hero { padding: clamp(4.5rem, 7.5vw, 7.5rem) clamp(1rem, 5vw, 5rem); background: var(--paper); border-bottom: 4px solid var(--ink); background-image: linear-gradient(rgba(16,18,15,.1) 1px, transparent 1px), linear-gradient(90deg, rgba(16,18,15,.1) 1px, transparent 1px); background-size: 28px 28px; }
.page-hero .shell { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(260px, .8fr); gap: clamp(2rem, 6vw, 7rem); align-items: end; }
.page-hero .eyebrow { margin-bottom: 2rem; }
.page-hero h1 { font-family: var(--display); font-size: clamp(4rem, 8vw, 9rem); line-height: .82; letter-spacing: -.075em; }
.page-hero h1 span { color: var(--blue); }
.page-hero p { margin: 0; max-width: 600px; font-family: var(--serif); font-size: 1.3rem; line-height: 1.6; }
.catalog-hero { padding-block: clamp(3rem, 5vw, 5rem); }
.catalog-hero .shell { grid-template-columns: minmax(0, 1.45fr) minmax(280px, .55fr); align-items: center; }
.catalog-hero h1 { max-width: 1050px; font-size: clamp(3.8rem, 5.5vw, 6.2rem); line-height: .86; text-wrap: balance; }
.catalog-hero h1 span { display: block; }

.filter-bar { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 2.5rem; }
.filter-bar button { min-height: 44px; padding: .65rem .85rem; border: 2px solid var(--ink); background: var(--paper-2); font-size: .75rem; font-weight: 700; cursor: pointer; }
.filter-bar button:hover, .filter-bar button[aria-pressed="true"] { background: var(--acid); }
.catalog-count { margin-left: auto; align-self: center; font-size: .75rem; font-weight: 700; }
.catalog-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.5rem; }
.catalog-grid .game-card { box-shadow: 6px 6px 0 var(--ink); }
.catalog-grid .game-card h3 { font-size: clamp(1.7rem, 2.8vw, 2.7rem); }
.catalog-grid .game-card-body { padding: 1.2rem; }
.catalog-grid .game-card p { font-size: .875rem; }
.game-card[hidden] { display: none; }

.price-ladder { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border: 4px solid var(--ink); box-shadow: 10px 10px 0 var(--pink); }
.price-ladder.three-rung { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.price-card { min-height: 510px; padding: 1.35rem; background: var(--paper-2); border-right: 2px solid var(--ink); display: flex; flex-direction: column; }
.price-card:last-child { border-right: 0; }
.price-card.featured { background: var(--acid); }
.price-rung { font-size: .75rem; font-weight: 700; }
.price-card h3 { min-height: 80px; margin: 1.7rem 0 .8rem; font-family: var(--serif); font-size: 2rem; line-height: 1; font-weight: 400; }
.price-card strong { color: var(--blue); font-family: var(--display); font-size: 2.1rem; line-height: 1; }
.price-card .timing { margin: .7rem 0 1.7rem; font-size: .75rem; font-weight: 700; }
.price-card p { font-size: .875rem; line-height: 1.65; }
.price-card ul { margin: 0 0 1.4rem; padding-left: 1.2rem; font-size: .84rem; line-height: 1.65; }
.price-card .text-link { margin-top: auto; }
.after-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem; }
.after-card { padding: 1.7rem; border: 4px solid var(--ink); box-shadow: var(--shadow); background: var(--paper-2); }
.after-card h3 { margin: 1rem 0; font-family: var(--serif); font-size: 2.6rem; font-weight: 400; }
.after-card strong { display: block; color: var(--blue); font-family: var(--display); font-size: 2.5rem; }
.after-card p, .after-card li { font-size: .875rem; line-height: 1.7; }
.credit-note { margin-top: 2.5rem; padding: 1.3rem; border: 3px solid var(--ink); background: var(--pink); font-size: .82rem; font-weight: 700; }

.faq-list { border-top: 3px solid var(--ink); }
.faq-list details { border-bottom: 2px solid var(--ink); }
.faq-list summary { padding: 1.25rem .25rem; cursor: pointer; font-family: var(--serif); font-size: 1.35rem; font-weight: 400; }
.faq-list details[open] summary { color: var(--blue); }
.faq-list details p { max-width: 850px; padding: 0 .25rem 1.3rem; margin: 0; font-size: .9rem; line-height: 1.75; }

.form-wrap { display: grid; grid-template-columns: minmax(0, .75fr) minmax(0, 1.25fr); gap: clamp(2rem, 6vw, 7rem); align-items: start; }
.form-intro h2 { margin: 0 0 1.5rem; font-family: var(--serif); font-size: clamp(2.8rem, 5vw, 5.2rem); line-height: .95; font-weight: 400; }
.form-intro p { font-size: .9rem; line-height: 1.75; }
.form-steps { list-style: none; padding: 0; margin: 2rem 0 0; border-top: 3px solid var(--ink); }
.form-steps li { padding: 1rem 0; border-bottom: 1px solid var(--ink); font-size: .84rem; }
.form-steps b { color: var(--blue); }
.project-form { padding: clamp(1.2rem, 3vw, 2.2rem); border: 4px solid var(--ink); box-shadow: var(--shadow); background: var(--paper-2); }
.form-bar { margin: calc(clamp(1.2rem, 3vw, 2.2rem) * -1) calc(clamp(1.2rem, 3vw, 2.2rem) * -1) 2rem; padding: .6rem .8rem; background: var(--sky); border-bottom: 3px solid var(--ink); font-size: .75rem; font-weight: 700; }
.field-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.field { display: flex; flex-direction: column; gap: .45rem; margin-bottom: 1rem; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .75rem; font-weight: 700; }
.field input, .field textarea, .field select { width: 100%; min-height: 48px; padding: .75rem; border: 2px solid var(--ink); background: var(--paper); border-radius: 0; color: var(--ink); }
.field textarea { min-height: 160px; resize: vertical; }
.form-note { margin: 1.2rem 0 0; font-size: .78rem; line-height: 1.65; }

.founder-grid { display: grid; grid-template-columns: 260px minmax(0, 1fr); border: 4px solid var(--ink); box-shadow: var(--shadow); background: var(--paper-2); }
.founder-grid img { width: 100%; height: 100%; min-height: 380px; object-fit: cover; border-right: 4px solid var(--ink); }
.founder-copy { padding: clamp(2rem, 5vw, 5rem); }
.founder-copy h2 { margin: 1rem 0 1.5rem; font-family: var(--serif); font-size: clamp(2.8rem, 5vw, 5.3rem); line-height: .95; letter-spacing: -.05em; font-weight: 400; }
.founder-copy p { max-width: 800px; font-size: .9rem; line-height: 1.75; }

.cta-band { background: var(--pink); text-align: center; }
.cta-band .shell { max-width: 1100px; }
.cta-title { font-family: var(--display); font-size: clamp(4.5rem, 10vw, 11rem); line-height: .78; letter-spacing: -.08em; }
.cta-band p { max-width: 700px; margin: 2rem auto; font-family: var(--serif); font-size: 1.25rem; line-height: 1.6; }
.cta-band .button { margin-inline: auto; max-width: 620px; }

.site-footer { padding: 3rem clamp(1rem, 4vw, 4rem); background: var(--ink); color: var(--paper-2); }
.footer-grid { width: min(1440px, 100%); margin: 0 auto; display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 2rem; }
.footer-brand { display: flex; align-items: center; gap: .7rem; font-family: var(--display); letter-spacing: -.04em; }
.footer-brand img { width: 28px; height: 28px; }
.site-footer p, .site-footer nav { margin: 1rem 0 0; font-size: .75rem; line-height: 1.8; }
.site-footer nav { display: flex; flex-direction: column; align-items: flex-start; }
.site-footer nav a { display: inline-flex; align-items: center; min-height: 32px; }
.site-footer a { text-underline-offset: 4px; }
.footer-bottom { width: min(1440px, 100%); margin: 2.5rem auto 0; padding-top: 1rem; border-top: 1px solid #777971; display: flex; justify-content: space-between; gap: 1rem; font-size: .75rem; }

/* Expanded field pages and game dossiers */
.editorial-hero,
.dossier-hero {
  border-bottom: 4px solid var(--ink);
  background-color: var(--paper);
  background-image: linear-gradient(rgba(16,18,15,.1) 1px, transparent 1px), linear-gradient(90deg, rgba(16,18,15,.1) 1px, transparent 1px);
  background-size: 28px 28px;
}
.editorial-hero { padding: clamp(4.5rem, 7vw, 7rem) clamp(1rem, 5vw, 5rem); background-size: 36px 36px; }
.editorial-hero .shell { max-width: 1180px; }
.editorial-hero h1,
.dossier-hero h1 {
  margin: 2rem 0 1.6rem;
  font-family: var(--display);
  font-size: clamp(4rem, 7.5vw, 8rem);
  line-height: .82;
  letter-spacing: -.078em;
  text-wrap: balance;
}
.editorial-hero h1 em,
.dossier-hero h1 em { color: var(--blue); font-style: normal; }
.editorial-hero .lede,
.dossier-hero .lede { max-width: 850px; margin: 0; font-family: var(--serif); font-size: clamp(1.2rem, 2.3vw, 1.7rem); line-height: 1.55; }
.hero-note { max-width: 760px; margin: 2rem 0 0; padding: .9rem 1rem; border-left: 6px solid var(--blue); background: var(--paper-2); font-size: .875rem; line-height: 1.65; }
.ownership-strip { padding: clamp(1.5rem, 3vw, 2.25rem) clamp(1rem, 5vw, 5rem); background: var(--paper-2); border-bottom: 4px solid var(--ink); }
.ownership-strip .shell { display: grid; grid-template-columns: minmax(180px, .45fr) minmax(0, 1.55fr); gap: clamp(1.5rem, 4vw, 4rem); align-items: start; }
.ownership-strip .kicker { margin: .2rem 0 0; color: var(--blue); }
.ownership-strip p { max-width: 920px; margin: 0; font-family: var(--serif); font-size: 1.05rem; line-height: 1.65; }

.editorial-shell { width: min(1180px, 100%); margin-inline: auto; }
.editorial-grid { display: grid; grid-template-columns: minmax(220px, .62fr) minmax(0, 1.38fr); gap: clamp(2.5rem, 7vw, 8rem); align-items: start; }
.editorial-aside { position: sticky; top: 108px; }
.editorial-aside .kicker { color: var(--blue); }
.editorial-aside h2 { margin: .7rem 0 1.2rem; font-family: var(--serif); font-size: clamp(2.4rem, 4.5vw, 4.8rem); line-height: .95; font-weight: 400; letter-spacing: -.045em; }
.editorial-aside p { font-size: .84rem; line-height: 1.75; }
.prose { max-width: 780px; }
.prose h2 { margin: 0 0 1.2rem; font-family: var(--serif); font-size: clamp(2.5rem, 5vw, 5rem); line-height: .95; font-weight: 400; letter-spacing: -.05em; }
.prose h3 { margin: 2.5rem 0 .7rem; font-family: var(--serif); font-size: 1.75rem; line-height: 1.1; font-weight: 400; }
.prose p,
.prose li { font-size: .92rem; line-height: 1.85; }
.prose > p:first-of-type { font-family: var(--serif); font-size: 1.25rem; line-height: 1.65; }
.prose ul,
.prose ol { padding-left: 1.4rem; }
.prose blockquote { margin: 2.5rem 0; padding: 1.4rem; border: 4px solid var(--ink); box-shadow: 7px 7px 0 var(--pink); background: var(--paper-2); font-family: var(--serif); font-size: 1.35rem; line-height: 1.55; }
.prose .button-row { margin-top: 2rem; }
.article-meta { display: flex; flex-wrap: wrap; gap: .65rem; margin-top: 1.7rem; }
.article-meta span,
.meta-chip { display: inline-flex; align-items: center; min-height: 32px; padding: .5rem .65rem; border: 2px solid var(--ink); background: var(--paper-2); font-size: .75rem; font-weight: 700; text-transform: uppercase; }

.field-card-grid,
.test-grid,
.mechanic-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; }
.field-card,
.test-card,
.mechanic-card { min-height: 250px; padding: 1.35rem; border: 4px solid var(--ink); box-shadow: 6px 6px 0 var(--ink); background: var(--paper-2); }
.field-card:nth-child(3n+2),
.test-card:nth-child(3n+2),
.mechanic-card:nth-child(3n+2) { background: var(--acid); }
.field-card:nth-child(3n),
.test-card:nth-child(3n),
.mechanic-card:nth-child(3n) { background: var(--pink); }
.field-card .number,
.test-card .number,
.mechanic-card .number { color: var(--ink); font-family: var(--display); font-size: 3.4rem; line-height: .85; }
.field-card h3,
.test-card h3,
.mechanic-card h3 { margin: 1.2rem 0 .7rem; font-family: var(--serif); font-size: 1.75rem; line-height: 1.05; font-weight: 400; }
.field-card p,
.test-card p,
.mechanic-card p { margin: 0; font-size: .875rem; line-height: 1.7; }
.field-card .text-link { display: inline-block; margin-top: 1.3rem; }

.dossier-hero { padding: clamp(2.25rem, 4vw, 4rem) clamp(1rem, 5vw, 5rem); }
.dossier-hero-grid { width: min(1440px, 100%); margin: 0 auto; display: grid; grid-template-columns: minmax(0, .95fr) minmax(360px, 1.05fr); gap: clamp(1.75rem, 4vw, 4.5rem); align-items: center; }
.dossier-hero h1 { margin-block: 1.35rem 1rem; font-size: clamp(3.45rem, 5.8vw, 6.25rem); line-height: .84; }
.dossier-hero .lede { font-size: clamp(1.08rem, 1.7vw, 1.4rem); line-height: 1.48; }
.dossier-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.7rem; }
.dossier-facts { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.1rem; }
.dossier-frame { border: 4px solid var(--ink); box-shadow: 10px 10px 0 var(--pink); background: var(--ink); overflow: hidden; }
.dossier-frame .window-bar { background: var(--acid); }
.dossier-frame img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.dossier-section { padding: clamp(4.5rem, 8vw, 8rem) clamp(1rem, 5vw, 5rem); border-bottom: 4px solid var(--ink); }
.dossier-section.white { background: var(--paper-2); }
.dossier-section.blue { background: var(--blue); color: var(--paper-2); }
.dossier-section.acid { background: var(--acid); }
.dossier-section .shell { width: min(1320px, 100%); }
.dossier-copy-grid { display: grid; grid-template-columns: minmax(250px, .75fr) minmax(0, 1.25fr); gap: clamp(2rem, 7vw, 8rem); }
.dossier-copy-grid h2 { margin: 0; font-family: var(--serif); font-size: clamp(3rem, 6vw, 6.3rem); line-height: .92; font-weight: 400; letter-spacing: -.055em; }
.dossier-copy { max-width: 780px; }
.dossier-copy > p:first-child { margin-top: 0; font-family: var(--serif); font-size: 1.3rem; line-height: 1.65; }
.dossier-copy p,
.dossier-copy li { font-size: .95rem; line-height: 1.8; }
.screenshot-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.25rem; margin-top: 3rem; }
.screenshot-grid figure { margin: 0; border: 4px solid var(--ink); box-shadow: 6px 6px 0 var(--ink); background: var(--paper-2); }
.screenshot-grid img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; border-bottom: 3px solid var(--ink); }
.screenshot-grid figcaption { padding: .85rem; color: var(--ink); font-size: .78rem; line-height: 1.6; }
.ownership-note { padding: 1.5rem; border: 4px solid var(--ink); box-shadow: 7px 7px 0 var(--pink); background: var(--paper-2); }
.ownership-note strong { display: block; margin-bottom: .6rem; font-family: var(--serif); font-size: 1.6rem; font-weight: 400; }
.ownership-note .text-link { display: flex; width: max-content; margin-top: 1rem; }
.success-panel { max-width: 900px; margin: 0 auto; padding: clamp(2rem, 5vw, 5rem); border: 4px solid var(--ink); box-shadow: 10px 10px 0 var(--pink); background: var(--paper-2); text-align: center; }
.success-panel h1 { margin: 1.3rem 0; font-family: var(--display); font-size: clamp(4rem, 10vw, 8rem); line-height: .82; letter-spacing: -.075em; }
.success-panel p { max-width: 640px; margin: 0 auto 1.7rem; font-family: var(--serif); font-size: 1.25rem; line-height: 1.6; }
.brief-form { max-width: 760px; margin-top: 2.5rem; }
.brief-form .field { margin-bottom: 1rem; }
.brief-form .form-note:focus { outline: 3px solid var(--paper-2); outline-offset: 2px; box-shadow: 0 0 0 7px var(--ink); }

/* Each dossier keeps the studio frame while borrowing one color from its game. */
.dossier-page { --dossier-accent: var(--sky); }
.dossier-page[data-accent="pink"] { --dossier-accent: var(--pink); }
.dossier-page[data-accent="acid"] { --dossier-accent: var(--acid); }
.dossier-page[data-accent="orange"] { --dossier-accent: var(--orange); }
.dossier-page[data-accent="blue"] { --dossier-accent: var(--sky); }
.dossier-page .dossier-hero h1 em {
  color: var(--ink);
  text-decoration-line: underline;
  text-decoration-color: var(--dossier-accent);
  text-decoration-thickness: .16em;
  text-underline-offset: .08em;
}
.dossier-page .eyebrow::before { color: var(--dossier-accent); }
.dossier-page .dossier-frame { box-shadow: 10px 10px 0 var(--dossier-accent); }
.dossier-page .dossier-frame .window-bar,
.dossier-page .dossier-actions .button.primary { background: var(--dossier-accent); }
.dossier-page .access-strip { background: var(--paper-2); }
.dossier-page .access-strip i { color: var(--blue); }
.dossier-page .mechanic-card:nth-child(3n+2) { background: var(--dossier-accent); }
.dossier-page .mechanic-card:nth-child(3n) { background: var(--paper-2); }
.dossier-page .dossier-section.acid { background: var(--paper); }
.dossier-page .ownership-note { box-shadow: 7px 7px 0 var(--dossier-accent); }
.dossier-page .cta-band { background: var(--dossier-accent); }
.dossier-editorial { background: var(--ink); color: var(--paper-2); }
.dossier-editorial .kicker { color: var(--dossier-accent); }
.dossier-editorial .dossier-copy > p:first-child { color: var(--paper-2); }
.dossier-colophon { padding: 1.5rem clamp(1rem, 5vw, 5rem); border-bottom: 4px solid var(--ink); background: var(--paper-2); }
.dossier-colophon .shell { width: min(1320px, 100%); display: grid; grid-template-columns: minmax(180px, .45fr) minmax(0, 1.55fr); gap: clamp(1.5rem, 4vw, 4rem); align-items: start; }
.dossier-colophon .kicker { margin: .2rem 0 0; color: var(--blue); }
.dossier-colophon p { max-width: 920px; margin: 0; font-family: var(--serif); font-size: 1.05rem; line-height: 1.65; }
.related-dossiers { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; }
.related-dossier { min-height: 220px; padding: 1.3rem; border: 4px solid var(--ink); box-shadow: 6px 6px 0 var(--ink); background: var(--paper-2); display: flex; flex-direction: column; }
.related-dossier:nth-child(2) { background: var(--dossier-accent); }
.related-dossier h3 { margin: 1.15rem 0 .7rem; font-family: var(--serif); font-size: 1.85rem; line-height: 1.05; font-weight: 400; }
.related-dossier p { margin: 0 0 1rem; font-size: .875rem; line-height: 1.7; }
.related-dossier .text-link { margin-top: auto; }

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

@media (max-width: 1366px) {
  .price-ladder:not(.three-rung) { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .price-ladder:not(.three-rung) .price-card:nth-child(2n) { border-right: 0; }
  .price-ladder:not(.three-rung) .price-card:nth-child(-n+2) { border-bottom: 2px solid var(--ink); }
}

@media (max-width: 1180px) {
  .catalog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 1080px) {
  .hero { grid-template-columns: 1fr; }
  .hero-copy { border-right: 0; border-bottom: 4px solid var(--ink); }
  .hero-aside { justify-content: center; }
  .hero-aside .window { max-width: 760px; }
  .process-list, .evidence-list, .price-ladder { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .evidence-list article:nth-child(2) { border-right: 0; }
  .evidence-list article:nth-child(-n+2) { border-bottom: 2px solid var(--ink); }
  .process-list { gap: 3rem 1rem; }
  .price-card:nth-child(2n) { border-right: 0; }
  .price-card:nth-child(-n+2) { border-bottom: 2px solid var(--ink); }
  .field-card-grid, .test-grid, .mechanic-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .related-dossiers { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .dossier-hero-grid { grid-template-columns: 1fr; }
  .dossier-frame { max-width: 900px; }
}

@media (max-width: 760px) {
  .site-header { padding: .65rem 1rem; }
  .nav-toggle { display: block; }
  .site-nav {
    display: none;
    position: fixed;
    inset: 69px 0 0;
    padding: 2rem 1rem;
    background: var(--ink);
    flex-direction: column;
    align-items: stretch;
  }
  .site-nav.open { display: flex; }
  .site-nav a { display: block; padding: 1rem; border-bottom: 1px solid #5c5d58; font-size: .9rem; }
  .nav-cta { text-align: center; border: 2px solid var(--paper-2) !important; }
  .hero-copy { padding: 4.5rem 1rem; }
  .hero h1 { font-size: clamp(3.8rem, 21vw, 6.5rem); }
  .hero-aside { padding: 3rem 1rem; }
  .window { box-shadow: 6px 6px 0 var(--pink); }
  .section { padding: 4.5rem 1rem; }
  .section-head, .page-hero .shell, .plain-grid, .terminal-grid, .form-wrap { grid-template-columns: 1fr; }
  .section-head > .kicker { grid-column: auto; }
  .page-hero { padding: 5rem 1rem; }
  .page-hero h1 { font-size: clamp(3.8rem, 20vw, 7rem); }
  .catalog-hero { padding-block: 4rem; }
  .catalog-hero h1 { font-size: clamp(3.8rem, 17vw, 6.2rem); }
  .game-grid, .catalog-grid, .after-grid { grid-template-columns: 1fr; }
  .evidence-list, .process-list, .price-ladder { grid-template-columns: 1fr; }
  .evidence-list article, .price-card { border-right: 0; border-bottom: 2px solid var(--ink); }
  .evidence-list article:last-child, .price-card:last-child { border-bottom: 0; }
  .process-list { gap: 3rem; }
  .price-card { min-height: 430px; }
  .field-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .founder-grid { grid-template-columns: 1fr; }
  .founder-grid img { min-height: 320px; max-height: 480px; border-right: 0; border-bottom: 4px solid var(--ink); object-position: center top; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .filter-bar { align-items: stretch; }
  .filter-bar button { flex: 1 1 calc(50% - .6rem); }
  .catalog-count { flex-basis: 100%; margin-left: 0; }
  .editorial-grid, .dossier-copy-grid { grid-template-columns: 1fr; }
  .ownership-strip .shell { grid-template-columns: 1fr; gap: .75rem; }
  .dossier-colophon .shell { grid-template-columns: 1fr; gap: .75rem; }
  .editorial-aside { position: static; }
  .field-card-grid, .test-grid, .mechanic-grid, .screenshot-grid, .related-dossiers { grid-template-columns: 1fr; }
  .editorial-hero h1, .dossier-hero h1 { font-size: clamp(3.6rem, 19vw, 6.8rem); }
  .dossier-frame { box-shadow: 6px 6px 0 var(--pink); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
