/* ══════════════════════════════════════════════════════════
   DVAG Karriereinfo 2026 — Apple / FLOW Design System
   Cottbus · 24. April 2026
   ══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

/* ── TOKENS ── */
:root {
  --bg:       #fbfbfd;
  --bg-dark:  #000;
  --ink:      #1d1d1f;
  --ink-soft: #424245;
  --muted:    #86868b;
  --hairline: #d2d2d7;
  --accent:   #0071e3;
  --gold:     #c8a45c;
  --navy:     #0a2540;
  --success:  #30d158;
  --danger:   #ff453a;
  --warn:     #ff9f0a;
  --radius:   22px;
  --ease:     cubic-bezier(.22,.61,.36,1);
}

/* ── RESET ── */
*, *::before, *::after {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
html, body {
  margin: 0; padding: 0; height: 100%; overflow: hidden;
  background: var(--bg); color: var(--ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  font-feature-settings: "ss01","cv11";
  letter-spacing: -.012em;
}

/* ══════════════════════════════════════════════════════════
   INTRO LAYER — CINEMATIC SPLASH SCREEN
   ══════════════════════════════════════════════════════════ */
#introScreen {
  position: fixed; inset: 0; z-index: 1000;
  overflow: visible;
}

/* Background photo — full bleed, dezent gedimmt */
.intro-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 40%;
  transform: scale(1.04);
  filter: brightness(.45) saturate(.75);
  animation: introBgReveal 1.8s var(--ease) both;
}
@keyframes introBgReveal { from { transform: scale(1.10); } to { transform: scale(1.04); } }

/* Dark overlay — zusätzliche Abdunklung für Lesbarkeit */
.intro-vignette {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(0,0,0,.60) 0%,
      rgba(0,0,0,.15) 40%,
      rgba(0,0,0,.50) 72%,
      rgba(0,0,0,.90) 100%),
    linear-gradient(120deg, rgba(0,5,20,.55) 0%, transparent 55%);
}

/* Inner layout — three-zone vertical */
.intro-inner {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  justify-content: space-between;
  padding: clamp(28px, 4vh, 52px) clamp(40px, 6vw, 96px);
}

/* TOP — logo bar */
.intro-top-bar {
  display: flex; align-items: center; gap: 14px;
  animation: fadeUp 0.9s var(--ease) 0.1s both;
}
.intro-logo {
  height: 38px; width: auto;
  filter: brightness(0) invert(1); opacity: .75;
}
.intro-brand-label {
  font-size: 15px; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.65); font-weight: 600;
  padding-left: 16px;
  border-left: 1px solid rgba(255,255,255,.25);
}

/* CENTER — main typography */
.intro-center {
  display: flex; flex-direction: column; align-items: flex-start;
  gap: clamp(10px, 1.8vh, 22px);
}
.intro-date-tag {
  font-size: clamp(14px, 1.2vw, 18px); letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.65); font-weight: 500; margin: 0;
  animation: fadeUp 1s var(--ease) 0.25s both;
}
.intro-headline {
  font-size: clamp(40px, 7vw, 108px);
  font-weight: 800; line-height: .95; letter-spacing: -.05em;
  color: #fff; margin: 0;
  animation: fadeUp 1s var(--ease) 0.4s both;
}
.intro-sub {
  font-size: clamp(26px, 4.5vw, 70px);
  font-family: 'Playfair Display', serif; font-weight: 400; font-style: italic;
  line-height: 1; letter-spacing: -.03em;
  color: rgba(255,255,255,.75); margin: 0;
  animation: fadeUp 1s var(--ease) 0.55s both;
}
.intro-sub span { color: var(--gold); }

/* BOTTOM — Navigation choices */
.intro-nav {
  display: flex; flex-direction: column; gap: 24px;
  animation: fadeUp 1s var(--ease) 0.75s both;
}

/* Primary + secondary button row */
.intro-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }

.ibtn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; border-radius: 999px;
  font-size: 15px; font-weight: 600; letter-spacing: .01em;
  cursor: pointer; border: none;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
}
.ibtn svg { flex-shrink: 0; }

.ibtn-primary {
  background: linear-gradient(135deg, #c8a43a 0%, #e8c55a 50%, #c49a2e 100%);
  color: #0a0e1a;
  font-weight: 700;
  box-shadow: 0 14px 40px -10px rgba(200,164,58,.55), 0 2px 0 rgba(255,255,255,.18) inset;
}
.ibtn-primary:hover { transform: translateY(-2px); box-shadow: 0 22px 52px -12px rgba(200,164,58,.7), 0 2px 0 rgba(255,255,255,.22) inset; }

.ibtn-secondary {
  background: rgba(200,164,58,.08);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(200,164,58,.32) !important;
  color: rgba(255,255,255,.88);
  box-shadow: 0 8px 32px -8px rgba(0,0,0,.35), 0 1px 0 rgba(255,255,255,.08) inset;
}
.ibtn-secondary:hover { background: rgba(200,164,58,.15); border-color: rgba(200,164,58,.5) !important; transform: translateY(-2px); }

/* Chapter quick-jump */
.intro-chapters { display: flex; flex-direction: column; gap: 10px; }

/* Toggle-Button */
.intro-ch-toggle {
  display: flex; align-items: center; gap: 8px;
  background: none; border: none; padding: 0; cursor: pointer;
  width: fit-content;
}
.intro-ch-toggle:hover .intro-ch-label { color: rgba(255,255,255,.75); }
.intro-ch-toggle:hover .ch-arrow { color: rgba(255,255,255,.6); }
.ch-arrow {
  color: rgba(255,255,255,.4);
  transition: transform .3s cubic-bezier(.4,0,.2,1), color .2s;
  flex-shrink: 0;
}
.intro-ch-toggle[aria-expanded="false"] .ch-arrow { transform: rotate(-90deg); }

.intro-ch-label {
  font-size: 13px; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.5); font-weight: 600;
  transition: color .2s;
}

/* Kollapsible Grid */
.intro-ch-grid {
  display: flex; flex-wrap: wrap; gap: 10px;
  overflow: visible;
  max-height: 400px;
  transition: max-height .4s cubic-bezier(.4,0,.2,1), opacity .3s ease;
  opacity: 1;
}
.intro-ch-grid.collapsed {
  max-height: 0 !important;
  overflow: hidden;
  opacity: 0;
}

/* Kapitel-Buttons mit Icon */
.intro-ch-btn {
  display: flex; align-items: center; gap: 7px;
  padding: 9px 18px 9px 14px; border-radius: 999px;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.2) !important;
  color: rgba(255,255,255,.8);
  font-size: 13px; font-weight: 500; letter-spacing: .03em;
  cursor: pointer;
  transform-origin: center;
  transition: background .22s ease, color .22s ease, transform .25s cubic-bezier(.34,1.56,.64,1), border-color .22s ease, box-shadow .22s ease;
}
.intro-ch-btn svg { flex-shrink: 0; opacity: .7; transition: opacity .2s, transform .25s cubic-bezier(.34,1.56,.64,1); }
.intro-ch-btn:hover {
  background: rgba(200,164,58,.15);
  color: #fff;
  transform: scale(1.09);
  border-color: rgba(200,164,58,.55) !important;
  box-shadow: 0 4px 18px rgba(200,164,58,.18), 0 0 0 1px rgba(200,164,58,.12);
}
.intro-ch-btn:hover svg { opacity: 1; transform: scale(1.15); }

/* Intro Gastgeber-Karten */
.intro-host-card {
  display: flex; align-items: center; gap: 11px;
  padding: 9px 16px 9px 9px;
  border-radius: 14px;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.18);
  cursor: pointer;
  transition: background .22s ease, border-color .22s ease, transform .25s cubic-bezier(.34,1.56,.64,1), box-shadow .22s ease;
}
.intro-host-card:hover {
  background: rgba(200,164,58,.12);
  border-color: rgba(200,164,58,.5);
  transform: scale(1.06);
  box-shadow: 0 4px 16px rgba(200,164,58,.15);
}
.intro-host-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  overflow: hidden; flex-shrink: 0;
  border: 2px solid rgba(200,164,58,.5);
  background: var(--blue-800);
}
.intro-host-avatar img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.intro-host-name {
  font-size: 14px; font-weight: 700; color: #fff; line-height: 1.2;
}
.intro-host-role {
  font-size: 11px; color: rgba(200,164,58,.85); margin-top: 2px;
}

/* ══════════════════════════════════════════════════════════
   SLIDESHOW LAYER
   ══════════════════════════════════════════════════════════ */
#slideshowLayer {
  position: fixed; inset: 0; z-index: 900;
  display: none; background: #000; overflow: hidden;
}
.ss-slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 2.2s ease;
  overflow: hidden;
}
.ss-slide.active { opacity: 1; }
.ss-backdrop {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  animation: kenBurnsBackdrop 18s ease-in-out infinite alternate;
}
.ss-slide.kb2 .ss-backdrop { animation-name: kenBurnsBackdrop2; }
.ss-slide.kb3 .ss-backdrop { animation-name: kenBurnsBackdrop3; }
.ss-img { display: none; }

@keyframes kenBurnsBackdrop  { from { transform: scale(1.0) translate(0,0); }     to { transform: scale(1.08) translate(-1.5%,-.8%); } }
@keyframes kenBurnsBackdrop2 { from { transform: scale(1.06) translate(1%,.5%); } to { transform: scale(1.0)  translate(-1%,-.5%); } }
@keyframes kenBurnsBackdrop3 { from { transform: scale(1.08) translate(.8%,-1%); } to { transform: scale(1.0) translate(-.8%,.8%); } }

/* Cinematische Vignette */
.ss-vignette {
  position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background: radial-gradient(ellipse 110% 110% at 50% 50%, transparent 38%, rgba(0,0,0,.6) 100%);
}
.ss-vignette::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    rgba(0,0,0,.4) 0%,
    transparent 22%,
    transparent 52%,
    rgba(0,0,0,.82) 100%);
}

.ss-overlay {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; align-items: center; justify-content: flex-end;
  padding: clamp(40px,6vh,80px) clamp(40px,6vw,80px);
}
.ss-date {
  font-size: 11px; letter-spacing: .28em; text-transform: uppercase;
  color: rgba(200,164,58,.9); font-weight: 700; margin: 0 0 18px;
  opacity: 0; animation: fadeUp .8s var(--ease) 1.2s both;
}
.ss-title {
  font-size: clamp(36px,5.5vw,80px); font-weight: 800; letter-spacing: -.04em;
  color: #fff; text-align: center; margin: 0 0 10px; line-height: 1.05;
  opacity: 0; animation: fadeUp .9s var(--ease) 1.6s both;
}
.ss-title-gold { color: var(--gold); font-family: 'Playfair Display', serif; font-style: italic; font-weight: 400; }
.ss-location {
  font-size: 13px; color: rgba(255,255,255,.45); letter-spacing: .2em;
  text-transform: uppercase; margin: 0 0 clamp(36px,5vh,60px);
  opacity: 0; animation: fadeUp .8s var(--ease) 2s both;
}
.ss-start-btn {
  display: flex; align-items: center; gap: 10px;
  padding: 16px 42px; border-radius: 999px;
  background: linear-gradient(135deg, #c8a43a, #e8c55a);
  border: none;
  color: #111; font-size: 15px; font-weight: 800; letter-spacing: .02em;
  cursor: pointer; transition: all .35s var(--ease);
  box-shadow: 0 4px 28px rgba(200,164,58,.5), 0 1px 0 rgba(255,255,255,.25) inset;
  opacity: 0; animation: fadeUp .7s var(--ease) 2.5s both;
}
.ss-start-btn:hover {
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 10px 44px rgba(200,164,58,.65), 0 1px 0 rgba(255,255,255,.25) inset;
}
.ss-start-btn svg { width: 16px; height: 16px; stroke: #111; }

.ss-progress { position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: rgba(255,255,255,.12); }
.ss-progress-fill { height: 100%; background: linear-gradient(90deg, var(--accent), var(--gold)); width: 0; }
.ss-dots { position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%); display: flex; gap: 7px; }
.ss-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,.3); cursor: pointer; transition: all .3s; }
.ss-dot.active { background: #fff; transform: scale(1.3); }

/* ══════════════════════════════════════════════════════════
   PRESENTATION WRAPPER
   ══════════════════════════════════════════════════════════ */
#presentation {
  position: fixed; inset: 0;
  display: none;
}
#presentation.active { display: block; }

