/* ============================================================
   VeloPulse Pitch — Luxury Dark Design System
   Stage: 1920×1080 (16:9), skaliert per JS auf Fenstergröße
   ============================================================ */

/* ---------- Fonts (offline, lokal) ---------- */
@font-face {
  font-family: "Cormorant";
  src: url("../assets/fonts/Cormorant-500.woff2") format("woff2");
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Cormorant";
  src: url("../assets/fonts/Cormorant-600.woff2") format("woff2");
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Cormorant";
  src: url("../assets/fonts/Cormorant-700.woff2") format("woff2");
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../assets/fonts/Montserrat-400.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../assets/fonts/Montserrat-500.woff2") format("woff2");
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../assets/fonts/Montserrat-600.woff2") format("woff2");
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../assets/fonts/Montserrat-700.woff2") format("woff2");
  font-weight: 700; font-style: normal; font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  --bg: #0A0908;
  --bg-raise: #14110E;
  --surface: #1B1713;
  --surface-2: #241E18;
  --border-gold: rgba(212, 179, 106, 0.22);
  --border-soft: rgba(255, 255, 255, 0.08);
  --gold: #D4B36A;
  --gold-bright: #E8CD8F;
  --gold-deep: #A16207;
  --ink: #F5F1E8;
  --ink-soft: #C9C2B4;
  --ink-muted: #97907f;
  --green: #4ADE80;
  --chart-gold: #BE8A28;   /* Datenfarbe: Umsatz (validiert) */
  --chart-blue: #4A8CC9;   /* Datenfarbe: EBIT (validiert) */
  --font-display: "Cormorant", "Didot", "Bodoni 72", Georgia, serif;
  --font-sans: "Montserrat", -apple-system, "Helvetica Neue", Arial, sans-serif;
  --ease-lux: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }


html, body {
  height: 100%;
  overflow: hidden;
  background: #000;
  font-family: var(--font-sans);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

/* ---------- Stage (16:9, fixiert) ---------- */
.viewport { position: fixed; inset: 0; background: #000; }

#stage {
  position: absolute;
  left: 50%; top: 50%;
  width: 1920px; height: 1080px;
  transform: translate(-50%, -50%) scale(1);
  background:
    radial-gradient(1200px 800px at 78% 10%, rgba(212, 179, 106, 0.06), transparent 60%),
    radial-gradient(1000px 700px at 12% 92%, rgba(212, 179, 106, 0.04), transparent 55%),
    var(--bg);
  overflow: hidden;
}

/* ---------- Folien ---------- */
.slide {
  position: absolute; inset: 0;
  padding: 84px 108px 72px;
  display: flex; flex-direction: column;
  opacity: 0; visibility: hidden;
  transform: translateX(70px);
  transition:
    opacity 0.55s var(--ease-lux),
    transform 0.55s var(--ease-lux),
    visibility 0s linear 0.55s;
}
.slide.is-active {
  opacity: 1; visibility: visible;
  transform: translateX(0);
  transition:
    opacity 0.55s var(--ease-lux),
    transform 0.55s var(--ease-lux),
    visibility 0s;
  z-index: 2;
}
.slide.is-before { transform: translateX(-70px); }

/* Gestaffelte Einblendung von Inhalten */
.anim {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease-lux), transform 0.7s var(--ease-lux);
}
.slide.is-active .anim { opacity: 1; transform: translateY(0); }
.slide.is-active .anim:nth-child(1) { transition-delay: 0.10s; }
.slide.is-active .anim:nth-child(2) { transition-delay: 0.20s; }
.slide.is-active .anim:nth-child(3) { transition-delay: 0.30s; }
.slide.is-active .anim:nth-child(4) { transition-delay: 0.40s; }
.slide.is-active .anim:nth-child(5) { transition-delay: 0.50s; }
.slide.is-active .anim:nth-child(6) { transition-delay: 0.60s; }
.slide.is-active [data-delay="1"] { transition-delay: 0.12s; }
.slide.is-active [data-delay="2"] { transition-delay: 0.24s; }
.slide.is-active [data-delay="3"] { transition-delay: 0.36s; }
.slide.is-active [data-delay="4"] { transition-delay: 0.48s; }
.slide.is-active [data-delay="5"] { transition-delay: 0.60s; }
.slide.is-active [data-delay="6"] { transition-delay: 0.72s; }

