:root {
  color-scheme: light dark;
  --bg: #f6f1e8;
  --text: #1f2421;
  --muted: #5d665f;
  --accent: #2f6f5e;
  --surface: rgba(255, 255, 255, 0.7);
  --border: rgba(31, 36, 33, 0.12);
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #161917;
    --text: #f4efe5;
    --muted: #c2bdae;
    --accent: #91d0b9;
    --surface: rgba(255, 255, 255, 0.07);
    --border: rgba(255, 255, 255, 0.12);
  }
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(145, 208, 185, 0.25), transparent 34rem),
    var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.7;
}

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

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

.document {
  padding-bottom: 96px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
}

h1 {
  margin: 0;
  font-size: clamp(42px, 8vw, 76px);
  line-height: 1.05;
}

h2 {
  margin: 34px 0 10px;
  font-size: 24px;
  line-height: 1.25;
}

h3 {
  margin: 24px 0 8px;
  font-size: 18px;
}

p,
li {
  font-size: 17px;
}

.lead {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 20px;
}

.updated {
  margin: 16px 0 36px;
  color: var(--muted);
}

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

.links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  color: var(--text);
  text-decoration: none;
  font-weight: 650;
}

section {
  padding-top: 2px;
}

ul {
  padding-left: 1.4rem;
}
