:root { --fg: #222; --bg: #fff; --muted: #666; --rule: #ddd; --quote-bg: #f6f5f2; --link: #1a4a8a; }
@media (prefers-color-scheme: dark) {
  :root { --fg: #ddd; --bg: #191919; --muted: #999; --rule: #3a3a3a; --quote-bg: #232220; --link: #8ab4e8; }
}
* { box-sizing: border-box; }
body { font-family: Georgia, serif; max-width: 46rem; margin: 0 auto; padding: 0 1rem 4rem;
       line-height: 1.6; color: var(--fg); background: var(--bg); }
a { color: var(--link); }
header { border-bottom: 1px solid var(--rule); padding: 1rem 0; margin-bottom: 2rem;
         display: flex; flex-wrap: wrap; gap: 0.4rem 1rem; align-items: baseline; }
header .site { font-weight: bold; text-decoration: none; color: var(--fg); font-size: 1.1rem; }
header nav { display: flex; flex-wrap: wrap; gap: 0.2rem 0.8rem; font-size: 0.85rem; }
header nav a { text-decoration: none; }
h1 { font-size: 1.6rem; line-height: 1.3; }
h2 { font-size: 1.25rem; margin-top: 2.2rem; border-bottom: 1px solid var(--rule); padding-bottom: 0.2rem; }
blockquote { margin: 0.8rem 0; padding: 0.6rem 1rem; background: var(--quote-bg);
             border-left: 3px solid var(--rule); font-size: 0.95rem; }
blockquote p { margin: 0.3rem 0; }
code { font-family: Consolas, monospace; font-size: 0.9em; }
hr { border: none; border-top: 1px solid var(--rule); margin: 2rem 0; }
.tablewrap { overflow-x: auto; margin: 1rem 0; }
table { border-collapse: collapse; font-size: 0.85rem; min-width: 100%; }
th, td { border: 1px solid var(--rule); padding: 0.5rem 0.6rem; vertical-align: top; text-align: left; }
.comparison table { min-width: 70rem; }
.comparison td { min-width: 16rem; }
.comparison td:first-child, .comparison th:first-child { min-width: 8rem; }
footer { margin-top: 3rem; border-top: 1px solid var(--rule); padding-top: 1rem;
         font-size: 0.85rem; color: var(--muted); }
.statelist { list-style: none; padding: 0; }
.statelist li { margin: 0.9rem 0; }
.statelist .hook { color: var(--muted); font-size: 0.9rem; }