/* ---------- Folienkopf ---------- */
.slide-head { margin-bottom: 48px; }
.kicker {
  font-size: 15px; font-weight: 600;
  letter-spacing: 0.38em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.headline {
  font-family: var(--font-display);
  font-size: 68px; font-weight: 600; line-height: 1.05;
  color: var(--ink);
}
.headline em {
  font-style: italic; font-weight: 500; color: var(--gold-bright);
}
.hairline {
  height: 1px; width: 132px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-top: 26px;
}
.slide-no {
  position: absolute; top: 84px; right: 108px;
  font-family: var(--font-display);
  font-size: 26px; color: var(--ink-muted); letter-spacing: 0.1em;
}
.slide-foot {
  position: absolute; bottom: 34px; left: 108px; right: 240px;
  display: flex; justify-content: flex-start; gap: 34px; align-items: center;
  font-size: 12.5px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--ink-muted);
}

/* ---------- Karten & Chips ---------- */
.card {
  background: linear-gradient(160deg, var(--surface), var(--bg-raise));
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  padding: 34px 36px;
}
.card.gold-edge { border-color: var(--border-gold); }

.chip {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--bg-raise);
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  padding: 13px 22px;
  font-size: 16px; font-weight: 500; color: var(--ink-soft);
  white-space: nowrap;
}
.chip svg { width: 19px; height: 19px; stroke: var(--gold); flex: none; }

.icon-lg { width: 44px; height: 44px; stroke: var(--gold); }

/* ---------- Folie 1: Video / Titel ---------- */
.slide--video { padding: 0; }
.video-wrap { position: absolute; inset: 0; }
.video-wrap video {
  width: 100%; height: 100%; object-fit: cover;
  background: #000;
}
.video-shade {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(5,4,3,0.55) 0%, rgba(5,4,3,0.08) 38%, rgba(5,4,3,0.12) 62%, rgba(5,4,3,0.82) 100%);
  transition: opacity 0.6s var(--ease-lux);
}
.slide--video.is-playing .video-shade { opacity: 0.35; }

.title-block {
  position: absolute; left: 0; right: 0; bottom: 76px;
  text-align: center; pointer-events: none;
  transition: opacity 0.6s var(--ease-lux), transform 0.6s var(--ease-lux);
}
.slide--video.is-playing .title-block { opacity: 0; transform: translateY(18px); }
.title-block .wordmark { height: 120px; display: block; margin: 0 auto 8px; }
.title-team {
  font-size: 16px; font-weight: 600; letter-spacing: 0.5em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 16px;
}
.title-founders {
  font-family: var(--font-display);
  font-size: 27px; font-weight: 500; color: var(--ink-soft);
  letter-spacing: 0.06em;
}
.title-founders span { color: var(--gold-bright); padding: 0 10px; }

.play-btn {
  position: absolute; left: 50%; top: 44%;
  transform: translate(-50%, -50%);
  width: 118px; height: 118px; border-radius: 50%;
  background: rgba(10, 9, 8, 0.45);
  border: 1.5px solid var(--gold);
  backdrop-filter: blur(6px);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.25s var(--ease-lux), background 0.25s, opacity 0.4s;
}
.play-btn:hover { transform: translate(-50%, -50%) scale(1.07); background: rgba(161, 98, 7, 0.30); }
.play-btn svg { width: 40px; height: 40px; fill: var(--gold-bright); margin-left: 6px; }
.slide--video.is-playing .play-btn { opacity: 0; pointer-events: none; }
.video-hint {
  position: absolute; left: 50%; top: calc(44% + 92px);
  transform: translateX(-50%);
  font-size: 13px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--ink-soft); transition: opacity 0.4s;
}
.slide--video.is-playing .video-hint { opacity: 0; }

