/* ================================================================
   Adacor Website v2 — Design Tokens
   Brand colors mapped from KI-Workplace tokens → Adacor Brand
   ================================================================ */

:root {
  /* ── Primary Brand ── */
  --primary: #00add0;
  --primary-hover: #0098b8;
  --primary-light: #c8edf5;
  --primary-dark: #008fa8;

  /* ── Gradients ── */
  --gradient-brand: linear-gradient(135deg, #92d400 0%, #00add0 100%);
  --gradient-dark: linear-gradient(135deg, #011f3a 0%, #00192e 100%);
  --gradient-blue: linear-gradient(135deg, #00add0 0%, #c8edf5 100%);
  --gradient-sovereign: linear-gradient(135deg, #011f3a 0%, #00add0 100%);
  --gradient-workplace: linear-gradient(135deg, #B173D9 0%, #03ADCF 100%);

  /* ── Backgrounds (warm sand/cream tones) ── */
  --bg: #f5f2ec;
  --surface: #fdfcf9;
  --surface-hover: #f0ece4;
  --surface-elevated: #fdfcf9;

  /* ── Text ── */
  --text: #011f3a;
  --text-secondary: #4a5e70;
  --text-muted: #778695;
  --text-light: #a8b5c0;
  --text-on-dark: #ffffff;
  --text-on-dark-secondary: #94a3b8;

  /* ── Borders (warm) ── */
  --border: #d9d3c7;
  --border-light: #ece8e0;
  --border-focus: #00add0;

  /* ── Accent Colors ── */
  --accent-green: #92d400;
  --accent-purple: #b173d9;
  --accent-cyan: #00add0;
  --accent-warm: #ff522f;
  --accent-amber: #f59e0b;
  --accent-blue: #3b82f6;

  /* ── Semantic ── */
  --success: #10b981;
  --warning: #f59e0b;
  --error: #ef4444;

  /* ── Dark Mode Surfaces ── */
  --dark-bg: #011f3a;
  --dark-surface: #0d2e4d;
  --dark-border: #1a3f62;

  /* ── Typography ── */
  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-system: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-serif: 'Instrument Serif', Georgia, 'Times New Roman', serif;
  --font-mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;

  /* ── Type Scale ── */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  /* Grosse Groessen fluid via clamp(): Mobile-Minimum → viewport-abhaengig → Desktop-Maximum.
     Desktop-Werte (das clamp-Maximum) sind identisch zu vorher — Desktop-Layout bleibt unveraendert. */
  --text-3xl: clamp(1.5rem, 1.15rem + 1.55vw, 1.875rem);   /* 24 → 30px */
  --text-4xl: clamp(1.75rem, 1.3rem + 2vw, 2.25rem);       /* 28 → 36px */
  --text-5xl: clamp(2rem, 1.35rem + 2.9vw, 3rem);          /* 32 → 48px */
  --text-6xl: clamp(2.35rem, 1.55rem + 3.6vw, 3.75rem);    /* 38 → 60px */

  /* ── 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;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* ── Radii ── */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;

  /* ── Shadows ── */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.07), 0 2px 4px -2px rgb(0 0 0 / 0.05);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.08), 0 4px 6px -4px rgb(0 0 0 / 0.04);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.05);
  --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.15);

  /* ── Transitions ── */
  --transition-fast: 150ms ease;
  --transition-normal: 200ms ease;
  --transition-slow: 300ms ease;

  /* ── Layout ── */
  --header-height: 72px;
  --max-width: 1200px;
  --max-width-narrow: 800px;
}
