/* One stylesheet, served from the same host. No fonts, no analytics, no CDN —
   a privacy policy that loaded a tracker would be answering its own question. */
:root {
  --bg: #0b0f14;
  --surface: #131a22;
  --text: #e6edf3;
  --muted: #9aa7b2;
  --accent: #7cb7ff;
  --line: #223041;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 16px/1.65 system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}
main { max-width: 46rem; margin: 0 auto; padding: 3rem 1.25rem 5rem; }
h1 { font-size: 1.9rem; line-height: 1.2; margin: 0 0 .35rem; }
h2 { font-size: 1.15rem; margin: 2.5rem 0 .6rem; }
p, li { color: var(--text); }
.lede { color: var(--muted); font-size: 1.05rem; margin: 0 0 2rem; }
.muted { color: var(--muted); }
a { color: var(--accent); }
nav { border-bottom: 1px solid var(--line); background: var(--surface); }
nav div { max-width: 46rem; margin: 0 auto; padding: .9rem 1.25rem; display: flex; gap: 1.25rem; flex-wrap: wrap; }
nav a { text-decoration: none; }
table { border-collapse: collapse; width: 100%; margin: 1rem 0; }
th, td { text-align: left; padding: .55rem .6rem; border-bottom: 1px solid var(--line); vertical-align: top; }
th { color: var(--muted); font-weight: 600; }
code { background: var(--surface); padding: .1rem .35rem; border-radius: .25rem; font-size: .9em; }
footer { margin-top: 3.5rem; padding-top: 1.25rem; border-top: 1px solid var(--line); color: var(--muted); font-size: .9rem; }
@media (prefers-color-scheme: light) {
  :root { --bg: #ffffff; --surface: #f4f6f8; --text: #14181d; --muted: #5a6672; --accent: #0b62c4; --line: #dde3e9; }
}
