/* F&H Command - Design Tokens
   Extracted from F&H STAC brochure brand standard. */

:root {
  /* ===== COLORS ===== */
  /* Backgrounds */
  --bg-base: #0F0B2E;
  --bg-elevated: #1A1547;
  --bg-card: #241D5C;
  --bg-card-hover: #2C2569;
  --bg-input: #1A1547;

  /* Borders */
  --border-accent: #3D2E7C;
  --border-strong: #5B4AA8;

  /* Brand */
  --primary-purple: #6B4FBB;
  --primary-purple-hover: #7C60CC;
  --accent-lavender: #B8A4E8;

  /* Text */
  --text-primary: #FFFFFF;
  --text-secondary: #A8A2C9;
  --text-tertiary: #756E94;
  --text-on-purple: #FFFFFF;

  /* Status */
  --success: #4ADE80;
  --warning: #FBBF24;
  --danger: #F87171;

  /* Service tier pill colors */
  --tier-saas: #6B4FBB;
  --tier-consulting: #B8A4E8;
  --tier-fractional: #D4A752;
  --tier-training: #4FBBA8;
  --tier-custom: #5D5680;

  /* Stage pill colors */
  --stage-lead: #A8A2C9;
  --stage-qualified: #8B6FD8;
  --stage-proposal: #6B4FBB;
  --stage-negotiating: #B8A4E8;
  --stage-won: #4ADE80;
  --stage-lost: #F87171;

  /* ===== TYPOGRAPHY ===== */
  --font-display: 'PT Serif', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', 'Consolas', 'Monaco', monospace;

  /* Type scale */
  --text-xs: 11px;
  --text-sm: 13px;
  --text-base: 15px;
  --text-md: 17px;
  --text-lg: 20px;
  --text-xl: 24px;
  --text-2xl: 32px;
  --text-3xl: 42px;
  --text-hero: 56px;

  /* Line heights */
  --leading-tight: 1.2;
  --leading-normal: 1.5;
  --leading-loose: 1.7;

  /* Letter spacing */
  --tracking-tight: -0.02em;
  --tracking-normal: 0em;
  --tracking-wide: 0.08em;
  --tracking-wider: 0.15em;

  /* ===== SPACING ===== */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;

  /* ===== RADII ===== */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;

  /* ===== SHADOWS ===== */
  --shadow-sm: 0 1px 2px rgba(15, 11, 46, 0.4);
  --shadow-md: 0 4px 12px rgba(15, 11, 46, 0.5);
  --shadow-lg: 0 12px 32px rgba(15, 11, 46, 0.6);
  --shadow-glow: 0 0 24px rgba(107, 79, 187, 0.3);

  /* ===== TRANSITIONS ===== */
  --transition-fast: 120ms ease;
  --transition-base: 200ms ease;
  --transition-slow: 300ms ease;

  /* ===== Z-INDEX ===== */
  --z-base: 1;
  --z-elevated: 10;
  --z-sticky: 50;
  --z-modal-backdrop: 100;
  --z-modal: 110;
  --z-toast: 200;
}
