/* Modern Luxury Design Tokens for Orcha */
:root {
  /* Colors */
  --bg-deep: #07090E; /* Deep Void */
  --bg-surface: #10141D; /* Sleek Dark Glass Base */
  --bg-surface-elevated: #18202F;
  --bg-glass: rgba(16, 20, 29, 0.85);
  --bg-glass-heavy: rgba(11, 15, 23, 0.92);
  --bg-glass-card: rgba(24, 32, 47, 0.7);

  /* Brand / Accent */
  --brand-primary: #3B82F6; /* Vibrant Sapphire */
  --brand-neon: #38BDF8;    /* Electric Cyan */
  --brand-emerald: #10B981; /* Precision Green */
  --brand-gold: #F59E0B;    /* Luxury Gold */
  --brand-crimson: #EF4444; /* High Urgency */
  --brand-subtle: rgba(59, 130, 246, 0.15);

  /* UI Status Colors */
  --status-pending: #F59E0B;
  --status-active: #10B981;
  --status-error: #EF4444;
  --status-info: #0EA5E9;
  --status-purple: #8B5CF6;

  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Outfit', 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

  /* Text Colors */
  --text-primary: #F8FAFC;
  --text-secondary: #94A3B8;
  --text-tertiary: #64748B;
  --text-muted: #475569;

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;

  /* Borders & Radii */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  --radius-pill: 9999px;
  --border-subtle: 1px solid rgba(255, 255, 255, 0.08);
  --border-glass: 1px solid rgba(255, 255, 255, 0.12);
  --border-active: 1px solid rgba(56, 189, 248, 0.5);

  /* Shadows & Glows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.6);
  --shadow-glass: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  --shadow-glow: 0 0 20px rgba(56, 189, 248, 0.35);
  --glow-brand: 0 0 20px rgba(56, 189, 248, 0.35);
  --glow-emerald: 0 0 20px rgba(16, 185, 129, 0.35);
  --glow-crimson: 0 0 20px rgba(239, 68, 68, 0.4);

  /* Transitions & Animations */
  --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