/* ---------- Folie 2: Produkt ---------- */
.product-grid {
  flex: 1; display: grid;
  grid-template-columns: 640px 1fr;
  gap: 56px; min-height: 0;
}
.product-hero {
  border-radius: 20px; overflow: hidden;
  border: 1px solid var(--border-gold);
  background: #ECEAE6;
  position: relative;
}
.product-hero img { width: 100%; height: 100%; object-fit: cover; display: block; }
.product-hero .tag {
  position: absolute; left: 26px; bottom: 24px;
  background: rgba(10, 9, 8, 0.78);
  border: 1px solid var(--border-gold);
  border-radius: 999px; padding: 12px 24px;
  font-size: 14px; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--gold-bright); backdrop-filter: blur(4px);
}
.product-side { display: flex; flex-direction: column; gap: 30px; min-height: 0; }
.feature-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.feature {
  display: flex; gap: 18px; align-items: flex-start;
  background: var(--bg-raise);
  border: 1px solid var(--border-soft);
  border-radius: 16px; padding: 22px 24px;
}
.feature svg { width: 30px; height: 30px; stroke: var(--gold); flex: none; margin-top: 2px; }
.feature b { display: block; font-size: 17px; font-weight: 600; color: var(--ink); margin-bottom: 5px; }
.feature span { font-size: 14.5px; color: var(--ink-muted); font-weight: 500; letter-spacing: 0.02em; }
.product-thumbs { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; flex: 1; min-height: 0; }
.thumb {
  border-radius: 16px; overflow: hidden;
  border: 1px solid var(--border-soft);
  position: relative; background: #ECEAE6;
}
.thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.thumb figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 24px 16px 12px;
  background: linear-gradient(180deg, transparent, rgba(10,9,8,0.85));
  font-size: 12.5px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-soft); text-align: center;
}

/* ---------- Folie 3: App-Demo ---------- */
.app-grid {
  flex: 1; display: grid;
  grid-template-columns: 1fr 520px;
  gap: 40px; align-items: center; min-height: 0;
}
.app-points { display: flex; flex-direction: column; gap: 20px; max-width: 640px; }
.app-point {
  display: flex; align-items: center; gap: 22px;
  background: var(--bg-raise);
  border: 1px solid var(--border-soft);
  border-left: 2px solid var(--gold);
  border-radius: 14px; padding: 24px 28px;
}
.app-point svg { width: 30px; height: 30px; stroke: var(--gold); flex: none; }
.app-point b { display: block; font-size: 19px; font-weight: 600; }
.app-point span { font-size: 15px; color: var(--ink-muted); font-weight: 500; }
.demo-note {
  margin-top: 12px; font-size: 13.5px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold);
}
.phone-holder { display: flex; align-items: center; justify-content: center; }
/* Skalierung am Phone selbst — .anim auf dem Holder überschreibt sonst das transform */
.phone-holder .vp-phone { transform: scale(0.84); transform-origin: center; }

/* ---------- Folie 4: USP ---------- */
.usp-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 28px; flex: 1; align-content: center; }
.usp-card {
  background: linear-gradient(165deg, var(--surface), var(--bg-raise));
  border: 1px solid var(--border-soft);
  border-top: 2px solid var(--gold);
  border-radius: 20px; padding: 52px 44px 46px;
}
.usp-close {
  text-align: center;
  font-family: var(--font-display);
  font-size: 38px; font-weight: 500; font-style: italic;
  color: var(--gold-bright);
  margin: 10px 0 34px;
}
.usp-close strong { font-weight: 700; }
.usp-card svg { width: 46px; height: 46px; stroke: var(--gold); margin-bottom: 26px; }
.usp-card h3 {
  font-family: var(--font-display);
  font-size: 34px; font-weight: 600; letter-spacing: 0.04em;
  margin-bottom: 22px;
}
.usp-card li {
  list-style: none; position: relative;
  padding-left: 26px; margin-bottom: 13px;
  font-size: 17px; font-weight: 500; color: var(--ink-soft);
}
.usp-card li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 10px; height: 1.5px; background: var(--gold);
}
.usp-card li strong { color: var(--gold-bright); font-weight: 600; }

