/* Fajardo Elite — Design Tokens */

:root {
  /* Brand palette */
  --color-accent: #3727c8;
  --color-accent-hover: #5d4fdd;
  --color-accent-pale: #887bfd;
  --color-bg: #02021e;
  --color-bg-elev: #0a0a30;
  --color-surface: #14143a;
  --color-text: #ffffff;
  --color-text-muted: #b8b8d1;
  --color-text-subtle: #6f6f8e;
  --color-border: #35354b;
  --color-border-strong: #4a4a64;

  /* Typography */
  --font-body: 'Montserrat', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Montserrat', system-ui, sans-serif;
  --font-script: 'Pinyon Script', 'Brush Script MT', cursive;

  /* Type scale (mobile-first; --text-* are clamped for fluid sizing) */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: clamp(1.25rem, 1.1rem + 0.5vw, 1.5rem);
  --text-2xl: clamp(1.5rem, 1.3rem + 0.8vw, 2rem);
  --text-3xl: clamp(2rem, 1.6rem + 1.5vw, 2.75rem);
  --text-4xl: clamp(2.5rem, 1.8rem + 3vw, 4rem);
  --text-5xl: clamp(3rem, 2rem + 5vw, 5.5rem);

  /* Line heights */
  --lh-tight: 1.05;
  --lh-snug: 1.25;
  --lh-base: 1.55;
  --lh-relaxed: 1.7;

  /* Spacing scale */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-8: 3rem;
  --space-10: 4rem;
  --space-12: 6rem;
  --space-16: 8rem;

  /* Radii */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 999px;

  /* Shadows (deep on dark) */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.45);
  --shadow-glow: 0 0 32px rgba(136, 123, 253, 0.25);

  /* Layout */
  --container-max: 1200px;
  --container-padding: 1.5rem;
  --header-height: 72px;

  /* Motion */
  --ease-out: cubic-bezier(0.2, 0.8, 0.2, 1);
  --duration-fast: 150ms;
  --duration-base: 250ms;
  --duration-slow: 400ms;
}
