:root {
  color-scheme: light;
  --ink: #17202a;
  --muted: #596878;
  --line: #d9e1e8;
  --paper: #fbfcfd;
  --accent: #096b72;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background: var(--paper);
  font: 16px/1.6 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

.legal {
  padding-top: 48px;
  padding-bottom: 64px;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h2 {
  margin: 34px 0 8px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 1.08rem;
  line-height: 1.3;
  letter-spacing: 0;
}

p {
  margin: 0 0 16px;
}

.updated {
  color: var(--muted);
}

.links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.links a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  text-decoration: none;
}

.links a:focus,
.links a:hover {
  border-color: var(--accent);
  color: var(--accent);
}
