/* =====================================================
   IMMIGRATION97 — DESIGN TOKENS (LOCKED)
   Single Source of Truth • Premium • Long-term
===================================================== */

:root {

  /* ==================================================
     🎨 BRAND (NO GENERIC ALIASES)
  ================================================== */
  --brand-primary: #22c55e;
  --brand-primary-hover: #16a34a;
  --brand-primary-soft: rgba(34, 197, 94, 0.14);

  --brand-secondary: #38bdf8;
  --brand-secondary-soft: rgba(56, 189, 248, 0.14);

  --brand-danger: #ef4444;
  --brand-warning: #f59e0b;
  --brand-premium: #f4c430;

  /* ==================================================
     🌑 BACKGROUNDS (STRICT ROLES)
  ================================================== */
  --bg-main: #020617;        /* page background */
  --bg-surface: #0a1120;     /* section background */
  --bg-card: rgba(15, 23, 42, 0.65); /* cards only */
  --bg-card-hover: rgba(15, 23, 42, 0.85);

  --bg-glass: rgba(255, 255, 255, 0.035);
  --bg-glass-hover: rgba(255, 255, 255, 0.065);

  /* ==================================================
     📝 TEXT (SAFE CONTRAST)
  ================================================== */
  --text-primary: #f8fafc;
  --text-main: #e5e7eb;
  --text-soft: #cbd5e1;
  --text-muted: #94a3b8;

  --text-inverse-strong: #020617; /* for primary buttons */
  --text-inverse-soft: #04120a;   /* for light surfaces */

  /* ==================================================
     🔲 BORDERS
  ================================================== */
  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-medium: rgba(255, 255, 255, 0.1);
  --border-strong: rgba(255, 255, 255, 0.15);

  --border-brand: rgba(34, 197, 94, 0.35);

  /* ==================================================
     📐 SPACING SCALE (8PX SYSTEM)
  ================================================== */
  --space-2xs: 0.25rem;
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;

  --section-padding: 3rem;

  /* ==================================================
     🔠 TYPOGRAPHY SCALE
  ================================================== */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-md: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;

  /* ==================================================
     🔲 RADIUS
  ================================================== */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-pill: 999px;

  /* ==================================================
     🌫 SHADOWS (STRICT SET)
  ================================================== */
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.25);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.3);

  --shadow-brand: 0 12px 40px rgba(34, 197, 94, 0.35);
  --shadow-brand-hover: 0 18px 55px rgba(34, 197, 94, 0.5);

  /* ==================================================
     ⚡ MOTION
  ================================================== */
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --transition-fast: 0.15s var(--ease-out);
  --transition-base: 0.25s var(--ease-out);
  --transition-slow: 0.4s var(--ease-out);

  /* ==================================================
     🧭 Z-INDEX
  ================================================== */
  --z-base: 1;
  --z-dropdown: 50;
  --z-header: 100;
  --z-modal: 500;
  --z-toast: 1000;

  /* ==================================================
     🎭 BLUR
  ================================================== */
  --blur-md: blur(8px);
  --blur-lg: blur(12px);
}

/* ==================================================
   ACCESSIBILITY
================================================== */
[data-theme="dark"] {
  color-scheme: dark;
}

@media (prefers-reduced-motion: reduce) {
  :root {
    --transition-fast: 0.01ms;
    --transition-base: 0.01ms;
    --transition-slow: 0.01ms;
  }
}
