:root {
  color-scheme: light;
  --bg: #f7f8fb;
  --ink: #17202f;
  --muted: #5f6d80;
  --line: #d9e0ea;
  --panel: #ffffff;
  --accent: #0f7b6c;
}

* {
  box-sizing: border-box;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.page {
  width: min(960px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 56px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0 32px;
}

.brand {
  font-weight: 750;
  letter-spacing: 0;
}

.links {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-size: 15px;
}

.links a[aria-current="page"],
.links a:hover {
  color: var(--accent);
}

.hero {
  padding: 72px 0 56px;
}

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

h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(44px, 7vw, 72px);
  line-height: 0.98;
  letter-spacing: 0;
}

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

.content {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 34px;
}

.content + .content {
  margin-top: 24px;
}

.legal {
  margin-top: 28px;
}

h2 {
  margin: 28px 0 8px;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: 0;
}

h2:first-of-type {
  margin-top: 0;
}

p {
  margin: 0 0 16px;
}

.updated {
  color: var(--muted);
  margin-top: 14px;
}

@media (max-width: 640px) {
  .page {
    width: min(100% - 24px, 960px);
    padding-top: 18px;
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding-bottom: 20px;
  }

  .hero {
    padding: 42px 0 36px;
  }

  .lead {
    font-size: 18px;
  }

  .content {
    padding: 24px;
  }
}
