/* tokens.css — Sage Brand v2 Design Tokens */
/* Sunrise Capital brand colors, dark theme */

:root {
  /* Surfaces */
  --color-sidebar: #052453;
  --color-bg: #0a1628;
  --color-card: rgba(12, 82, 178, 0.1);
  --color-card-border: rgba(12, 82, 178, 0.15);
  --color-input: rgba(10, 22, 40, 0.6);

  /* Brand */
  --color-primary: #0c52b2;
  --color-accent: #f26b0b;
  --color-gold: #f2ad0b;

  /* Phase Labels */
  --color-pre-prod: #f2ad0b;
  --color-production: #0693e3;
  --color-post-prod: #00d084;

  /* Text */
  --color-text: #ffffff;
  --color-text-secondary: rgba(255, 255, 255, 0.5);
  --color-text-muted: rgba(255, 255, 255, 0.35);

  /* Status */
  --color-success: #00d084;
  --color-error: #ef4444;
  --color-warning: #f2ad0b;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;

  /* Typography */
  --font-family: 'Inter', system-ui, -apple-system, sans-serif;
  --font-size-sm: 0.75rem;
  --font-size-md: 0.875rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.5rem;

  /* Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
}
