/* css/tokens.css */
/* Design tokens and themes */
:root{
  --bg-0:#0f1115;
  --bg-1:#12151b;
  --glass: rgba(255,255,255,.06);
  --glass-strong: rgba(255,255,255,.1);
  --border: rgba(255,255,255,.14);
  --text:#f3f5f7;
  --muted:#9ea6b1;
  --accent:#0EA5E9;
  --font: Metropolis-R, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, "Helvetica Neue", Arial, sans-serif;
  --max:1160px;
  --shell-pad:clamp(14px,4vw,28px);
  --headerH:54px;
}

[data-theme="light"]{
  --bg-0:#f6f7f9;
  --bg-1:#ffffff;
  --glass: rgba(0,0,0,.06);
  --glass-strong: rgba(0,0,0,.08);
  --border: rgba(0,0,0,.12);
  --text:#0b0d10;
  --muted:#5d6470;
  --accent:#0284C7;
}