:root {
  color-scheme: light dark;
  --bg: #071026;
  --fg: #f7f8ff;
  --muted: #c3cbe3;
  --line: #344164;
  --accent: #8eeeff;
  --accent-secondary: #ff7bd5;
}

@media (prefers-color-scheme: light) {
  :root {
    --bg: #f5f7ff;
    --fg: #10162b;
    --muted: #55617d;
    --line: #cfd6e8;
    --accent: #006b80;
    --accent-secondary: #a62678;
  }
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.58;
}

.page {
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(2.4rem, 7vw, 5rem);
  line-height: 1;
}

h2 {
  margin: 40px 0 10px;
  font-size: 1.15rem;
}

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

.lead {
  max-width: 650px;
  margin-top: 24px;
  font-size: 1.2rem;
}

.links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

a {
  color: var(--accent-secondary);
  font-weight: 650;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.links a {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 14px;
  text-decoration: none;
}

.prose {
  max-width: 760px;
}
