:root {
  /* Colors */
  --c-primary: #1c1c1e; /* Anthrazit */
  --c-secondary: #2c2c2e; /* Deep Gray */
  --c-accent: #FFEA00; /* Corporate Yellow from Logo */
  --c-accent-hover: #ffd900;
  --c-brand-red: #D50000; /* Corporate Red from Logo */
  --c-text: #ffffff;
  --c-text-muted: #a1a1a6;
  --c-bg: #111112; /* Very Deep Anthrazit for background */
  
  /* Typography */
  --f-family: 'Avenir', 'Avenir Next', 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-bold: 700;
  --fw-black: 900;
  
  /* Timings */
  --t-fast: 0.2s;
  --t-normal: 0.3s;
  --t-slow: 0.5s;
  --ease: cubic-bezier(0.25, 0.8, 0.25, 1);
  
  /* Utilities */
  --container-width: 1200px;
  --section-padding: 140px 0;
  --border-radius: 8px;
}