/* Progress bar */
#progressBar {
  position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 200;
  background: rgba(0,0,0,.06);
}
body.dark-chrome #progressBar { background: rgba(255,255,255,.12); }
#progressFill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  transition: width .6s var(--ease);
}

/* ══════════════════════════════════════════════════════════
   CHAPTER NAVIGATION
   ══════════════════════════════════════════════════════════ */
#chapterNav {
  position: fixed; top: 18px; left: 18px; z-index: 150;
}
.cn-toggle {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(15,13,10,.45);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 2px 8px rgba(0,0,0,.25);
  cursor: pointer; transition: all .25s var(--ease);
}
.cn-toggle:hover { transform: scale(1.08); background: rgba(255,255,255,.22); }
.cn-toggle svg { stroke: rgba(255,255,255,.9); }

.cn-panel {
  position: absolute; top: calc(100% + 10px); left: 0;
  width: 300px; max-height: 80vh; overflow-y: auto;
  background: rgba(22,22,24,.97);
  backdrop-filter: blur(40px) saturate(1.8); -webkit-backdrop-filter: blur(40px) saturate(1.8);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 20px; padding: 6px;
  box-shadow: 0 4px 6px rgba(0,0,0,.2), 0 20px 60px -12px rgba(0,0,0,.6);
  opacity: 0; transform: translateY(-6px) scale(0.97);
  pointer-events: none;
  transition: opacity .22s var(--ease), transform .32s cubic-bezier(0.34,1.56,0.64,1);
}
.cn-panel.open { opacity: 1; transform: none; pointer-events: all; }

/* Premium scrollbar for nav panel */
.cn-panel { scrollbar-width: thin; scrollbar-color: rgba(200,164,58,.32) transparent; }
.cn-panel::-webkit-scrollbar { width: 4px; }
.cn-panel::-webkit-scrollbar-track {
  background: rgba(255,255,255,.03); border-radius: 999px; margin: 6px 0;
}
.cn-panel::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(200,164,58,.2) 0%, rgba(200,164,58,.5) 50%, rgba(200,164,58,.2) 100%);
  border-radius: 999px;
  border: 1px solid rgba(200,164,58,.18);
  box-shadow: 0 0 6px rgba(200,164,58,.2);
}
.cn-panel::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, rgba(200,164,58,.45) 0%, rgba(200,164,58,.8) 50%, rgba(200,164,58,.45) 100%);
  box-shadow: 0 0 10px rgba(200,164,58,.4);
}

/* Panel header */
.cn-panel-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 14px 8px;
  border-bottom: 1px solid rgba(255,255,255,.07); margin-bottom: 4px;
}
.cn-panel-title {
  font-size: 11px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(255,255,255,.35);
}

