:root {
  color-scheme: light;
  --ink: #14231f;
  --muted: #52615d;
  --paper: #f5f1e8;
  --card: #fffdf7;
  --line: #c9d3cc;
  --accent: #0d7258;
  --warm: #de8a36;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
body { margin: 0; background: var(--paper); color: var(--ink); }
main { width: min(1100px, calc(100% - 2rem)); margin: 0 auto; padding: 5rem 0; }
.eyebrow { color: var(--accent); font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
h1 { max-width: 850px; margin: .5rem 0 1rem; font-family: Georgia, serif; font-size: clamp(3rem, 8vw, 6.5rem); line-height: .95; }
.lede { max-width: 720px; color: var(--muted); font-size: 1.35rem; line-height: 1.55; }
section { margin-top: 4rem; }
h2 { font-size: 2rem; }
.notice { border-left: .45rem solid var(--warm); padding: .5rem 1.5rem; background: #fff8e9; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1rem; }
article { border: 1px solid var(--line); border-radius: 1rem; padding: 1.25rem; background: var(--card); }
article h3 { margin-top: 0; }
article p, section > p { color: var(--muted); line-height: 1.65; }
strong { color: var(--ink); }

/* Release index — the only data-bearing section, rendered by tools/render_site.py. */
.registry { border: 1px solid var(--line); border-radius: 1rem; padding: 1.25rem 1.5rem; background: var(--card); margin-top: 1rem; }
.registry h3 { margin-top: 0; }
.registry[data-registry="official"] { border-left: .45rem solid var(--accent); }
.registry[data-registry="community"] { border-left: .45rem solid var(--line); }
.registry .empty { color: var(--muted); font-style: italic; }
.registry table { width: 100%; border-collapse: collapse; margin-top: .75rem; display: block; overflow-x: auto; }
.registry th { text-align: left; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); border-bottom: 1px solid var(--line); padding: .4rem .6rem .4rem 0; }
.registry td { padding: .5rem .6rem .5rem 0; border-bottom: 1px solid var(--line); vertical-align: top; }
.registry code { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .78rem; word-break: break-all; }
.provenance { color: var(--muted); font-size: .9rem; margin-top: 1rem; }
.provenance code { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .78rem; word-break: break-all; }
