:root {
  color-scheme: light dark;
  --bg: #fbfaf7;
  --fg: #1c1b19;
  --muted: #5d5a54;
  --rule: #e2ded4;
  --card: #ffffff;
  --accent: #2f6f5e;
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #16181a;
    --fg: #e9e7e2;
    --muted: #a5a29a;
    --rule: #2c2f33;
    --card: #1d2023;
    --accent: #7fc9b1;
  }
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font: 17px/1.65 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-text-size-adjust: 100%;
}
main { max-width: 46rem; margin: 0 auto; padding: 3rem 1.25rem 4rem; }
nav { max-width: 46rem; margin: 0 auto; padding: 1.25rem 1.25rem 0; font-size: .9rem; }
nav a { color: var(--muted); text-decoration: none; margin-right: 1rem; }
nav a:hover { color: var(--accent); text-decoration: underline; }
header { border-bottom: 1px solid var(--rule); padding-bottom: 1.5rem; margin-bottom: 2rem; }
h1 { font-size: 2rem; line-height: 1.2; margin: 0 0 .5rem; letter-spacing: -.02em; }
h2 { font-size: 1.2rem; margin: 2.5rem 0 .75rem; letter-spacing: -.01em; }
h3 { font-size: 1rem; margin: 1.5rem 0 .5rem; }
ul { padding-left: 1.25rem; }
li { margin: .35rem 0; }
.meta { color: var(--muted); font-size: .9rem; margin: 0; }
.lede, .card {
  background: var(--card);
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  margin: 0 0 2rem;
}
.lede p:first-child, .card p:first-child { margin-top: .25rem; }
.lede p:last-child, .card p:last-child { margin-bottom: .25rem; }
a { color: var(--accent); }
table { width: 100%; border-collapse: collapse; margin: 1rem 0; font-size: .95rem; }
th, td { text-align: left; vertical-align: top; padding: .6rem .5rem; border-bottom: 1px solid var(--rule); }
th { color: var(--muted); font-weight: 600; }
.table-wrap { overflow-x: auto; }
footer { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--rule); color: var(--muted); font-size: .9rem; }
code { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .9em; }
.features { list-style: none; padding: 0; }
.features li { padding: .6rem 0; border-bottom: 1px solid var(--rule); }
.features li:last-child { border-bottom: 0; }
