/* Shared styles for the legal pages — same tokens as index.html. */
:root {
  --bg: #fbfcfc; --ink: #14201f; --muted: #5b6a68; --line: #e3e8e7;
  --accent: oklch(0.42 0.07 200); --accent-hover: oklch(0.32 0.07 200);
  --mono: 'IBM Plex Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
}
@supports not (color: oklch(0.5 0.1 200)) { :root { --accent: #3d6b73; --accent-hover: #2b5057; } }
* { box-sizing: border-box; }
body { margin: 0; background: var(--bg); color: var(--ink); font-family: 'Instrument Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif; -webkit-font-smoothing: antialiased; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); }
main a { text-decoration: underline; text-underline-offset: 3px; }
::selection { background: var(--accent); color: var(--bg); }
.wrap { max-width: 1120px; margin: 0 auto; padding: 0 32px; }
header { position: sticky; top: 0; z-index: 50; background: rgba(251,252,252,0.92); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); border-bottom: 1px solid var(--line); }
header .wrap { padding-top: 14px; padding-bottom: 14px; display: flex; align-items: center; justify-content: space-between; }
.brand { font-weight: 700; font-size: 17px; letter-spacing: -0.02em; color: var(--ink); }
.btn { display: inline-block; background: var(--accent); color: var(--bg); font-weight: 600; font-size: 14px; padding: 9px 20px; border-radius: 4px; }
.btn:hover { background: var(--accent-hover); color: var(--bg); }
.legal { padding-top: 72px; padding-bottom: 96px; }
.legal > * { max-width: 760px; }
.eyebrow { font-size: 11px; font-family: var(--mono); color: var(--accent); text-transform: uppercase; letter-spacing: 0.08em; margin: 0 0 16px; }
h1 { font-size: 44px; line-height: 1.05; letter-spacing: -0.03em; font-weight: 700; margin: 0 0 12px; text-wrap: pretty; }
.updated { font-family: var(--mono); font-size: 13px; color: var(--muted); margin: 0 0 40px; }
.lede { font-size: 18px; line-height: 1.55; color: var(--ink); margin: 0 0 40px; text-wrap: pretty; }
section { margin: 0 0 36px; }
h2 { font-size: 20px; letter-spacing: -0.01em; font-weight: 600; margin: 0 0 10px; }
p, li { font-size: 16px; line-height: 1.6; color: var(--muted); margin: 0 0 12px; text-wrap: pretty; }
p strong { color: var(--ink); }
ul { margin: 0 0 12px; padding-left: 22px; }
code { font-family: var(--mono); font-size: 14px; color: var(--ink); background: #eef1f1; padding: 1px 5px; border-radius: 3px; }
footer { border-top: 1px solid var(--line); }
footer .wrap { padding-top: 28px; padding-bottom: 28px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 14px; color: var(--muted); }
footer .brand { font-size: 14px; font-weight: 600; }
footer .links { display: flex; gap: 20px; }
footer .links a { color: var(--muted); }
footer .links a:hover { color: var(--ink); }
@media (max-width: 600px) {
  .wrap { padding: 0 20px; }
  .legal { padding-top: 48px; padding-bottom: 64px; }
  h1 { font-size: 34px; }
}
