/* One stylesheet, two documents. No fonts, no scripts, no third-party request
   of any kind — a policy page that phones home is a self-own, and this one
   cannot: there is nothing here to load. */
:root {
  --ink: #1c1917;
  --ink-soft: #57534e;
  --bg: #fcfcfc;
  --surface: #ffffff;
  --border: #e7e5e4;
  --link: #3f6212;
}
@media (prefers-color-scheme: dark) {
  :root {
    --ink: #f5f5f4;
    --ink-soft: #a8a29e;
    --bg: #1c1917;
    --surface: #262322;
    --border: #44403c;
    --link: #a3e635;
  }
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  padding: 0 20px 80px;
  background: var(--bg);
  color: var(--ink);
  font: 17px/1.6 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
main { max-width: 46rem; margin: 0 auto; }
header { padding: 48px 0 8px; }
header .eyebrow {
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 8px;
}
h1 { font-size: 2rem; line-height: 1.2; margin: 0 0 8px; }
h2 { font-size: 1.3rem; line-height: 1.3; margin: 44px 0 12px; }
h3 { font-size: 1.05rem; margin: 28px 0 8px; }
p, li { color: var(--ink); }
.updated { color: var(--ink-soft); margin: 0 0 32px; }
.lead { font-size: 1.05rem; }
a { color: var(--link); }
ul { padding-left: 1.2em; }
li { margin-bottom: 8px; }
code { font-size: 0.95em; word-break: break-word; }
hr { border: 0; border-top: 1px solid var(--border); margin: 48px 0; }
/* Wide content scrolls inside itself; the page never scrolls sideways. */
.scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 16px 0; }
table { border-collapse: collapse; width: 100%; min-width: 34rem; font-size: 0.95rem; }
th, td { text-align: left; padding: 10px 14px; border-bottom: 1px solid var(--border); vertical-align: top; }
th { background: var(--surface); font-weight: 600; }
.note {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 20px;
  margin: 24px 0;
}
footer {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  color: var(--ink-soft);
  font-size: 0.92rem;
}
footer a { color: var(--link); }