/* ---------- Folie 5: Zielgruppe & Markt ---------- */
.market-grid { flex: 1; display: grid; grid-template-columns: 760px 1fr; gap: 60px; align-content: center; }
.subhead {
  font-size: 14px; font-weight: 600; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--ink-muted); margin-bottom: 24px;
}
.persona-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.stat-tile {
  background: var(--bg-raise);
  border: 1px solid var(--border-soft);
  border-radius: 16px; padding: 26px 28px;
}
.stat-tile .num {
  font-family: var(--font-display);
  font-size: 46px; font-weight: 600; color: var(--gold-bright);
  line-height: 1; margin-bottom: 8px;
  font-variant-numeric: tabular-nums;
}
.stat-tile .lbl { font-size: 14.5px; font-weight: 500; color: var(--ink-muted); letter-spacing: 0.04em; }
.stat-tile.wide { grid-column: span 2; display: flex; align-items: baseline; gap: 20px; }
.stat-tile.wide .num { margin-bottom: 0; }

.funnel { display: flex; flex-direction: column; gap: 16px; }
.funnel-row {
  border-radius: 14px;
  border: 1px solid var(--border-gold);
  background: linear-gradient(90deg, rgba(190, 138, 40, 0.16), rgba(190, 138, 40, 0.03));
  padding: 24px 30px;
  display: flex; justify-content: space-between; align-items: center;
}
.funnel-row:nth-child(2) { width: 78%; }
.funnel-row:nth-child(3) { width: 56%; background: linear-gradient(90deg, rgba(190,138,40,0.30), rgba(190,138,40,0.08)); }
.funnel-row .fl { font-size: 15px; font-weight: 600; letter-spacing: 0.06em; color: var(--ink-soft); }
.funnel-row .fl small { display: block; font-size: 12.5px; font-weight: 500; color: var(--ink-muted); letter-spacing: 0.12em; text-transform: uppercase; margin-top: 4px; }
.funnel-row .fv {
  font-family: var(--font-display);
  font-size: 40px; font-weight: 600; color: var(--gold-bright);
  font-variant-numeric: tabular-nums; white-space: nowrap; margin-left: 24px;
}
.market-note { display: flex; gap: 14px; align-items: center; margin-top: 26px; }
.market-note .chip { border-color: var(--border-gold); color: var(--gold-bright); }

/* ---------- Folie 6: Geschäftsmodell & Preis ---------- */
.biz-grid { flex: 1; display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; align-content: center; }
.price-card {
  background: linear-gradient(165deg, var(--surface), var(--bg-raise));
  border: 1px solid var(--border-soft);
  border-radius: 20px; padding: 48px 56px;
  display: flex; flex-direction: row; align-items: center;
  justify-content: space-between; gap: 34px;
}
.price-card.hero-price {
  border: 1px solid var(--border-gold);
  background: linear-gradient(165deg, #241C10, var(--bg-raise));
  position: relative;
}
.price-card .plabel {
  font-size: 13.5px; font-weight: 600; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--ink-muted); margin-bottom: 14px;
}
.price-card .pname { font-family: var(--font-display); font-size: 46px; font-weight: 600; line-height: 1.1; }
.price-card .pval {
  font-family: var(--font-display);
  font-size: 92px; font-weight: 600; color: var(--gold-bright); line-height: 1;
  font-variant-numeric: tabular-nums; white-space: nowrap;
}
.price-card .pval small { font-size: 28px; color: var(--ink-muted); font-family: var(--font-sans); font-weight: 500; }
.price-card ul { margin-top: 28px; }
.price-card li {
  list-style: none; position: relative; padding-left: 24px;
  margin-bottom: 12px; font-size: 16px; font-weight: 500; color: var(--ink-soft);
}
.price-card li::before {
  content: ""; position: absolute; left: 0; top: 8px;
  width: 9px; height: 1.5px; background: var(--gold);
}
.badge {
  position: absolute; top: -14px; right: 28px;
  background: var(--gold-deep); color: #FFF8EA;
  font-size: 12px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  padding: 7px 16px; border-radius: 999px;
}
.biz-strip { display: flex; gap: 16px; margin-top: 34px; flex-wrap: wrap; }

