html {
  color-scheme: dark;
}

html,
body {
  background: var(--bg);
  background-image: radial-gradient(ellipse 120% 80% at 50% -20%, rgba(61, 125, 217, 0.12), transparent 55%);
  color: var(--ink);
  font-family: "Inter", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover,
a:focus-visible {
  color: var(--accent);
}

p {
  max-width: var(--measure);
}

h1,
h2,
h3 {
  font-family: "Manrope", "Inter", sans-serif;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--heading);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.8rem);
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.6rem);
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}

p,
li {
  color: var(--ink-muted);
  font-size: 1.02rem;
}

strong {
  color: var(--heading);
  font-weight: 600;
}

:focus-visible {
  outline: 3px solid rgba(107, 163, 245, 0.65);
  outline-offset: 2px;
  border-radius: 4px;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: var(--space-2);
}
