:root {
  color-scheme: light;
  --ink: #15161a;
  --muted: #626873;
  --line: #d9dde5;
  --paper: #fbfaf7;
  --panel: #ffffff;
  --accent: #315c72;
  --accent-dark: #203f50;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(49, 92, 114, 0.09), transparent 360px),
    var(--paper);
}

a {
  color: var(--accent-dark);
}

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

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-bottom: 12vh;
}

.eyebrow,
.updated {
  margin: 0 0 14px;
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(3rem, 10vw, 6.6rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.lead {
  max-width: 640px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 1.25rem;
  line-height: 1.55;
}

.lead.compact {
  margin-top: 20px;
  font-size: 1.1rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
}

.button.secondary {
  background: transparent;
  color: var(--accent-dark);
}

.policy {
  max-width: 760px;
}

.home-link {
  color: var(--accent-dark);
  font-weight: 800;
  text-decoration: none;
}

.site-nav {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-bottom: 28px;
  font-weight: 700;
}

.site-nav a {
  text-decoration: none;
}

.policy h1 {
  font-size: clamp(2.7rem, 8vw, 5.2rem);
}

section {
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

h2 {
  margin: 0 0 12px;
  font-size: 1.15rem;
  line-height: 1.25;
}

p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

p + p {
  margin-top: 12px;
}

.source-link {
  margin-top: 16px;
}

@media (max-width: 620px) {
  .page {
    width: min(100% - 28px, 880px);
    padding-top: 34px;
  }

  .hero {
    min-height: 92vh;
  }

  .lead {
    font-size: 1.08rem;
  }
}
