:root {
  color-scheme: light;
  --ink: #102019;
  --muted: #65716b;
  --green: #168b5d;
  --deep: #073c2c;
  --cream: #f7f7f2;
  --line: rgba(15, 46, 35, .13);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
}
* { box-sizing: border-box; }
body { margin: 0; -webkit-font-smoothing: antialiased; }
a { color: inherit; }
.legal-header { width: min(980px, calc(100% - 32px)); margin: 18px auto 0; padding: 13px 16px; display: flex; align-items: center; justify-content: space-between; gap: 24px; color: #effff6; background: var(--deep); border: 1px solid rgba(255,255,255,.15); border-radius: 18px; }
.legal-brand { display: inline-flex; align-items: center; gap: 11px; color: inherit; text-decoration: none; font-size: 16px; white-space: nowrap; }
.legal-brand img { width: 38px; height: 38px; border-radius: 10px; }
.legal-brand strong { font-weight: 800; }
.back-link { color: #c9e9da; font-size: 13px; font-weight: 650; text-decoration: none; }
.back-link:hover { color: #fff; }
main { width: min(780px, calc(100% - 32px)); margin: 0 auto; padding: 64px 0 72px; }
.eyebrow { margin: 0; color: var(--green); font-size: 12px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
h1 { margin: 12px 0 10px; font-size: clamp(38px, 7vw, 58px); line-height: 1.05; letter-spacing: -.04em; }
.lead { max-width: 680px; margin: 0; color: var(--muted); font-size: 19px; line-height: 1.6; }
.card { margin-top: 24px; padding: 28px; background: #fff; border: 1px solid var(--line); border-radius: 20px; box-shadow: 0 12px 34px rgba(21,50,39,.055); }
h2 { margin: 0 0 10px; font-size: 22px; letter-spacing: -.02em; }
p, li { color: var(--muted); line-height: 1.7; }
.card p:last-child { margin-bottom: 0; }
.card a { color: #087f58; font-weight: 650; }
dl { margin: 18px 0 0; display: grid; grid-template-columns: 100px 1fr; gap: 14px 18px; }
dt { color: #747b79; }
dd { margin: 0; font-weight: 650; }
ul { margin-bottom: 0; padding-left: 20px; }
.legal-nav { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 10px; }
.legal-nav a { padding: 10px 14px; color: #087f58; background: #eaf6f0; border: 1px solid #d3e7dc; border-radius: 10px; font-size: 13px; font-weight: 700; text-decoration: none; }
footer { width: min(780px, calc(100% - 32px)); margin: 0 auto; padding: 0 0 34px; color: #89928e; font-size: 13px; }
@media (max-width: 520px) {
  .legal-header { margin-top: 10px; }
  .legal-brand span { display: none; }
  main { padding: 42px 0 54px; }
  .card { padding: 22px; }
  dl { grid-template-columns: 1fr; gap: 5px; }
  dd { margin-bottom: 10px; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
