@font-face {
  font-family: "CursorGothic";
  src: url("/fonts/CursorGothic-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
:root {
  --bg: #fff;
  --surface: rgba(0,0,0,.04);
  --ink: #000;
  --ink-soft: rgba(0,0,0,.6);
  --line: rgba(0,0,0,.1);
  --line-strong: rgba(0,0,0,.2);
  --font-sans: "CursorGothic", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "SF Mono", ui-monospace, Consolas, monospace;
}
* { box-sizing: border-box; }
html, body { margin: 0; background: var(--bg); color: var(--ink); font-family: var(--font-sans); }
a { color: inherit; text-decoration: none; }
.shell { width: min(1100px, calc(100% - 48px)); margin: 0 auto; }
.top { display: flex; justify-content: space-between; align-items: center; min-height: 64px; }
.top::after { content: ""; display: block; }
.mark { font-weight: 600; }
nav a { margin-left: 18px; color: color-mix(in srgb, var(--ink) 78%, transparent); font-size: 14px; }
nav a:hover { color: var(--ink); }
.eyebrow { margin: 72px 0 0; color: var(--ink-soft); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
h1 { margin: 12px 0 0; font-size: clamp(28px, 3.5vw, 36px); font-weight: 400; letter-spacing: -.03em; line-height: 1.2; }
.lede { max-width: 620px; margin: 16px 0 0; color: var(--ink-soft); font-size: 16px; line-height: 1.5; }
.release { max-width: 820px; margin: 40px 0 0; border: 1px solid var(--line); border-radius: 8px; padding: clamp(25px,5vw,54px); background: var(--surface); }
.release-heading span { color: var(--ink-soft); font-size: 12px; }
.release-heading h2 { margin: 6px 0 4px; font-size: 28px; font-weight: 500; }
.release-heading p { margin: 0 0 18px; color: var(--ink-soft); }
.warn { background: #fff6d8; border: 1px solid #e6d48a; padding: 10px 12px; margin: 0 0 18px; }
.asset, .missing { display: flex; min-height: 72px; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); padding: 12px 3px; }
.asset:hover { opacity: .8; }
.asset b, .missing b { display: block; font-size: 14px; }
.asset small, .missing small { display: block; margin-top: 3px; color: var(--ink-soft); font-family: var(--font-mono); font-size: 11px; }
.asset i { color: var(--ink-soft); font-size: 11px; font-style: normal; }
.missing { opacity: .5; }
.fine { display: block; margin-top: 20px; color: var(--ink-soft); font-size: 12px; line-height: 1.6; }
.reqs { display: grid; grid-template-columns: repeat(3,1fr); margin: 72px auto 120px; }
.reqs article { min-height: 220px; border-top: 1px solid var(--line-strong); padding: 18px 24px 0 0; }
.reqs article + article { border-left: 1px solid var(--line); padding-left: 24px; }
.reqs span { color: var(--ink-soft); font-family: var(--font-mono); font-size: 11px; }
.reqs h2 { margin: 48px 0 12px; font-size: 24px; font-weight: 500; letter-spacing: -.03em; }
.reqs p { max-width: 300px; margin: 0; color: var(--ink-soft); }
ol { padding-left: 20px; }
@media (max-width: 720px) {
  .reqs { grid-template-columns: 1fr; }
  .reqs article + article { border-left: 0; padding-left: 0; }
}
