/* ============================================================
   FORDANZO DESIGN TOKENS — single source of truth (Sprint 2)
   Palette: blue #4F7CFC · purple #9B4DFF · pink #FF4D9D · dark #0D0C18
   Fonts:   UI = Inter (full Cyrillic) · display = Unbounded (Cyrillic-complete)
   Loaded at wp_enqueue_scripts priority 1 (before theme CSS); custom-property
   declarations carry !important so they also win against later :root
   re-declarations from the theme / Redux dynamic CSS.
   ============================================================ */
:root {
  /* canonical tokens */
  --fz-blue: #4F7CFC;
  --fz-purple: #9B4DFF;
  --fz-pink: #FF4D9D;
  --fz-dark: #0D0C18;
  --fz-font-ui: 'Inter', 'Plus Jakarta Sans', -apple-system, sans-serif;
  --fz-font-display: 'Unbounded', 'Inter', sans-serif;

  /* map onto the engine theme's variables */
  --color-theme-primary: #4F7CFC !important;
  --color-theme-primary-dark: #3D63D9 !important;
  --color-theme-primary-light: #EAF0FE !important;
  --global-font-family: var(--fz-font-ui) !important;
  --highlight-font-family: var(--fz-font-display) !important;
}

/* dark mode (theme toggles via data-mode attribute) */
[data-mode="dark"],
html[data-mode="dark"] body {
  --global-body-bgcolor: #0D0C18 !important;
  --color-theme-primary-light: #1B2240 !important;
}