/* Chapter rows */
.cn-chapter {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px; border-radius: 12px;
  font-size: 13px; font-weight: 500; color: rgba(255,255,255,.65);
  cursor: pointer; transition: background .15s ease, color .15s ease;
  user-select: none;
}
.cn-chapter:hover { background: rgba(255,255,255,.07); color: #fff; }
.cn-chapter.active { color: var(--gold); }
.cn-chapter.expanded { background: rgba(200,164,92,.06); }

.cn-num {
  width: 24px; height: 24px; border-radius: 8px;
  background: rgba(255,255,255,.1); color: rgba(255,255,255,.7);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 800; letter-spacing: -.01em;
  flex-shrink: 0; transition: background .15s ease, color .15s ease;
}
.cn-chapter.active .cn-num { background: var(--gold); color: #000; }
.cn-label { flex: 1; }
.cn-arrow {
  flex-shrink: 0; opacity: .4;
  transition: transform .25s cubic-bezier(0.34,1.56,0.64,1), opacity .2s ease;
}
.cn-chapter.expanded .cn-arrow { transform: rotate(180deg); opacity: .7; }

/* Sub-slide accordion */
.cn-sub {
  max-height: 0; overflow: hidden;
  transition: max-height .35s cubic-bezier(0.22,0.61,0.36,1);
}
.cn-sub.open { max-height: 600px; }
.cn-sub-item {
  display: flex; align-items: center; gap: 10px;
  padding: 7px 12px 7px 22px; border-radius: 10px;
  font-size: 12px; color: rgba(255,255,255,.4);
  cursor: pointer; transition: background .15s ease, color .15s ease;
}
.cn-sub-item:hover { background: rgba(255,255,255,.06); color: #fff; }
.cn-sub-item.active { color: var(--gold); font-weight: 600; }
.cn-sub-num {
  font-size: 10px; font-weight: 700; letter-spacing: .06em;
  color: rgba(255,255,255,.2); min-width: 22px; font-variant-numeric: tabular-nums;
}
.cn-sub-item.active .cn-sub-num { color: var(--gold); }
.cn-sub-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: rgba(255,255,255,.2); flex-shrink: 0;
}
.cn-sub-item.active .cn-sub-dot { background: var(--gold); }
.cn-sub-label {
  font-size: 9px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(200,164,58,.55); padding: 10px 22px 3px;
  border-top: 1px solid rgba(200,164,58,.18); margin-top: 4px;
}

/* Card SVG icons (replace emojis) */
.card-icon {
  width: 46px; height: 46px; margin-bottom: 14px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border-radius: 14px; background: rgba(0,113,227,.08);
}
.card-icon svg {
  width: 24px; height: 24px;
  stroke: var(--accent); stroke-width: 1.8;
  fill: none; stroke-linecap: round; stroke-linejoin: round;
}
.glass .card-icon { background: rgba(200,164,92,.1); }
.glass .card-icon svg { stroke: rgba(200,164,92,.85); }
.accent-grad .card-icon { background: rgba(255,255,255,.18); }
.accent-grad .card-icon svg,
.gold-grad .card-icon svg { stroke: rgba(255,255,255,.92); }
.gold-grad .card-icon { background: rgba(255,255,255,.18); }
.card-icon-sm { width: 38px; height: 38px; border-radius: 11px; margin-bottom: 10px; }
.card-icon-sm svg { width: 20px; height: 20px; }

/* ══════════════════════════════════════════════════════════
   SLIDES
   ══════════════════════════════════════════════════════════ */
.deck { position: fixed; inset: 0; overflow: hidden; }

.slide {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  padding: clamp(48px, 7vw, 100px) clamp(32px, 6vw, 96px) clamp(80px, 9vh, 100px);
  opacity: 0; visibility: hidden;
  transform: translateY(16px) scale(.996);
  transition: opacity .7s var(--ease), transform .9s var(--ease), visibility 0s linear .7s;
  background: linear-gradient(160deg, var(--bg) 0%, #f2ede4 100%);
  color: var(--ink); overflow: hidden;
}
.slide.active {
  opacity: 1; visibility: visible; transform: none;
  transition: opacity .9s var(--ease), transform 1s var(--ease), visibility 0s;
  z-index: 2;
}
.slide.leaving {
  z-index: 1; pointer-events: none;
}

/* Reveal animations on slide enter */
.slide.active .reveal { animation: reveal .9s var(--ease) both; }
.slide.active .reveal-1 { animation-delay: .05s; }
.slide.active .reveal-2 { animation-delay: .18s; }
.slide.active .reveal-3 { animation-delay: .32s; }
.slide.active .reveal-4 { animation-delay: .48s; }
.slide.active .reveal-5 { animation-delay: .64s; }
.slide.active .reveal-6 { animation-delay: .80s; }
@keyframes reveal { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }

/* Slide variants */
.slide.dark  { background: #000; color: #f5f5f7; }
.slide.silver{ background: linear-gradient(180deg, #f5f5f7 0%, #e8e8ec 100%); }
.slide.hero  { background: radial-gradient(1200px 800px at 35% 25%, #1e2a4a 0%, #05080f 60%, #000 100%); color: #fff; }
.slide.golden{ background: radial-gradient(900px 700px at 70% 30%, #2a2118 0%, #0a0805 70%); color: #fff; }
.slide.navy  { background: linear-gradient(160deg, #0a2540 0%, #021528 100%); color: #fff; }

/* Background image slides */
.bg-img { position: absolute; inset: 0; z-index: 0; }
.bg-img img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.bg-img.pos-center img { object-position: center center; }
.bg-img.tint-dark::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.5) 0%, rgba(0,0,0,.7) 60%, rgba(0,0,0,.9) 100%);
}
.bg-img.tint-vignette::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at center, rgba(0,0,0,.3) 0%, rgba(0,0,0,.85) 80%);
}
.bg-img.tint-side::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.92) 0%, rgba(0,0,0,.6) 50%, rgba(0,0,0,.1) 100%);
}
.slide.has-bg > .canvas { position: relative; z-index: 2; }
.slide.has-bg { color: #fff !important; }
.slide.has-bg .eyebrow { color: rgba(255,255,255,.65); }
.slide.has-bg p.lead { color: #e6e6eb; }

/* ── CANVAS / LAYOUT ── */
.canvas { width: min(1200px, 100%); margin: 0 auto; }
.stack { display: flex; flex-direction: column; gap: clamp(14px, 2vh, 26px); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 3vw, 52px); align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 30px); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(12px, 1.5vw, 22px); }
.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: clamp(10px, 1.2vw, 18px); }

/* ── TYPOGRAPHY ── */
.eyebrow {
  font-size: clamp(11px, .9vw, 13px); text-transform: uppercase;
  letter-spacing: .22em; color: var(--muted); font-weight: 600; margin: 0;
}
.slide.dark .eyebrow, .slide.hero .eyebrow, .slide.navy .eyebrow, .slide.golden .eyebrow { color: rgba(255,255,255,.5); }
.slide.has-bg .eyebrow { color: rgba(255,255,255,.65); }

.hero-title {
  font-size: clamp(52px, 10vw, 140px);
  font-weight: 800; line-height: .94; letter-spacing: -.05em; margin: 0;
}
h1.t { font-size: clamp(38px, 5.8vw, 90px); font-weight: 700; line-height: 1.02; letter-spacing: -.038em; margin: 0; }
h2.t { font-size: clamp(26px, 3.2vw, 52px); font-weight: 600; line-height: 1.1; letter-spacing: -.025em; margin: 0; }
h3.t { font-size: clamp(18px, 1.8vw, 28px); font-weight: 600; line-height: 1.25; letter-spacing: -.015em; margin: 0; }

p.lead {
  font-size: clamp(17px, 1.4vw, 24px); line-height: 1.5;
  color: var(--ink-soft); margin: 0;
}
.slide.dark p.lead, .slide.hero p.lead, .slide.navy p.lead, .slide.golden p.lead { color: #c7c7cc; }

.script { font-family: 'Playfair Display', serif; font-style: italic; font-weight: 400; }
.mono { font-variant-numeric: tabular-nums; font-feature-settings: "tnum"; }

/* ── PILLS ── */
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 16px; border-radius: 999px;
  background: rgba(0,0,0,.06); color: var(--ink-soft);
  font-size: 12px; font-weight: 600; letter-spacing: .04em;
}
.slide.dark .pill, .slide.hero .pill, .slide.navy .pill, .slide.golden .pill {
  background: rgba(255,255,255,.1); color: rgba(255,255,255,.85);
}
.pill.gold { background: rgba(200,164,92,.18); color: var(--gold); }
.pill.accent { background: rgba(0,113,227,.14); color: var(--accent); }
.pill.danger { background: rgba(255,69,58,.15); color: #ff6961; }

/* ── CARDS ── */
.card {
  background: #fff; border-radius: var(--radius);
  padding: clamp(20px, 2.2vw, 34px);
  box-shadow: 0 1px 0 rgba(0,0,0,.04), 0 24px 60px -30px rgba(0,0,0,.18);
  border: 1px solid rgba(0,0,0,.05);
}
.slide.dark .card, .slide.hero .card, .slide.navy .card, .slide.golden .card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.09);
  box-shadow: none;
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
}
.card.accent-grad {
  background: linear-gradient(135deg, var(--accent), #004a9e);
  color: #fff; border-color: transparent;
  box-shadow: 0 20px 50px -20px rgba(0,113,227,.5);
}
.card.gold-grad {
  background: linear-gradient(135deg, #b8923a, var(--gold));
  color: #fff; border-color: transparent;
  box-shadow: 0 20px 50px -20px rgba(200,164,92,.45);
}
.card.navy-grad {
  background: linear-gradient(135deg, #0a2540, #0071e3);
  color: #fff; border-color: transparent;
}

/* Glass card (always dark) */
.glass {
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(30px); -webkit-backdrop-filter: blur(30px);
  border: 1px solid rgba(255,255,255,.11);
  border-radius: var(--radius);
  padding: clamp(20px, 2vw, 34px);
}

/* ── KPI NUMBERS ── */
.kpi { display: flex; flex-direction: column; gap: 6px; padding: 22px; border-radius: 18px; }
.kpi .k {
  font-size: clamp(36px, 4vw, 58px); font-weight: 800; letter-spacing: -.04em; line-height: 1;
  background: linear-gradient(135deg, var(--accent), var(--gold));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.kpi .l { font-size: 13px; color: var(--muted); letter-spacing: .04em; }

/* ── BIG PERCENT ── */
.percent {
  font-size: clamp(140px, 22vw, 320px);
  font-weight: 800; letter-spacing: -.07em; line-height: .9;
  background: linear-gradient(160deg, #fff, #a1a1a6);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin: 0;
}

/* ── ICO CIRCLES ── */
.ico {
  width: 56px; height: 56px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--accent); color: #fff; font-weight: 700; font-size: 18px;
  flex-shrink: 0;
}
.ico.gold { background: var(--gold); color: #000; }
.ico.lg { width: 72px; height: 72px; font-size: 24px; }

/* ── AVATAR ── */
.avatar {
  border-radius: 50%; overflow: hidden; flex-shrink: 0;
  box-shadow: 0 0 0 3px var(--gold), 0 30px 60px -20px rgba(0,0,0,.55);
}
.avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.avatar.lg { width: 220px; height: 220px; }
.avatar.xl { width: 260px; height: 260px; }

/* ── VITA TIMELINE (VTIME) ── */
.vtime { display: flex; flex-direction: column; gap: 10px; width: 100%; max-width: 900px; margin: 0 auto; }
.vtime-row { display: grid; grid-template-columns: 100px 18px 1fr; gap: 20px; align-items: center; }
.vtime-year { font-size: clamp(18px, 1.6vw, 24px); font-weight: 700; letter-spacing: -.02em; text-align: right; color: var(--muted); }
.vtime-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.22); justify-self: center; }
.vtime-connector { width: 1px; height: 14px; background: rgba(255,255,255,.1); justify-self: center; grid-column: 2; }
.vtime-body {
  padding: 16px 22px; border-radius: var(--radius);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-left: 3px solid rgba(255,255,255,.15);
  font-size: clamp(14px, 1.2vw, 18px); color: #c7c7cc;
  transition: border-color .4s var(--ease);
}
.vtime-row.accent .vtime-year { color: var(--gold); }
.vtime-row.accent .vtime-dot { background: var(--gold); }
.vtime-row.accent .vtime-body { border-left-color: var(--gold); color: #fff; }
.vtime-row.highlight .vtime-year { color: var(--danger); }
.vtime-row.highlight .vtime-dot { background: var(--danger); }
.vtime-row.highlight .vtime-body { border-left-color: var(--danger); color: #fff; }
.vtime-row.today .vtime-year { color: #fff; }
.vtime-row.today .vtime-dot { background: #fff; }
.vtime-row.today .vtime-body { border-left-color: #fff; color: #fff; }
.vtime-row.future .vtime-year { color: var(--gold); }
.vtime-row.future .vtime-dot { background: transparent; border: 2px solid var(--gold); width: 8px; height: 8px; }
.vtime-row.future .vtime-body { border-left-color: var(--gold); border-left-style: dashed; color: var(--gold); }

/* ── INFO ROWS ── */
.info-row {
  display: flex; align-items: center; gap: 18px;
  padding: 18px 22px; border-radius: 16px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  transition: border-color .3s var(--ease);
}
.slide:not(.dark):not(.hero):not(.navy):not(.golden) .info-row {
  background: #fff;
  border-color: rgba(0,0,0,.06);
  box-shadow: 0 6px 24px -10px rgba(0,0,0,.1);
}
.info-row .i-ico {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.08); color: #fff;
  flex-shrink: 0; font-size: 18px;
}
.info-row .i-title { font-size: 16px; font-weight: 700; }
.info-row .i-sub { font-size: 13px; color: var(--muted); margin-top: 2px; }
.info-row.accent { border-color: rgba(200,164,92,.4); }
.info-row.accent .i-ico { background: var(--gold); color: #000; }
.info-row.accent .i-title { color: var(--gold); }

/* ── TABLES ── */
table.clean {
  border-collapse: separate; border-spacing: 0;
  width: 100%; font-variant-numeric: tabular-nums;
}
table.clean th, table.clean td {
  padding: 14px 20px; text-align: right;
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-size: 15px;
}
.slide:not(.dark):not(.hero):not(.navy):not(.golden) table.clean th,
.slide:not(.dark):not(.hero):not(.navy):not(.golden) table.clean td {
  border-color: rgba(0,0,0,.06);
}
table.clean td:first-child, table.clean th:first-child { text-align: left; }
table.clean thead th {
  font-weight: 600; color: var(--muted);
  font-size: 11px; letter-spacing: .15em; text-transform: uppercase;
}
.row-total td { font-weight: 700; color: var(--gold); font-size: 16px; }
.row-hl td { font-weight: 600; background: rgba(0,113,227,.08); }

/* ── CASHFLOW QUADRANT ── */
/* ── QUAD (legacy, keep for compat) ── */
.quad {
  display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr;
  gap: 10px; width: min(720px, 100%); aspect-ratio: 1/1;
}
.quad > div {
  border-radius: 18px; padding: 22px;
  display: flex; flex-direction: column; justify-content: space-between;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
}
.quad .letter {
  font-size: clamp(56px, 7vw, 100px); font-weight: 800; line-height: 1;
  background: linear-gradient(135deg, var(--accent), var(--gold));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.quad .role { font-size: 17px; font-weight: 600; }
.quad .formula { font-size: 13px; color: var(--muted); }

/* ── CASHFLOW QUADRANT (S38 Redesign) ── */
.cq-side {
  width: clamp(80px, 10vw, 120px); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; padding: 0 clamp(10px, 1.5vw, 20px);
}
.cq-side-inner { text-align: center; }
.cq-side-tag {
  font-size: clamp(9px, 1vw, 11px); letter-spacing: .18em; text-transform: uppercase;
  font-weight: 700; color: rgba(255,255,255,.55); margin-bottom: 8px;
}
.cq-side-desc {
  font-size: clamp(11px, 1.2vw, 14px); font-weight: 500; color: rgba(255,255,255,.42);
  line-height: 1.5;
}

/* Quadrant-Zellen */
.cq-cell {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
  padding: clamp(22px, 3.2vw, 44px) clamp(26px, 4vw, 56px);
  border-radius: 0; gap: 8px;
}
.cq-letter {
  font-family: 'Playfair Display', serif;
  font-size: clamp(80px, 13vw, 160px); font-weight: 700; line-height: .9;
  letter-spacing: -.03em;
}
.cq-name {
  font-size: clamp(15px, 2vw, 24px); font-weight: 700; letter-spacing: .02em;
  margin-top: 6px;
}
.cq-formula {
  font-size: clamp(13px, 1.6vw, 20px); font-weight: 600; margin-top: 4px;
  letter-spacing: .04em;
}
.cq-sub {
  font-size: clamp(12px, 1.2vw, 15px); font-weight: 400; line-height: 1.55;
  opacity: .65; max-width: 22ch;
}

/* A — gedämpft grau */
.cq-muted { background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.14); }
.cq-muted .cq-letter { color: rgba(255,255,255,.38); }
.cq-muted .cq-name { color: rgba(255,255,255,.7); }
.cq-muted .cq-formula { color: rgba(255,255,255,.5); }
.cq-muted .cq-sub { color: rgba(255,255,255,.45); opacity: 1; }

/* S — Gold Hero */
.cq-hero {
  background: linear-gradient(135deg, rgba(200,164,58,.38) 0%, rgba(160,120,20,.22) 100%);
  border: 1px solid rgba(200,164,58,.6);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.1);
}
.cq-hero .cq-letter {
  background: linear-gradient(135deg, #f0d070 0%, #e8c55a 50%, #c8a43a 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.cq-hero .cq-name { color: rgba(240,210,100,.95); }
.cq-hero .cq-formula { color: #e8c55a; }
.cq-hero .cq-sub { color: rgba(232,197,90,.75); opacity: 1; }

/* Puls-Ring auf S */
.cq-pulse {
  position: absolute; inset: 0; border-radius: inherit;
  box-shadow: inset 0 0 0 2px rgba(200,164,58,.4);
  animation: cq-pulse 2.8s ease-in-out infinite;
  pointer-events: none;
}
@keyframes cq-pulse {
  0%, 100% { opacity: .6; box-shadow: inset 0 0 0 2px rgba(200,164,58,.4), 0 0 0 0 rgba(200,164,58,0); }
  50% { opacity: 1; box-shadow: inset 0 0 0 2px rgba(200,164,58,.85), 0 0 40px 10px rgba(200,164,58,.15); }
}

/* Badge auf S */
.cq-badge {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 10px; padding: 5px 12px; border-radius: 999px;
  background: rgba(200,164,58,.25); border: 1px solid rgba(200,164,58,.55);
  color: #e8c55a; font-size: clamp(10px, 1vw, 12px); font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
}

/* U — mittleres Gold/Olive */
.cq-mid {
  background: rgba(200,164,58,.14); border: 1px solid rgba(200,164,58,.28);
}
.cq-mid .cq-letter { color: rgba(220,185,80,.7); }
.cq-mid .cq-name { color: rgba(220,185,80,.9); }
.cq-mid .cq-formula { color: rgba(200,164,58,.75); }
.cq-mid .cq-sub { color: rgba(200,164,58,.55); opacity: 1; }

/* I — Teal/Blau */
.cq-invest {
  background: rgba(0,90,170,.28); border: 1px solid rgba(0,130,220,.4);
}
.cq-invest .cq-letter { color: rgba(110,185,255,.7); }
.cq-invest .cq-name { color: rgba(140,200,255,.9); }
.cq-invest .cq-formula { color: rgba(110,185,255,.75); }
.cq-invest .cq-sub { color: rgba(110,185,255,.55); opacity: 1; }

/* ── PYRAMID ── */
.pyramid { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.pyr-row {
  padding: 13px 24px; border-radius: 10px; text-align: center;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.09);
  font-weight: 600; font-size: 15px; letter-spacing: .02em; color: #e5e5ea;
  display: flex; flex-direction: column; gap: 3px;
}
.pyr-row .income { font-size: 13px; color: rgba(255,255,255,.5); font-weight: 400; }
.pyr-row.top { background: linear-gradient(135deg, var(--accent), var(--gold)); border: none; color: #fff; }
.pyr-row.top .income { color: rgba(255,255,255,.75); }
.pyr-row:nth-child(1) { width: 190px; }
.pyr-row:nth-child(2) { width: 280px; }
.pyr-row:nth-child(3) { width: 380px; }
.pyr-row:nth-child(4) { width: 480px; }
.pyr-row:nth-child(5) { width: 580px; }

/* ── TIME BARS ── */
.time-bars { display: flex; flex-direction: column; gap: 16px; max-width: 680px; width: 100%; }
.time-row { display: grid; grid-template-columns: 120px 1fr 70px; gap: 18px; align-items: center; font-size: 15px; }
.time-bar { height: 12px; border-radius: 999px; background: rgba(255,255,255,.1); overflow: hidden; }
.time-fill { height: 100%; background: linear-gradient(90deg, var(--accent), var(--gold)); border-radius: inherit; width: 0; }

/* ── ORBITAL DIAGRAM ── */
.orb-wrap { display: flex; gap: 52px; align-items: center; width: 100%; max-width: 960px; }
#orbital {
  width: 320px; height: 320px; flex-shrink: 0; position: relative;
}
.orb-center {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 90px; height: 90px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--gold));
  display: flex; align-items: center; justify-content: center;
  text-align: center; z-index: 3;
  box-shadow: 0 0 40px rgba(0,113,227,.4);
}
.orb-center-title { font-size: 12px; font-weight: 800; color: #fff; line-height: 1.3; }
.orb-ring {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  border-radius: 50%; border: 1px solid rgba(255,255,255,.12);
}
.orb-ring-1 { width: 148px; height: 148px; border-color: rgba(0,113,227,.3); }
.orb-ring-2 { width: 280px; height: 280px; border-style: dashed; border-color: rgba(255,255,255,.1); }
.orb-node {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none; opacity: 0; transition: opacity .5s ease;
}
.orb-node.visible { opacity: 1; }
.on-dot {
  position: absolute; width: 12px; height: 12px; border-radius: 50%;
  background: var(--c, var(--gold));
  box-shadow: 0 0 12px var(--c, var(--gold)); z-index: 4;
}
.on-label {
  position: absolute; font-size: 11px; font-weight: 700;
  color: #fff; text-align: center; line-height: 1.35; width: 80px; z-index: 4;
}
.orb-legend { flex: 1; display: flex; flex-direction: column; gap: 12px; }
.ol-item {
  display: flex; align-items: center; gap: 12px;
  opacity: 0; transform: translateX(20px);
  transition: all .4s var(--ease);
}
.ol-item.visible { opacity: 1; transform: translateX(0); }
.ol-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.ol-title { font-size: 14px; font-weight: 600; color: #f5f5f7; }
.ol-desc { font-size: 12px; color: rgba(255,255,255,.5); margin-top: 1px; }

/* ── DISG GRID ── */
.disg {
  display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr;
  width: min(640px, 90vw); aspect-ratio: 1/1; gap: 8px; position: relative;
}
.disg > div {
  padding: 22px; border-radius: 16px;
  display: flex; flex-direction: column; gap: 8px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); overflow: hidden;
}
.disg .tag { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
.disg .name { font-size: clamp(17px, 1.8vw, 24px); font-weight: 700; letter-spacing: -.01em; }
.disg ul { margin: 0; padding: 0; list-style: none; font-size: 12px; color: #d1d1d6; display: flex; flex-wrap: wrap; gap: 3px 8px; }
.disg .axis-mid { position: absolute; inset: 0; pointer-events: none; display: flex; align-items: center; justify-content: center; }
.disg .axis-mid::before, .disg .axis-mid::after {
  content: ""; position: absolute; background: rgba(255,255,255,.12);
}
.disg .axis-mid::before { left: 0; right: 0; height: 1px; top: 50%; }
.disg .axis-mid::after { top: 0; bottom: 0; width: 1px; left: 50%; }

/* ── STAGES ── */
.stages { display: flex; flex-direction: column; gap: 14px; width: 100%; max-width: 820px; }
.stage {
  display: flex; align-items: center; gap: 24px; padding: 20px 26px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09);
  border-radius: 16px; transition: all .4s var(--ease);
}
.slide:not(.dark):not(.hero):not(.navy):not(.golden) .stage {
  background: #fff; border-color: rgba(0,0,0,.06);
  box-shadow: 0 12px 40px -20px rgba(0,0,0,.12);
}
.stage .num {
  font-size: clamp(38px, 4.5vw, 64px); font-weight: 800; letter-spacing: -.04em;
  color: var(--muted); line-height: 1; min-width: 56px;
}
.stage .s-title { font-size: clamp(18px, 1.8vw, 26px); font-weight: 700; margin: 0; }
.stage .s-desc { font-size: clamp(13px, 1.1vw, 16px); color: var(--muted); margin-top: 5px; }
.stage.is-active {
  background: linear-gradient(120deg, rgba(0,113,227,.14), rgba(200,164,92,.14));
  border-color: rgba(0,113,227,.35); transform: scale(1.01);
}
.stage.is-active .num {
  background: linear-gradient(135deg, var(--accent), var(--gold));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ── TIMELINE (HORIZONTAL) ── */
.timeline { display: flex; width: 100%; justify-content: space-between; gap: 8px; position: relative; }
.timeline::before {
  content: ""; position: absolute; top: 28px; left: 5%; right: 5%; height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
}
.tl-item { display: flex; flex-direction: column; align-items: center; gap: 10px; flex: 1; z-index: 1; }
.tl-dot {
  width: 14px; height: 14px; border-radius: 50%;
  background: #000; border: 3px solid transparent;
  background-clip: padding-box;
  outline: 3px solid;
  outline-color: var(--gold);
  margin-top: 21px; box-shadow: 0 0 0 6px rgba(0,0,0,.1);
}
.slide.dark .tl-dot, .slide.hero .tl-dot { background: #000; }
.tl-label { font-size: 14px; font-weight: 700; text-align: center; }
.tl-sub { font-size: 12px; color: var(--muted); text-align: center; }

/* ── FILM STAGE ── */
.film-stage {
  position: relative; width: 100%; max-width: 900px;
  aspect-ratio: 16/9; border-radius: 20px;
  overflow: hidden; background: #000; border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 40px 80px -30px rgba(0,0,0,.7);
}
.film-thumb { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.film-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.75) 0%, rgba(0,0,0,.15) 50%, transparent 100%);
}
.film-play-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 80px; height: 80px; border-radius: 50%;
  background: rgba(200,164,92,.92);
  border: none; cursor: pointer;
  animation: pulse 2.4s ease infinite; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  transition: all .3s ease;
}
.film-play-btn:hover { background: var(--gold); transform: translate(-50%,-50%) scale(1.12); }
.film-play-btn svg { width: 28px; height: 28px; fill: #000; margin-left: 4px; }
.film-title-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 24px 28px; z-index: 2;
}
.film-label { font-size: 12px; color: rgba(255,255,255,.55); margin-bottom: 5px; letter-spacing: .06em; }
.film-title-text { font-size: 18px; font-weight: 700; color: #fff; }
#praktikumVideo { display: none; position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; background: #000; z-index: 10; border-radius: 20px; }
#filmStopBtn {
  display: none; position: absolute; top: 14px; right: 14px; z-index: 20;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(0,0,0,.65); border: 1px solid rgba(255,255,255,.25);
  cursor: pointer; color: #fff; font-size: 22px; line-height: 1;
  align-items: center; justify-content: center;
  transition: background .2s;
}
#filmStopBtn:hover { background: rgba(200,30,30,.75); }

/* ── MARKT FULL-SCREEN TILES ── */
/* ── FLOW Konzept Koordinatendiagramm ── */
.flow-wrap {
  position: relative;
  width: 100%; max-width: 1040px;
  aspect-ratio: 16 / 8;
  flex-shrink: 0;
}
.flow-wrap > .step {
  position: absolute; inset: 0;
  transform: none !important;
}
.fz {
  position: absolute;
  top: 8%; left: 10%; right: 5%; bottom: 14%;
}

/* ── 8 Gründe Kacheln ── */
.g8c {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 22px 28px;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.07);
  border-left: 4px solid var(--gold);
  border-radius: 18px;
  backdrop-filter: blur(12px);
  transition: background .2s, transform .18s var(--ease);
}
.g8c:hover { background: rgba(255,255,255,.07); transform: translateX(3px); }
.g8i {
  flex-shrink: 0;
  width: 56px; height: 56px;
  background: rgba(200,164,58,.1);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
}
.g8i svg { width: 28px; height: 28px; }
.g8b { flex: 1; min-width: 0; }
.g8n {
  font-size: 12px; font-weight: 700;
  letter-spacing: .12em;
  color: var(--gold); opacity: .65;
  margin-bottom: 5px;
}
.g8t {
  font-size: clamp(17px, 1.7vw, 24px);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.g8d {
  font-size: clamp(13px, 1.2vw, 17px);
  color: rgba(255,255,255,.52);
  margin: 6px 0 0;
  line-height: 1.5;
}

.mk-lines {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 1;
}
@keyframes mkDashFlow {
  from { stroke-dashoffset: 0; }
  to   { stroke-dashoffset: -28; }
}
@keyframes mkLinePulse {
  0%,100% { stroke-opacity: .18; }
  50%      { stroke-opacity: .55; }
}
.mk-lines line {
  animation: mkDashFlow 1.6s linear infinite, mkLinePulse 3s ease-in-out infinite;
}
.mk-lines line:nth-child(1)  { animation-delay: 0s,    0s;    }
.mk-lines line:nth-child(2)  { animation-delay: -.16s, -.3s;  }
.mk-lines line:nth-child(3)  { animation-delay: -.32s, -.6s;  }
.mk-lines line:nth-child(4)  { animation-delay: -.48s, -.9s;  }
.mk-lines line:nth-child(5)  { animation-delay: -.64s, -1.2s; }
.mk-lines line:nth-child(6)  { animation-delay: -.80s, -1.5s; }
.mk-lines line:nth-child(7)  { animation-delay: -.96s, -1.8s; }
.mk-lines line:nth-child(8)  { animation-delay: -1.12s,-2.1s; }
.mk-lines line:nth-child(9)  { animation-delay: -1.28s,-2.4s; }
.mk-lines line:nth-child(10) { animation-delay: -1.44s,-2.7s; }
.mk-center {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 26vmin; height: 26vmin; min-width: 190px; min-height: 190px;
  border-radius: 50%;
  background: radial-gradient(circle at 36% 28%, rgba(52,38,6,1) 0%, rgba(7,5,1,1) 100%);
  border: 2px solid rgba(200,164,92,.78);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 5px;
  box-shadow: 0 0 90px rgba(200,164,92,.2), 0 0 30px rgba(200,164,92,.14), 0 0 6px rgba(200,164,92,.35), inset 0 1px 0 rgba(255,255,255,.08);
  z-index: 5;
}
.mk-center-label {
  font-size: clamp(30px, 4.8vmin, 58px);
  font-weight: 800; font-family: 'Playfair Display', serif;
  color: #c8a45c; letter-spacing: -.03em; line-height: 1;
}
.mk-center-sub {
  font-size: clamp(7px, 1vmin, 11px); color: rgba(255,255,255,.3);
  letter-spacing: .22em; text-transform: uppercase; font-weight: 500;
}
.mk-tile {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 18vmin; height: 18vmin; min-width: 128px; min-height: 128px;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 32%, rgba(22,16,4,1) 0%, rgba(4,7,20,1) 100%);
  border: 1.5px solid rgba(200,164,92,.5);
  z-index: 4; cursor: pointer;
  box-shadow: 0 0 30px rgba(200,164,92,.1), 0 10px 50px rgba(0,0,0,.6), inset 0 1px 0 rgba(255,255,255,.07);
  perspective: 700px;
}
/* FLIP CARD INNER */
.mk-tile-inner {
  position: absolute; inset: 0; border-radius: 50%;
  transform-style: preserve-3d;
  transition: transform .65s cubic-bezier(0.4, 0, 0.2, 1);
}
.mk-tile.mk-flipped .mk-tile-inner { transform: rotateY(180deg); }
.mk-tile-front, .mk-tile-back {
  position: absolute; inset: 0; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: clamp(3px, .5vmin, 5px); padding: clamp(10px, 1.8vmin, 20px);
  text-align: center;
  backface-visibility: hidden; -webkit-backface-visibility: hidden;
}
.mk-tile-back {
  transform: rotateY(180deg);
  background: radial-gradient(circle at 38% 32%, rgba(30,22,5,1) 0%, rgba(6,10,25,1) 100%);
}
.mk-tile-back-label {
  font-size: clamp(7px, .82vmin, 10px); font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: rgba(200,164,92,.72);
}
.mk-tile-back-value {
  font-size: clamp(17px, 2.4vmin, 28px); font-weight: 900;
  color: rgba(200,164,92,1); line-height: 1; letter-spacing: -.02em;
  font-family: 'Playfair Display', serif;
}
.mk-tile-back-text {
  font-size: clamp(8px, .92vmin, 11px);
  color: rgba(255,255,255,.6); line-height: 1.5; margin-top: 2px;
}
body:not(.dark-mode) .slide.dark[data-title="Der Markt"] .mk-tile-back {
  background: radial-gradient(circle at 38% 32%, #fffdf5 0%, #ece8da 100%);
}
body:not(.dark-mode) .slide.dark[data-title="Der Markt"] .mk-tile-back-text {
  color: rgba(40,30,10,.6);
}
body:not(.dark-mode) .slide.dark[data-title="Der Markt"] .mk-tile-back-label {
  color: rgba(140,100,20,.8);
}
.mk-tile.step {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.1);
  transition: opacity .32s ease, transform .55s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.mk-tile.step.on {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  transition: transform .5s cubic-bezier(0.22, 0.61, 0.36, 1), opacity .35s ease,
              border-color .35s ease, box-shadow .35s ease;
}
/* Featured = aktuell erklärtes Thema */
@keyframes mk-pulse-red {
  0%, 100% { color: rgba(210,55,45,1); text-shadow: 0 0 0 transparent; }
  50%       { color: rgba(255,85,72,1); text-shadow: 0 0 10px rgba(220,50,40,.55); }
}
@keyframes mk-orbit {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
/* ── S20c: Problem-Panel pulsierendes Rot ── */
@keyframes mk-glow-problem {
  0%, 100% { box-shadow: inset 0 1px 0 rgba(200,70,60,.12), 0 0 45px rgba(100,18,12,.28); }
  50%       { box-shadow: inset 0 1px 0 rgba(225,80,68,.30), 0 0 90px rgba(165,24,14,.68), 0 0 0 2px rgba(195,52,42,.25); }
}
@keyframes mk-pulse-dot-red {
  0%, 100% { box-shadow: 0 0 7px rgba(215,68,58,.55); }
  50%       { box-shadow: 0 0 16px rgba(215,68,58,1), 0 0 28px rgba(215,68,58,.45); }
}
/* ── S20c: Solution-Center pulsierendes Gold ── */
@keyframes mk-glow-gold-center {
  0%, 100% { box-shadow: 0 0 0 9px rgba(200,164,58,.06), 0 0 45px rgba(200,164,58,.28); }
  50%       { box-shadow: 0 0 0 20px rgba(200,164,58,.16), 0 0 90px rgba(200,164,58,.60); }
}
@keyframes mk-pulse-dot-gold {
  0%, 100% { box-shadow: 0 0 10px rgba(200,164,58,.85); }
  50%       { box-shadow: 0 0 22px rgba(200,164,58,1), 0 0 36px rgba(200,164,58,.5); }
}
/* ── S20c: Hub-Linien fließend ── */
@keyframes mk-flow-hub {
  from { stroke-dashoffset: 11; }
  to   { stroke-dashoffset: 0; }
}
.mk-panel-problem { animation: mk-glow-problem 3.4s ease-in-out infinite; }
.mk-dot-red  { animation: mk-pulse-dot-red  2.2s ease-in-out infinite; }
.mk-dot-gold { animation: mk-pulse-dot-gold 2.6s ease-in-out infinite; }
.mk-center-gold-pulse { animation: mk-glow-gold-center 2.6s ease-in-out infinite; }
.mk-hub-line {
  stroke-dasharray: 6 5;
  animation: mk-flow-hub 1.0s linear infinite;
}
.mk-hub-line:nth-child(2) { animation-delay: -.28s; }
.mk-hub-line:nth-child(3) { animation-delay: -.56s; }
.mk-hub-line:nth-child(4) { animation-delay: -.84s; }
.mk-tile.step.on.mk-featured {
  transform: translate(-50%, -50%) scale(1.85);
  border-color: rgba(200,164,92,.95);
  box-shadow: 0 0 90px rgba(200,164,92,.4), 0 24px 80px rgba(0,0,0,.85),
              inset 0 1px 0 rgba(255,255,255,.14);
  z-index: 8;
  transition: transform .55s cubic-bezier(0.34, 1.56, 0.64, 1),
              border-color .35s ease, box-shadow .35s ease;
}
.mk-tile.step.on.mk-featured::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1.5px solid transparent;
  border-top: 1.5px solid rgba(200,164,92,.5);
  border-right: 1.5px solid rgba(200,164,92,.18);
  animation: mk-orbit 9s linear infinite;
  pointer-events: none;
  z-index: 9;
}
/* Bereits erklärte Themen — leicht gedimmt */
.mk-tile.step.on:not(.mk-featured) {
  opacity: 0.55;
  transform: translate(-50%, -50%) scale(1);
}
.mk-tile.step.on:hover {
  opacity: 1 !important;
  transform: translate(-50%, -50%) scale(1.09) !important;
  border-color: rgba(200,164,92,.75);
  z-index: 6;
  transition: transform .22s ease, border-color .22s ease, opacity .22s ease !important;
}
.mk-tile-icon {
  width: clamp(20px, 3vmin, 36px); height: clamp(20px, 3vmin, 36px);
  stroke: rgba(200,164,92,.9); stroke-width: 1.6;
  fill: none; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0;
}
.mk-tile-name {
  font-size: clamp(10px, 1.4vmin, 15px); font-weight: 700;
  letter-spacing: -.01em; color: #fff; line-height: 1.2;
}
/* Unsichtbarer Finale-Step */
.mk-finale { position:absolute; width:0; height:0; pointer-events:none; opacity:0 !important; }
.mk-finale.step { transform:none !important; opacity:0 !important; }
.mk-finale.step.on { transform:none !important; opacity:0 !important; }

.mk-tile-bullets {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 1px;
}
.mk-tile-bullets li {
  font-size: clamp(7px, .95vmin, 10px); color: rgba(255,255,255,.4);
  line-height: 1.3;
}
.mk-tile-bullets li::before {
  content: "·\00a0"; color: rgba(200,164,92,.55);
}

/* ── STEP-THROUGH ── */
.step {
  opacity: 0; transform: translateY(20px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
  will-change: opacity, transform;
}
.step.on { opacity: 1; transform: none; }
.slide.active .step { animation: none !important; }

/* Step progress dots */
.step-progress {
  position: fixed; bottom: 48px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 7px; z-index: 55; pointer-events: none;
  opacity: 0; transition: opacity .3s var(--ease);
}
.step-progress.show { opacity: 1; }
.step-progress span {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,.2);
  transition: all .35s var(--ease);
}
body:not(.dark-chrome) .step-progress span { background: rgba(0,0,0,.15); }
.step-progress span.done { background: var(--gold); transform: scale(1.1); }
.step-progress span.current { background: #fff; transform: scale(1.35); box-shadow: 0 0 0 3px rgba(255,255,255,.12); }
body:not(.dark-chrome) .step-progress span.current { background: var(--ink); }

/* ── PRESENTER TILES (S02 — optional self-intro) ── */
.presenter-row {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,.07);
  display: flex; flex-direction: column;
}
.presenter-tile {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 36px 10px 10px;
  border-radius: 14px;
  min-width: 190px;
}
.avatar.sm { width: 48px; height: 48px; }
.ptile-name { font-size: 14px; font-weight: 700; letter-spacing: -.01em; color: var(--ink); }
.ptile-role { font-size: 11px; color: var(--muted); margin-top: 2px; }

/* ── TOPIC CARDS (S02 — clickable chapters) ── */
.topic-card {
  cursor: pointer;
  position: relative;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease) !important;
}
.topic-card:hover {
  transform: scale(1.055) translateY(-3px);
  box-shadow: 0 28px 60px -18px rgba(0,0,0,.22);
  z-index: 2;
}
.topic-arrow {
  position: absolute; bottom: 14px; right: 18px;
  font-size: 18px; font-weight: 300;
  color: var(--muted);
  opacity: 0; transform: translateX(-6px);
  transition: opacity .22s ease, transform .22s ease;
}
.topic-card:hover .topic-arrow {
  opacity: 1; transform: translateX(0);
}

/* ── S02 FRAGEN-LAYOUT ── */
.s02-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(8px, 1.4vh, 16px) clamp(12px, 2vw, 24px);
  width: 100%;
}
.s02-item {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.2vw, 28px);
  padding: clamp(18px, 2.4vh, 26px) clamp(20px, 2.2vw, 30px);
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.05);
  transition: background .26s ease, border-color .26s ease, transform .26s var(--ease), box-shadow .26s ease;
}
.s02-item:hover {
  background: rgba(255,255,255,.09);
  border-color: rgba(200,164,58,.38);
  transform: translateY(-5px) !important;
  box-shadow: 0 20px 56px -14px rgba(0,0,0,.52), 0 0 0 1px rgba(200,164,58,.14);
}
.s02-num {
  flex-shrink: 0;
  width: clamp(68px, 9vmin, 90px);
  height: clamp(68px, 9vmin, 90px);
  border-radius: 50%;
  background: linear-gradient(145deg, #e2ba44 0%, #c49428 55%, #a07818 100%);
  box-shadow:
    0 5px 0 rgba(0,0,0,.28),
    0 10px 36px -6px rgba(200,164,58,.7),
    0 0 0 2px rgba(232,197,90,.15),
    inset 0 1px 0 rgba(255,255,255,.25);
  color: #fff;
  font-size: clamp(26px, 3.4vmin, 38px);
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  letter-spacing: -.02em;
  transition: box-shadow .26s ease, transform .26s ease;
}
.s02-item:hover .s02-num {
  box-shadow:
    0 5px 0 rgba(0,0,0,.32),
    0 16px 48px -6px rgba(200,164,58,.95),
    0 0 0 3px rgba(232,197,90,.25),
    inset 0 1px 0 rgba(255,255,255,.32);
  transform: scale(1.08);
}
.s02-q {
  flex: 1;
  font-size: clamp(16px, 2vw, 24px);
  font-weight: 600;
  line-height: 1.3;
  color: rgba(255,255,255,.9);
}
.s02-arr {
  flex-shrink: 0;
  color: rgba(200,164,58,.5);
  transition: transform .24s var(--ease), color .24s ease, opacity .24s ease;
  opacity: .75;
}
.s02-item:hover .s02-arr {
  transform: translateX(5px);
  color: #e2ba44;
  opacity: 1;
}
/* presenter tiles on dark slide */
.slide.dark .ptile-name { color: rgba(255,255,255,.9); }
.slide.dark .ptile-role { color: rgba(255,255,255,.45); }
.slide.dark .presenter-tile { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); }

/* S03 Host-Cards — klickbare Gastgeber-Portraits */
.host-card { transition: transform .25s var(--ease), background .25s ease, border-color .25s ease !important; }
.host-card:hover { transform: translateY(-6px) scale(1.03) !important; background: rgba(255,255,255,.09) !important; border-color: rgba(200,164,58,.35) !important; }
.host-card:hover .avatar { border-color: rgba(200,164,58,.8) !important; }

/* S02 Gastgeber — größere Portraits */
.s02-host {
  display: flex; align-items: center; gap: 14px;
  padding: 10px 20px 10px 10px;
  border-radius: 16px;
  min-width: 0;
}
.s02-avatar {
  width: 64px; height: 64px; border-radius: 50%;
  overflow: hidden; flex-shrink: 0;
  border: 2px solid rgba(200,164,58,.5);
  box-shadow: 0 0 0 3px rgba(200,164,58,.12);
  background: var(--navy);
}
.s02-avatar img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.s02-host .ptile-name { font-size: 15px; }
.s02-host .ptile-role { font-size: 12px; margin-top: 3px; }

/* ── CLEAN LIST ── */
ul.clean {
  margin: 0; padding: 0; list-style: none;
  display: flex; flex-direction: column; gap: 13px;
}
ul.clean li {
  display: flex; gap: 14px; align-items: flex-start;
  font-size: clamp(15px, 1.3vw, 20px); line-height: 1.4; color: var(--ink-soft);
}
.slide.dark ul.clean li, .slide.hero ul.clean li, .slide.navy ul.clean li { color: #d1d1d6; }
ul.clean li::before {
  content: "";  width: 6px; height: 6px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--gold));
  margin-top: 10px; flex-shrink: 0;
}

/* ── DIVIDER ── */
.divider { height: 1px; background: rgba(255,255,255,.1); margin: 10px 0; }
.slide:not(.dark):not(.hero):not(.navy):not(.golden) .divider { background: rgba(0,0,0,.08); }

/* ── PARTNER LOGOS ── */
.partner-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
  width: 100%; max-width: 900px;
}
.partner-card {
  padding: 16px 20px; border-radius: 14px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,.8);
  text-align: center; letter-spacing: -.01em;
}
.slide:not(.dark):not(.hero):not(.navy):not(.golden) .partner-card {
  background: #fff; border-color: rgba(0,0,0,.06);
  box-shadow: 0 4px 20px -8px rgba(0,0,0,.1);
  color: var(--ink);
}

/* ── RATINGS ── */
.ratings-row {
  display: flex; gap: 20px; align-items: center;
  justify-content: center; flex-wrap: wrap;
}
.ratings-row img { height: 90px; object-fit: contain; border-radius: 10px; }

/* ── REASONS GRID (10 Gründe) ── */
.r10-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px;
  width: 100%; max-width: 960px;
}
.r10-card {
  padding: 16px 14px; border-radius: 14px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.09);
  display: flex; flex-direction: column; gap: 8px;
}
.slide:not(.dark):not(.hero):not(.navy):not(.golden) .r10-card {
  background: #fff; border-color: rgba(0,0,0,.05);
  box-shadow: 0 4px 20px -8px rgba(0,0,0,.1);
}
.r10-num { font-size: 22px; font-weight: 900; color: rgba(200,164,92,.4); line-height: 1; }
.r10-title { font-size: 13px; font-weight: 700; }
.r10-desc { font-size: 11px; color: var(--muted); line-height: 1.4; }

/* ── FORMULA ── */
.formula-row {
  display: flex; align-items: center; gap: 14px;
  flex-wrap: wrap; justify-content: center;
}
.formula-item {
  padding: 18px 20px; border-radius: 16px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  text-align: center; min-width: 100px;
}
.slide:not(.dark):not(.hero):not(.navy):not(.golden) .formula-item {
  background: #fff; border-color: rgba(0,0,0,.06);
  box-shadow: 0 8px 30px -12px rgba(0,0,0,.15);
}
.formula-item.result {
  background: linear-gradient(135deg, rgba(200,164,92,.15), rgba(0,113,227,.15));
  border-color: rgba(200,164,92,.4);
}
.formula-val { font-size: 26px; font-weight: 900; color: var(--gold); line-height: 1; }
.formula-label { font-size: 10px; color: var(--muted); line-height: 1.4; margin-top: 5px; letter-spacing: .04em; }
.formula-op { font-size: 24px; font-weight: 200; color: rgba(255,255,255,.3); }
.slide:not(.dark):not(.hero):not(.navy):not(.golden) .formula-op { color: rgba(0,0,0,.2); }

/* ── PAUSE SLIDE ── */
.pause-icon { font-size: 52px; opacity: .4; }
.pause-display {
  font-size: clamp(80px, 14vw, 160px); font-weight: 800;
  letter-spacing: -.06em; line-height: 1; color: var(--gold);
  font-variant-numeric: tabular-nums;
}

/* ── POEM ── */
.poem-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(19px, 2vw, 28px); line-height: 1.85;
  color: rgba(255,255,255,.78); max-width: 600px; font-style: italic;
}
.poem-text strong { color: var(--gold); font-style: normal; }
.poem-punchline {
  font-size: clamp(36px, 5vw, 68px); font-weight: 800; letter-spacing: -.04em;
  color: #fff; margin-top: 28px;
}
.poem-punchline .script { color: var(--gold); }

/* ── MEDIA CARD ── */
.media-card {
  position: relative; overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 40px 80px -40px rgba(0,0,0,.55), 0 1px 0 rgba(255,255,255,.08) inset;
}
.media-card img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 1.4s var(--ease);
}
.slide.active .media-card img { transform: scale(1.03); }

