/* Legal pages: optimised for reading a long document, nothing else.
   No JS, no webfonts — a reviewer on a bad connection still sees the text. */
:root {
  --ink: #16181d;
  --muted: #5d636e;
  --rule: #e3e6ea;
  --bg: #ffffff;
  --accent: #0b7285;
  --flag-bg: #fff3bf;
  --flag-ink: #7a5a00;
}
@media (prefers-color-scheme: dark) {
  :root {
    --ink: #e6e8ec;
    --muted: #9aa1ad;
    --rule: #2a2e36;
    --bg: #14161a;
    --accent: #66d9e8;
    --flag-bg: #4a3b00;
    --flag-ink: #ffe066;
  }
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 17px/1.65 -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  -webkit-text-size-adjust: 100%;
}
header.site, footer.site {
  max-width: 46rem; margin: 0 auto; padding: 1.5rem 1.25rem;
}
header.site {
  display: flex; align-items: baseline; gap: 1.5rem;
  flex-wrap: wrap; border-bottom: 1px solid var(--rule);
}
.wordmark {
  font-weight: 700; letter-spacing: 0.18em; text-decoration: none;
  color: var(--ink); font-size: 1rem;
}
header.site nav { display: flex; gap: 1.1rem; }
header.site nav a { color: var(--muted); text-decoration: none; font-size: 0.9rem; }
header.site nav a:hover { color: var(--accent); }
main { max-width: 46rem; margin: 0 auto; padding: 2rem 1.25rem 4rem; }
h1 { font-size: 2rem; line-height: 1.2; margin: 0 0 1.5rem; letter-spacing: -0.01em; }
h2 { font-size: 1.3rem; margin: 2.5rem 0 0.75rem; letter-spacing: -0.005em; }
h3 { font-size: 1.05rem; margin: 1.75rem 0 0.5rem; }
p, li { color: var(--ink); }
a { color: var(--accent); }
ul { padding-left: 1.25rem; }
li { margin: 0.35rem 0; }
hr { border: 0; border-top: 1px solid var(--rule); margin: 2.5rem 0; }
blockquote {
  margin: 1.5rem 0; padding: 0.75rem 1rem;
  border-left: 3px solid var(--rule); color: var(--muted);
}
code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.9em; background: var(--rule); padding: 0.1em 0.35em; border-radius: 3px;
}
.table-wrap { overflow-x: auto; margin: 1.25rem 0; }
table { border-collapse: collapse; width: 100%; font-size: 0.95rem; }
th, td { text-align: left; padding: 0.6rem 0.75rem; border-bottom: 1px solid var(--rule); vertical-align: top; }
th { font-weight: 600; }
footer.site { border-top: 1px solid var(--rule); color: var(--muted); font-size: 0.85rem; }
footer.site p { margin: 0.25rem 0; }
.muted { color: var(--muted); }
/* Unfilled blanks. Loud on purpose — these must never reach a reviewer. */
.blank {
  background: var(--flag-bg); color: var(--flag-ink);
  padding: 0.1em 0.35em; border-radius: 3px; font-weight: 600;
}
.index-list { list-style: none; padding: 0; }
.index-list li { margin: 1.25rem 0; }
.index-list a { font-size: 1.15rem; font-weight: 600; text-decoration: none; }
.index-list p { margin: 0.2rem 0 0; color: var(--muted); font-size: 0.95rem; }
