/* FalconTech Team Portal v4 – Design Tokens (FalconTech Match) */
:root {
  /* Brand Colors — matching falcontechsolutions.de */
  --color-black: #0a0a0a;
  --color-white: #ffffff;
  --color-bg: #f5f5f5;
  --color-accent: #2563eb;
  --color-accent-hover: #1d4ed8;
  --color-accent-light: #dbeafe;
  --color-accent-soft: rgba(37, 99, 235, 0.08);
  --color-text: #1a1a1a;
  --color-text-secondary: #6b6b6b;
  --color-text-muted: #a3a3a3;
  --color-border: #e5e5e5;
  --color-border-light: #f5f5f5;
  --color-card: #ffffff;
  --color-card-solid: #ffffff;
  --color-success: #22c55e;
  --color-success-light: #dcfce7;
  --color-warning: #f59e0b;
  --color-warning-light: #fef3c7;
  --color-danger: #ef4444;
  --color-danger-light: #fee2e2;
  --color-info: #2563eb;

  /* Sidebar (Dark — Black statt Navy) */
  --sidebar-bg-start: #0a0a0a;
  --sidebar-bg-end: #1a1a1a;
  --sidebar-text: rgba(255, 255, 255, 0.7);
  --sidebar-text-active: #ffffff;
  --sidebar-hover: rgba(255, 255, 255, 0.08);
  --sidebar-active: rgba(37, 99, 235, 0.2);
  --sidebar-section: rgba(255, 255, 255, 0.35);
  --sidebar-border: rgba(255, 255, 255, 0.08);

  /* Solid Backgrounds (kein Glass mehr) */
  --glass-bg: #ffffff;
  --glass-border: #e5e5e5;
  --glass-blur: none;
  --glass-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);

  /* Gradients */
  --gradient-accent: linear-gradient(135deg, #2563eb 0%, #1a1a1a 100%);
  --gradient-success: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  --gradient-warning: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  --gradient-danger: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  --gradient-purple: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
  --gradient-sidebar: linear-gradient(180deg, var(--sidebar-bg-start) 0%, var(--sidebar-bg-end) 100%);

  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 2rem;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --line-height-tight: 1.25;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.75;

  /* Spacing */
  --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;

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

  /* Shadows — neutral, matching FalconTech */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.12);
  --shadow-accent: 0 4px 16px rgba(37, 99, 235, 0.25);
  --shadow-success: 0 4px 16px rgba(34, 197, 94, 0.25);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 300ms ease;

  /* Z-Index */
  --z-sidebar: 100;
  --z-header: 90;
  --z-modal-backdrop: 200;
  --z-modal: 300;
  --z-toast: 400;
  --z-drawer: 250;

  /* Container */
  --container-max: 1400px;
  --container-padding: var(--space-8);
  --sidebar-width: 260px;
  --topbar-height: 60px;
}