/* ── CTA SLIDE ── */
.cta-contacts { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; }
.cta-contact {
  padding: 22px 28px; border-radius: 18px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  min-width: 200px; text-align: center;
}
.cta-name { font-size: 17px; font-weight: 800; letter-spacing: -.02em; color: #fff; }
.cta-role { font-size: 12px; color: var(--muted); margin-top: 4px; }
.cta-mail { font-size: 12px; color: var(--gold); margin-top: 8px; letter-spacing: .02em; }

/* ── CHROME BAR (Bottom) ── */
#chrome {
  position: fixed; left: 0; right: 0; bottom: 0;
  padding: 14px 24px 18px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  z-index: 100; pointer-events: none;
}
.chrome-left {
  display: flex; align-items: center; gap: 8px;
  pointer-events: all;
}
.home-btn {
  display: flex; align-items: center; gap: 6px;
  padding: 6px 12px; border-radius: 999px;
  pointer-events: all;
  background: rgba(0,0,0,.06);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(0,0,0,.09);
  font-size: 11px; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: var(--ink-soft);
  cursor: pointer;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.home-btn:hover { background: rgba(0,0,0,.12); color: var(--ink); transform: translateY(-1px); }
body.dark-chrome .home-btn {
  background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.14); color: rgba(255,255,255,.55);
}
body.dark-chrome .home-btn:hover { background: rgba(255,255,255,.18); color: #fff; }
body.dark-chrome .home-btn svg { stroke: rgba(255,255,255,.55); }

.chrome-progress {
  flex: 1; height: 2px; border-radius: 999px;
  overflow: hidden; background: rgba(0,0,0,.08);
}
body.dark-chrome .chrome-progress { background: rgba(255,255,255,.14); }
.chrome-progress-fill {
  display: block; height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  width: 0; transition: width .6s var(--ease);
}

.chrome-counter {
  font-size: 12px; font-weight: 600; color: var(--muted);
  letter-spacing: .18em; text-transform: uppercase;
  font-variant-numeric: tabular-nums;
  transition: color .3s;
}
body.dark-chrome .chrome-counter { color: rgba(255,255,255,.45); }

/* ── NAV BUTTONS ── */
.nav-btn-side {
  position: fixed; top: 50%; transform: translateY(-50%);
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,.55);
  box-shadow: 0 4px 24px rgba(0,0,0,.14), 0 1px 4px rgba(0,0,0,.08);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 100;
  transition: transform .32s cubic-bezier(0.34,1.4,0.64,1),
              opacity .3s var(--ease),
              background .25s ease,
              box-shadow .25s ease;
  opacity: 0; pointer-events: none;
}
body:hover .nav-btn-side { opacity: .65; pointer-events: auto; }
body.dark-chrome .nav-btn-side {
  background: rgba(30,30,36,.72);
  border-color: rgba(200,164,58,.22);
  box-shadow: 0 4px 24px rgba(0,0,0,.35), 0 0 18px rgba(200,164,58,.08);
}
.nav-btn-side:hover {
  opacity: 1 !important;
  transform: translateY(-50%) scale(1.12);
  background: rgba(255,255,255,.92);
  box-shadow: 0 8px 32px rgba(0,0,0,.18), 0 2px 8px rgba(0,0,0,.1);
}
body.dark-chrome .nav-btn-side:hover {
  background: rgba(40,38,32,.88);
  border-color: rgba(200,164,58,.5);
  box-shadow: 0 8px 32px rgba(0,0,0,.45), 0 0 28px rgba(200,164,58,.18);
}
.nav-btn-side:disabled { opacity: .12 !important; cursor: default; pointer-events: none; }
.nav-btn-side svg { width: 17px; height: 17px; fill: var(--ink); transition: fill .2s ease; }
body.dark-chrome .nav-btn-side svg { fill: rgba(255,255,255,.85); }
body.dark-chrome .nav-btn-side:hover svg { fill: var(--gold); }
#prevBtn { left: 20px; }
#nextBtn { right: 20px; }

