/**
 * Design tokens — shared color/typography palette for all pages.
 * Подключение: <link rel="stylesheet" href="/css/tokens.css">
 */
:root {
  --brand: #059669;
  --brand-hover: #047857;
  --brand-light: #10b981;
  --brand-subtle: #ECFDF5;
  --text: #0A2540;
  --text-body: #2B3B54;
  --text-muted: #5B6B8C;
  --text-subtle: #8092AB;
  --bg: #FFFFFF;
  --bg-subtle: #F7F9FC;
  --bg-muted: #EDF1F7;
  --bg-dark: #0A1224;
  --border: #E5E9F2;
  --border-strong: #C8D0DE;
  --accent-blue: #2E5AFF;
  --shadow: 0 1px 3px rgba(10,37,64,.06), 0 2px 8px rgba(10,37,64,.04);
  --shadow-lg: 0 4px 10px rgba(10,37,64,.08), 0 16px 40px rgba(10,37,64,.08);
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --mono: 'JetBrains Mono', 'SF Mono', Consolas, monospace;
}
