:root {
  color-scheme: light;
  --ink: #102147;
  --muted: #5d6a82;
  --blue: #2459e0;
  --blue-dark: #193d99;
  --blue-soft: #edf3ff;
  --green: #3ddc97;
  --line: #dfe5f0;
  --paper: #ffffff;
  --wash: #f7f9fd;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, #f3f7ff 0, var(--paper) 420px);
  font-size: 17px;
  line-height: 1.65;
}
a { color: var(--blue-dark); text-underline-offset: 3px; }
a:hover { color: var(--blue); }
.shell { width: min(100% - 36px, 1040px); margin: 0 auto; }
header {
  border-bottom: 1px solid rgba(223, 229, 240, .85);
  background: rgba(255, 255, 255, .9);
}
nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); text-decoration: none; font-weight: 800; }
.mark { width: 34px; height: 34px; border-radius: 11px; display: grid; place-items: center; color: white; background: var(--blue); box-shadow: 0 8px 20px rgba(36, 89, 224, .24); }
.links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 16px; font-size: 15px; font-weight: 650; }
.links a { color: var(--muted); text-decoration: none; }
main { padding: 76px 0 92px; }
.hero { max-width: 760px; margin-bottom: 54px; }
.eyebrow { color: var(--blue); font-size: 13px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
h1 { margin: 10px 0 18px; max-width: 840px; font-size: clamp(38px, 7vw, 66px); line-height: 1.02; letter-spacing: -.045em; }
.legal h1 { font-size: clamp(38px, 6vw, 58px); }
.lede { color: var(--muted); max-width: 760px; font-size: clamp(19px, 2.5vw, 23px); line-height: 1.5; }
.updated { display: inline-block; margin-top: 14px; color: var(--muted); font-size: 14px; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.button { border-radius: 12px; padding: 12px 18px; background: var(--blue); color: #fff; text-decoration: none; font-weight: 750; }
.button.secondary { color: var(--blue-dark); background: var(--blue-soft); }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { border: 1px solid var(--line); border-radius: 20px; padding: 24px; background: rgba(255,255,255,.92); box-shadow: 0 14px 35px rgba(29, 52, 98, .07); }
.card h2, .card h3 { margin-top: 0; }
.callout { margin: 28px 0; border-left: 4px solid var(--green); border-radius: 12px; padding: 18px 20px; background: #effcf6; }
.warning { border-left-color: #e2912f; background: #fff8ec; }
.document { max-width: 820px; }
.document h2 { margin-top: 48px; font-size: 28px; line-height: 1.2; }
.document h3 { margin-top: 30px; font-size: 21px; line-height: 1.3; }
.document li + li { margin-top: 8px; }
.document table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 15px; }
.document th, .document td { text-align: left; vertical-align: top; border: 1px solid var(--line); padding: 12px; }
.document th { background: var(--blue-soft); }
code { padding: 2px 6px; border-radius: 6px; background: #eef1f7; }
footer { border-top: 1px solid var(--line); padding: 34px 0 48px; color: var(--muted); font-size: 14px; }
.footer-row { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer-row p { margin: 0; }

@media (max-width: 760px) {
  body { font-size: 16px; }
  nav { align-items: flex-start; padding: 18px 0; }
  .links { gap: 10px 14px; }
  main { padding-top: 52px; }
  .grid { grid-template-columns: 1fr; }
  .document table { display: block; overflow-x: auto; }
}

