:root {
  --bg: #fff;
  --text: #171717;
  --muted: #5f5f5f;
  --line: rgba(0, 0, 0, .10);
  --soft: #fafafa;
  --accent: #087a55;
  --max: 1120px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:focus-visible { outline: 2px solid #0068d6; outline-offset: 4px; border-radius: 3px; }
.site-header, footer {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header { height: 80px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 650; text-decoration: none; letter-spacing: -.02em; }
.mark {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: #fff;
  background: var(--text);
  border-radius: 8px;
  font-size: 14px;
}
nav { display: flex; gap: 26px; }
nav a { color: var(--muted); font-size: 14px; text-decoration: none; }
nav a:hover, nav a[aria-current="page"] { color: var(--text); }
main { width: min(calc(100% - 48px), var(--max)); margin: 0 auto; }
.hero { padding: 112px 0 104px; max-width: 900px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 6px 11px;
  border-radius: 999px;
  box-shadow: 0 0 0 1px var(--line);
  color: var(--muted);
  font-size: 13px;
  font-weight: 550;
}
.status-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 3px rgba(8, 122, 85, .12); }
h1 { margin: 28px 0 26px; font-size: clamp(52px, 8vw, 92px); line-height: .98; letter-spacing: -.065em; font-weight: 650; }
.lede { max-width: 740px; margin: 0; color: var(--muted); font-size: clamp(19px, 2.2vw, 23px); line-height: 1.55; letter-spacing: -.015em; }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); box-shadow: 0 0 0 1px var(--line); border-radius: 12px; overflow: hidden; }
.card { min-height: 310px; padding: 34px; background: var(--bg); }
.step, .label { color: var(--muted); font: 500 12px/1.3 ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: .08em; }
.card h2 { margin: 68px 0 14px; font-size: 25px; line-height: 1.2; letter-spacing: -.035em; }
.card p { margin: 0; color: var(--muted); }
.data-use { display: grid; grid-template-columns: 1fr 1.25fr; gap: 80px; padding: 132px 0; }
.data-use h2 { margin: 14px 0 0; max-width: 420px; font-size: clamp(36px, 5vw, 58px); line-height: 1.05; letter-spacing: -.05em; }
.data-copy { color: var(--muted); font-size: 18px; }
.text-link { display: inline-block; margin-top: 15px; color: var(--text); font-weight: 550; text-decoration: none; }
.text-link:hover { text-decoration: underline; }
footer { min-height: 110px; border-top: 1px solid var(--line); color: var(--muted); font-size: 14px; }
.legal { display: grid; grid-template-columns: minmax(260px, .7fr) minmax(0, 1.3fr); gap: 90px; padding: 105px 0 130px; }
.legal-heading { position: sticky; top: 50px; align-self: start; }
.legal-heading h1 { margin: 15px 0 16px; font-size: clamp(46px, 6vw, 70px); }
.updated { color: var(--muted); font-size: 14px; }
.legal-body { min-width: 0; }
.legal-body section { padding: 0 0 36px; margin: 0 0 36px; border-bottom: 1px solid var(--line); }
.legal-body section:last-child { border-bottom: 0; }
.legal-body h2 { margin: 0 0 15px; font-size: 22px; letter-spacing: -.025em; }
.legal-body p, .legal-body li { color: #484848; }
.legal-body p { margin: 0 0 15px; }
.legal-body ul { margin: 0 0 18px; padding-left: 24px; }
.legal-body li + li { margin-top: 7px; }
@media (max-width: 800px) {
  .site-header, footer, main { width: min(calc(100% - 32px), var(--max)); }
  .site-header { height: 68px; }
  nav { gap: 18px; }
  .hero { padding: 76px 0 72px; }
  h1 { letter-spacing: -.055em; }
  .grid { grid-template-columns: 1fr; }
  .card { min-height: 0; }
  .card h2 { margin-top: 38px; }
  .data-use { grid-template-columns: 1fr; gap: 38px; padding: 90px 0; }
  .legal { grid-template-columns: 1fr; gap: 55px; padding: 70px 0 90px; }
  .legal-heading { position: static; }
  footer { align-items: flex-start; flex-direction: column; justify-content: center; gap: 3px; }
  footer p { margin: 0; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
