:root {
  /* Farben */
  --color-bg: #0b0e12;
  --color-surface: #0f131a;
  --color-surface-2: #161c26;
  --color-text: #e7ebf3;
  --color-text-dim: #b9c2d3;
  --color-accent: #ff7b1a;
  --color-accent-strong: #ff6a00;
  --color-border: rgba(255, 255, 255, 0.08);

  /* Typografie */
  --font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-size-base: 16px;
  --line-height-base: 1.6;

  /* Layout */
  --max-width: 960px;
  --spacing-2: 0.125rem;
  --spacing-4: 0.25rem;
  --spacing-8: 0.5rem;
  --spacing-12: 0.75rem;
  --spacing-16: 1rem;
  --spacing-24: 1.5rem;
  --spacing-32: 2rem;
  --spacing-48: 3rem;
  --spacing-64: 4rem;

  /* Radii & Shadow */
  --radius-sm: 6px;
  --radius-md: 12px;
  --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.35);
  --glow-accent: 0 0 24px rgba(255, 122, 26, 0.35);

  /* Animation */
  --transition-fast: 160ms ease;
  --transition-slow: 320ms ease;
}

@media (prefers-reduced-motion: reduce) {
  :root {
    --transition-fast: 0ms;
    --transition-slow: 0ms;
  }
}
