/* Plain, static and fast. A reviewer taps these links from a paywall on a
   phone, so they load instantly and read at arm's length. No JS, no fonts to
   fetch, no layout that can fail. */
:root {
  color-scheme: dark light;
  --ground: #141418;
  --panel: #1b1b21;
  --rule: #2e2e37;
  --ink: #e9e9ec;
  --ink-dim: #a9aab4;
  --accent: #9394b4;
}

@media (prefers-color-scheme: light) {
  :root {
    --ground: #ecedf1;
    --panel: #ffffff;
    --rule: #c9cad4;
    --ink: #16161c;
    --ink-dim: #4c4d59;
    --accent: #55567a;
  }
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 2rem 1.25rem 5rem;
  background: var(--ground);
  color: var(--ink);
  font: 16px/1.65 ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto,
    sans-serif;
  -webkit-text-size-adjust: 100%;
}

main {
  max-width: 42rem;
  margin: 0 auto;
}

.eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.4rem;
}

h1 {
  font-size: 1.9rem;
  line-height: 1.2;
  margin: 0 0 0.35rem;
  text-wrap: balance;
}

.updated {
  color: var(--ink-dim);
  font-size: 0.85rem;
  margin: 0 0 2rem;
}

h2 {
  font-size: 1.15rem;
  margin: 2rem 0 0.6rem;
  padding-top: 1.25rem;
  border-top: 2px solid var(--rule);
  text-wrap: balance;
}

p,
li {
  color: var(--ink-dim);
}

strong {
  color: var(--ink);
}

ul {
  padding-left: 1.15rem;
}

li {
  margin-bottom: 0.4rem;
}

a {
  color: var(--accent);
  text-underline-offset: 0.2em;
}

.callout {
  background: var(--panel);
  border: 2px solid var(--rule);
  border-left: 4px solid var(--accent);
  padding: 1rem 1.15rem;
  margin: 1.25rem 0;
}

.callout p:last-child {
  margin-bottom: 0;
}

footer {
  margin-top: 3rem;
  padding-top: 1.25rem;
  border-top: 2px solid var(--rule);
  font-size: 0.85rem;
  color: var(--ink-dim);
}

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.9em;
}