/* Dark mode button */
#darkModeBtn {
  position: fixed; top: 18px; right: 64px; z-index: 150;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(0,0,0,.11);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0,0,0,.16);
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all .25s var(--ease);
  opacity: .75;
}
body:hover #darkModeBtn { opacity: 1; }
body.dark-chrome #darkModeBtn {
  background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.18);
  box-shadow: 0 2px 8px rgba(0,0,0,.25);
}
#darkModeBtn svg { stroke: var(--ink); }
body.dark-chrome #darkModeBtn svg { stroke: #f5f5f7; }
#darkModeBtn:hover { transform: scale(1.1); }

/* Fullscreen button */
#fullscreenBtn {
  position: fixed; top: 18px; right: 18px; z-index: 150;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(15,13,10,.45);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all .25s var(--ease);
  opacity: .75;
}
body:hover #fullscreenBtn { opacity: 1; }
body.dark-chrome #fullscreenBtn {
  background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.18);
  box-shadow: 0 2px 8px rgba(0,0,0,.25);
}
#fullscreenBtn svg { width: 16px; height: 16px; stroke: #f0f0f0; }
body.dark-chrome #fullscreenBtn svg { stroke: #f5f5f7; }
#fullscreenBtn:hover { transform: scale(1.1); }

/* ── LIVE DOT ── */
.live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #2ecc71; flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(46,204,113,.5);
  animation: livePulse 1.8s ease-in-out infinite;
}
@keyframes livePulse {
  0%   { box-shadow: 0 0 0 0 rgba(46,204,113,.55); }
  60%  { box-shadow: 0 0 0 8px rgba(46,204,113,0); }
  100% { box-shadow: 0 0 0 0 rgba(46,204,113,0); }
}

