/* theme.css — Boss Info AG
   Farben von bossinfo.com (dort selbst als CSS-Variablen definiert):
   --boss-blau #004D9E · Dunkelblau #003A77 · Dunkelgrau #6E6E6E · Hellgrau #A5A5A5 · Goldgelb #FECE42.
   Boss-Blau trägt Headlines/Flächen und die CTA (wie auf der Partner-Website).
   Goldgelb wird bewusst NICHT als CTA-Fläche verwendet: .btn--cta hat fest weißen
   Text, auf #FECE42 wäre der Kontrast ~1,6:1 (WCAG-Fail). */
:root{
  /* Primär-Ramp (dunkel → hell) auf Basis Boss-Blau #004D9E */
  --c-purple-900:#003A77;  /* Primär (dunkel) — Boss-Dunkelblau (Headlines/Footer) */
  --c-purple-800:#004185;
  --c-purple-700:#004892;
  --c-purple-600:#004D9E;  /* Sekundär — Boss-Blau */
  --c-purple-500:#1F63B0;  /* Fokus/heller Akzent */
  --c-purple-400:#6C97CE;
  --c-purple-200:#C3D5EB;
  --c-purple-100:#E4EDF7;
  --c-purple-050:#F2F7FB;

  /* CTA in Boss-Blau (statt MR.KNOW-Rot #C00000) — wie die Buttons auf bossinfo.com */
  --c-red-600:#004D9E;     /* CTA / Buttons */
  --c-red-700:#003A77;     /* CTA Hover */
  --c-red-500:#1F63B0;
  --c-red-100:#E4EDF7;
}

/* Kundenwunsch Boss Info (20.08.2026): einheitliche Textfarbe im „Über Boss Info"-Block.
   microsite.css graut Folgeabsätze ab (.ms-about p + p → --text-muted); hier neutralisiert,
   damit alle Absätze wie der Lead in --text stehen. microsite.css selbst bleibt
   vorlagen-identisch — Partner-Abweichungen gehören in diese Datei. */
.ms-about p + p { color: var(--text); }
