/* ── base.css — reset + type. Tokens in tokens.css. ─────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html, body, h1, h2, h3, h4, h5, h6, p, ul, ol, li, figure, pre, dl, dd { margin: 0; padding: 0; }
ul, ol { list-style: none; }
img, svg, video { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; color: inherit; background: none; border: 0; padding: 0; }
button { cursor: pointer; }
a { color: inherit; text-decoration: none; }

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.08); border-radius: 999px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.16); }

html { font-size: 14px; -webkit-text-size-adjust: 100%; text-rendering: optimizeLegibility; }
body {
  font-family: var(--font);
  color: var(--t0);
  background-color: var(--bg);
  background-image: var(--dots);
  background-size: var(--dots-size);
  min-height: 100vh;
  letter-spacing: -0.011em;
  font-weight: 420;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
:focus-visible { outline: 2px solid var(--signal); outline-offset: 2px; border-radius: 6px; }
::selection { background: var(--signal); color: var(--signal-ink); }
[hidden] { display: none !important; }

/* Heavy grotesque display type — big, tight, confident (the premium signal). */
h1, h2, h3, .display { font-family: var(--font-display); font-weight: 700; letter-spacing: -0.03em; line-height: 1.02; }
h1 { font-size: var(--fs-3xl); }
h2 { font-size: var(--fs-2xl); }
h3 { font-size: var(--fs-lg); letter-spacing: -0.02em; }
.mono { font-family: var(--font-mono); font-feature-settings: "tnum" 1; }
.muted { color: var(--t2); }
.faint { color: var(--t3); }
.eyebrow { font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: 0.14em; color: var(--t2); font-weight: 600; }
.signal { color: var(--signal); }
