/* ==========================================================================
   Design Tokens — campaigns.data-jam.com
   CSS Custom Properties for the dark campaign portal theme.
   v1.0.0
   ========================================================================== */

:root {
  /* ---- Backgrounds ---- */
  --bg-primary: #0A0C11;
  --bg-surface: #10121A;
  --bg-elevated: #181B25;

  /* ---- Borders ---- */
  --border-subtle: rgba(255, 255, 255, 0.04);
  --border-default: rgba(255, 255, 255, 0.06);
  --border-strong: rgba(255, 255, 255, 0.1);

  /* ---- Text ---- */
  --text-primary: #FEFAF9;
  --text-secondary: #e0e0e0;
  --text-tertiary: #888888;
  --text-muted: #555555;

  /* ---- Accent (pink — CTAs, active states) ---- */
  --accent: #E62F6E;
  --accent-secondary: #E94B52;
  --accent-gradient: linear-gradient(135deg, #E62F6E, #E94B52);
  --accent-hover: #d12862;
  --accent-bg-subtle: rgba(230, 47, 110, 0.08);
  --accent-bg-light: rgba(230, 47, 110, 0.12);

  /* ---- Data teal (visualisation ONLY — never UI chrome) ---- */
  --data-teal: #15E0BC;
  --data-teal-subtle: rgba(21, 224, 188, 0.12);

  /* ---- Status ---- */
  --status-ok: #15E0BC;
  --status-warning: #fbbf24;
  --status-error: #ef4444;

  /* ---- Spacing scale ---- */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 12px;
  --space-lg: 16px;
  --space-xl: 20px;
  --space-2xl: 24px;
  --space-3xl: 28px;
  --space-4xl: 32px;

  /* ---- Border-radius ---- */
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;

  /* ---- Typography ---- */
  --font-sans: 'Poppins', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

  --text-xs: 11px;
  --text-sm: 12px;
  --text-base: 13px;
  --text-md: 14px;
  --text-lg: 16px;
  --text-xl: 20px;
  --text-2xl: 24px;
  --text-3xl: 28px;
  --text-4xl: 36px;

  --weight-normal: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;

  --leading-tight: 1.2;
  --leading-normal: 1.5;
  --leading-relaxed: 1.6;

  /* ---- Shadows ---- */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.4);
  --shadow-glow-accent: 0 0 20px rgba(230, 47, 110, 0.15);

  /* ---- Transitions ---- */
  --transition-fast: 120ms ease;
  --transition-base: 200ms ease;
  --transition-slow: 350ms ease;

  /* ---- Z-index layers ---- */
  --z-base: 1;
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-overlay: 300;
  --z-modal: 400;
  --z-toast: 500;

  /* ---- Layout ---- */
  --nav-height: 56px;
  --content-max-width: 1400px;
  --sidebar-width: 320px;
}
