/* Deliberately plain and readable. A legal page's job is to be read and cited, so the
   priorities are line length, contrast and stable anchors — not decoration. Works in both
   colour schemes because a reviewer may open it in either. */
:root {
  --ink: #16161a;
  --muted: #5c5c66;
  --rule: #e3e3e8;
  --bg: #ffffff;
  --accent: #b4542f;
}
@media (prefers-color-scheme: dark) {
  :root {
    --ink: #e8e6e1;
    --muted: #a0a0aa;
    --rule: #2a2a32;
    --bg: #131317;
    --accent: #d97a52;
  }
}
* { box-sizing: border-box; }
body {
  margin: 0;
  padding: 3rem 1.25rem 6rem;
  background: var(--bg);
  color: var(--ink);
  font: 16px/1.65 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
main { max-width: 46rem; margin: 0 auto; }
h1 { font-size: 2rem; line-height: 1.2; margin: 0 0 .35rem; text-wrap: balance; }
h2 { font-size: 1.15rem; margin: 2.5rem 0 .6rem; padding-top: 1.4rem; border-top: 1px solid var(--rule); }
h3 { font-size: 1rem; margin: 1.6rem 0 .4rem; }
.sub { color: var(--muted); margin: 0 0 2rem; }
a { color: var(--accent); }
table { border-collapse: collapse; width: 100%; margin: 1rem 0; font-size: .94rem; }
th, td { text-align: left; padding: .55rem .7rem; border-bottom: 1px solid var(--rule); vertical-align: top; }
th { font-weight: 600; }
code { background: color-mix(in srgb, var(--ink) 8%, transparent); padding: .1em .35em; border-radius: 3px; font-size: .9em; }
footer { margin-top: 4rem; padding-top: 1.2rem; border-top: 1px solid var(--rule); color: var(--muted); font-size: .9rem; }
.tag { display: inline-block; font-size: .78rem; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); }
/* Wide content must scroll inside itself rather than pushing the page sideways. */
.scroll { overflow-x: auto; }
