/* =========================================================
   AD EMOTION – Stream UI v2 (heller, übersichtlicher)
   Dachclaim: Wir machen Marken stark.
   Dreipunkt: Sichtbar. Wirksam. Stark.
   ========================================================= */

:root {
  /* Farben – wärmeres Marine-Dark als Bühne */
  --bg:        #0F1924;
  --bg-2:      #16222F;
  --bg-3:      #1F2D3E;
  --bg-elev:   #243345;
  --line:      #28384B;
  --line-2:    #34465D;
  --ink:       #F4F6F9;
  --mist:      #A6B0BF;
  --muted:     #6B7385;
  --topnav-bg: rgba(15,25,36,.85);
  --topnav-bg-scrolled: rgba(15,25,36,.92);
  --card-shadow: 0 20px 40px -16px rgba(0,0,0,.5);

  --c-ocean:   #0B1F3A;
  --c-teal:    #00B8B0;
  --c-teal-2:  #2EE6DC;
  /* PRIMÄRFARBE — Logo-Rot von AD EMOTION (anpassbar) */
  --c-red:     #E2241B;
  --c-red-2:   #FF4F36;
  --c-red-dark:#B81A14;
  /* Legacy-Alias: --c-coral verweist auf das Primärrot, damit alle bestehenden Komponenten ohne Code-Diff sofort die neue Marke tragen */
  --c-coral:   #E2241B;
  --c-coral-2: #FF4F36;
  --c-sunset:  #FF8A4C; /* warmer Akzent für skate-aid-Block / Aloha-Touches */
  --c-sand:    #E9DFCC;
  --c-kelp:    #3FB68A;
  --c-yellow:  #FFCD3C;
  --c-concrete:#7C8493;
  --c-grip:    #1A1D24;

  --f-display: "Space Grotesk", "Inter", system-ui, sans-serif;
  --f-body:    "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --f-mono:    "JetBrains Mono", ui-monospace, "SF Mono", monospace;

  --pad: clamp(20px, 4vw, 60px);
  --row-gap: 64px;
  --section-gap: 96px;

  --ease: cubic-bezier(.2,.8,.2,1);
  --t-fast: 180ms;
  --t-base: 320ms;
  --t-slow: 600ms;

  --shadow-card: 0 30px 60px -20px rgba(0,0,0,.6), 0 14px 30px -10px rgba(0,0,0,.45);
  --shadow-glow: 0 0 0 1px rgba(255,255,255,.06);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; color: inherit; }
:focus-visible { outline: 2px solid var(--c-teal-2); outline-offset: 3px; border-radius: 4px; }

/* ================== TOP NAV ================== */
.topnav {
  position: fixed; left: 0; right: 0; top: 0; z-index: 100;
  padding: 16px var(--pad);
  display: flex; align-items: center; gap: 28px;
  background: linear-gradient(180deg, rgba(15,25,36,.85) 0%, rgba(15,25,36,0) 100%);
  transition: background var(--t-base) var(--ease), border-color var(--t-base) var(--ease);
  border-bottom: 1px solid transparent;
}
.topnav.is-scrolled {
  background: rgba(15,25,36,.92);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom-color: var(--line);
}

.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-display); font-weight: 700; letter-spacing: .04em;
  color: var(--ink); font-size: 17px;
}
.brand-mark { width: 28px; height: 28px; }
.brand-dot  { color: var(--c-coral); }

.topnav-menu { display: flex; gap: 22px; margin-left: 8px; }
.topnav-link {
  font-size: 14px; font-weight: 500; color: rgba(255,255,255,.7);
  letter-spacing: .01em; position: relative; padding: 4px 0;
  transition: color var(--t-fast) var(--ease);
}
.topnav-link:hover, .topnav-link[aria-current] { color: var(--ink); }
.topnav-link[aria-current]::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 2px; background: var(--c-coral); border-radius: 2px;
}

.topnav-tools { margin-left: auto; display: flex; align-items: center; gap: 14px; }
.icon-btn {
  width: 38px; height: 38px; border-radius: 999px;
  background: transparent; border: 0;
  display: inline-flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.85);
  transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.icon-btn:hover { background: rgba(255,255,255,.08); color: var(--ink); }

.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px; border-radius: 999px;
  background: var(--c-coral); color: #fff; font-weight: 600; font-size: 14px;
  transition: background var(--t-base) var(--ease), transform var(--t-fast) var(--ease);
}
.nav-cta:hover { background: var(--c-coral-2); transform: translateY(-1px); }

.nav-toggle {
  display: none;
  background: transparent; border: 1px solid rgba(255,255,255,.18); border-radius: 10px;
  width: 40px; height: 40px; padding: 0; color: var(--ink);
}

/* ================== FEATURED HERO ================== */
.featured {
  position: relative;
  height: clamp(580px, 86vh, 820px);
  overflow: hidden; isolation: isolate;
}
.featured-slides { position: absolute; inset: 0; }
.featured-slide {
  position: absolute; inset: 0;
  opacity: 0; transform: scale(1.04);
  transition: opacity 800ms ease, transform 1200ms ease;
  display: flex; align-items: flex-end;
}
.featured-slide[aria-current="true"] { opacity: 1; transform: scale(1); z-index: 2; }

.backdrop { position: absolute; inset: 0; background-size: cover; background-position: center; }
.backdrop::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(15,25,36,0) 0%, rgba(15,25,36,.35) 45%, rgba(15,25,36,.85) 80%, var(--bg) 100%),
    linear-gradient(90deg, rgba(15,25,36,.85) 0%, rgba(15,25,36,.4) 35%, rgba(15,25,36,0) 65%);
}

