:root {
  --bg: #fbfaf7; --fg: #1d1d1b; --muted: #5d5b55; --rule: #dedbd2;
  --accent: #8a3b12; --panel: #f2efe7;
  --serif: Charter, "Bitstream Charter", "Sitka Text", Cambria, Georgia, serif;
  --sans: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}
@media (prefers-color-scheme: dark) {
  :root { --bg: #171715; --fg: #e9e6de; --muted: #a8a49a; --rule: #34332f;
          --accent: #e59a6c; --panel: #21201d; }
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body { margin: 0; background: var(--bg); color: var(--fg);
       font: 1.125rem/1.6 var(--serif); }
main, header.site, footer.site { max-width: 42rem; margin: 0 auto; padding: 0 1rem; }
header.site { padding-top: 2rem; font-family: var(--sans); font-size: .95rem; }
header.site a { color: var(--fg); text-decoration: none; font-weight: 600; }
footer.site { padding: 3rem 1rem 2rem; color: var(--muted); font: .85rem/1.5 var(--sans); }
h1 { font-size: clamp(1.7rem, 4.5vw, 2.3rem); line-height: 1.2; margin: 2rem 0 .5rem; }
h2 { font-size: 1.3rem; margin: 2.2rem 0 .5rem; }
.dek { color: var(--muted); font-size: 1.2rem; margin-top: 0; }
.meta { font: .85rem/1.4 var(--sans); color: var(--muted); }
a { color: var(--accent); }
.lede-figure { font: 700 clamp(2.4rem, 9vw, 3.6rem)/1 var(--sans); margin: 1.5rem 0 .25rem;
               font-variant-numeric: tabular-nums; }
.lede-caption { margin: 0 0 1.5rem; color: var(--muted); }
.note { background: var(--panel); border-left: 3px solid var(--accent);
        padding: .75rem 1rem; font-size: 1rem; }
.table-wrap { overflow-x: auto; margin: 1rem 0; }
table { border-collapse: collapse; width: 100%; font: .9rem/1.4 var(--sans);
        font-variant-numeric: tabular-nums; }
th, td { text-align: left; padding: .45rem .6rem; border-bottom: 1px solid var(--rule);
         vertical-align: top; }
th { color: var(--muted); font-weight: 600; }
td.n, th.n { text-align: right; white-space: nowrap; }
ul.findings { list-style: none; padding: 0; }
ul.findings li { border-top: 1px solid var(--rule); padding: 1rem 0; }
ul.findings a { font-weight: 700; text-decoration: none; }
ul.findings p { margin: .3rem 0 0; }
code { font-size: .9em; overflow-wrap: anywhere; }
