/* tokens.css — design tokens: the :root custom properties (CSS variables) */
:root{
  --bg:#0E1217;
  --bg2:#10161D;
  --surface:rgba(255,255,255,0.035);
  --surface-2:rgba(255,255,255,0.06);
  --border:rgba(255,255,255,0.09);
  --text:#F2F6FA;
  --muted:#C2CCD8;
  --faint:#94A1B0;
  --accent:#2DD4BF;
  --accent-2:#38BDF8;
  --good:#34D399;
  --warn:#FBBF24;
  --bad:#F87171;
  --radius:18px;
  --maxw:1080px;
  --font:'Inter',-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Helvetica,Arial,sans-serif;
}
