:root {
  color-scheme: light dark;
  --paper: #f4f3ee;
  --ink: #22211d;
  --muted: #625f56;
  --line: #d6d4cc;
  --code: #eceae2;
  --accent: #86503c;
  font: 16px/1.55 system-ui, -apple-system, "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  color: var(--ink);
  background: var(--paper);
}
* { box-sizing: border-box; }
body { min-width: 0; margin: 0; background: var(--paper); }
.shell { width: min(calc(100% - 2.5rem), 1120px); margin-inline: auto; }
.site-header { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 4.25rem; border-bottom: 1px solid var(--line); }
.wordmark { color: var(--ink); font-size: .84rem; font-weight: 750; letter-spacing: .12em; text-decoration: none; }
.site-header nav { display: flex; flex-wrap: wrap; gap: clamp(.8rem, 3vw, 2rem); font-size: .82rem; }
a { color: inherit; text-underline-offset: .2em; }
a:focus-visible { outline: 2px solid currentColor; outline-offset: 4px; }
.hero { display: grid; align-items: center; gap: clamp(2rem, 5vw, 5rem); padding-block: clamp(3.5rem, 9vw, 7.5rem) clamp(3rem, 7vw, 6rem); }
.eyebrow { margin: 0 0 .8rem; color: var(--muted); font-size: .68rem; font-weight: 700; letter-spacing: .13em; }
h1, h2, p { margin-top: 0; }
h1 { max-width: 9ch; margin-bottom: 1.25rem; font-size: clamp(2.7rem, 7.8vw, 5.8rem); font-weight: 470; letter-spacing: -.065em; line-height: .99; }
.lede { max-width: 33rem; margin-bottom: 1.5rem; font-size: clamp(1.05rem, 2.1vw, 1.3rem); line-height: 1.45; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: baseline; gap: .8rem 1.4rem; }
.text-link { font-weight: 650; }
.repo-state, .quiet, .caption { color: var(--muted); }
.repo-state { margin: 1rem 0 0; font-size: .8rem; }
.hero-product { min-width: 0; border-top: 1px solid var(--line); padding-top: .8rem; }
.product-caption { display: flex; justify-content: space-between; align-items: baseline; gap: .75rem; }
.product-caption p:last-child { margin-bottom: .2rem; font-size: .74rem; }
.hero-product visitor-map { display: block; width: 100%; --vm-land: var(--paper); --vm-border: var(--ink); --vm-visited: var(--ink); --vm-visited-border: var(--paper); --vm-credit-color: var(--muted); --vm-credit-opacity: 1; }
.live-count { display: flex; flex-wrap: wrap; align-items: baseline; gap: .2rem .65rem; margin-top: .5rem; }
.live-count visitor-count { color: var(--ink); font-size: 1rem; font-weight: 680; }
.live-count span { color: var(--muted); font-size: .76rem; }
section { border-top: 1px solid var(--line); padding-block: clamp(2.6rem, 6.5vw, 5.4rem); }
.section-heading { display: grid; gap: .5rem 2rem; margin-bottom: 1.6rem; }
h2 { max-width: 18ch; margin-bottom: .5rem; font-size: clamp(1.7rem, 4vw, 2.65rem); font-weight: 480; letter-spacing: -.045em; line-height: 1.12; }
.section-heading > p { max-width: 33rem; margin-bottom: .4rem; }
visitor-passport { display: block; width: 100%; max-width: 100%; --vp-stamp-width: 10rem; --vp-text: var(--ink); --vp-muted: var(--muted); --vp-background: var(--paper); --vp-border: var(--line); --vp-accent: var(--accent); }
.caption { margin: .75rem 0 0; font-size: .78rem; }
.quick-start > p:not(.eyebrow), .live-data > p, .self-host > p { max-width: 47rem; }
pre { max-width: 100%; margin: 1.25rem 0 .5rem; padding: 1rem; overflow-wrap: anywhere; white-space: pre-wrap; border: 1px solid var(--line); background: var(--code); color: var(--ink); font: .86rem/1.6 ui-monospace, "SFMono-Regular", Consolas, monospace; }
code { font: inherit; }
.data-flow { display: flex; flex-wrap: wrap; gap: .25rem .55rem; align-items: baseline; padding-block: .5rem; color: var(--muted); font-size: .9rem; }
.privacy ul { display: grid; gap: .65rem; max-width: 54rem; padding-left: 1.2rem; }
.style-example visitor-map { display: block; max-width: 38rem; --vm-land: var(--paper); --vm-border: var(--ink); --vm-visited: #a34f35; --vm-visited-border: var(--paper); }
.style-example .quiet { max-width: 28rem; }
.self-host { padding-bottom: clamp(3rem, 7vw, 6rem); }
.site-footer { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: baseline; gap: .75rem 1.5rem; padding-block: 1.2rem 2rem; border-top: 1px solid var(--line); color: var(--muted); font-size: .75rem; }
.site-footer p { margin: 0; }
@media (min-width: 760px) {
  .hero { grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr); }
  .section-heading { grid-template-columns: minmax(0, 1fr) minmax(15rem, .8fr); align-items: end; }
}
@media (max-width: 420px) {
  .shell { width: calc(100% - 1.75rem); }
  .site-header { min-height: 3.75rem; }
  .site-header nav { gap: .8rem; }
  .product-caption { align-items: start; flex-direction: column; gap: 0; }
  .product-caption p:last-child { margin-bottom: .35rem; }
}
@media (prefers-color-scheme: dark) {
  :root { --paper: #171715; --ink: #f1f0e9; --muted: #b8b4a9; --line: #3b3a35; --code: #22221e; --accent: #d2a28b; }
}
@media (forced-colors: active) {
  .site-header, section, .hero-product, .site-footer, pre { border-color: CanvasText; }
  .quiet, .caption, .repo-state, .eyebrow, .data-flow { color: CanvasText; }
}