:root {
  --ink: #1a1a1a;
  --muted: #666;
  --line: #ddd;
  --accent: #14451d;
  --bg-soft: #f7f6f3;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font: 16px/1.5 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: #fff;
}
.site-header {
  display: flex; align-items: baseline; gap: 1.5rem;
  padding: 0.9rem 1.25rem; border-bottom: 2px solid var(--ink);
}
.site-name { font-weight: 700; font-size: 1.1rem; color: var(--ink); text-decoration: none; }
.site-header nav a { color: var(--accent); margin-right: 1rem; }
main { max-width: 1080px; margin: 0 auto; padding: 1.25rem; }
h1 { font-size: 1.6rem; margin: 0.5rem 0 0.75rem; }
h2 { font-size: 1.15rem; margin: 1.75rem 0 0.5rem; border-bottom: 1px solid var(--line); padding-bottom: 0.25rem; }
h3 { font-size: 1rem; margin: 1.25rem 0 0.4rem; }
.lede { color: var(--muted); max-width: 60ch; }
.filing-id { color: var(--muted); margin-top: -0.4rem; }
table { border-collapse: collapse; width: 100%; margin: 0.5rem 0; }
th, td { text-align: left; padding: 0.45rem 0.6rem; border-bottom: 1px solid var(--line); vertical-align: top; }
thead th { border-bottom: 2px solid var(--ink); font-size: 0.85rem; }
tbody tr:hover { background: var(--bg-soft); }
th[scope], td:first-child { }
.num { font-variant-numeric: tabular-nums; white-space: nowrap; }
.cite { color: var(--muted); font-size: 0.78rem; white-space: nowrap; }
.missing { color: var(--muted); font-style: italic; }
.sep { color: var(--muted); }
.big-fig { font-size: 1.2rem; }
.num-cell { white-space: nowrap; }
.hl-label, .th-note { color: var(--muted); font-size: 0.78rem; font-weight: 400; }
.period, .caveat { color: var(--muted); font-size: 0.82rem; }
.caveat { font-style: italic; }
tr.nulled td { color: var(--muted); }
tr.nulled td:first-child { text-decoration: line-through; }
.note { color: var(--muted); font-size: 0.85rem; }
.fdd-quote {
  margin: 1rem 0; padding: 0.75rem 1rem;
  border-left: 3px solid var(--accent); background: var(--bg-soft);
}
.fdd-quote .cite { display: block; margin-top: 0.4rem; }
.controls { display: flex; gap: 0.75rem; align-items: center; margin: 1rem 0; flex-wrap: wrap; }
.controls input[type="search"] { flex: 1 1 260px; padding: 0.5rem 0.6rem; font-size: 1rem; border: 1px solid var(--line); border-radius: 4px; }
.controls select { padding: 0.5rem; font-size: 1rem; border: 1px solid var(--line); border-radius: 4px; }
.count { color: var(--muted); font-size: 0.9rem; }
table.sortable thead th { cursor: pointer; user-select: none; }
table.sortable thead th.sorted-asc::after { content: " \25B2"; }
table.sortable thead th.sorted-desc::after { content: " \25BC"; }
.site-footer { max-width: 1080px; margin: 2rem auto 0; padding: 1.25rem; border-top: 1px solid var(--line); }
.disclaimer { color: var(--muted); font-size: 0.82rem; }
.site-meta { color: var(--muted); font-size: 0.75rem; }
@media (max-width: 720px) {
  main { padding: 0.75rem; }
  table { font-size: 0.85rem; }
  th, td { padding: 0.35rem 0.4rem; }
}
