/* CEDAS Ecuador — Design tokens v1.1
   Dirección: Camino Editorial · 22-09-2026 */

:root {
  /* Typography */
  --font-display: "Manrope", "Arial Narrow", Arial, sans-serif;
  --font-body: "Inter", Arial, Helvetica, sans-serif;
  --font-institutional: "Times New Roman", Times, serif;

  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-extrabold: 800;

  --text-display: clamp(3.5rem, 8vw, 7.375rem);
  --text-h1: clamp(3rem, 6vw, 5.25rem);
  --text-h2: clamp(2.5rem, 5vw, 4.5rem);
  --text-h3: clamp(1.3125rem, 2vw, 1.875rem);
  --text-lead: clamp(1.125rem, 1.5vw, 1.375rem);
  --text-body: 1.0625rem;
  --text-small: 0.875rem;
  --text-label: 0.75rem;

  --leading-display: 0.94;
  --leading-heading: 1.08;
  --leading-body: 1.65;
  --tracking-display: -0.055em;
  --tracking-label: 0.14em;

  /* Brand */
  --cedas-blue: #2582bf;
  --cedas-link: #0b5f96;
  --cedas-blue-ink: #00101c;
  --cedas-deep: #0b3a6b;
  --cedas-gold: #f4b400;
  --cedas-white: #ffffff;
  --cedas-mist: #f3f8fc;
  --cedas-ink: #183046;
  --cedas-body: #3d3d3d;
  --cedas-muted: #4a5d70;
  --cedas-line: #cfdee9;

  /* Functional */
  --color-success: #15803d;
  --color-info: #2563eb;
  --color-warning: #b45309;
  --color-error: #b91c1c;
  --color-disabled-bg: #e5edf3;
  --color-disabled-text: #586675;

  /* Interaction */
  --focus-ring: 0 0 0 3px rgba(244, 180, 0, 0.55);
  --button-primary: #0b3a6b;
  --button-primary-hover: #082f58;
  --button-primary-active: #062743;
  --button-secondary-hover: #e8f3fa;

  /* Shape and depth */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-pill: 999px;
  --shadow-sm: 0 1px 2px rgba(11, 58, 107, 0.08);
  --shadow-md: 0 8px 24px rgba(11, 58, 107, 0.10);
  --shadow-lg: 0 20px 50px rgba(11, 58, 107, 0.12);

  /* Motion */
  --motion-fast: 120ms;
  --motion-normal: 200ms;
  --motion-slow: 320ms;
  --ease-standard: cubic-bezier(0.2, 0, 0, 1);
}

@media (max-width: 640px) {
  :root {
    --text-display: clamp(3rem, 14vw, 4.25rem);
    --text-h1: clamp(2.5rem, 11vw, 3.25rem);
    --text-h2: clamp(2rem, 9vw, 2.75rem);
    --text-body: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  :root {
    --motion-fast: 0ms;
    --motion-normal: 0ms;
    --motion-slow: 0ms;
  }
}

/* Layout and shared motion tokens promoted for the eleven production pages. */
:root {
  --measure-body: 66ch;
  --layout-container: min(1180px, calc(100% - 40px));
  --space-1: .5rem;
  --space-2: .75rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
  --space-7: 4.5rem;
  --space-8: 7rem;
  --motion-enter-duration: 480ms;
  --motion-count-duration: 950ms;
  --motion-stagger-step: 60ms;
  --motion-distance-sm: 12px;
  --motion-lift: 2px;
  --motion-press-scale: .98;
  --ease-enter: cubic-bezier(.16, 1, .3, 1);
  --ease-move: cubic-bezier(.25, 1, .5, 1);
  --ease-press: cubic-bezier(.25, .46, .45, .94);
}
