/* ─────────────────────────────────────────
   PSD — Design Tokens
   All colors, type scales, spacing, shadows
   and transitions live here.
   ───────────────────────────────────────── */

:root {
  /* ── Colors ── */
  --black:       #090910;
  --surface:     #0E0E1A;
  --surface-2:   #14142A;
  --surface-3:   #1C1C38;
  --purple:      #6B30FF;
  --purple-light:#9A6BFF;
  --purple-dark: #4A1FCC;
  --red:         #FF4B48;
  --red-light:   #FF7B7A;
  --white:       #F0F0F0;
  --off-white:   #E0E0F0;
  --muted:       #8888AA;
  --border:      rgba(255,255,255,0.07);
  --border-purple: rgba(107,48,255,0.35);

  /* Sector accents */
  --retail-gold:    #D4AF37;
  --retail-gold-l:  #F0CE6A;
  --rest-orange:    #E8721C;
  --rest-orange-l:  #F9A45C;
  --gov-blue:       #1565C0;
  --gov-blue-l:     #4A90D9;

  /* ── Typography ── */
  --font-display: 'Space Grotesk', sans-serif;
  --font-body:    'Inter', sans-serif;

  --text-xs:   0.6875rem;  /* 11px */
  --text-sm:   0.8125rem;  /* 13px */
  --text-base: 1rem;       /* 16px */
  --text-md:   1.125rem;   /* 18px */
  --text-lg:   1.375rem;   /* 22px */
  --text-xl:   1.75rem;    /* 28px */
  --text-2xl:  2.25rem;    /* 36px */
  --text-3xl:  3rem;       /* 48px */
  --text-4xl:  3.75rem;    /* 60px */
  --text-hero: clamp(2.75rem, 6vw, 5rem);

  --leading-tight:  1.1;
  --leading-snug:   1.3;
  --leading-normal: 1.6;
  --leading-loose:  1.8;

  --tracking-tight:  -0.04em;
  --tracking-normal:  0;
  --tracking-wide:    0.12em;
  --tracking-wider:   0.18em;

  /* ── Spacing ── */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* ── Layout ── */
  --max-width:      1280px;
  --content-width:  1120px;
  --section-py:     clamp(4rem, 8vw, 7rem);
  --gutter:         clamp(1.25rem, 5vw, 2.5rem);

  /* ── Radii ── */
  --radius-sm:  6px;
  --radius:     12px;
  --radius-lg:  20px;
  --radius-xl:  28px;
  --radius-full: 9999px;

  /* ── Shadows ── */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.25);
  --shadow:    0 4px 20px rgba(0,0,0,0.35);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.5);
  --shadow-purple: 0 0 30px rgba(107,48,255,0.25);

  /* ── Transitions ── */
  --ease-out:  cubic-bezier(0.16,1,0.3,1);
  --ease-in:   cubic-bezier(0.7,0,0.84,0);
  --duration:  260ms;
  --duration-lg: 420ms;

  /* ── Z-index ── */
  --z-below:   -1;
  --z-base:     0;
  --z-above:    10;
  --z-dropdown: 100;
  --z-nav:      200;
  --z-modal:    300;
  --z-toast:    400;
}