/* ── KEYFRAMES ── */
@keyframes fadeUp   { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
@keyframes pulse    { 0%, 100% { box-shadow: 0 0 0 0 rgba(200,164,92,.4); } 50% { box-shadow: 0 0 0 22px rgba(200,164,92,0); } }
@keyframes scaleIn  { from { opacity: 0; transform: scale(.9); } to { opacity: 1; transform: none; } }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .grid-5 { grid-template-columns: 1fr 1fr; }
  .r10-grid { grid-template-columns: repeat(2, 1fr); }
  .partner-grid { grid-template-columns: repeat(2, 1fr); }
  .pyr-row:nth-child(1) { width: 120px; }
  .pyr-row:nth-child(2) { width: 180px; }
  .pyr-row:nth-child(3) { width: 240px; }
  .pyr-row:nth-child(4) { width: 300px; }
  .pyr-row:nth-child(5) { width: 90%; }
  #orbital { width: 240px; height: 240px; }
}

/* ── DARK MODE TOGGLE ── */
body.dark-mode {
  --bg: #050d1a;
  --ink: #f5f5f7;
  --ink-soft: rgba(255,255,255,.7);
  --muted: rgba(255,255,255,.35);
  --hairline: rgba(255,255,255,.1);
  background: var(--bg);
}
body.dark-mode .slide:not(.dark):not(.hero) {
  background: #0a1628;
  color: #f5f5f7;
}
body.dark-mode .slide:not(.dark):not(.hero) .card {
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.08);
  color: #f5f5f7;
}
body.dark-mode .slide:not(.dark):not(.hero) .glass {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.08);
}
body.dark-mode .slide:not(.dark):not(.hero) h1,
body.dark-mode .slide:not(.dark):not(.hero) h2,
body.dark-mode .slide:not(.dark):not(.hero) h3,
body.dark-mode .slide:not(.dark):not(.hero) .t { color: #f5f5f7; }
body.dark-mode .slide:not(.dark):not(.hero) p { color: rgba(255,255,255,.7); }
body.dark-mode .slide:not(.dark):not(.hero) table.clean th {
  background: rgba(255,255,255,.06); color: rgba(255,255,255,.7);
}
body.dark-mode .slide:not(.dark):not(.hero) table.clean td {
  color: rgba(255,255,255,.8); border-color: rgba(255,255,255,.06);
}
body.dark-mode .slide:not(.dark):not(.hero) table.clean tr {
  border-color: rgba(255,255,255,.06);
}
body.dark-mode .slide:not(.dark):not(.hero) .eyebrow { color: rgba(255,255,255,.45); }
body.dark-mode .slide:not(.dark):not(.hero) .topic-card {
  background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.1); color: #f5f5f7;
}
body.dark-mode #darkModeBtn svg { stroke: rgba(200,164,92,.85); }

