/* Standalone legal pages (/privacy/, /ru/privacy/): plain HTML outside the
   React bundle, so they render for crawlers and App Store review without
   JavaScript. The palette mirrors src/design/tokens.css (dark default, light
   by prefers-color-scheme). Lives in /media/ because it ships verbatim — see
   site/CLAUDE.md → The /static/ assetsDir constraint. */
:root {
  --bg: oklch(0.155 0.022 300);
  --text: oklch(0.97 0.01 300);
  --muted: oklch(0.73 0.025 300);
  --line: oklch(1 0 0 / 0.09);
  --accent: oklch(0.66 0.2 300);
  color-scheme: dark;
}
@media (prefers-color-scheme: light) {
  :root {
    --bg: oklch(0.985 0.004 300);
    --text: oklch(0.23 0.022 300);
    --muted: oklch(0.46 0.02 300);
    --line: oklch(0.23 0.022 300 / 0.1);
    --accent: oklch(0.52 0.21 300);
    color-scheme: light;
  }
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 16px/1.65 'Golos Text', system-ui, -apple-system, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
}
header, main, footer { max-width: 760px; margin: 0 auto; padding: 0 20px; }
header {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding-top: 22px; padding-bottom: 22px; border-bottom: 1px solid var(--line);
}
header a.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; font-size: 18px; color: var(--text); text-decoration: none; }
header nav a { color: var(--muted); font-size: 14px; }
main { padding-top: 32px; padding-bottom: 48px; }
h1 { font-size: clamp(28px, 6vw, 38px); line-height: 1.15; margin: 0 0 8px; letter-spacing: -0.02em; }
h2 { font-size: 20px; margin: 36px 0 10px; }
p, li { color: var(--text); }
.updated { color: var(--muted); font-size: 14px; margin: 0 0 28px; }
ul { padding-left: 22px; }
li { margin: 6px 0; }
a { color: var(--accent); }
footer { padding-top: 22px; padding-bottom: 40px; border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; }
