/* ==========================================================================
   Biznora design tokens
   Single source of truth for colour, type, spacing, radius, shadow, motion.
   8-point spacing scale. Restrained palette. WCAG AA contrast targets.
   ========================================================================== */
:root {
  /* Brand palette */
  --ink: #0B1220;
  --navy: #102044;
  --cobalt: #2457E6;
  --cobalt-600: #1D47C0;
  --cobalt-050: #EEF2FE;
  --teal: #0E9888;
  --teal-050: #E6F5F2;
  --offwhite: #F6F7FA;
  --white: #FFFFFF;
  --slate: #536174;
  --slate-300: #8B97A8;
  --border: #DDE3EA;
  --border-strong: #C6CFDA;

  /* Status */
  --success: #18794E;
  --success-050: #E7F3EC;
  --warning: #A15C00;
  --warning-050: #FBF1E1;
  --error: #B42318;
  --error-050: #FCEBEA;

  /* Text */
  --text: #0B1220;
  --text-muted: #536174;
  --text-invert: #FFFFFF;

  /* Typography */
  --font-sans: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  --fs-12: 0.75rem;
  --fs-14: 0.875rem;
  --fs-16: 1rem;
  --fs-18: 1.125rem;
  --fs-20: 1.25rem;
  --fs-24: 1.5rem;
  --fs-30: 1.875rem;
  --fs-36: 2.25rem;
  --fs-48: 3rem;
  --fs-60: 3.75rem;
  --lh-tight: 1.15;
  --lh-snug: 1.3;
  --lh-normal: 1.6;

  /* Spacing (8-pt) */
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 24px;
  --sp-6: 32px;
  --sp-7: 48px;
  --sp-8: 64px;
  --sp-9: 96px;
  --sp-10: 128px;

  /* Layout */
  --container: 1200px;
  --container-narrow: 820px;

  /* Radius (restrained) */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-pill: 999px;

  /* Shadow */
  --shadow-sm: 0 1px 2px rgba(11, 18, 32, 0.06);
  --shadow-md: 0 6px 20px rgba(11, 18, 32, 0.08);
  --shadow-lg: 0 18px 48px rgba(11, 18, 32, 0.12);

  /* Motion */
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  --dur-1: 120ms;
  --dur-2: 220ms;

  --focus-ring: 0 0 0 3px rgba(36, 87, 230, 0.35);
}

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