/* ── MARKT LIGHT MODE ── */
body:not(.dark-mode) .slide.dark[data-title="Der Markt"] {
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(200,164,58,.07) 0%, transparent 70%), #f5f2ec;
}
body:not(.dark-mode) .slide.dark[data-title="Der Markt"] .eyebrow {
  color: rgba(0,0,0,.28) !important;
}
body:not(.dark-mode) .slide.dark[data-title="Der Markt"] .mk-lines line {
  stroke: rgba(160,120,40,.62) !important;
  stroke-width: 1.8 !important;
}
body:not(.dark-mode) .slide.dark[data-title="Der Markt"] .mk-center {
  background: radial-gradient(circle at 36% 28%, #fffdf5 0%, #f5f0e0 100%) !important;
  border-color: rgba(200,164,92,.75) !important;
  box-shadow: 0 0 60px rgba(200,164,92,.18), 0 0 20px rgba(200,164,92,.1), inset 0 1px 0 rgba(255,255,255,.9) !important;
}
body:not(.dark-mode) .slide.dark[data-title="Der Markt"] .mk-center-label {
  color: #8a6a20 !important;
}
body:not(.dark-mode) .slide.dark[data-title="Der Markt"] .mk-center-sub {
  color: rgba(0,0,0,.35) !important;
}
body:not(.dark-mode) .slide.dark[data-title="Der Markt"] .mk-tile {
  background: radial-gradient(circle at 38% 32%, #ffffff 0%, #f5f5f7 100%) !important;
  border-color: rgba(200,164,92,.55) !important;
  box-shadow: 0 4px 24px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.9) !important;
}
body:not(.dark-mode) .slide.dark[data-title="Der Markt"] .mk-tile.step.on.mk-featured {
  box-shadow: 0 0 60px rgba(200,164,92,.28), 0 16px 50px rgba(0,0,0,.12), inset 0 1px 0 rgba(255,255,255,.9) !important;
  border-color: rgba(200,164,92,.9) !important;
}
body:not(.dark-mode) .slide.dark[data-title="Der Markt"] .mk-tile.step.on:not(.mk-featured) {
  opacity: 0.5;
}
body:not(.dark-mode) .slide.dark[data-title="Der Markt"] .mk-tile-icon {
  stroke: rgba(160,120,20,.85) !important;
}
body:not(.dark-mode) .slide.dark[data-title="Der Markt"] .mk-tile-name {
  color: #1d1d1f !important;
}
body:not(.dark-mode) .slide.dark[data-title="Der Markt"] .mk-tile-bullets li {
  color: rgba(0,0,0,.45) !important;
}
body:not(.dark-mode) .slide.dark[data-title="Der Markt"] .mk-tile-bullets li::before {
  color: rgba(160,120,20,.6) !important;
}

/* ══ S47b PREMIUM RADIAL BUBBLES ══ */
.vb-bubble.step {
  transform: scale(0.68) !important;
  transition: opacity .52s var(--ease), transform .80s cubic-bezier(.34,1.56,.64,1) !important;
}
.vb-bubble.step.on { transform: scale(1) !important; }

/* ══ ALLFINANZ SVG STEPS ══ */
.af-seg { opacity: 0; transition: opacity .55s ease; }
.af-seg.on { opacity: 1; }
.af-lbl { opacity: 0; transition: opacity .45s ease; }
.af-lbl.on { opacity: 1; }
.af-center { opacity: 0; transform: scale(0.6); transform-box: fill-box; transform-origin: center;
  transition: opacity .5s ease, transform .6s cubic-bezier(.34,1.56,.64,1); }
.af-center.on { opacity: 1; transform: scale(1); }

/* ══ SLIDE SEARCH MODAL ══ */
#searchModal {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(5,13,26,.72);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  display: flex; align-items: flex-start; justify-content: center;
  padding-top: clamp(60px,10vh,120px);
  opacity: 0; pointer-events: none;
  transition: opacity .22s ease;
}
#searchModal.open {
  opacity: 1; pointer-events: all;
}
#searchBox {
  width: min(600px, 90vw);
  background: rgba(15,26,46,.96);
  border: 1px solid rgba(200,164,58,.3);
  border-radius: 18px;
  box-shadow: 0 24px 80px rgba(0,0,0,.6), 0 0 0 1px rgba(255,255,255,.04);
  overflow: hidden;
  transform: translateY(-12px) scale(.97);
  transition: transform .25s cubic-bezier(.16,1,.3,1);
}
#searchModal.open #searchBox {
  transform: translateY(0) scale(1);
}
#searchInputRow {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
#searchInput {
  flex: 1; background: transparent; border: none; outline: none;
  font-size: clamp(16px,1.6vw,20px); font-weight: 500;
  color: #fff; font-family: 'Inter', sans-serif;
  caret-color: #c8a43a;
}
#searchInput::placeholder { color: rgba(255,255,255,.28); }
#searchEscHint {
  font-size: 11px; font-family: 'Inter', sans-serif;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  border-radius: 5px; padding: 2px 6px; color: rgba(255,255,255,.35);
  white-space: nowrap;
}
#searchResults {
  max-height: 340px; overflow-y: auto;
  padding: 6px 0;
}
#searchResults:empty { display: none; }
.sr-item {
  display: flex; align-items: center; gap: 14px;
  padding: 11px 20px; cursor: pointer;
  transition: background .15s;
}
.sr-item:hover, .sr-item.active {
  background: rgba(200,164,58,.12);
}
.sr-num {
  font-size: 11px; font-weight: 700; letter-spacing: .1em;
  color: rgba(200,164,58,.75); min-width: 28px;
  font-family: 'Inter', sans-serif;
}
.sr-title {
  font-size: 15px; font-weight: 500; color: rgba(255,255,255,.85);
  font-family: 'Inter', sans-serif; flex: 1;
}
.sr-title mark {
  background: none; color: #e8c55a; font-weight: 700;
}
.sr-arrow {
  color: rgba(255,255,255,.2); font-size: 14px;
}
#searchHint {
  padding: 10px 20px;
  font-size: 11px; color: rgba(255,255,255,.22);
  font-family: 'Inter', sans-serif; letter-spacing: .03em;
  border-top: 1px solid rgba(255,255,255,.06);
  text-align: center;
}

