/* ─────────────────────────────────────────────────────────────────────────────
   Airwynn — Design Tokens
   All CSS custom properties (color, spacing, radius) live here.
   ───────────────────────────────────────────────────────────────────────────── */

:root{
  /* Backgrounds */
  --bg:#05050A;--bg1:#0A0A14;--bg2:#0E0E1A;

  /* Surfaces and borders */
  --surface:rgba(255,255,255,.04);
  --surface2:rgba(255,255,255,.07);
  --border:rgba(255,255,255,.08);
  --border2:rgba(255,255,255,.13);

  /* Text scale */
  --text1:#F1F5F9;--text2:#94A3B8;--text3:#64748B;

  /* Brand colours */
  --blue:#3B82F6;--indigo:#6366F1;

  /* Gradients */
  --grad:linear-gradient(135deg,#3B82F6,#6366F1);
  --grad-soft:linear-gradient(135deg,rgba(59,130,246,.15),rgba(99,102,241,.15));

  /* Radii */
  --r:12px;--r-lg:16px;
}