/* ---------- Folie 7: Strategie & Finanzen ---------- */
.fin-grid { flex: 1; display: grid; grid-template-columns: 620px 1fr; gap: 56px; min-height: 0; }
.roadmap { display: flex; flex-direction: column; position: relative; padding-left: 34px; align-self: center; }
.roadmap::before {
  content: ""; position: absolute; left: 7px; top: 12px; bottom: 12px;
  width: 1px; background: linear-gradient(180deg, var(--gold), rgba(212,179,106,0.1));
}
.road-step { position: relative; padding-bottom: 27px; }
.road-step::before {
  content: ""; position: absolute; left: -32px; top: 7px;
  width: 11px; height: 11px; border-radius: 50%;
  border: 1.5px solid var(--gold); background: var(--bg);
}
.road-step .ry {
  font-family: var(--font-display);
  font-size: 25px; font-weight: 600; color: var(--gold-bright);
  margin-bottom: 4px;
}
.road-step .rt { font-size: 16px; font-weight: 500; color: var(--ink-soft); letter-spacing: 0.02em; }

.chart-card {
  background: var(--bg-raise);
  border: 1px solid var(--border-soft);
  border-radius: 20px; padding: 30px 34px 22px;
  display: flex; flex-direction: column; min-height: 0;
}
.chart-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 8px; }
.chart-title { font-size: 16px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); }
.legend { display: flex; gap: 26px; font-size: 13.5px; font-weight: 500; color: var(--ink-muted); }
.legend i { display: inline-block; width: 13px; height: 13px; border-radius: 4px; margin-right: 8px; vertical-align: -2px; }
.legend .sw-rev { background: var(--chart-gold); }
.legend .sw-ebit { background: var(--chart-blue); border-radius: 50%; }

.fin-chart text { font-family: var(--font-sans); }
.fin-chart .grid-line { stroke: rgba(255,255,255,0.07); stroke-width: 1; }
.fin-chart .zero-line { stroke: rgba(255,255,255,0.22); stroke-width: 1; }
.fin-chart .axis-lbl { fill: var(--ink-muted); font-size: 13px; font-weight: 500; }
.fin-chart .year-lbl { fill: var(--ink-soft); font-size: 14.5px; font-weight: 600; }
.fin-chart .val-lbl { fill: var(--ink); font-size: 14.5px; font-weight: 600; }
.fin-chart .val-lbl-ebit { fill: var(--ink-soft); font-size: 13px; font-weight: 500; }
/* Gewinn-Werte liegen auf den goldenen Balken → dunkle Schrift für Kontrast */
.fin-chart .val-lbl-gewinn { fill: #14110E; font-size: 13.5px; font-weight: 700; }
.fin-chart .bar { fill: var(--chart-gold); }
.fin-chart .ebit-line { stroke: var(--chart-blue); stroke-width: 2.5; fill: none; }
.fin-chart .ebit-dot { fill: var(--chart-blue); stroke: var(--bg-raise); stroke-width: 2; }
.fin-chart .be-note { fill: var(--gold-bright); font-size: 12.5px; font-weight: 600; letter-spacing: 0.08em; }

/* Chart-Animation beim Aktivieren der Folie */
.fin-chart .bar {
  transform-box: fill-box; transform-origin: bottom;
  transform: scaleY(0);
  transition: transform 0.9s var(--ease-lux);
}
.slide.is-active .fin-chart .bar { transform: scaleY(1); }
.slide.is-active .fin-chart .bar:nth-of-type(2) { transition-delay: 0.1s; }
.slide.is-active .fin-chart .bar:nth-of-type(3) { transition-delay: 0.2s; }
.slide.is-active .fin-chart .bar:nth-of-type(4) { transition-delay: 0.3s; }
.slide.is-active .fin-chart .bar:nth-of-type(5) { transition-delay: 0.4s; }
.fin-chart .ebit-line {
  stroke-dasharray: 900; stroke-dashoffset: 900;
  transition: stroke-dashoffset 1.4s var(--ease-lux) 0.5s;
}
.slide.is-active .fin-chart .ebit-line { stroke-dashoffset: 0; }
.kpi-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 24px; }
.kpi {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 14px; padding: 18px 20px;
}
.kpi .num {
  font-family: var(--font-display);
  font-size: 33px; font-weight: 600; color: var(--gold-bright); line-height: 1.05;
  font-variant-numeric: tabular-nums;
}
.kpi .lbl { font-size: 12.5px; font-weight: 500; color: var(--ink-muted); letter-spacing: 0.06em; margin-top: 6px; }