/* ══ RUHEFOLIEN / TRANSITION SLIDES ══ */
.rt-bg-glow {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 78vmin; height: 78vmin; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,164,58,.055) 0%, transparent 65%);
  pointer-events: none;
}
.slide.active .rt-bg-glow {
  animation: rt-breathe 8s ease-in-out infinite;
}
@keyframes rt-breathe {
  0%, 100% { opacity: .55; transform: translate(-50%,-50%) scale(1); }
  50%       { opacity: 1;   transform: translate(-50%,-50%) scale(1.22); }
}
.rt-frame {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 0 clamp(48px, 10vw, 200px);
}
.rt-label {
  font-size: clamp(9px, .65vw, 11px); font-weight: 700;
  letter-spacing: .34em; text-transform: uppercase;
  color: rgba(200,164,58,.38); margin-bottom: 22px;
}
.rt-line {
  width: 44px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,164,58,.55), transparent);
  margin-bottom: 30px;
}
.rt-headline {
  font-size: clamp(34px, 5.2vw, 84px);
  font-weight: 900; color: #fff;
  line-height: 1.07; letter-spacing: -.04em;
  margin: 0 0 24px; max-width: 22ch;
}
.rt-headline em {
  font-style: normal;
  background: linear-gradient(90deg, #e8c55a, #c8a43a);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.rt-sub {
  font-size: clamp(13px, .98vw, 15px);
  color: rgba(255,255,255,.24); font-weight: 400;
  margin: 0; max-width: 46ch; line-height: 1.72;
  letter-spacing: .01em;
}


/* Top-right buttons: immer dunkler Hintergrund → weiße Icons immer lesbar */
#partnerSlideBtn span { color: #f0f0f0; }
#slideStarBtn svg     { stroke: #f0f0f0; }
#darkModeBtn svg      { stroke: #f0f0f0; }

#partnerSlideBtn {
  position: fixed; top: 18px; right: 156px; z-index: 150;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(15,13,10,.45);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all .25s var(--ease);
  opacity: 0; pointer-events: none;
}
#partnerSlideBtn.partner-mode {
  opacity: 0.45; pointer-events: all;
}
body:hover #partnerSlideBtn.partner-mode { opacity: 1; }
body.dark-chrome #partnerSlideBtn { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.12); }
body.dark-chrome #partnerSlideBtn span { color: #f5f5f7; }
#partnerSlideBtn:hover { transform: scale(1.1); background: rgba(200,164,58,.15); border-color: rgba(200,164,58,.35); }
#partnerSlideBtn.pp-saved { opacity: 1; background: rgba(200,164,58,.2); border-color: rgba(200,164,58,.5); box-shadow: 0 0 16px rgba(200,164,58,.3); }
#partnerSlideBtn.pp-saved span { color: var(--gold) !important; }

#slideStarBtn {
  position: fixed; top: 18px; right: 110px; z-index: 150;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(15,13,10,.45);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all .25s var(--ease);
  opacity: 0.45;
}
body:hover #slideStarBtn { opacity: 1; }
body.dark-chrome #slideStarBtn { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.12); }
body.dark-chrome #slideStarBtn svg { stroke: #f5f5f7; }
#slideStarBtn:hover { transform: scale(1.1); background: rgba(200,164,58,.15); border-color: rgba(200,164,58,.35); }
#slideStarBtn.fav-active { opacity: 1; background: rgba(200,164,58,.2); border-color: rgba(200,164,58,.5); box-shadow: 0 0 16px rgba(200,164,58,.3); }
#slideStarBtn.fav-active svg { stroke: var(--gold); fill: var(--gold); }
body.dark-chrome #slideStarBtn.fav-active { background: rgba(200,164,58,.25); }

/* ══ PARTNER PANEL ══ */
#partnerPanel {
  display: none;
  position: fixed; inset: 0; z-index: 8000;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  align-items: flex-end; justify-content: center;
  padding-bottom: 56px;
}
#partnerPanel.open { display: flex; }

#partnerPanelBox {
  width: min(700px, 96vw);
  background: #0d1826;
  border: 1px solid rgba(200,164,58,.22);
  border-radius: 20px;
  box-shadow: 0 32px 80px rgba(0,0,0,.75), 0 0 0 1px rgba(255,255,255,.04) inset;
  overflow: hidden;
  animation: ppSlideUp .28s cubic-bezier(0.34,1.2,0.64,1);
}
@keyframes ppSlideUp {
  from { transform: translateY(20px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
#partnerPanelHeader {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px 13px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.pp-title-small { font-size: 9px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: rgba(200,164,58,.6); margin-bottom: 3px; }
.pp-title-big   { font-size: 15px; font-weight: 800; color: #fff; letter-spacing: -.01em; }
#partnerPanelClose {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.55); font-size: 18px; line-height: 1;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background .15s, color .15s;
}
#partnerPanelClose:hover { background: rgba(255,255,255,.14); color: #fff; }

#partnerCards {
  display: flex; gap: 10px; padding: 16px 20px;
  overflow-x: auto;
}
#partnerCards::-webkit-scrollbar { height: 4px; }
#partnerCards::-webkit-scrollbar-thumb { background: rgba(200,164,58,.3); border-radius: 2px; }

.partner-card {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 14px 16px; border-radius: 14px; cursor: pointer; flex-shrink: 0;
  border: 1.5px solid rgba(255,255,255,.1); background: rgba(255,255,255,.04);
  transition: all .2s ease; min-width: 96px;
}
.partner-card:hover { background: rgba(200,164,58,.09); border-color: rgba(200,164,58,.28); }
.partner-card.active { background: rgba(200,164,58,.14); border-color: rgba(200,164,58,.6); box-shadow: 0 0 22px rgba(200,164,58,.18); }

.partner-avatar {
  width: 54px; height: 54px; border-radius: 50%; overflow: hidden;
  border: 2px solid rgba(255,255,255,.12);
  background: rgba(200,164,58,.12);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.partner-card.active .partner-avatar { border-color: rgba(200,164,58,.65); }
.partner-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.partner-avatar-initials { font-size: 20px; font-weight: 800; color: rgba(200,164,58,.8); }
.partner-name  { font-size: 12px; font-weight: 700; color: rgba(255,255,255,.8); text-align: center; }
.partner-card.active .partner-name { color: #e8c55a; }
.partner-count { font-size: 10px; color: rgba(200,164,58,.55); font-weight: 600; min-height: 14px; flex: 1; }
.pp-partner-del {
  display: none; font-size: 12px; color: rgba(255,255,255,.25); background: none;
  border: none; cursor: pointer; padding: 2px 5px; transition: color .15s;
  position: absolute; top: 4px; right: 4px;
}
.partner-card:hover .pp-partner-del { display: block; }
.pp-partner-del:hover { color: rgba(255,90,90,.75); }
.partner-card { position: relative; }

#ppAddPartnerSection { border-top: 1px solid rgba(255,255,255,.07); padding: 8px 20px; }
#ppAddPartnerRow { display: flex; }


/* ── Mappen ── */
#partnerMappen { border-top: 1px solid rgba(255,255,255,.07); }
.pp-mappen-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 16px 8px 20px;
}
.pp-section-label {
  font-size: 9px; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: rgba(200,164,58,.55);
}
.pp-new-mappe-btn {
  font-size: 11px; font-weight: 700; color: #e8c55a;
  background: rgba(200,164,58,.12); border: 1px solid rgba(200,164,58,.25);
  border-radius: 6px; padding: 4px 10px; cursor: pointer; transition: background .15s;
}
.pp-new-mappe-btn:hover { background: rgba(200,164,58,.22); }

.pp-mappe-input {
  flex: 1; background: rgba(255,255,255,.07); border: 1px solid rgba(200,164,58,.3);
  border-radius: 6px; color: #fff; font-size: 12px; padding: 5px 10px; outline: none;
}
.pp-mappe-input:focus { border-color: rgba(200,164,58,.65); }
.pp-mappe-save-btn {
  font-size: 11px; font-weight: 700; color: #111; background: linear-gradient(135deg,#c8a43a,#e8c55a);
  border: none; border-radius: 6px; padding: 5px 12px; cursor: pointer; white-space: nowrap;
}
.pp-mappe-cancel-btn {
  font-size: 13px; color: rgba(255,255,255,.35); background: none; border: none; cursor: pointer; padding: 2px 6px;
}
.pp-mappe-cancel-btn:hover { color: rgba(255,255,255,.7); }

.pp-mappen-list { padding: 2px 0 6px; }
.pp-mappe-row {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 16px 8px 20px; cursor: pointer; transition: background .15s;
}
.pp-mappe-row:hover { background: rgba(200,164,58,.08); }
.pp-mappe-row.active { background: rgba(200,164,58,.12); }
.pp-mappe-icon { font-size: 10px; color: rgba(200,164,58,.6); width: 14px; flex-shrink: 0; }
.pp-mappe-row.active .pp-mappe-icon { color: #e8c55a; }
.pp-mappe-info { display: flex; flex-direction: column; gap: 1px; flex: 1; overflow: hidden; }
.pp-mappe-name { font-size: 12px; color: rgba(255,255,255,.8); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pp-mappe-row.active .pp-mappe-name { color: #e8c55a; }
.pp-mappe-count { font-size: 10px; color: rgba(255,255,255,.3); }
.pp-mappe-delete {
  font-size: 13px; color: rgba(255,255,255,.18); background: none; border: none;
  cursor: pointer; padding: 2px 6px; flex-shrink: 0; transition: color .15s;
}
.pp-mappe-delete:hover { color: rgba(255,90,90,.7); }

#partnerSlides { border-top: 1px solid rgba(255,255,255,.07); max-height: 220px; overflow-y: auto; padding: 4px 0 8px; }
#partnerSlides::-webkit-scrollbar { width: 4px; }
#partnerSlides::-webkit-scrollbar-thumb { background: rgba(200,164,58,.25); border-radius: 2px; }
.pp-slides-empty { padding: 18px 20px; font-size: 12px; color: rgba(255,255,255,.3); text-align: center; }
.pp-slides-header { padding: 10px 20px 4px; font-size: 9px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: rgba(200,164,58,.5); }

.pp-slide-item {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 16px 8px 20px; cursor: pointer;
  transition: background .15s;
}
.pp-slide-item:hover { background: rgba(200,164,58,.09); }
.pp-slide-item.active-slide { background: rgba(200,164,58,.12); }
.pp-slide-num   { font-size: 10px; font-weight: 800; color: rgba(200,164,58,.6); width: 22px; flex-shrink: 0; }
.pp-slide-title { font-size: 12px; color: rgba(255,255,255,.75); flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pp-slide-remove {
  font-size: 16px; color: rgba(255,255,255,.18); cursor: pointer;
  padding: 0 4px; transition: color .15s; flex-shrink: 0; line-height: 1;
}
.pp-slide-remove:hover { color: rgba(255,90,90,.7); }

/* Mappe play button */
.pp-mappe-play {
  font-size: 11px; color: rgba(200,164,58,.7); background: none; border: none;
  cursor: pointer; padding: 2px 5px; flex-shrink: 0; transition: color .15s;
}
.pp-mappe-play:hover { color: #e8c55a; }

/* Partner button active state */
#btnPartner.partner-active { color: #c8a43a !important; }
#btnPartner.partner-active svg { stroke: #c8a43a !important; }

/* Playlist Beenden-Button in der Toolbar */
#btnPlaylistExit { color: rgba(255,120,120,.8) !important; }
#btnPlaylistExit:hover { color: rgba(255,80,80,1) !important; }
#plCounter { font-weight: 800; color: #e8c55a; margin-right: 3px; }

