/* ─────────────────────────────────────────────────────────────
   Legal pages (privacy, terms) — long-form reading on the site tokens
   ───────────────────────────────────────────────────────────── */
.legal-nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  padding: 14px 32px;
  background: color-mix(in oklab, var(--bg) 86%, transparent);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--hair);
}

.legal-wrap {
  max-width: 740px;
  margin: 0 auto;
  padding: 56px 32px 96px;
}
.legal-kicker {
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.legal-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 12px 0 6px;
  color: var(--ink);
}
.legal-updated {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ink-faint);
  margin: 0 0 44px;
}
.legal-lede {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0 0 8px;
}
.legal-wrap h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 23px;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 40px 0 12px;
}
.legal-wrap p {
  font-size: 16px;
  line-height: 1.62;
  color: var(--ink-soft);
  margin: 0 0 14px;
  max-width: 66ch;
}
.legal-wrap ul {
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.legal-wrap li {
  position: relative;
  padding-left: 20px;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 66ch;
}
.legal-wrap li::before {
  content: "";
  position: absolute;
  left: 2px; top: 11px;
  width: 9px; height: 1px;
  background: var(--accent);
}
.legal-wrap strong { color: var(--ink); font-weight: 600; }
.legal-wrap em { font-style: italic; }
.legal-wrap a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: color-mix(in oklab, var(--accent) 45%, transparent);
}
.legal-wrap a:hover { text-decoration-color: var(--accent); }

.legal-foot {
  margin-top: 56px;
  padding-top: 22px;
  border-top: 1px solid var(--hair);
  font-size: 14px;
  color: var(--ink-faint);
}
.legal-foot a { color: var(--ink-soft); }
.legal-foot a:hover { color: var(--ink); }

@media (max-width: 680px) {
  .legal-nav { padding: 12px 20px; }
  .legal-wrap { padding: 40px 20px 72px; }
}
