:root {
  color-scheme: light dark;
  --ink: #1b1b1b;
  --muted: #666;
  --accent: #2a63b8;
  --accent-ink: #fff;
  --paper: #fff;
  --card: #f6f7f9;
  --line: #e3e5e8;
}
@media (prefers-color-scheme: dark) {
  :root { --ink: #ececec; --muted: #a8a8a8; --accent: #7fb0f0; --accent-ink: #0d1b2e; --paper: #141414; --card: #1d1d1d; --line: #2c2c2c; }
}
* { box-sizing: border-box; }
body { margin: 0; padding: 0 16px; background: var(--paper); color: var(--ink); font: 16px/1.55 system-ui, "Segoe UI", sans-serif; }
a { color: var(--accent); }
header.site { max-width: 880px; margin: 0 auto; padding: 22px 0 8px; display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; }
header.site .brand { font-weight: 700; font-size: 1.15rem; color: var(--ink); text-decoration: none; }
header.site nav a { color: var(--muted); text-decoration: none; margin-right: 14px; }
header.site nav a:hover { color: var(--accent); }
main { max-width: 880px; margin: 24px auto 64px; }
h1 { font-size: 2rem; margin: 0 0 4px; line-height: 1.2; }
h2 { font-size: 1.15rem; margin: 36px 0 10px; }
.sub { color: var(--muted); margin: 0 0 28px; }
.cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px; }
.card { background: var(--card); border: 1px solid var(--line); border-radius: 10px; padding: 18px; display: flex; flex-direction: column; gap: 8px; }
.card h3 { margin: 0; font-size: 1.15rem; }
.card p { margin: 0; color: var(--muted); }
.card .client { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--muted); }
.card .go { margin-top: auto; padding-top: 8px; font-weight: 600; text-decoration: none; }
.button { display: inline-block; padding: 12px 20px; background: var(--accent); color: var(--accent-ink); border-radius: 6px; text-decoration: none; font-weight: 600; }
.meta { color: var(--muted); font-size: 0.9rem; margin-top: 8px; word-break: break-all; }
.notes { margin: 24px 0; padding: 14px 16px; border-left: 3px solid var(--accent); background: var(--card); white-space: pre-wrap; }
table.releases { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
table.releases th, table.releases td { text-align: left; padding: 8px 10px 8px 0; border-bottom: 1px solid var(--line); vertical-align: top; }
table.releases th { color: var(--muted); font-weight: 600; }
table.releases td.notes-cell { white-space: pre-wrap; }
code { font-family: Consolas, "Cascadia Mono", monospace; font-size: 0.85rem; }
dl.facts { display: grid; grid-template-columns: max-content 1fr; gap: 6px 18px; margin: 0; }
dl.facts dt { color: var(--muted); }
dl.facts dd { margin: 0; }
footer.site { max-width: 880px; margin: 0 auto 32px; color: var(--muted); font-size: 0.85rem; border-top: 1px solid var(--line); padding-top: 14px; }
.crumbs { color: var(--muted); font-size: 0.9rem; margin: 0 0 6px; }
.crumbs a { color: var(--muted); text-decoration: none; }
.crumbs a:hover { color: var(--accent); }
