:root {
  color-scheme: light;
  --ink: #1d2528;
  --muted: #5d666b;
  --line: #dfe5e2;
  --paper: #fbfaf7;
  --accent: #2f7d68;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
}

.site-header,
.site-footer {
  max-width: 1080px;
  margin: 0 auto;
  padding: 22px 20px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--line);
}

.brand {
  font-weight: 850;
  text-decoration: none;
}

.disclosure,
.fine-print,
.site-footer {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.page {
  max-width: 1080px;
  margin: 0 auto;
  padding: 42px 20px 64px;
}

.hero {
  max-width: 760px;
}

.eyebrow {
  color: var(--accent);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
  margin: 0 0 12px;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(40px, 6vw, 74px);
  line-height: 0.98;
  letter-spacing: 0;
  margin: 0 0 18px;
}

h2 {
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: 0;
  margin: 0 0 14px;
}

p,
li {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.button {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  margin-top: 14px;
  padding: 0 18px;
  border-radius: 8px;
  background: var(--accent);
  color: white;
  font-weight: 800;
  text-decoration: none;
}

.notes,
.links,
.grid {
  margin-top: 52px;
}

.notes {
  max-width: 760px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.notes ul {
  padding-left: 22px;
}

.related,
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.related a,
.card {
  min-height: 112px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  text-decoration: none;
}

.card {
  display: grid;
  gap: 8px;
}

.card span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.card strong {
  font-size: 20px;
  line-height: 1.15;
}

.card small {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

@media (max-width: 720px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

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