/* Self-hosted only: the Content-Security-Policy on this distribution is
   default-src 'self', so a webfont or stylesheet from a third party would be
   blocked rather than degrade. System fonts need no request at all. */
:root {
  color-scheme: light dark;
  --ink: #10211c;
  --muted: #4a5c56;
  --bg: #fbfaf7;
  --accent: #0f7a5a;
}
@media (prefers-color-scheme: dark) {
  :root {
    --ink: #eef2f0;
    --muted: #9db0a9;
    --bg: #0d1512;
    --accent: #4fd1a5;
  }
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem 1.5rem;
  background: var(--bg);
  color: var(--ink);
  font: 16px/1.65 ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif;
}
main {
  max-width: 34rem;
}
.eyebrow {
  margin: 0 0 1.25rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
h1 {
  margin: 0 0 1.25rem;
  font-size: clamp(1.9rem, 5vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
p {
  margin: 0 0 1rem;
  color: var(--muted);
}
a {
  color: var(--accent);
  font-weight: 600;
}
a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
