/* CamsCue design tokens - "Velvet Signal" (dark-first).
   Aubergine base + coral-magenta signal accent + antique-gold editorial authority.
   Distinct from the fintech portfolio; SFW carried by palette/motion, not imagery. */
:root {
  /* Brand = signal coral-magenta ramp (--color-primary maps to --brand-500). */
  --brand-50:  #fff0f4;
  --brand-100: #ffd9e3;
  --brand-200: #ffb3c9;
  --brand-300: #ff8caa;
  --brand-400: #ff6690;
  --brand-500: #ff4d7a;
  --brand-600: #f5326a;
  --brand-700: #d81f56;
  --brand-800: #a81746;
  --brand-900: #7d1236;
  --brand-950: #4a0a20;

  /* Surfaces & text - dark aubergine. */
  --color-bg:           #12081a;
  --color-surface:      #1b0f24;
  --color-surface-2:    #251531;
  --color-fg:           #f6eef4;
  --color-muted:        #b29dba;
  --color-muted-2:      #8a7592;
  --color-border:       #35213f;
  --color-border-light: #2a1a33;

  --color-primary:       var(--brand-500);
  --color-primary-hover: var(--brand-600);
  --color-primary-bg:    #2a0f1c;
  --color-primary-light: #3a1526;

  --color-success:       #3dd68c;
  --color-success-bg:    #0e2a20;
  --color-warning:       #ffb020;
  --color-warning-bg:    #2a200a;
  --color-danger:        #ff5a5f;
  --color-danger-bg:     #2a0f12;

  /* Gold = editorial authority (Editor's Pick, seals, ribbons); reuses the sponsor slot. */
  --color-sponsor:       #e7b65c;
  --color-sponsor-bg:    #241a0c;
  --color-sponsor-border:#4a3a1c;
  --color-sponsor-badge: #e7b65c;

  --font-display: 'Fraunces', Georgia, 'Iowan Old Style', 'Times New Roman', serif;
  --font-body:    'Hanken Grotesk', 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-numeral: 'Bricolage Grotesque', 'Hanken Grotesk', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', 'IBM Plex Mono', ui-monospace, Menlo, 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:  1.875rem;
  --text-4xl:  2.25rem;
  --text-5xl:  3rem;

  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Rounder than fintech (lounge softness vs bank squareness). */
  --radius-sm:  0.625rem;
  --radius-md:  1rem;
  --radius-lg:  1.25rem;
  --radius-xl:  1.75rem;
  --radius-full: 9999px;

  /* Glow-based elevation (colored low-alpha), not gray drop-shadows. */
  --shadow-card:  0 1px 2px rgba(0,0,0,0.4);
  --shadow-card-hover: 0 8px 30px rgba(255,77,122,0.12), 0 2px 10px rgba(0,0,0,0.5);
  --shadow-button: 0 4px 20px rgba(255,77,122,0.35);
}
