/* === Mango PD Hub — Design Tokens === */
/* Extracted from dashboard.html :root block */

:root {
  /* Brand colors */
  --midnight: #091D3A;
  --mango: #FC6744;
  --goldenrod: #FFC34A;
  --steel: #D3D2D1;
  --linen: #FBF9F9;
  --white: #FFFFFF;
  --danger: #E74C3C;
  --success: #2ECC71;
  --warning: #E67E22;

  /* Opacity variants */
  --midnight-90: rgba(9, 29, 58, 0.9);
  --midnight-70: rgba(9, 29, 58, 0.7);
  --midnight-40: rgba(9, 29, 58, 0.40);
  --midnight-15: rgba(9, 29, 58, 0.15);
  --midnight-08: rgba(9, 29, 58, 0.08);
  --midnight-04: rgba(9, 29, 58, 0.04);
  --mango-light: rgba(252, 103, 68, 0.12);
  --mango-glow: rgba(252, 103, 68, 0.25);
  --goldenrod-light: rgba(255, 195, 74, 0.15);
  --steel-light: rgba(211, 210, 209, 0.4);

  /* Typography */
  --font-display: 'Poppins', sans-serif;
  --font-body: 'Open Sans', sans-serif;

  /* Layout */
  --sidebar-width: 280px;

  /* Spacing (4px multiples) */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;

  /* Border radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;

  /* Shadows */
  --shadow-card: 0 1px 3px rgba(9,29,58,0.06), 0 4px 12px rgba(9,29,58,0.04);
  --shadow-elevated: 0 4px 16px rgba(9,29,58,0.08), 0 12px 40px rgba(9,29,58,0.06);
  --shadow-dropdown: 0 8px 30px rgba(9,29,58,0.12), 0 2px 8px rgba(9,29,58,0.06);

  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);
}
