:root {
  --ground: #ffffff;
  --surface: #f4f7f5;
  --line: rgba(11, 31, 23, 0.12);
  --text: #0b1f17;
  --text-2: rgba(11, 31, 23, 0.66);
  --accent: #0fa968;
}
@media (prefers-color-scheme: dark) {
  :root {
    --ground: #05130d;
    --surface: #0b2118;
    --line: rgba(230, 251, 240, 0.14);
    --text: #e6fbf0;
    --text-2: rgba(230, 251, 240, 0.68);
    --accent: #35e28c;
  }
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--ground);
  color: var(--text);
  font: 16px/1.65 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
}
.wrap { max-width: 46rem; margin: 0 auto; padding: 3rem 1.25rem 6rem; }
header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 2.5rem; }
.mark { width: 40px; height: 40px; border-radius: 9px; flex: none; }
header b { font-size: 1rem; font-weight: 600; }
header span { display: block; font-size: 0.8rem; color: var(--text-2); font-weight: 400; }
h1 { font-size: 1.9rem; line-height: 1.15; letter-spacing: -0.02em; margin: 0 0 0.4rem; }
.updated { color: var(--text-2); font-size: 0.85rem; margin: 0 0 2.5rem; }
h2 { font-size: 1.1rem; margin: 2.5rem 0 0.6rem; letter-spacing: -0.01em; }
p, li { color: var(--text-2); }
strong { color: var(--text); font-weight: 600; }
ul { padding-left: 1.1rem; }
li { margin-bottom: 0.35rem; }
a { color: var(--accent); }
.callout {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.1rem 1.25rem;
  margin: 1.5rem 0;
}
.callout p:last-child { margin-bottom: 0; }
.callout p:first-child { margin-top: 0; }
footer {
  margin-top: 4rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--text-2);
}
nav { display: flex; gap: 1.25rem; font-size: 0.9rem; }

/* Cookie and scope names read as identifiers, not prose - the website privacy policy has
   to name them exactly, so they are set in the mono face like the code they are. */
.mono {
  font-family: 'IBM Plex Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.92em;
}
