/* ─────────────────────────────────────────────────────────
   DESIGN TOKENS
   Single source of truth for all visual constants.
   Import this first in every other CSS file.
───────────────────────────────────────────────────────── */

:root {
  /* Backgrounds */
  --bg:      #080809;
  --bg2:     #0d0e13;
  --panel:   #111318;
  --panel2:  #181a22;

  /* Borders */
  --line:    #1d1f2b;

  /* Text */
  --cream:   #f3efe4;
  --dim:     #aaa69d;
  --muted:   #5e5c57;

  /* Brand / accent */
  --blue:    #4db8ff;
  --blueg:   rgba(77, 184, 255, .18);
  --pink:    #ff4f9a;
  --pinkg:   rgba(255, 79, 154, .18);
  --yellow:  #ffd23f;
  --green:   #6bffb0;

  /* Layout */
  --max:     1180px;

  /* Border radius scale */
  --r-sm:    8px;
  --r:       14px;
  --r-lg:    22px;
  --r-xl:    32px;

  /* Typography */
  --display: 'Oswald', 'Arial Narrow', sans-serif;
  --body:    'Inter', 'Helvetica Neue', Arial, sans-serif;

  /* Spacing scale (4px base) */
  --space-1:  4px;
  --space-2:  8px;
  --space-3:  12px;
  --space-4:  16px;
  --space-5:  20px;
  --space-6:  24px;
  --space-8:  32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;
  --space-30: 120px;

  /* Transitions */
  --t-fast:  .15s ease;
  --t-base:  .25s ease;
  --t-slow:  .4s ease;
}
