/* ==========================================================================
   CADMIA LLC — Design Tokens (Clean Modern)
   ========================================================================== */

:root {
  /* Colors — Saturated Navy + Off-White + Blue accent */
  --navy: #0A2463;
  --navy-dark: #061541;
  --navy-light: #1E56A0;
  --off-white: #FAF9F7;
  --off-black: #1A1A1A;
  --white: #FFFFFF;
  --coral: #2979FF;
  --coral-hover: #1565E0;
  --border: rgba(10, 36, 99, 0.12);
  --border-light: rgba(255, 255, 255, 0.15);
  --text-primary: #0A2463;
  --text-secondary: #4A5F7A;
  --text-light: #FAF9F7;
  --text-muted: rgba(10, 36, 99, 0.5);

  /* Typography */
  --font-sans: 'area-normal', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-serif: 'area-normal', Georgia, serif;

  /* Type Scale */
  --text-huge: clamp(2.5rem, 6vw, 4.25rem);
  --text-big: clamp(1.75rem, 3.5vw, 2.5rem);
  --text-med: clamp(1.25rem, 2.2vw, 1.5rem);
  --text-base: 1.0625rem;
  --text-sm: 0.9375rem;
  --text-xs: 0.8125rem;
  --text-xxs: 0.75rem;
  --stat-number: clamp(2rem, 4vw, 3rem);

  /* Spacing */
  --section-gap: clamp(5rem, 10vw, 9rem);
  --gutter: clamp(1.25rem, 4vw, 4rem);
  --max-width: 1280px;
  --max-width-narrow: 720px;
  --nav-height: 72px;

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --duration: 0.3s;
  --duration-slow: 0.6s;
}
