/* Acting Out OK - Design Tokens ("Modern Professional" palette) */
:root {
  /* Colors – high-contrast, low-glare, informational */
  --color-bg: #F1F3F5;
  --color-bg-elevated: #ffffff;
  --color-surface: #ffffff;
  --color-border: #DFE6E9;
  --color-text: #1A1A1B;
  --color-text-muted: #636E72;
  --color-accent: #007AFF;
  --color-accent-hover: #0066DD;
  --color-accent-muted: rgba(0, 122, 255, 0.15);
  --color-on-accent: #ffffff;
  --color-success: #16a34a;
  --color-warning: #ca8a04;
  /* Casting pills – accent uses SF Blue */
  --color-pill-union: #16a34a;
  --color-pill-union-bg: rgba(22, 163, 74, 0.12);
  --color-pill-nonunion: #007AFF;
  --color-pill-nonunion-bg: rgba(0, 122, 255, 0.12);
  --color-pill-mixed: #636E72;
  --color-pill-mixed-bg: rgba(99, 110, 114, 0.12);
  --color-pill-under18: #c2410c;
  --color-pill-under18-bg: rgba(194, 65, 12, 0.12);

  /* Section bar colors (splash) */
  --bar-casting: #007AFF;
  --bar-resources: #0d9488;
  --bar-news: #c026d3;

  /* Typography */
  --font-sans: "DM Sans", system-ui, -apple-system, sans-serif;
  --font-display: "Outfit", var(--font-sans);
  --font-mono: "JetBrains Mono", "Roboto Mono", ui-monospace, monospace;
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 2rem;
  --text-4xl: 2.5rem;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-12: 3rem;
  --space-16: 4rem;

  /* Transitions */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 150ms var(--ease-out-expo);
  --transition-base: 250ms var(--ease-out-expo);
  --transition-slow: 400ms var(--ease-out-expo);

  /* Layout */
  --max-width: 1200px;
  --header-height: 80px;
  --radius: 12px;
  --radius-lg: 16px;
}
