/* Single source of truth for the C4X website design system's color/font
   tokens, shared by every surface that uses this palette: the admin panel
   (admin.css), the login page, the public homepage, and the API docs page.
   This used to be copy-pasted verbatim into each of those, which already
   caused one real bug this session (admin.css's glow gradient opacities
   silently drifted from these canonical values until caught) -- one shared
   file removes that whole class of drift, since there's only one place
   left to update. */
:root {
  --c4x-hero: #004675;
  --c4x-hero-deep: #00304f;
  --c4x-body-bg: #071b2c;
  --c4x-panel-bg: #0f2c42;
  --c4x-body-text: #eaf1f7;
  --c4x-muted: #9fb4c7;
  --c4x-accent: #00a4bf;
  --c4x-accent-dark: #00c0ce;
  --c4x-gold: #e8b84b;
  --c4x-border: rgba(255,255,255,0.12);
  --c4x-white: #ffffff;
  --c4x-light-panel-bg: #ffffff;
  --c4x-light-panel-text: #0e283a;
  --c4x-light-panel-hover-bg: #eef3f8;
  --c4x-glow-cyan: #67e8f9;
  --c4x-glow-teal: #0891b2;
  --font-heading: 'Manrope', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}
