:root {
  color-scheme: light;
  --ink: #17201b;
  --muted: #5b655f;
  --paper: #f5f3eb;
  --surface: #fffef9;
  --line: #cfd4cc;
  --accent: #245f45;
  --accent-soft: #dceadf;
  --display: ui-serif, Georgia, Cambria, "Times New Roman", serif;
  --body: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { background: var(--paper); color: var(--ink); }

body {
  margin: 0;
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
}

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

.site-header,
main,
footer {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: block;
  flex: 0 0 auto;
}

nav { display: flex; flex-wrap: wrap; gap: 24px; }
nav a { color: var(--muted); font-size: 14px; font-weight: 650; text-decoration: none; }
nav a[aria-current="page"], nav a:hover { color: var(--ink); }

.hero { padding: 110px 0 84px; max-width: 930px; }

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

h1, h2 { font-family: var(--display); font-weight: 500; line-height: 1.06; }
h1 { margin: 0; max-width: 880px; font-size: clamp(3rem, 8vw, 6.9rem); letter-spacing: -0.045em; }
h2 { margin: 0 0 16px; font-size: clamp(1.7rem, 3vw, 2.5rem); letter-spacing: -0.025em; }

.lede {
  max-width: 720px;
  margin: 34px 0 28px;
  color: var(--muted);
  font-size: clamp(1.12rem, 2vw, 1.4rem);
}

.status { display: inline-flex; align-items: center; gap: 10px; color: var(--muted); font-size: 14px; }
.status-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 5px var(--accent-soft); }

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  background: var(--surface);
}

.grid article { min-height: 280px; padding: 34px; }
.grid article + article { border-left: 1px solid var(--line); }
.grid article p:last-child { color: var(--muted); }
.number { margin: 0 0 62px; color: var(--accent); font: 700 12px/1 var(--body); letter-spacing: 0.12em; }

.details,
.policy-callout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(40px, 9vw, 120px);
  padding: 100px 0;
  border-bottom: 1px solid var(--line);
}

.prose p:first-child { margin-top: 0; }
.prose { color: var(--muted); }
.policy-callout { align-items: center; }
.actions { display: flex; align-items: center; flex-wrap: wrap; gap: 28px; }
.button { display: inline-block; padding: 13px 19px; background: var(--ink); color: var(--surface); border-radius: 3px; font-size: 14px; font-weight: 700; text-decoration: none; }
.button:hover { background: var(--accent); }
.text-link { font-size: 14px; font-weight: 700; }

.document { max-width: 900px; }
.document-header { padding: 90px 0 60px; border-bottom: 1px solid var(--line); }
.document-header h1 { font-size: clamp(3.2rem, 8vw, 6rem); }
.updated { margin: 20px 0 0; color: var(--muted); font-size: 14px; }
.document-body { max-width: 720px; padding: 40px 0 100px; }
.document-body section { padding: 28px 0; border-bottom: 1px solid var(--line); }
.document-body h2 { font-size: 1.7rem; }
.document-body p, .document-body li { color: var(--muted); }
.document-body li + li { margin-top: 8px; }

footer {
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: var(--muted);
  font-size: 13px;
}

footer a { font-weight: 700; }

@media (max-width: 760px) {
  .site-header { align-items: flex-start; flex-direction: column; padding: 22px 0; }
  nav { gap: 18px; }
  .hero { padding: 72px 0 60px; }
  .grid { grid-template-columns: 1fr; }
  .grid article { min-height: 0; }
  .grid article + article { border-left: 0; border-top: 1px solid var(--line); }
  .number { margin-bottom: 30px; }
  .details, .policy-callout { grid-template-columns: 1fr; padding: 72px 0; }
  footer { align-items: flex-start; flex-direction: column; justify-content: center; }
}

@media (prefers-reduced-motion: no-preference) {
  a, .button { transition: color 150ms ease, background-color 150ms ease; }
}