/* ---------- Folie 8: Organigramm ---------- */
.org { flex: 1; display: flex; flex-direction: column; align-items: center; }
.org-root {
  border: 1px solid var(--border-gold);
  background: linear-gradient(165deg, #241C10, var(--bg-raise));
  border-radius: 16px; padding: 22px 54px; text-align: center;
}
.org-root .on { font-family: var(--font-display); font-size: 29px; font-weight: 600; }
.org-root .or { font-size: 12.5px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-top: 6px; }
.org-connector { width: 1px; height: 34px; background: var(--border-gold); }
.org-connector-h { width: 66%; height: 1px; background: var(--border-gold); position: relative; }
.org-connector-h::before, .org-connector-h::after {
  content: ""; position: absolute; top: 0; width: 1px; height: 30px; background: var(--border-gold);
}
.org-connector-h::before { left: 0; }
.org-connector-h::after { right: 0; }
.org-connector-h i {
  display: block; position: absolute; top: 0; left: 50%;
  width: 1px; height: 30px; background: var(--border-gold);
}
.org-row { display: grid; grid-template-columns: repeat(3, 400px); gap: 40px; margin-top: 30px; }
.org-card {
  background: linear-gradient(165deg, var(--surface), var(--bg-raise));
  border: 1px solid var(--border-soft);
  border-top: 2px solid var(--gold);
  border-radius: 18px; padding: 32px 34px; text-align: center;
}
.org-card .avatar {
  width: 74px; height: 74px; border-radius: 50%;
  margin: 0 auto 18px;
  background: radial-gradient(circle at 32% 30%, #33291A, #17120C);
  border: 1.5px solid var(--border-gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 27px; font-weight: 600; color: var(--gold-bright);
  letter-spacing: 0.04em;
}
.org-card .name { font-family: var(--font-display); font-size: 30px; font-weight: 600; }
.org-card .role { font-size: 13px; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin: 8px 0 14px; }
.org-card .area { font-size: 15.5px; font-weight: 500; color: var(--ink-muted); letter-spacing: 0.03em; }
.org-plan { display: flex; gap: 16px; margin-top: 42px; align-items: center; }
.org-plan .plabel { font-size: 13px; font-weight: 600; letter-spacing: 0.26em; text-transform: uppercase; color: var(--ink-muted); margin-right: 10px; }

/* ---------- Folie 9: Ausblick ---------- */
.outlook-grid { flex: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.outlook-list { display: flex; flex-direction: column; gap: 22px; }
.outlook-item {
  display: flex; align-items: center; gap: 24px;
  background: var(--bg-raise);
  border: 1px solid var(--border-soft);
  border-radius: 16px; padding: 26px 30px;
}
.outlook-item .oy {
  font-family: var(--font-display);
  font-size: 30px; font-weight: 600; color: var(--gold-bright);
  min-width: 108px;
}
.outlook-item b { display: block; font-size: 19px; font-weight: 600; margin-bottom: 4px; }
.outlook-item span { font-size: 15px; font-weight: 500; color: var(--ink-muted); }
.outlook-close { text-align: center; }
.outlook-close .wordmark { height: 108px; display: block; margin: 0 auto 30px; }
.outlook-claim {
  font-family: var(--font-display);
  font-size: 58px; font-weight: 500; font-style: italic;
  color: var(--ink);
}
.outlook-claim strong { color: var(--gold-bright); font-weight: 600; }
.outlook-sub { margin-top: 26px; font-size: 14px; letter-spacing: 0.34em; text-transform: uppercase; color: var(--ink-muted); }

/* ---------- HUD (Navigation) ---------- */
.hud {
  position: absolute; bottom: 0; left: 0; right: 0;
  z-index: 50; pointer-events: none;
}
.progress {
  position: absolute; bottom: 0; left: 0;
  height: 2px; width: 100%;
  background: rgba(255,255,255,0.06);
}
.progress i {
  display: block; height: 100%; width: 0;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold));
  transition: width 0.55s var(--ease-lux);
}
.hud-counter {
  position: absolute; bottom: 34px; right: 228px;
  font-family: var(--font-display);
  font-size: 19px; color: var(--ink-muted); letter-spacing: 0.14em;
  pointer-events: none;
}
.hud-counter b { color: var(--gold-bright); font-weight: 600; }
.hud-arrows {
  position: absolute; bottom: 20px; right: 108px;
  display: flex; gap: 10px; pointer-events: auto;
}
.hud-arrows button {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(20, 17, 14, 0.7);
  border: 1px solid var(--border-soft);
  color: var(--ink-soft); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}
.hud-arrows button:hover { border-color: var(--gold); color: var(--gold-bright); transform: translateY(-2px); }
.hud-arrows button:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.hud-arrows svg { width: 18px; height: 18px; }
.key-hint {
  position: absolute; bottom: 34px; left: 108px;
  font-size: 12px; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--ink-muted); pointer-events: none;
  transition: opacity 0.5s;
}
.key-hint.is-hidden { opacity: 0; }

/* ---------- Minimal-Folien: Produkt-Duo (Folie 2 & 3) ---------- */
.slide-head--center { text-align: center; }
.slide-head--center .headline { font-size: 76px; }
.product-duo {
  flex: 1; display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; min-height: 0;
}
.duo-img {
  position: relative; border-radius: 20px; overflow: hidden;
  border: 1px solid var(--border-gold); background: #ECEAE6;
}
.duo-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.duo-img .tag {
  position: absolute; left: 50%; bottom: 28px; transform: translateX(-50%);
  background: rgba(10, 9, 8, 0.78);
  border: 1px solid var(--border-gold);
  border-radius: 999px; padding: 12px 26px;
  font-size: 14px; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--gold-bright); backdrop-filter: blur(4px); white-space: nowrap;
}

