/* Same system as the landing page: the privacy notice is a trust surface, so it must
   not look like a different company. Pinned to the paper palette on purpose — these are
   published documents, not a themeable tool, and a phone set to dark should not repaint
   the brand. The app keeps its own theme toggle. */
:root{
  color-scheme:light;
  --bg:#F4F6F7;--surface:#FFFFFF;--surface-2:#EDF1F3;
  --ink:#14212A;--soft:#495862;--faint:#626F79;
  --line:#DCE3E6;
  --brand:#3E1F3A;--brand-deep:#2B1428;--brand-soft:#F1EAF0;
  --gold:#E9A227;--gold-soft:#FBF1DF;--cream:#FAF1E4;
  --action:#3E1F3A;--on-action:#FAF1E4;
  --font-d:'Bricolage Grotesque',system-ui,-apple-system,sans-serif;
  --font-r:'Newsreader',Georgia,serif;
  --font-m:'IBM Plex Mono',ui-monospace,Menlo,monospace;
}
*{box-sizing:border-box}
body{margin:0;background:var(--bg);color:var(--ink);font:16px/1.65 var(--font-d)}
main{width:min(760px,calc(100% - 32px));margin:32px auto 64px;background:var(--surface);border:1px solid var(--line);border-radius:14px;padding:clamp(24px,5vw,48px)}
.beta{margin-inline-start:auto;border:1px solid var(--line);border-radius:5px;padding:3px 9px;color:var(--faint);font-family:var(--font-m);font-size:.7rem;letter-spacing:.08em;text-transform:uppercase}
h1,h2{font-family:var(--font-d);font-weight:700;letter-spacing:-.032em;line-height:1.14;color:var(--ink)}
h1{font-size:clamp(2rem,7vw,2.9rem);margin:.3em 0}
h2{font-size:1.2rem;margin-top:2em;letter-spacing:-.025em}
p,li{color:var(--soft);font-family:var(--font-r);font-size:1.02rem;line-height:1.62}
a{color:var(--brand);text-underline-offset:3px}
a:hover{color:var(--brand-deep)}
.updated{font-family:var(--font-m);font-size:.76rem;color:var(--faint);text-transform:uppercase;letter-spacing:.08em}
.notice{border-inline-start:3px solid var(--gold);padding:18px 22px;background:var(--gold-soft);border-radius:0 12px 12px 0}
.notice p{margin:0}
footer{margin-top:40px;padding-top:20px;border-top:1px solid var(--line);display:flex;gap:10px 18px;flex-wrap:wrap;font-family:var(--font-m);font-size:.74rem}
footer a{color:var(--faint);text-decoration:none}
footer a:hover{color:var(--brand)}
@media(pointer:coarse){footer a{display:inline-flex;align-items:center;min-height:44px;padding:4px 2px}}
@media(prefers-reduced-motion:reduce){*{transition:none!important;animation:none!important}}