/* Backdrops als Mock-Gradients – mit Logo-Rot als Primärakzent */
.bd-1 { background: radial-gradient(60% 80% at 70% 30%, #FF4F36 0%, transparent 60%), radial-gradient(60% 80% at 30% 70%, #2EE6DC 0%, transparent 60%), linear-gradient(135deg, #0B1F3A, #16222F); }
.bd-2 { background: radial-gradient(70% 80% at 60% 30%, #FF8A4C 0%, transparent 55%), radial-gradient(60% 80% at 20% 80%, #E2241B 0%, transparent 60%), linear-gradient(135deg, #2A1A1A, #0F1924); }
.bd-3 { background: radial-gradient(70% 80% at 80% 40%, #2EE6DC 0%, transparent 55%), radial-gradient(60% 80% at 20% 70%, #B81A14 0%, transparent 70%), linear-gradient(135deg, #0A2438, #0F1924); }
.bd-4 { background: radial-gradient(60% 80% at 60% 30%, #E2241B 0%, transparent 60%), radial-gradient(60% 80% at 20% 80%, #FFCD3C 0%, transparent 50%), linear-gradient(135deg, #2A1A1A, #0F1924); }
.bd-skate { background: radial-gradient(60% 80% at 75% 25%, #FFCD3C 0%, transparent 55%), radial-gradient(60% 80% at 25% 75%, #E2241B 0%, transparent 55%), linear-gradient(135deg, #1A1D24 0%, #0F1924 100%); }

.featured-content {
  position: relative; z-index: 3;
  padding: 0 var(--pad) clamp(72px, 9vw, 120px);
  width: 100%; max-width: 980px;
}
.featured-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-mono); font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--c-teal-2); margin-bottom: 18px;
}
.featured-tag::before {
  content: ""; width: 6px; height: 6px; border-radius: 999px; background: var(--c-coral);
  box-shadow: 0 0 0 6px rgba(255,92,73,.18);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%,100%{ box-shadow: 0 0 0 6px rgba(255,92,73,.18); }
  50%{ box-shadow: 0 0 0 11px rgba(255,92,73,.05); }
}
.featured-title {
  font-family: var(--f-display); font-weight: 700;
  font-size: clamp(44px, 7vw, 96px); line-height: .98; letter-spacing: -.025em;
  margin: 0 0 16px;
  max-width: 16ch;
  text-shadow: 0 4px 30px rgba(0,0,0,.4);
}
.featured-signature {
  font-family: var(--f-display); font-weight: 600;
  font-size: clamp(20px, 2.2vw, 28px); letter-spacing: -.005em;
  margin: 0 0 22px;
  color: var(--ink);
  display: flex; flex-wrap: wrap; gap: 14px; align-items: center;
}
.featured-signature span {
  display: inline-block; padding: 0;
  position: relative;
}
.featured-signature span:not(:last-child)::after {
  content: ""; display: inline-block; width: 6px; height: 6px; border-radius: 999px;
  background: var(--c-coral); margin-left: 14px; vertical-align: middle;
}
.featured-meta {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  margin-bottom: 14px; font-size: 13px; color: rgba(255,255,255,.78);
  font-family: var(--f-mono); letter-spacing: .04em;
}
.featured-meta .pill {
  padding: 4px 10px; border: 1px solid rgba(255,255,255,.22); border-radius: 4px;
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
}
.featured-meta .kpi { color: var(--c-teal-2); font-weight: 700; }
.featured-meta .dot { width: 4px; height: 4px; border-radius: 999px; background: rgba(255,255,255,.5); }
.featured-desc {
  font-size: clamp(15px, 1.4vw, 18px);
  color: rgba(255,255,255,.86); max-width: 60ch; margin: 0 0 28px;
  text-shadow: 0 2px 8px rgba(0,0,0,.4);
}
.featured-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.btn-play {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 28px; border-radius: 6px;
  background: var(--ink); color: var(--c-grip);
  font-weight: 700; font-size: 15px; border: 0;
  transition: background var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}
.btn-play:hover { background: #fff; transform: translateY(-1px); }
.btn-play svg { width: 18px; height: 18px; }
.btn-info {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 28px; border-radius: 6px;
  background: rgba(120,120,140,.32); color: var(--ink); backdrop-filter: blur(6px);
  font-weight: 600; font-size: 15px; border: 0;
  transition: background var(--t-fast) var(--ease);
}
.btn-info:hover { background: rgba(120,120,140,.5); }
.btn-info svg { width: 18px; height: 18px; }

.featured-dots {
  position: absolute; right: var(--pad); bottom: clamp(72px, 9vw, 120px); z-index: 4;
  display: flex; gap: 8px;
}
.featured-dots button {
  width: 22px; height: 3px; border-radius: 2px; padding: 0;
  background: rgba(255,255,255,.35); border: 0;
  transition: background var(--t-base) var(--ease), width var(--t-base) var(--ease);
}
.featured-dots button[aria-current="true"] { background: var(--ink); width: 38px; }

/* ================== BROWSE BAR ================== */
.browse-bar {
  position: sticky; top: 70px; z-index: 60;
  background: rgba(15,25,36,.9);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
  padding: 14px var(--pad);
  display: flex; align-items: center; gap: 14px; flex-wrap: nowrap;
  overflow-x: auto; scrollbar-width: none;
}
.browse-bar::-webkit-scrollbar { display: none; }
.browse-label {
  font-family: var(--f-mono); font-size: 11px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--mist);
  white-space: nowrap; padding-right: 6px; border-right: 1px solid var(--line);
}
.browse-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px; border-radius: 999px;
  background: var(--bg-3); border: 1px solid var(--line);
  font-size: 13px; color: rgba(255,255,255,.82);
  white-space: nowrap;
  transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
}
.browse-chip:hover { background: var(--bg-elev); color: var(--ink); }
.browse-chip[aria-current="true"] {
  background: var(--ink); color: var(--c-grip); border-color: var(--ink);
}

/* ================== ROWS ================== */
.row-section {
  padding: var(--row-gap) 0 0;
  position: relative;
}
.row-head {
  display: flex; align-items: baseline; justify-content: space-between; gap: 16px;
  padding: 0 var(--pad);
  margin: 0 0 22px;
  flex-wrap: wrap;
}
.row-head-text {
  flex: 1; min-width: 280px;
}
.row-title {
  font-family: var(--f-display); font-weight: 700;
  font-size: clamp(22px, 2.4vw, 28px); letter-spacing: -.005em;
  margin: 0 0 6px;
  color: var(--ink);
}
.row-title .accent { color: var(--c-coral); }
.row-subtitle {
  font-size: 14px; color: var(--mist); margin: 0; max-width: 62ch;
}
.row-link {
  font-family: var(--f-mono); font-size: 12px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--mist);
  display: inline-flex; align-items: center; gap: 4px;
  transition: color var(--t-fast) var(--ease);
  white-space: nowrap;
}
.row-link:hover { color: var(--ink); }
.row-link::after { content: "→"; }

.row-wrap {
  position: relative;
  padding: 0 var(--pad);
}
.row-scroller {
  display: flex; gap: 14px;
  overflow-x: auto; overflow-y: visible;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 18px 0;
  scroll-padding-left: var(--pad);
}
.row-scroller::-webkit-scrollbar { display: none; }

.row-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 56px; height: 56px; border-radius: 999px;
  background: rgba(15,25,36,.78); color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--line);
  opacity: 0; pointer-events: none;
  transition: opacity var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
  z-index: 10; font-size: 22px;
}
.row-wrap:hover .row-nav { opacity: 1; pointer-events: auto; }
.row-nav:hover { background: var(--bg-elev); border-color: var(--line-2); }
.row-nav.prev { left: calc(var(--pad) - 28px); }
.row-nav.next { right: calc(var(--pad) - 28px); }
.row-nav[disabled] { opacity: 0; pointer-events: none; }

/* ================== CARDS ================== */
.card {
  position: relative; flex: 0 0 auto;
  width: clamp(260px, 26vw, 380px);
  aspect-ratio: 16/9;
  border-radius: 10px;
  overflow: hidden; cursor: pointer;
  scroll-snap-align: start;
  background: var(--bg-2); border: 1px solid var(--line);
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease), z-index 0s linear var(--t-base);
  isolation: isolate;
}
.card:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: var(--shadow-card);
  z-index: 5;
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease), z-index 0s;
}
.card-art {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.card-art::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,25,36,0) 30%, rgba(15,25,36,.92) 100%);
}
.art-strategy   { background: radial-gradient(60% 70% at 30% 40%, #0B1F3A 0%, transparent 60%), linear-gradient(135deg, #1F2D3E, #0F1924); }
.art-creation   { background: linear-gradient(135deg, #E2241B 0%, #FFCD3C 100%); }
.art-print      { background: linear-gradient(135deg, #E9DFCC 0%, #C7B79C 100%); }
.art-motion     { background: linear-gradient(135deg, #2A1A4A 0%, #6837A3 50%, #FF5C49 100%); }
.art-social     { background: linear-gradient(135deg, #FF8A7A 0%, #2EE6DC 100%); }
.art-search     { background: linear-gradient(135deg, #0B1F3A 0%, #2EE6DC 100%); }
.art-media      { background: linear-gradient(135deg, #0B1F3A 0%, #1A3A6A 50%, #FF5C49 100%); }
.art-perf       { background: linear-gradient(135deg, #16222F 0%, #3FB68A 100%); }
.art-ai         { background: linear-gradient(135deg, #0A2438 0%, #2EE6DC 50%, #FF5C49 100%); }
.art-auto       { background: linear-gradient(135deg, #0B1F3A 0%, #7C8493 100%); }
.art-retail     { background: linear-gradient(135deg, #FF5C49 0%, #FFD17A 100%); }
.art-recruit    { background: linear-gradient(135deg, #3FB68A 0%, #2EE6DC 100%); }
.art-realestate { background: linear-gradient(135deg, #1F2D3E 0%, #6837A3 100%); }
.art-mittel     { background: linear-gradient(135deg, #1A3A6A 0%, #3FB68A 100%); }
.art-health     { background: linear-gradient(135deg, #00B8B0 0%, #0B1F3A 100%); }
.art-culture    { background: linear-gradient(135deg, #6837A3 0%, #FF5C49 100%); }
.art-energie    { background: linear-gradient(135deg, #0B1F3A 0%, #F5B82E 60%, #3FB68A 100%); }
.art-skate      { background:
  linear-gradient(135deg, #1A1D24 0%, #7C8493 60%, #FFCD3C 100%);
}

.art-pattern {
  position: absolute; inset: 0; pointer-events: none;
  background-image: repeating-linear-gradient(45deg, rgba(255,255,255,.05) 0 2px, transparent 2px 16px);
  mix-blend-mode: overlay;
}

.card-tag {
  position: absolute; top: 12px; left: 12px;
  font-family: var(--f-mono); font-size: 10px; letter-spacing: .14em;
  text-transform: uppercase; color: rgba(255,255,255,.9);
  background: rgba(15,25,36,.6); padding: 5px 10px; border-radius: 4px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.12);
  z-index: 3;
}
.card-tag.is-new { background: var(--c-coral); color: white; border-color: var(--c-coral); }
.card-tag.is-aloha { background: var(--c-yellow); color: var(--c-grip); border-color: var(--c-yellow); }

.card-title {
  position: absolute; left: 16px; right: 16px; bottom: 14px; z-index: 2;
  font-family: var(--f-display); font-weight: 700;
  font-size: clamp(15px, 1.2vw, 18px); line-height: 1.18; letter-spacing: -.005em;
  color: var(--ink);
  text-shadow: 0 2px 8px rgba(0,0,0,.6);
}

.card-detail {
  position: absolute; inset: 0; z-index: 4;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 18px;
  background: linear-gradient(180deg, rgba(15,25,36,0) 30%, rgba(15,25,36,.95) 100%);
  opacity: 0; transition: opacity var(--t-base) var(--ease);
  pointer-events: none;
}
.card:hover .card-detail { opacity: 1; pointer-events: auto; }
.card-detail .meta {
  display: flex; gap: 8px; flex-wrap: wrap; margin-top: 8px;
  font-family: var(--f-mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.7);
}
.card-detail .meta .kpi { color: var(--c-teal-2); }
.card-detail .meta span + span::before { content: "·"; margin-right: 4px; color: rgba(255,255,255,.4); }
.card-detail .descr {
  font-size: 13px; color: rgba(255,255,255,.85);
  margin: 8px 0 12px; max-height: 4em; overflow: hidden;
}
.card-detail .actions { display: flex; gap: 8px; }
.card-detail .mini-btn {
  width: 32px; height: 32px; border-radius: 999px;
  background: rgba(255,255,255,.12); display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,.25);
  transition: background var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
}
.card-detail .mini-btn:hover { background: var(--ink); color: var(--c-grip); border-color: var(--ink); }
.card-detail .mini-btn.play { background: var(--ink); color: var(--c-grip); border-color: var(--ink); }
.card-detail .mini-btn.play:hover { background: #fff; }

.card.poster {
  aspect-ratio: 2/3;
  width: clamp(180px, 16vw, 240px);
}
.card.poster .card-title { font-size: 16px; }

.card.wide {
  aspect-ratio: 21/9;
  width: clamp(360px, 40vw, 600px);
}

.card.discipline .card-art::after {
  background: linear-gradient(180deg, rgba(15,25,36,0) 0%, rgba(15,25,36,.5) 60%, rgba(15,25,36,.95) 100%);
}
.card.discipline .card-title { font-size: 21px; }
.card.discipline .icon {
  position: absolute; top: 14px; right: 14px;
  width: 34px; height: 34px; border-radius: 8px;
  background: rgba(255,255,255,.14); color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,.18);
}

/* ================== STÄRKE-LEISTE (Marken-Triade-Banner) ================== */
.triade {
  margin: var(--row-gap) var(--pad) 0;
  border-radius: 16px;
  background:
    radial-gradient(60% 80% at 80% 20%, rgba(0,184,176,.25), transparent 60%),
    radial-gradient(60% 80% at 20% 80%, rgba(255,92,73,.22), transparent 60%),
    linear-gradient(135deg, #142A4B 0%, #0F1924 100%);
  border: 1px solid var(--line);
  padding: clamp(36px, 5vw, 56px) clamp(28px, 4vw, 48px);
  display: grid; grid-template-columns: 1.1fr 2fr; gap: clamp(28px, 4vw, 56px); align-items: center;
}
.triade-headline {
  font-family: var(--f-display); font-weight: 700;
  font-size: clamp(28px, 3.6vw, 44px); line-height: 1.05; margin: 0;
}
.triade-headline .accent { color: var(--c-coral); }
.triade-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.triade-pill {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px 20px;
  transition: border-color var(--t-base) var(--ease), background var(--t-base) var(--ease);
}
.triade-pill:hover { border-color: var(--c-coral); background: rgba(255,92,73,.06); }
.triade-pill .label {
  font-family: var(--f-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--c-teal-2); margin-bottom: 6px;
}
.triade-pill .name {
  font-family: var(--f-display); font-weight: 700; font-size: 22px; color: var(--ink); margin-bottom: 8px;
}
.triade-pill .descr { font-size: 14px; color: var(--mist); margin: 0; }

/* ================== CTA BANNER ================== */
.cta-banner {
  margin: var(--section-gap) var(--pad) calc(var(--section-gap) - 32px);
  position: relative; overflow: hidden; border-radius: 18px;
  padding: clamp(52px, 7vw, 96px) clamp(28px, 5vw, 64px);
  background:
    radial-gradient(60% 80% at 80% 20%, rgba(0,184,176,.4), transparent 60%),
    radial-gradient(60% 80% at 20% 80%, rgba(255,92,73,.35), transparent 60%),
    linear-gradient(135deg, #0B1F3A 0%, #16222F 100%);
  border: 1px solid var(--line);
  text-align: left;
}
.cta-banner h2 {
  font-family: var(--f-display); font-weight: 700;
  font-size: clamp(32px, 4.6vw, 56px); line-height: 1.05; letter-spacing: -.02em;
  margin: 0 0 16px; max-width: 20ch;
}
.cta-banner p { color: rgba(255,255,255,.78); max-width: 56ch; margin: 0 0 28px; font-size: 17px; }
.cta-banner .actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-banner .btn-coral {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 6px;
  background: var(--c-coral); color: #fff; font-weight: 700; font-size: 15px;
  border: 0; transition: background var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}
.cta-banner .btn-coral:hover { background: var(--c-coral-2); transform: translateY(-1px); }
.cta-banner .btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 6px;
  background: transparent; color: var(--ink); font-weight: 600; font-size: 15px;
  border: 1px solid rgba(255,255,255,.25);
}
.cta-banner .btn-ghost:hover { background: rgba(255,255,255,.08); }

/* ================== FOOTER ================== */
.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: 56px var(--pad) 32px;
  color: var(--mist); font-size: 14px;
}
.footer-cols {
  display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 36px;
  margin-bottom: 36px;
}
.footer-cols h4 { color: var(--ink); font-family: var(--f-display); font-size: 13px; letter-spacing: .08em; text-transform: uppercase; margin: 0 0 12px; }
.footer-cols ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.footer-cols a:hover { color: var(--ink); }
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px;
  border-top: 1px solid var(--line); padding-top: 22px; font-size: 13px; color: var(--muted);
}
.footer-bottom .brand { color: var(--ink); }

.aloha-line {
  border-top: 1px solid var(--line);
  padding: 18px var(--pad);
  display: flex; gap: 16px; align-items: center;
  font-family: var(--f-mono); font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted);
}
.aloha-line .wave {
  display: inline-block; width: 28px; height: 2px;
  background: linear-gradient(90deg, var(--c-coral), var(--c-teal));
}

/* ================== SUBPAGE: SHOW HERO ================== */
.show-hero {
  position: relative; min-height: 84vh;
  display: flex; align-items: flex-end;
  padding: 0; overflow: hidden;
}
.show-hero .backdrop { position: absolute; inset: 0; }
.show-hero .content {
  position: relative; z-index: 3;
  padding: 140px var(--pad) clamp(56px, 7vw, 96px);
  max-width: 980px;
}
.show-crumb {
  font-family: var(--f-mono); font-size: 11px; letter-spacing: .18em;
  text-transform: uppercase; color: rgba(255,255,255,.6);
  margin-bottom: 22px;
}
.show-crumb a:hover { color: var(--c-teal-2); }
.show-title {
  font-family: var(--f-display); font-weight: 700;
  font-size: clamp(40px, 6.2vw, 84px); line-height: .98; letter-spacing: -.025em;
  margin: 0 0 18px; max-width: 20ch;
}
.show-meta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 18px; font-size: 13px; color: rgba(255,255,255,.78); font-family: var(--f-mono); }
.show-meta .pill {
  padding: 4px 10px; border: 1px solid rgba(255,255,255,.22); border-radius: 4px;
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
}
.show-meta .kpi { color: var(--c-teal-2); font-weight: 700; }
.show-desc {
  font-size: clamp(15px, 1.3vw, 18px);
  color: rgba(255,255,255,.85); max-width: 60ch; margin: 0 0 28px;
}
.show-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ================== SECTIONS ================== */
.section { padding: clamp(64px, 8vw, 96px) var(--pad); }
.section h2 {
  font-family: var(--f-display); font-weight: 700;
  font-size: clamp(28px, 3.6vw, 44px); line-height: 1.1; letter-spacing: -.015em;
  margin: 0 0 24px;
}
.section-eyebrow {
  font-family: var(--f-mono); font-size: 11px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--c-coral);
  margin: 0 0 12px;
}
.lead {
  font-size: clamp(18px, 1.6vw, 22px); line-height: 1.5;
  color: rgba(255,255,255,.9); max-width: 70ch; margin: 0 0 28px;
}
.lead strong { color: var(--c-coral); }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.feature {
  background: var(--bg-2); border: 1px solid var(--line); padding: 26px; border-radius: 12px;
  display: flex; flex-direction: column; gap: 10px;
  transition: border-color var(--t-base) var(--ease), background var(--t-base) var(--ease);
}
.feature:hover { border-color: var(--line-2); background: var(--bg-3); }
.feature .icon { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.06); color: var(--c-teal-2); display: inline-flex; align-items: center; justify-content: center; }
.feature h4 { font-family: var(--f-display); margin: 0; font-size: 18px; color: var(--ink); }
.feature p { margin: 0; color: var(--mist); font-size: 14px; }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.step {
  background: var(--bg-2); border: 1px solid var(--line); padding: 24px; border-radius: 12px;
  position: relative;
}
.step .n { font-family: var(--f-mono); font-size: 11px; color: var(--c-coral); letter-spacing: .12em; margin-bottom: 12px; display: inline-block; }
.step h4 { font-family: var(--f-display); margin: 0 0 6px; color: var(--ink); font-size: 17px; }
.step p { margin: 0; color: var(--mist); font-size: 14px; }

.faq { display: flex; flex-direction: column; gap: 8px; max-width: 920px; }
.faq-item {
  background: var(--bg-2); border: 1px solid var(--line); border-radius: 12px;
}
.faq-q {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  width: 100%; padding: 20px 24px; background: transparent; border: 0;
  text-align: left; font-family: var(--f-display); font-weight: 600;
  color: var(--ink); font-size: 17px; cursor: pointer;
}
.faq-q .ind {
  width: 26px; height: 26px; border-radius: 999px;
  background: var(--bg-3); display: inline-flex; align-items: center; justify-content: center;
  transition: transform var(--t-base) var(--ease), background var(--t-base) var(--ease);
  flex-shrink: 0;
}
.faq-item[open] .faq-q .ind { transform: rotate(45deg); background: var(--c-coral); }
.faq-a { padding: 0 24px 22px; color: var(--mist); font-size: 15px; }

/* Case detail */
.case-layout {
  display: grid; grid-template-columns: 1fr 320px; gap: 56px;
  padding: clamp(56px, 7vw, 88px) var(--pad);
}
.case-content > * + * { margin-top: 28px; }
.case-content h2 { font-family: var(--f-display); font-size: 26px; color: var(--ink); margin: 32px 0 12px; }
.case-content p { color: rgba(255,255,255,.88); font-size: 16px; line-height: 1.65; }
.case-content ul { color: rgba(255,255,255,.85); padding-left: 22px; }
.case-content ul li { margin-bottom: 6px; }
.case-content .pull {
  background: var(--bg-2); border-left: 4px solid var(--c-coral);
  padding: 20px 24px; border-radius: 10px; font-style: italic; color: var(--ink); font-size: 17px;
}

.case-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 24px 0; }
.kpi-card {
  background: var(--bg-2); border: 1px solid var(--line); border-radius: 14px; padding: 28px;
  text-align: center;
}
.kpi-card .num { font-family: var(--f-display); font-size: 44px; color: var(--c-coral); font-variant-numeric: tabular-nums; line-height: 1; }
.kpi-card .label { color: var(--mist); font-size: 13px; margin-top: 8px; }

.case-sidebar {
  position: sticky; top: 100px; align-self: start;
  background: var(--bg-2); border: 1px solid var(--line); border-radius: 14px; padding: 24px;
}
.case-sidebar h4 { font-family: var(--f-display); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: var(--c-teal-2); margin: 0 0 14px; }
.case-sidebar dl { display: grid; grid-template-columns: 1fr; gap: 14px; margin: 0; }
.case-sidebar dt { font-family: var(--f-mono); font-size: 10px; letter-spacing: .12em; color: var(--muted); text-transform: uppercase; }
.case-sidebar dd { margin: 4px 0 0; color: var(--ink); font-weight: 600; font-size: 14px; }

/* ================== MOBILE SHEET ================== */
.mobile-sheet {
  position: fixed; inset: 0; background: var(--bg); color: var(--ink); z-index: 200;
  padding: 24px; display: none; flex-direction: column;
}
.mobile-sheet[data-open="true"] { display: flex; }
.mobile-sheet .close { align-self: flex-end; background: transparent; border: 1px solid var(--line-2); color: var(--ink); width: 44px; height: 44px; border-radius: 10px; }
.mobile-sheet nav { display: flex; flex-direction: column; gap: 20px; margin-top: 36px; }
.mobile-sheet nav a { font-family: var(--f-display); font-size: 28px; color: var(--ink); font-weight: 700; }
.mobile-sheet .actions { margin-top: auto; display: flex; flex-direction: column; gap: 12px; }

/* ================== RESPONSIVE ================== */
@media (max-width: 1080px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .case-layout { grid-template-columns: 1fr; }
  .case-sidebar { position: static; }
  .footer-cols { grid-template-columns: 1fr 1fr 1fr; }
  .triade { grid-template-columns: 1fr; }
}
@media (max-width: 820px) {
  .topnav-menu, .nav-cta { display: none; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .featured-title { max-width: none; }
  .row-nav { display: none; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .feature-grid, .steps { grid-template-columns: 1fr; }
  .case-kpis { grid-template-columns: 1fr; }
  .triade-grid { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .featured { height: 80vh; }
  .footer-cols { grid-template-columns: 1fr; }
}

/* ================== Reveal ================== */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity var(--t-slow) var(--ease), transform var(--t-slow) var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ====================================================
   LIGHT THEME (Body: hell, Hero & Footer: dunkel)
   ==================================================== */
body.theme-light {
  --bg:        #FAFAF7;
  --bg-2:      #FFFFFF;
  --bg-3:      #F2F4F8;
  --bg-elev:   #E9EEF4;
  --line:      #E1E5EC;
  --line-2:    #C9CFD9;
  --ink:       #0B1F3A;
  --mist:      #5C6470;
  --muted:     #8A93A3;
  --topnav-bg: rgba(250,250,247,.78);
  --topnav-bg-scrolled: rgba(250,250,247,.94);
  --card-shadow: 0 16px 40px -16px rgba(11,31,58,.18);
}

body.theme-light { color: var(--ink); background: var(--bg); }

/* Top Nav: BLEIBT dunkel als Marken-Anker, auch im Light-Theme */
body.theme-light .topnav {
  background: linear-gradient(180deg, rgba(15,25,36,.92) 0%, rgba(15,25,36,.7) 100%);
}
body.theme-light .topnav.is-scrolled {
  background: rgba(15,25,36,.96);
  border-bottom-color: rgba(255,255,255,.12);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
}
/* topnav-link, brand, icon-btn, nav-toggle behalten Dark-Mode-Defaults — keine Light-Overrides nötig */

/* Hero bleibt dunkel (Show-Look) */
body.theme-light .featured { background: var(--bg-2); }
body.theme-light .featured-content { color: #fff; }
body.theme-light .backdrop::after {
  background:
    linear-gradient(180deg, rgba(15,25,36,0) 0%, rgba(15,25,36,.35) 45%, rgba(15,25,36,.85) 80%, #0F1924 100%),
    linear-gradient(90deg, rgba(15,25,36,.85) 0%, rgba(15,25,36,.4) 35%, rgba(15,25,36,0) 65%);
}
body.theme-light .featured-tag,
body.theme-light .featured-title,
body.theme-light .featured-signature,
body.theme-light .featured-desc,
body.theme-light .featured-meta { color: #fff; }
body.theme-light .featured-desc { color: rgba(255,255,255,.86); }
body.theme-light .featured-meta { color: rgba(255,255,255,.78); }
body.theme-light .featured-dots button { background: rgba(255,255,255,.35); }
body.theme-light .featured-dots button[aria-current="true"] { background: #fff; }
body.theme-light .btn-play { background: #fff; color: var(--c-grip); }
body.theme-light .btn-play:hover { background: #fff; }
body.theme-light .btn-info { background: rgba(255,255,255,.18); color: #fff; }

/* Browse-Bar: hell */
body.theme-light .browse-bar {
  background: rgba(250,250,247,.92);
  border-bottom-color: var(--line);
}
body.theme-light .browse-label { color: var(--mist); border-right-color: var(--line); }
body.theme-light .browse-chip {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
}
body.theme-light .browse-chip:hover { background: var(--bg-3); border-color: var(--line-2); }
body.theme-light .browse-chip[aria-current="true"] {
  background: var(--c-red); color: #fff; border-color: var(--c-red);
}

/* Triade-Banner: hell mit dezenten Akzenten */
body.theme-light .triade {
  background:
    radial-gradient(60% 80% at 80% 20%, rgba(0,184,176,.10), transparent 60%),
    radial-gradient(60% 80% at 20% 80%, rgba(226,36,27,.08), transparent 60%),
    linear-gradient(135deg, #FFFFFF 0%, #F5EFE6 100%);
  border-color: var(--line);
}
body.theme-light .triade-headline { color: var(--ink); }
body.theme-light .triade-pill {
  background: #fff;
  border-color: var(--line);
}
body.theme-light .triade-pill:hover { border-color: var(--c-red); background: #FFF6F4; }
body.theme-light .triade-pill .label { color: var(--c-red); }
body.theme-light .triade-pill .name { color: var(--ink); }
body.theme-light .triade-pill .descr { color: var(--mist); }

/* Rows: heller Body, Karten weiß */
body.theme-light .row-title { color: var(--ink); }
body.theme-light .row-subtitle { color: var(--mist); }
body.theme-light .row-link { color: var(--mist); }
body.theme-light .row-link:hover { color: var(--ink); }
body.theme-light .row-nav {
  background: rgba(255,255,255,.92);
  color: var(--ink);
  border-color: var(--line);
  box-shadow: var(--card-shadow);
}
body.theme-light .row-nav:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

/* Cards heller */
body.theme-light .card { background: #fff; border-color: var(--line); }
body.theme-light .card:hover {
  box-shadow: 0 24px 50px -18px rgba(11,31,58,.25), 0 12px 24px -12px rgba(11,31,58,.15);
}
body.theme-light .card-art::after {
  background: linear-gradient(180deg, rgba(11,31,58,0) 30%, rgba(11,31,58,.85) 100%);
}
/* Print-Karte sieht im Light-Theme heller aus → Sand-Gradient */
body.theme-light .art-print  { background: linear-gradient(135deg, #E9DFCC 0%, #B89E76 100%); }

/* CARD-TITEL bleiben WEISS — auch im Light-Mode — weil sie über den dunklen Card-Art-Gradient liegen */
body.theme-light .card-title { color: #F4F6F9; }
body.theme-light .card-detail h3 { color: #F4F6F9; }
body.theme-light .card-detail .meta { color: rgba(255,255,255,.75); }
body.theme-light .card-detail .meta .kpi { color: var(--c-teal-2); }
body.theme-light .card-detail .descr { color: rgba(255,255,255,.88); }
body.theme-light .card-detail .meta span + span::before { color: rgba(255,255,255,.4); }
body.theme-light .card.discipline .card-title { color: #F4F6F9; }
/* Print-Karte hat hellen Sand-Hintergrund → Titel bleibt dunkel (Inline-Style im HTML) */

/* Triade-Banner Anpassungen für Light bereits oben */

/* CTA-Banner bleibt dunkel — Schrift muss aber im Light-Mode weiß überschrieben werden */
body.theme-light .cta-banner h2 { color: #fff; }
body.theme-light .cta-banner p { color: rgba(255,255,255,.85); }
body.theme-light .cta-banner .featured-tag { color: var(--c-teal-2); }
body.theme-light .cta-banner .btn-ghost { color: #fff; border-color: rgba(255,255,255,.3); }
body.theme-light .cta-banner .btn-ghost:hover { background: rgba(255,255,255,.08); }

/* Footer bleibt dunkel — Schrift / Brand bleiben hell auch im Light-Mode */
body.theme-light .site-footer { background: var(--bg); color: var(--mist); border-top-color: var(--line); }
body.theme-light .site-footer .footer-cols h4 { color: #fff; }
body.theme-light .site-footer .footer-cols a:hover { color: #fff; }
body.theme-light .site-footer .footer-bottom .brand { color: #fff; }
body.theme-light .aloha-line { color: var(--muted); border-top-color: var(--line); }

/* Show-Hero auf Sub-Pages: bleibt dunkel — Titel & Crumbs müssen weiß werden im Light-Mode */
body.theme-light .show-hero { background: var(--bg-2); }
body.theme-light .show-title { color: #fff; }
body.theme-light .show-desc { color: rgba(255,255,255,.86); }
body.theme-light .show-meta { color: rgba(255,255,255,.78); }
body.theme-light .show-crumb { color: rgba(255,255,255,.6); }
body.theme-light .show-actions .btn-info { color: #fff; }

/* Recommendation-Block auf der Signet-Seite bleibt dunkel — Schrift bleibt hell */
body.theme-light .recommendation h2 { color: #fff; }
body.theme-light .recommendation p { color: rgba(255,255,255,.88); }

/* Case-Hero / Show-Hero KPI-Cards in Case-Detail bleiben hell auf hell — bereits abgedeckt */

/* Sub-Pages: Section-Lead-Bereich hell */
body.theme-light .section h2 { color: var(--ink); }
body.theme-light .lead { color: var(--ink); }
body.theme-light .feature { background: #fff; border-color: var(--line); }
body.theme-light .feature:hover { background: var(--bg-3); border-color: var(--line-2); }
body.theme-light .feature .icon { background: var(--bg-3); color: var(--c-red); }
body.theme-light .feature h4 { color: var(--ink); }
body.theme-light .feature p { color: var(--mist); }
body.theme-light .step { background: #fff; border-color: var(--line); }
body.theme-light .step h4 { color: var(--ink); }
body.theme-light .step p { color: var(--mist); }
body.theme-light .faq-item { background: #fff; border-color: var(--line); }
body.theme-light .faq-q { color: var(--ink); }
body.theme-light .faq-q .ind { background: var(--bg-3); }
body.theme-light .faq-a { color: var(--mist); }

/* Case-Layout */
body.theme-light .case-content p { color: var(--ink); }
body.theme-light .case-content ul { color: var(--ink); }
body.theme-light .case-content h2 { color: var(--ink); }
body.theme-light .case-content .pull { background: #fff; color: var(--ink); }
body.theme-light .case-sidebar { background: #fff; border-color: var(--line); }
body.theme-light .case-sidebar dd { color: var(--ink); }
body.theme-light .kpi-card { background: #fff; border-color: var(--line); }
body.theme-light .kpi-card .label { color: var(--mist); }

/* Mobile Sheet: dunkel bleibt */

/* ================== Theme Toggle Button ================== */
.theme-toggle {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.9);
  font-size: 13px; font-weight: 500;
  transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
}
.theme-toggle:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.32); color: var(--ink); }
.theme-toggle .label { font-family: var(--f-mono); letter-spacing: .08em; text-transform: uppercase; font-size: 11px; }
/* Theme-Toggle bleibt im Light-Mode in der Dark-Nav-Variante (weiße Schrift, dezenter Border) */
.theme-toggle .icon-sun, .theme-toggle .label-light { display: none; }
.theme-toggle .icon-moon, .theme-toggle .label-dark { display: inline; }
body.theme-light .theme-toggle .icon-sun, body.theme-light .theme-toggle .label-light { display: inline; }
body.theme-light .theme-toggle .icon-moon, body.theme-light .theme-toggle .label-dark { display: none; }

/* ================== Logo (Original) ================== */
/* Nav bleibt durchgehend dunkel — also nutzen wir IMMER das weiße Logo */
.brand-img {
  height: 28px; width: auto;
  display: block;
}
.brand-img.is-dark { display: block; }
.brand-img.is-light { display: none; }
/* im Light-Mode bleibt ebenfalls das weiße Logo sichtbar (dunkle Nav) */

/* ================== Trust-Layer ================== */
.trust-numbers {
  padding: 40px 6vw 24px;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}
.trust-cell .num {
  font-family: var(--f-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 8px;
}
.trust-cell .lbl {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-muted, var(--mist));
}
@media (max-width: 900px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

.trust-clients {
  padding: 24px 6vw 40px;
  background: var(--bg-2);
  text-align: center;
}
.trust-eyebrow {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--c-coral, var(--c-red));
  margin: 0 0 16px;
}
.trust-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.trust-list li {
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  background: var(--bg-1, transparent);
  color: var(--ink);
  font-weight: 500;
}
.trust-foot {
  font-size: 12px;
  color: var(--ink-muted, var(--mist));
  font-style: italic;
  margin: 0;
}
body.theme-light .trust-numbers,
body.theme-light .trust-clients { background: var(--bg-3); }
body.theme-light .trust-list li { background: #fff; border-color: var(--line); color: var(--ink); }

/* ================== Backdrops für neue Templates ================== */
.bd-founder { background: radial-gradient(circle at 30% 40%, rgba(226,36,27,.18), transparent 60%), linear-gradient(135deg, #0B1F3A 0%, #122c4f 100%); }
.bd-glossar { background: radial-gradient(circle at 70% 30%, rgba(0,184,176,.16), transparent 60%), linear-gradient(135deg, #0B1F3A 0%, #14253f 100%); }
.bd-branche { background: radial-gradient(circle at 20% 70%, rgba(226,36,27,.14), transparent 60%), linear-gradient(135deg, #0B1F3A 0%, #142a4a 100%); }
.bd-cube    { background: radial-gradient(circle at 50% 50%, rgba(226,36,27,.22), transparent 55%), linear-gradient(135deg, #0B1F3A 0%, #1a2545 100%); }
.bd-lokal   { background: radial-gradient(circle at 80% 20%, rgba(0,184,176,.16), transparent 60%), linear-gradient(135deg, #0B1F3A 0%, #142a4a 100%); }

/* ================== Taglist (Glossar Alphabet, Branchen-Cluster) ================== */
.taglist {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 16px 0;
}
.taglist li {
  margin: 0;
}