/* ---------- Folie 4: App zentriert ---------- */
.app-center { flex: 1; display: flex; align-items: center; justify-content: center; min-height: 0; }
.app-center .vp-phone { transform: scale(1.08); transform-origin: center; }

/* ---------- Folie 5: USP-Schritte ---------- */
.slide--usp .headline { font-size: 92px; }
.slide--usp .slide-head { margin-bottom: 16px; }
.usp-stage { position: relative; flex: 1; min-height: 0; }
.usp-step {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 34px;
  opacity: 0; transform: translateY(26px) scale(0.98);
  transition: opacity 0.5s var(--ease-lux), transform 0.5s var(--ease-lux);
  pointer-events: none;
}
.usp-step.is-on { opacity: 1; transform: none; }
.usp-step .icon-xl { width: 96px; height: 96px; stroke: var(--gold); }
.usp-step h3 {
  font-family: var(--font-display);
  font-size: 132px; font-weight: 600; line-height: 1;
  letter-spacing: 0.02em; color: var(--ink);
}

/* ---------- Folie 6: Zielgruppe & Markt (nur Zahlen) ---------- */
.market2 {
  flex: 1; display: grid; grid-template-columns: 1fr 1fr;
  gap: 70px; align-content: center; align-items: center;
}
.mchips { display: flex; gap: 14px; margin-top: 20px; }

