/* ===================== AccessBridge — Design Tokens ===================== */
:root {
  /* Core navy surfaces */
  --navy-950: #05090f;
  --navy-900: #0a1626;
  --navy-850: #0c1c30;
  --navy-800: #0d2138;
  --navy-700: #14304f;
  --navy-border: rgba(255, 255, 255, 0.12);

  /* Text */
  --white: #f5f7fa;
  --text-secondary: #b9c3d1;
  --text-muted: #7f8ca0;

  /* Accents */
  --gold: #f0b429;
  --gold-strong: #ffcc4d;
  --gold-border: rgba(240, 180, 41, 0.55);
  --gold-surface: rgba(240, 180, 41, 0.1);

  --cyan: #45d6c9;
  --cyan-strong: #6fe6db;
  --cyan-border: rgba(69, 214, 201, 0.5);
  --cyan-surface: rgba(69, 214, 201, 0.1);

  --danger: #ff8a80;
  --danger-strong: #ffb4a9;
  --danger-border: rgba(255, 138, 128, 0.5);
  --danger-surface: rgba(255, 138, 128, 0.1);

  --ok: #8ee6a8;

  /* Type scale (fluid) */
  --text-xs: clamp(0.75rem, 0.72rem + 0.1vw, 0.8125rem);
  --text-sm: clamp(0.875rem, 0.84rem + 0.15vw, 0.9375rem);
  --text-base: clamp(1rem, 0.96rem + 0.2vw, 1.0625rem);
  --text-lg: clamp(1.125rem, 1.05rem + 0.3vw, 1.25rem);
  --text-xl: clamp(1.375rem, 1.25rem + 0.5vw, 1.625rem);
  --text-2xl: clamp(1.75rem, 1.5rem + 1vw, 2.25rem);
  --text-3xl: clamp(2.25rem, 1.85rem + 1.6vw, 3.25rem);
  --text-hero: clamp(2.75rem, 2.1rem + 2.6vw, 4.5rem);

  /* Spacing (4px base) */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 999px;

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --duration-fast: 150ms;
  --duration-base: 260ms;
  --duration-slow: 420ms;

  /* Fonts */
  --font-display: 'General Sans', 'Satoshi', -apple-system, sans-serif;
  --font-body: 'Satoshi', -apple-system, sans-serif;
  --font-np: 'Noto Sans Devanagari', 'General Sans', -apple-system, sans-serif;

  --focus-ring: 0 0 0 3px var(--navy-900), 0 0 0 6px var(--cyan-strong);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
