/* ==========================================================================
   Synergy Design System — Design Tokens
   Source: https://www.figma.com/design/93I4Lg8lJniLg8KQBebdDt/Synergy-Design-System

   These CSS custom properties are the single source of truth for design tokens.
   They are referenced by the Tailwind theme config in base.html.
   ========================================================================== */

:root {
  /* Brand */
  --core-brand-primary: #0D5E6D;
  --core-brand-secondary: #148B9D;

  /* Surfaces */
  --surface-white: #FFFFFF;
  --surface-neutral-primary: #F5F5F5;
  --surface-neutral-secondary: #EBEBEB;
  --surface-brand-primary: #0D5E6D;

  /* Text */
  --text-primary: #1A1A1A;
  --text-secondary: #666666;
  --text-tertiary: #999999;
  --text-on-color: #FFFFFF;
  --text-disabled: #BDBDBD;
  --text-error: #991B1B;

  /* Borders */
  --border-neutral-primary: #E0E0E0;
  --border-neutral-subtle: #EEEEEE;
  --border-focused: #2563EB;
  --border-error: #DC2626;

  /* Semantic */
  --core-danger: #DC2626;
  --core-success: #16A34A;
  --core-warning: #D97706;
  --core-info: #2563EB;
  --surface-error: #FEF2F2;
  --surface-success: #F0FDF4;
  --surface-warning: #FFFBEB;
  --surface-info: #EFF6FF;
}