/* Trichterdiagramm TAM/SAM/SOM */
.funnel-chart svg { width: 100%; max-width: 680px; display: block; margin: 0 auto; }
.fun-band { stroke: rgba(212, 179, 106, 0.35); stroke-width: 1; }
.fun-band--1 { fill: rgba(190, 138, 40, 0.16); }
.fun-band--2 { fill: rgba(190, 138, 40, 0.34); }
.fun-band--3 { fill: #BE8A28; }
.fun-cap {
  fill: var(--ink-muted); font-family: var(--font-sans);
  font-size: 15px; font-weight: 700; letter-spacing: 0.34em;
}
.fun-cap--dark { fill: #3A2C0A; }
.fun-val {
  fill: var(--gold-bright); font-family: var(--font-display);
  font-size: 46px; font-weight: 600;
}
.fun-val--dark { fill: #14110E; }
.fun-step {
  opacity: 0; transform: translateY(22px);
  transition: opacity 0.6s var(--ease-lux), transform 0.6s var(--ease-lux);
}
.slide.is-active .fun-step { opacity: 1; transform: none; }
.slide.is-active .fun-step[data-step="1"] { transition-delay: 0.25s; }
.slide.is-active .fun-step[data-step="2"] { transition-delay: 0.40s; }
.slide.is-active .fun-step[data-step="3"] { transition-delay: 0.55s; }

.market-simple {
  flex: 1; display: grid; grid-template-columns: 1fr 1fr;
  gap: 90px; align-content: center; align-items: center;
}
.persona-lines { display: flex; flex-direction: column; gap: 48px; }
.persona-line {
  font-family: var(--font-display);
  font-size: 64px; font-weight: 500; line-height: 1.1;
  padding-left: 46px; position: relative;
}
.persona-line::before {
  content: ""; position: absolute; left: 0; top: 50%;
  width: 28px; height: 2px; background: var(--gold);
}
.market-nums { display: flex; flex-direction: column; gap: 26px; }
.stat-tile--big { padding: 40px 46px; }
.stat-tile--big .num { font-size: 88px; }
.stat-tile--big .lbl { font-size: 17px; margin-top: 12px; letter-spacing: 0.06em; }

/* ---------- Folie 8: Chart solo ---------- */
.fin-solo { flex: 1; display: flex; align-items: center; justify-content: center; min-height: 0; }
.fin-solo .chart-card { width: 1280px; }
.fin-solo .chart-title { font-size: 18px; }
.fin-solo .legend { font-size: 15px; }

/* ---------- Folie 10: Schluss ---------- */
.slide--closing { align-items: center; justify-content: center; }
.closing-center { text-align: center; }
.wordmark--xl { height: 300px; display: block; margin: 0 auto 38px; }
.closing-claim {
  font-family: var(--font-display);
  font-size: 34px; font-weight: 500; font-style: italic;
  color: var(--gold-bright); letter-spacing: 0.04em;
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .slide, .anim, .fin-chart .bar, .fin-chart .ebit-line,
  .progress i, .title-block, .video-shade, .usp-step, .fun-step { transition: none !important; }
  .fin-chart .bar { transform: none; }
  .fin-chart .ebit-line { stroke-dasharray: none; stroke-dashoffset: 0; }
}
