:root {
  color-scheme: light;
  --ink: #2b251d;
  --muted: #756d5f;
  --paper: #fbf8f1;
  --panel: #fffdf8;
  --line: #ded3bf;
  --sage: #2f6f55;
  --clay: #a9714b;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  background: radial-gradient(circle at 50% 20%, #ffffff 0, var(--paper) 42%, #eee3d2 100%);
  color: var(--ink);
}

a {
  color: var(--sage);
  font-weight: 800;
}

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
}

.hero,
.document {
  width: min(860px, 100%);
}

.hero {
  text-align: center;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--clay);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 8vw, 92px);
  line-height: 1.02;
  letter-spacing: 0;
}

.lede {
  width: min(680px, 100%);
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.5;
  font-weight: 650;
}

.actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 34px;
}

.actions a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 8px;
  background: var(--sage);
  color: white;
  text-decoration: none;
}

.actions a + a {
  background: var(--panel);
  color: var(--ink);
  border: 1px solid var(--line);
}

.document {
  margin: 0 auto;
  padding: 64px 24px 96px;
}

.document h1 {
  font-size: clamp(42px, 7vw, 76px);
}

.updated {
  margin: 12px 0 42px;
  color: var(--muted);
  font-weight: 700;
}

section {
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

h2 {
  margin: 0 0 10px;
  font-size: 24px;
}

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

ul {
  padding-left: 24px;
}
