/* One accent on a dark ground, depth from hairlines rather than shadows, a 4px rhythm.
   The page commits to the dark: the game is a lit table in an unlit room, and a light
   version of that is a different product. */
:root {
  --amber: #DA8524;
  --ground: #0B0B0D;
  --surface: #141418;
  --hairline: rgb(255 255 255 / 9%);
  --text: #F2EFEA;
  --muted: #8E8A85;
  --faint: #5F5C57;
  --step: 4px;
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--ground);
  color: var(--text);
  font: 400 17px/1.6 ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
}
.wrap { max-width: 1060px; margin: 0 auto; padding: 0 24px; }
a { color: var(--amber); }

/* header */
header { padding: calc(var(--step) * 7) 0; }
.lockup { display: flex; align-items: center; gap: 12px; }
.lockup img { width: 34px; height: 34px; display: block; }
.lockup span {
  font-size: 15px; font-weight: 800; letter-spacing: .16em;
}

/* hero */
.hero {
  display: grid; gap: calc(var(--step) * 10);
  grid-template-columns: 1fr;
  align-items: center;
  padding: calc(var(--step) * 6) 0 calc(var(--step) * 16);
}
@media (min-width: 860px) {
  .hero { grid-template-columns: 1.05fr .95fr; gap: calc(var(--step) * 14); }
}
h1 {
  font-size: clamp(38px, 7vw, 60px);
  line-height: 1.04; letter-spacing: -.022em; margin: 0 0 20px;
  font-weight: 800; text-wrap: balance;
}
h1 em { color: var(--amber); font-style: normal; }
.lede { font-size: clamp(17px, 2.2vw, 20px); color: var(--muted); margin: 0 0 28px; max-width: 34ch; }
.shot {
  width: 100%; height: auto; display: block;
  border: 1px solid var(--hairline); border-radius: 18px;
  background: #000;
}
.status {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid var(--hairline); border-radius: 999px;
  padding: 9px 16px; font-size: 14px; color: var(--muted);
}
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--amber); }

/* sections */
section { padding: calc(var(--step) * 14) 0; border-top: 1px solid var(--hairline); }
.eyebrow {
  font-size: 11px; letter-spacing: .18em; font-weight: 700;
  color: var(--faint); margin: 0 0 14px;
}
h2 {
  font-size: clamp(26px, 3.6vw, 34px); line-height: 1.15; letter-spacing: -.018em;
  margin: 0 0 16px; font-weight: 800; text-wrap: balance;
}
p { margin: 0 0 16px; color: var(--muted); max-width: 62ch; }
p strong { color: var(--text); font-weight: 600; }

.cards { display: grid; gap: 16px; grid-template-columns: 1fr; margin-top: 32px; }
@media (min-width: 720px) { .cards { grid-template-columns: repeat(3, 1fr); } }
.card {
  border: 1px solid var(--hairline); border-radius: 14px;
  background: var(--surface); padding: 22px;
}
.card h3 { margin: 0 0 8px; font-size: 17px; font-weight: 700; }
.card p { margin: 0; font-size: 15px; }

.split { display: grid; gap: calc(var(--step) * 10); grid-template-columns: 1fr; align-items: center; }
@media (min-width: 860px) { .split { grid-template-columns: .95fr 1.05fr; } }

footer {
  border-top: 1px solid var(--hairline);
  padding: calc(var(--step) * 10) 0 calc(var(--step) * 14);
  color: var(--faint); font-size: 14px;
}
footer p { color: var(--faint); font-size: 14px; }

/* ── prose pages ───────────────────────────────────────────────────────────── */
.prose { padding: calc(var(--step) * 10) 0 calc(var(--step) * 20); max-width: 68ch; }
.prose h1 { font-size: clamp(30px, 5vw, 40px); margin-bottom: 8px; }
.prose .updated { color: var(--faint); font-size: 14px; margin-bottom: 40px; }
.prose h2 {
  font-size: 20px; margin: 44px 0 12px; letter-spacing: -.01em;
}
.prose h3 { font-size: 16px; margin: 28px 0 8px; font-weight: 700; color: var(--text); }
.prose p, .prose li { color: var(--muted); font-size: 16px; }
.prose ul { padding-left: 20px; margin: 0 0 16px; }
.prose li { margin-bottom: 8px; }
.prose li strong, .prose p strong { color: var(--text); font-weight: 600; }
.back { display: inline-block; margin-top: 40px; font-size: 15px; }
.links { display: flex; flex-wrap: wrap; gap: 6px 20px; margin-top: 10px; }
.links a { color: var(--muted); text-decoration: none; }
.links a:hover { color: var(--amber); }
