@font-face {
  font-family: Lato;
  src: url("../fonts/lato/lato-light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Lato;
  src: url("../fonts/lato/lato-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Lato;
  src: url("../fonts/lato/lato-bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Lato;
  src: url("../fonts/lato/lato-black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
/* =========================================================
       BRAND TOKENS — Unite+ Agency
       Verifiziert gegen apps/sowhat/src/styles/global.css
       ========================================================= */
:root {
  --brand-700: #175464;
  --brand-500: #2f888c;
  --brand-100: #d8f9ef;
  --brand-50: #ebf9f5;
  --ink: #000000;
  --ink-soft: #333333;
  --line-soft: #cccccc;
  --paper-2: #ffffff;
  --paper: #fdfbf5;

  --shadow-sticker-sm: 3px 3px 0 #000;
  --shadow-sticker: 6px 6px 0 #000;
  --shadow-sticker-lg: 10px 10px 0 #000;

  /* Type scale (fest für 1920×1080-Folie) */
  --t-hero: 128px;
  --t-h1: 76px;
  --t-h2: 54px;
  --t-h3: 34px;
  --t-h4: 26px;
  --t-body: 20px;
  --t-small: 16px;
  --t-eyebrow: 12px;

  /* Folien-Padding (fest, 16:9) */
  --pad-x: 96px;
  --pad-y: 64px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #e6efe9;
  color: var(--ink-soft);
  font-family:
    Lato,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Helvetica,
    sans-serif;
  font-weight: 400;
  font-size: var(--t-body);
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}

/* =========================================================
       STAGE / DECK — 16:9 (1920×1080) mit transform: scale()
       Skaliert in beide Richtungen auf jeden Viewport.
       ========================================================= */
.stage {
  position: fixed;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.deck {
  width: 1920px;
  height: 1080px;
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--paper);
  background-image:
    radial-gradient(circle at 18% 12%, var(--brand-50) 0%, transparent 42%),
    radial-gradient(circle at 86% 82%, var(--brand-100) 0%, transparent 48%);
  transform-origin: center center;
  overflow: hidden;
}
.deck::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(var(--ink) 0.8px, transparent 0.8px);
  background-size: 30px 30px;
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
}

.slide {
  position: absolute;
  inset: 0;
  width: 1920px;
  height: 1080px;
  padding: var(--pad-y) var(--pad-x);
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition:
    opacity 0.35s ease,
    transform 0.5s cubic-bezier(0.34, 1.2, 0.64, 1);
  z-index: 1;
}
.slide.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  z-index: 2;
}
/* Mobile-only slides are hidden on desktop (and excluded from nav in app.js) */
.slide.m-only {
  display: none;
}
/* Swipe/tap hint on slide 1 — mobile only (shown via @media below) */
.swipe-hint {
  display: none;
}

/* =========================================================
       SLIDE HEAD — Section-Pill links · SOWHAT-Logo rechts
       (Section-Pill enthält Step-Info; keine doppelte Eyebrow auf der Folie)
       ========================================================= */
.slide-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 36px;
  position: relative;
  z-index: 3;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--ink);
  padding: 10px 18px;
  border-radius: 999px;
  border: 2px solid var(--ink);
  background: var(--paper-2);
  box-shadow: var(--shadow-sticker-sm);
}
.section-tag .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--brand-500);
}

/* SOWHAT-Logo (Navbar-Variante: weiß) — via filter:brightness(0)
       komplett schwarz eingefärbt. Kein Container drumherum,
       Logo steht frei. Transparente Bereiche bleiben transparent. */
.brand-pill {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.brand-pill img {
  height: 42px;
  width: auto;
  display: block;
  filter: brightness(0);
}

/* =========================================================
       KAI MASCOT — rechts unten, fester Slot
       ========================================================= */
.kai-mascot {
  position: absolute;
  bottom: 64px;
  right: var(--pad-x);
  width: 168px;
  height: 168px;
  pointer-events: none;
  z-index: 4;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.4s ease 0.1s,
    transform 0.5s ease 0.1s;
}
.slide.active .kai-mascot {
  opacity: 1;
  transform: translateY(0);
}
.kai-mascot video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(5px 5px 0 rgba(0, 0, 0, 0.85));
}

/* =========================================================
       KAI TRANSITION OVERLAY — beim "Übergangs-Klick" auf
       Section-Ende-Folien: Kai groß + große Sprechblase
       ========================================================= */
.kai-transition {
  position: absolute;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(253, 251, 245, 0.72);
  backdrop-filter: blur(2px);
}
.slide.active .kai-transition.show {
  display: flex;
  animation: fade-up 0.35s ease;
}
@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.kai-transition .stack {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1320px;
}
.kai-transition .kai-big {
  width: 360px;
  height: 360px;
  flex: 0 0 auto;
}
.kai-transition .kai-big video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(10px 10px 0 rgba(0, 0, 0, 0.9));
}
.kai-transition .bubble {
  position: relative;
  background: var(--paper-2);
  border: 3px solid var(--ink);
  border-radius: 28px;
  box-shadow: var(--shadow-sticker-lg);
  padding: 36px 44px;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.3;
  color: var(--ink);
  max-width: 720px;
  transform: rotate(-1.5deg);
}
.kai-transition .bubble::after {
  content: "";
  position: absolute;
  left: -22px;
  top: 50%;
  width: 26px;
  height: 26px;
  background: var(--paper-2);
  border-left: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  transform: translateY(-50%) rotate(45deg);
}
.kai-transition .bubble em {
  font-style: normal;
  color: var(--brand-700);
}
.kai-transition .hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--ink-soft);
  opacity: 0.6;
}

/* =========================================================
       PRIMITIVES
       ========================================================= */
.sticker {
  background: var(--paper-2);
  border: 2.5px solid var(--ink);
  border-radius: 22px;
  box-shadow: var(--shadow-sticker);
  padding: 26px 30px;
}
.sticker.tilt-l {
  transform: rotate(-1.2deg);
}
.sticker.tilt-r {
  transform: rotate(1.2deg);
}
.sticker.tilt-l-strong {
  transform: rotate(-2deg);
}
.sticker.tilt-r-strong {
  transform: rotate(2deg);
}

.badge {
  display: inline-block;
  font-size: var(--t-eyebrow);
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1.5px solid var(--ink);
  background: var(--paper-2);
  color: var(--ink);
  white-space: nowrap;
}
.badge.teal {
  background: var(--brand-500);
  color: var(--paper-2);
}
.badge.dark {
  background: var(--brand-700);
  color: var(--paper-2);
}
.badge.ink {
  background: var(--ink);
  color: var(--paper);
}

.pill {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  border: 2px solid var(--ink);
  background: var(--paper-2);
  font-size: 15px;
  font-weight: 900;
  color: var(--ink);
  box-shadow: var(--shadow-sticker-sm);
  white-space: nowrap;
}
.pill.accent {
  background: var(--brand-100);
}
.pill.solid {
  background: var(--brand-500);
  color: var(--paper);
}

.bullet-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.bullet-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 18px;
  line-height: 1.45;
  color: var(--ink);
  font-weight: 400;
}
.bullet-list li::before {
  content: "";
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
  margin-top: 6px;
  background: var(--brand-500);
  border: 2px solid var(--ink);
  border-radius: 50%;
  box-shadow: 2px 2px 0 var(--ink);
}

/* =========================================================
       NAV — außerhalb des Decks, fixed am Viewport-Rand.
       Wird NICHT mit dem Deck skaliert.
       Mit "H" oder "U" lässt sich die Nav ausblenden (Vortragsmodus).
       ========================================================= */
.nav {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  align-items: center;
  background: var(--paper-2);
  border: 2.5px solid var(--ink);
  padding: 6px 8px;
  border-radius: 999px;
  box-shadow: var(--shadow-sticker-sm);
  z-index: 200;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}
.nav.hidden {
  opacity: 0;
  transform: translateX(-50%) translateY(20px);
  pointer-events: none;
}
.nav button {
  background: var(--paper-2);
  border: 2px solid var(--ink);
  color: var(--ink);
  padding: 6px 12px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}
.nav button.primary {
  background: var(--brand-500);
  color: var(--paper-2);
}
.nav button:hover:not(:disabled) {
  background: var(--brand-100);
}
.nav button.primary:hover:not(:disabled) {
  background: var(--brand-700);
}
.nav button:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.nav #menuBtn {
  width: 32px;
  height: 32px;
  padding: 0;
  border-radius: 50%;
  font-size: 22px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav #menuBtn:hover {
  background: var(--brand-100);
}
.nav #menuBtn .burger {
  display: block;
  transform: translateY(-3px);
}
.nav .count {
  font-size: 11px;
  font-weight: 900;
  padding: 0 8px;
  min-width: 56px;
  text-align: center;
  color: var(--ink);
}
/* Slide overview menu (opens above the nav) */
.nav .slide-menu {
  position: absolute;
  bottom: calc(100% + 12px);
  left: 0;
  width: 300px;
  max-height: 60vh;
  overflow-y: auto;
  background: var(--paper-2);
  border: 2.5px solid var(--ink);
  border-radius: 18px;
  box-shadow: var(--shadow-sticker);
  padding: 10px;
}
.nav .slide-menu[hidden] {
  display: none;
}
.nav .slide-menu-title {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--brand-500);
  padding: 4px 10px 8px;
}
.nav .slide-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav .slide-menu li {
  display: flex;
  gap: 10px;
  align-items: baseline;
  padding: 8px 12px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}
.nav .slide-menu li:hover {
  background: var(--brand-100);
}
.nav .slide-menu li.current {
  background: var(--brand-500);
  color: var(--paper-2);
}
.nav .slide-menu li .num {
  font-weight: 900;
  color: var(--brand-500);
  min-width: 20px;
}
.nav .slide-menu li.current .num {
  color: var(--paper-2);
}
.nav .hide-hint {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--ink-soft);
  opacity: 0.55;
  padding: 0 6px 0 4px;
  border-left: 1.5px solid var(--line-soft);
  margin-left: 2px;
}
.nav .sound-toggle {
  background: var(--paper-2);
  border: 2px solid var(--ink);
  color: var(--ink);
  width: 32px;
  height: 32px;
  padding: 0;
  border-radius: 50%;
  font-size: 14px;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.15s ease;
}
.nav .sound-toggle.on {
  background: var(--brand-100);
}
.nav .sound-toggle:hover {
  background: var(--brand-100);
}

/* =========================================================
       FOLIE 1 — TITEL + TEAM
       ========================================================= */
.s-title {
  justify-content: space-between;
}
.s-title .hero-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 540px; /* Platz für Kai-Hero rechts */
}
.s-title h1 {
  margin: 0;
  font-size: var(--t-hero);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -3px;
  color: var(--ink);
  max-width: 16ch;
}
.s-title h1 .accent {
  display: inline-block;
  color: var(--paper);
  background: var(--brand-500);
  padding: 0 18px 8px;
  border-radius: 16px;
  border: 4px solid var(--ink);
  box-shadow: var(--shadow-sticker);
  transform: rotate(-1.5deg);
  margin: 8px 6px 0 0;
}
.s-title .subtitle {
  margin-top: 30px;
  font-size: 26px;
  color: var(--ink-soft);
  font-weight: 300;
  max-width: 46ch;
  line-height: 1.42;
}

.s-title .team-row {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 56px;
}
.s-title .team-row .eyebrow {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brand-500);
  line-height: 1;
  padding: 4px 0;
}
.s-title .team-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 28px 18px 18px;
  background: var(--paper-2);
  border: 2.5px solid var(--ink);
  border-radius: 22px;
  box-shadow: var(--shadow-sticker);
}
.s-title .team-card.tilt-l {
  transform: rotate(-1.5deg);
}
.s-title .team-card.tilt-r {
  transform: rotate(1.5deg);
}
.s-title .team-card .photo-frame {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 3px solid var(--ink);
  background: var(--brand-500);
  overflow: hidden;
  flex: 0 0 auto;
}
.s-title .team-card .photo-frame img,
.s-title .team-card .photo-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.s-title .team-card .meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.s-title .team-card .name {
  font-size: 24px;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.5px;
  line-height: 1.1;
}
.s-title .team-card .role {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--brand-500);
}
.s-title .team-and {
  font-size: 32px;
  font-weight: 900;
  color: var(--brand-700);
  transform: rotate(-4deg);
  padding: 0 4px;
}

/* Hero-Kai groß rechts auf Titel-Folie */
.s-title .kai-hero {
  position: absolute;
  right: 100px;
  top: 50%;
  transform: translateY(-50%);
  width: 460px;
  height: 460px;
  z-index: 3;
}
.s-title .kai-hero video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(10px 10px 0 rgba(0, 0, 0, 0.9));
}

/* =========================================================
       FOLIE 3 — HOOK
       ========================================================= */
.s-hook h2 {
  margin: 0 0 14px;
  font-size: var(--t-h1);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -2px;
  color: var(--ink);
  max-width: 22ch;
}
.s-hook h2 .accent {
  color: var(--brand-500);
}
.s-hook .lead {
  margin: 0 0 40px;
  font-size: 24px;
  font-weight: 300;
  color: var(--ink-soft);
  max-width: 56ch;
  line-height: 1.45;
}
.s-hook .duo {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 32px;
  margin-bottom: 32px;
  align-items: stretch;
}
.s-hook .duo .card {
  padding: 28px 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--paper-2);
}
.s-hook .duo .card.context {
  transform: rotate(-0.8deg);
}
.s-hook .duo .card.focus {
  transform: rotate(0.8deg);
  background: var(--brand-50);
  border-width: 3px;
}
.s-hook .duo .card .label {
  display: inline-block;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1.5px solid var(--ink);
  background: var(--paper-2);
  color: var(--ink);
  align-self: flex-start;
}
.s-hook .duo .card.focus .label {
  background: var(--brand-500);
  color: var(--paper);
}
.s-hook .duo .card h4 {
  margin: 4px 0 6px;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.4px;
  color: var(--ink);
  line-height: 1.2;
}
.s-hook .duo .card.focus h4 {
  color: var(--ink);
}
.s-hook .duo .card p {
  margin: 0;
  font-size: 16px;
  color: var(--ink);
  font-weight: 400;
  line-height: 1.5;
}
.s-hook .duo .card .status {
  margin-top: auto;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  align-self: flex-start;
}
.s-hook .duo .card.context .status {
  background: var(--paper);
  border: 1.5px dashed var(--ink-soft);
  color: var(--ink-soft);
}
.s-hook .duo .card.focus .status {
  background: var(--brand-500);
  border: 1.5px solid var(--ink);
  color: var(--paper);
  box-shadow: 2px 2px 0 var(--ink);
}
.s-hook .bridge {
  max-width: 70ch;
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.45;
  padding: 16px 24px;
  background: var(--paper-2);
  border-left: 6px solid var(--brand-500);
  border-radius: 4px 16px 16px 4px;
  box-shadow: var(--shadow-sticker-sm);
}
.s-hook .bridge em {
  font-style: normal;
  color: var(--brand-700);
  font-weight: 900;
}

/* =========================================================
       FOLIE 4 — 3A-SPEKTRUM
       ========================================================= */
.s-3a h2 {
  margin: 0 0 10px;
  font-size: var(--t-h1);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -2px;
  color: var(--ink);
  max-width: 24ch;
}
.s-3a h2 .accent {
  color: var(--brand-500);
}
.s-3a .lead {
  margin: 0 0 40px;
  font-size: 22px;
  font-weight: 300;
  color: var(--ink-soft);
  max-width: 70ch;
  line-height: 1.45;
}
.s-3a .spectrum {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 24px;
  align-items: stretch;
  flex: 1;
  min-height: 0;
}
.s-3a .step {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px 26px 26px;
  position: relative;
}
.s-3a .step h3 {
  margin: 0;
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -0.8px;
  color: var(--ink);
  line-height: 1.05;
}
.s-3a .step .role {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--brand-500);
}
.s-3a .step .ki-as {
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -0.2px;
  color: var(--brand-700);
  margin: -2px 0 4px;
}
.s-3a .step .def {
  margin: 0;
  font-size: 15px;
  line-height: 1.45;
  color: var(--ink-soft);
}
.s-3a .step .startpunkt {
  background: var(--brand-50);
  border: 1.5px solid var(--brand-500);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 13px;
  line-height: 1.4;
  color: var(--ink);
  font-style: italic;
}
.s-3a .step .startpunkt .lbl {
  display: block;
  font-style: normal;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--brand-500);
  margin-bottom: 4px;
}
.s-3a .step .examples {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1.5px dashed var(--line-soft);
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.45;
}
.s-3a .step .examples .lbl {
  display: block;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--brand-500);
  margin-bottom: 6px;
}
.s-3a .step.focus {
  background: var(--brand-50);
  border-width: 3px;
}
.s-3a .step.focus::after {
  content: "Hier wird's schwer!";
  position: absolute;
  top: -18px;
  right: 28px;
  background: var(--brand-500);
  color: var(--paper);
  border: 2.5px solid var(--ink);
  box-shadow: var(--shadow-sticker-sm);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 999px;
  transform: rotate(-3deg);
}

/* =========================================================
       FOLIE 6 — AI FLUENCY (4 Dimensionen)
       ========================================================= */
.s-fluency h2 {
  margin: 0 0 10px;
  font-size: var(--t-h1);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -2px;
  color: var(--ink);
  max-width: 24ch;
}
.s-fluency h2 .accent {
  color: var(--brand-500);
}
.s-fluency .super {
  display: inline-block;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brand-500);
  margin-bottom: 8px;
}
.s-fluency .lead {
  margin: 0 0 36px;
  font-size: 22px;
  font-weight: 300;
  color: var(--ink-soft);
  max-width: 70ch;
  line-height: 1.45;
}
.s-fluency .lead strong {
  color: var(--ink);
  font-weight: 900;
}
.s-fluency .four-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
  margin-bottom: 26px;
}
.s-fluency .d-card {
  padding: 26px 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  min-height: 320px;
}
.s-fluency .d-card .step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  font-size: 16px;
  font-weight: 900;
  border: 2px solid var(--ink);
}
.s-fluency .d-card h3 {
  margin: 6px 0 4px;
  font-size: var(--t-h3);
  font-weight: 900;
  letter-spacing: -0.6px;
  color: var(--ink);
  line-height: 1.05;
}
.s-fluency .d-card .q {
  font-size: 16px;
  font-weight: 700;
  color: var(--brand-700);
  font-style: italic;
  line-height: 1.4;
}
.s-fluency .d-card .desc {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.45;
  margin-top: 6px;
}
.s-fluency .footer-insight {
  max-width: 80ch;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.45;
  padding: 16px 22px;
  background: var(--paper-2);
  border-left: 6px solid var(--brand-500);
  border-radius: 4px 14px 14px 4px;
  box-shadow: var(--shadow-sticker-sm);
}
.s-fluency .footer-insight em {
  font-style: normal;
  color: var(--brand-700);
  font-weight: 900;
}

/* =========================================================
       KAI-BLOCK — Eine Slide mit 8 internen Stages.
       Übernommen und angepasst aus kai-vortrag/kai-overview.html.
       ========================================================= */
.s-kai {
  padding-top: 64px;
  padding-bottom: 100px;
}
.s-kai .kai-caption {
  position: absolute;
  bottom: 96px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 60%;
  text-align: center;
  font-size: 18px;
  line-height: 1.45;
  color: var(--ink);
  background: var(--paper-2);
  padding: 14px 26px;
  border-radius: 999px;
  border: 2.5px solid var(--ink);
  box-shadow: var(--shadow-sticker-sm);
  z-index: 6;
}
.s-kai .kai-caption strong {
  font-weight: 900;
  color: var(--brand-700);
}
.s-kai .kai-stage-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 6;
}
.s-kai .kai-stage-indicator .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: transparent;
  border: 1.5px solid var(--ink);
  cursor: pointer;
  position: relative;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}
/* Enlarged hit area so the small dots are easy to click */
.s-kai .kai-stage-indicator .dot::after,
.s-arch .arch-stage-indicator .dot::after {
  content: "";
  position: absolute;
  inset: -9px;
  border-radius: 50%;
}
.s-kai .kai-stage-indicator .dot.passed {
  background: var(--ink);
}
.s-kai .kai-stage-indicator .dot.active {
  background: var(--brand-500);
  border-color: var(--brand-500);
  transform: scale(1.4);
}

.s-kai .scene {
  position: relative;
  width: 1640px;
  height: 760px;
  margin: 0 auto;
}

/* Kai-Figur, zentral */
.s-kai .kai-figure {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 360px;
  height: 360px;
  display: grid;
  place-items: center;
  z-index: 3;
  transition:
    left 0.6s cubic-bezier(0.34, 1.2, 0.64, 1),
    right 0.6s cubic-bezier(0.34, 1.2, 0.64, 1),
    top 0.6s cubic-bezier(0.34, 1.2, 0.64, 1),
    width 0.6s ease,
    height 0.6s ease,
    transform 0.6s ease;
}
.s-kai .kai-figure video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(8px 8px 0 rgba(0, 0, 0, 0.9));
  transition:
    filter 0.6s ease,
    transform 0.6s ease;
}
.s-kai .kai-figure.awake video {
  filter: drop-shadow(8px 8px 0 var(--brand-500));
  transform: scale(1.04);
}

/* Nodes (Inputs + Fundamente) */
.s-kai .node {
  position: absolute;
  width: 280px;
  padding: 18px 22px;
  background: var(--paper-2);
  border: 2.5px solid var(--ink);
  border-radius: 18px;
  box-shadow: var(--shadow-sticker);
  opacity: 0;
  transform: translateY(10px) scale(0.96);
  transition:
    opacity 0.45s ease,
    transform 0.45s ease;
  z-index: 2;
}
.s-kai .node.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.s-kai .node .badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: 999px;
  margin-bottom: 10px;
  border: 1.5px solid var(--ink);
}
.s-kai .node .title {
  font-size: 19px;
  font-weight: 900;
  margin-bottom: 4px;
  line-height: 1.2;
}
.s-kai .node .desc {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.4;
}
.s-kai .node.input .badge {
  background: var(--brand-500);
  color: var(--paper);
}
.s-kai .node.foundation .badge {
  background: var(--brand-700);
  color: var(--paper);
}

/* Node Positionen */
.s-kai #input-website {
  top: 0;
  left: 50%;
  margin-left: -140px;
  transform: translateY(10px) scale(0.96) rotate(-1.5deg);
}
.s-kai #input-website.visible {
  transform: translateY(0) scale(1) rotate(-1.5deg);
}
.s-kai #input-shop {
  top: 150px;
  left: 0;
  transform: translateY(10px) scale(0.96) rotate(-2deg);
}
.s-kai #input-shop.visible {
  transform: translateY(0) scale(1) rotate(-2deg);
}
.s-kai #input-kb {
  top: 150px;
  right: 0;
  transform: translateY(10px) scale(0.96) rotate(2deg);
}
.s-kai #input-kb.visible {
  transform: translateY(0) scale(1) rotate(2deg);
}
.s-kai #foundation-character {
  bottom: 30px;
  left: 40px;
  transform: translateY(10px) scale(0.96) rotate(-1.5deg);
}
.s-kai #foundation-character.visible {
  transform: translateY(0) scale(1) rotate(-1.5deg);
}
.s-kai #foundation-llm {
  bottom: 30px;
  right: 40px;
  transform: translateY(10px) scale(0.96) rotate(1.5deg);
}
.s-kai #foundation-llm.visible {
  transform: translateY(0) scale(1) rotate(1.5deg);
}

/* Connectors (SVG) */
.s-kai svg.connectors {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
.s-kai .edge {
  fill: none;
  stroke: var(--ink);
  stroke-width: 2.5;
  stroke-linecap: round;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.s-kai .edge.visible {
  opacity: 1;
}
.s-kai .edge.input {
  stroke-dasharray: 6 7;
  animation: kai-dash 16s linear infinite;
}
.s-kai .edge.foundation {
  stroke: var(--brand-500);
  stroke-width: 3;
}
@keyframes kai-dash {
  to {
    stroke-dashoffset: -260;
  }
}

/* Chat-Window für Stage 7+8 */
.s-kai .chat-window {
  position: absolute;
  top: 20px;
  left: 40px;
  width: 620px;
  height: 660px;
  background: var(--paper-2);
  border: 2.5px solid var(--ink);
  border-radius: 22px;
  box-shadow: var(--shadow-sticker);
  padding: 18px 20px 16px;
  transform: translateY(-20px) rotate(-1deg);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.5s ease,
    transform 0.6s cubic-bezier(0.34, 1.2, 0.64, 1);
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
}
.s-kai .chat-window.visible {
  opacity: 1;
  transform: translateY(0) rotate(-1deg);
  pointer-events: auto;
}
.s-kai.chat-mode .node,
.s-kai.chat-mode .connectors {
  opacity: 0 !important;
  pointer-events: none !important;
  transition: opacity 0.4s ease;
}
.s-kai.chat-mode .kai-figure {
  left: auto;
  right: 80px;
  top: 50%;
  width: 260px;
  height: 260px;
  transform: translate(0, -50%);
}
.s-kai.guardrail-mode .kai-figure {
  top: 90px;
  width: 200px;
  height: 200px;
  transform: translate(0, 0);
}
.s-kai.guardrail-mode .guardrail-info {
  top: 320px;
  right: 30px;
}

.s-kai .chat-header {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  color: var(--brand-700);
}
.s-kai .chat-header .icon {
  font-size: 18px;
  opacity: 0.85;
}
.s-kai .chat-msgs {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1 1 0;
  min-height: 0;
  overflow-y: auto;
  padding-right: 6px;
  scroll-behavior: smooth;
}
.s-kai .chat-msgs::-webkit-scrollbar {
  width: 6px;
}
.s-kai .chat-msgs::-webkit-scrollbar-thumb {
  background: var(--line-soft);
  border-radius: 999px;
}
.s-kai .msg {
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  font-size: 16px;
  line-height: 1.45;
}
.s-kai .msg.show {
  opacity: 1;
  transform: translateY(0);
}
.s-kai .msg.kai-msg {
  align-self: flex-start;
  width: 100%;
  box-sizing: border-box;
  background: var(--paper-2);
  border: 1.5px solid var(--line-soft);
  border-radius: 12px;
  padding: 12px 16px;
  color: var(--ink);
}
.s-kai .msg.kai-msg a,
.s-kai .msg.kai-msg .link {
  color: var(--brand-500);
  font-weight: 700;
  text-decoration: none;
}
.s-kai .msg.user {
  align-self: flex-end;
  margin-left: auto;
  max-width: 78%;
  background: #f0f1f3;
  border-radius: 12px;
  padding: 12px 16px;
  color: var(--ink);
}
.s-kai .msg.typing {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--paper-2);
  border: 1.5px solid var(--line-soft);
  border-radius: 12px;
  padding: 14px 18px;
  width: fit-content;
}
.s-kai .msg.typing span {
  width: 7px;
  height: 7px;
  background: var(--brand-500);
  border-radius: 50%;
  animation: kai-typing 1.2s infinite ease-in-out;
}
.s-kai .msg.typing span:nth-child(2) {
  animation-delay: 0.15s;
}
.s-kai .msg.typing span:nth-child(3) {
  animation-delay: 0.3s;
}
@keyframes kai-typing {
  0%,
  60%,
  100% {
    transform: translateY(0);
    opacity: 0.4;
  }
  30% {
    transform: translateY(-5px);
    opacity: 1;
  }
}
.s-kai .msg.kai-paused {
  align-self: stretch;
  background: #f7f2e6;
  border: 1.5px dashed var(--ink-soft);
  border-radius: 12px;
  padding: 12px 16px;
  color: var(--ink-soft);
  font-style: italic;
  text-align: center;
}
.s-kai .chat-input {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f5f5f6;
  border-radius: 12px;
  padding: 12px 14px;
  flex-shrink: 0;
}
.s-kai .chat-input .input-placeholder {
  flex: 1;
  font-size: 14px;
  color: #9aa0a6;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-weight: 700;
}
.s-kai .chat-input .send-btn {
  width: 38px;
  height: 38px;
  background: var(--brand-500);
  color: var(--paper);
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 18px;
  font-weight: 900;
}
.s-kai .caret {
  display: inline-block;
  width: 2px;
  height: 1em;
  background: currentColor;
  margin-left: 2px;
  vertical-align: text-bottom;
  animation: kai-blink 0.9s infinite;
}
@keyframes kai-blink {
  0%,
  49% {
    opacity: 1;
  }
  50%,
  100% {
    opacity: 0;
  }
}

/* Animation-Pipeline-Info (Stage 1) */
.s-kai .animation-info {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 320px;
  background: var(--paper-2);
  border: 2.5px solid var(--ink);
  border-radius: 18px;
  padding: 20px 24px;
  box-shadow: var(--shadow-sticker);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px) rotate(-1.5deg);
  transition:
    opacity 0.5s ease,
    transform 0.6s cubic-bezier(0.34, 1.2, 0.64, 1);
  z-index: 5;
}
.s-kai .animation-info.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) rotate(-1.5deg);
}
.s-kai .animation-info .badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: 999px;
  margin-bottom: 14px;
  background: var(--brand-700);
  color: var(--paper);
}
.s-kai .animation-info .pipeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  counter-reset: kai-step;
}
.s-kai .animation-info .pipeline li {
  counter-increment: kai-step;
  position: relative;
  padding-left: 36px;
  font-size: 14px;
  line-height: 1.45;
  color: var(--ink);
}
.s-kai .animation-info .pipeline li::before {
  content: counter(kai-step);
  position: absolute;
  left: 0;
  top: -2px;
  width: 26px;
  height: 26px;
  background: var(--brand-500);
  color: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 13px;
}
.s-kai .animation-info .pipeline li strong {
  display: block;
  font-weight: 900;
  margin-bottom: 2px;
}
.s-kai .animation-info .pipeline li em {
  font-style: normal;
  font-weight: 700;
  color: var(--brand-500);
}

/* State-Map (Stage 1) */
.s-kai .state-map {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 440px;
  background: var(--paper-2);
  border: 2.5px solid var(--ink);
  border-radius: 18px;
  padding: 20px 22px;
  box-shadow: var(--shadow-sticker);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px) rotate(1.5deg);
  transition:
    opacity 0.5s ease,
    transform 0.6s cubic-bezier(0.34, 1.2, 0.64, 1);
  z-index: 5;
}
.s-kai .state-map.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) rotate(1.5deg);
}
.s-kai .state-map .badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: 999px;
  margin-bottom: 12px;
  background: var(--ink);
  color: var(--paper);
}
.s-kai .state-map .ttl {
  font-size: 15px;
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 14px;
}
.s-kai .state-map .map-svg {
  width: 100%;
  height: 280px;
  display: block;
}
.s-kai .state-map .legend {
  font-size: 12px;
  color: var(--ink-soft);
  line-height: 1.4;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1.5px dashed var(--line-soft);
}
.s-kai .state-map .legend strong {
  color: var(--ink);
  font-weight: 900;
}
.s-kai .state-node-bg {
  fill: var(--paper-2);
  stroke: var(--ink);
  stroke-width: 1.8;
}
.s-kai .state-node-bg.idle {
  fill: var(--brand-500);
}
.s-kai .state-node-bg.base {
  fill: var(--brand-50);
}
.s-kai .state-node-label {
  font-size: 11px;
  font-weight: 900;
  fill: var(--ink);
  text-anchor: middle;
  dominant-baseline: middle;
  font-family: Lato, sans-serif;
}
.s-kai .state-node-label.idle {
  fill: var(--paper);
  font-size: 13px;
}
.s-kai .state-edge {
  stroke: var(--ink);
  stroke-width: 1.4;
  fill: none;
  opacity: 0.5;
}

/* Guardrail-Info (Stage 8) */
.s-kai .guardrail-info {
  position: absolute;
  top: 60px;
  right: 30px;
  width: 280px;
  background: var(--paper-2);
  border: 2.5px solid var(--ink);
  border-radius: 18px;
  padding: 18px 22px;
  box-shadow: var(--shadow-sticker);
  opacity: 0;
  pointer-events: none;
  transform: translateX(20px) rotate(2deg);
  transition:
    opacity 0.5s ease,
    transform 0.6s cubic-bezier(0.34, 1.2, 0.64, 1);
  z-index: 5;
}
.s-kai .guardrail-info.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0) rotate(2deg);
}
.s-kai .guardrail-info .badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: 999px;
  margin-bottom: 12px;
  background: var(--ink);
  color: var(--paper);
}
.s-kai .guardrail-info .pipeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
  counter-reset: gr-step;
}
.s-kai .guardrail-info .pipeline li {
  counter-increment: gr-step;
  position: relative;
  padding-left: 36px;
  font-size: 13px;
  line-height: 1.35;
  color: var(--ink);
}
.s-kai .guardrail-info .pipeline li::before {
  content: counter(gr-step);
  position: absolute;
  left: 0;
  top: -2px;
  width: 26px;
  height: 26px;
  background: var(--brand-500);
  color: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 13px;
}
.s-kai .guardrail-info .pipeline li strong {
  font-weight: 900;
  display: block;
  margin-bottom: 2px;
}
.s-kai .guardrail-info .ft {
  margin-top: 14px;
  padding-top: 10px;
  border-top: 1.5px dashed var(--line-soft);
  font-size: 12px;
  color: var(--ink-soft);
  line-height: 1.4;
}
.s-kai .guardrail-info .ft strong {
  color: var(--ink);
  font-weight: 900;
}

/* =========================================================
       FOLIE 12 — KAI DURCH DIE 4D-BRILLE
       4 Karten nebeneinander · Delegation hervorgehoben
       ========================================================= */
.s-eval h2 {
  margin: 0 0 10px;
  font-size: var(--t-h1);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -2px;
  color: var(--ink);
  max-width: 28ch;
}
.s-eval h2 .accent {
  color: var(--brand-500);
}
.s-eval .lead {
  margin: 0 0 36px;
  font-size: 22px;
  font-weight: 300;
  color: var(--ink-soft);
  max-width: 64ch;
  line-height: 1.45;
}
.s-eval .eval-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  align-items: stretch;
  margin-bottom: 28px;
}
.s-eval .eval-card {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  min-height: 380px;
  background: var(--paper-2);
}
.s-eval .eval-card .marker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.s-eval .eval-card .marker .ic {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--paper-2);
  border: 2px solid var(--ink-soft);
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 900;
}
.s-eval .eval-card h3 {
  margin: 2px 0 4px;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: var(--ink);
  line-height: 1.05;
}
.s-eval .eval-card .where {
  font-size: 12px;
  font-style: italic;
  color: var(--brand-500);
  font-weight: 700;
  margin-bottom: 4px;
}
.s-eval .eval-card ul {
  list-style: none;
  padding: 0;
  margin: 6px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.s-eval .eval-card ul li {
  font-size: 14px;
  line-height: 1.45;
  color: var(--ink);
  padding-left: 14px;
  position: relative;
}
.s-eval .eval-card ul li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--brand-500);
  font-weight: 900;
}
.s-eval .eval-card.focus {
  background: var(--brand-50);
  border-width: 3px;
}
.s-eval .eval-card.focus .marker {
  color: var(--brand-700);
}
.s-eval .eval-card.focus .marker .ic {
  background: var(--brand-500);
  color: var(--paper);
  border-color: var(--brand-500);
}
.s-eval .eval-card.focus::after {
  content: "Hier vertiefen wir gleich";
  position: absolute;
  top: -18px;
  right: 18px;
  background: var(--brand-500);
  color: var(--paper);
  border: 2.5px solid var(--ink);
  box-shadow: var(--shadow-sticker-sm);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  transform: rotate(-3deg);
  white-space: nowrap;
}
.s-eval .eval-card .hint {
  margin-top: 8px;
  padding: 12px 14px;
  background: var(--brand-700);
  color: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 700;
}
.s-eval .eval-card.focus .hint {
  background: var(--brand-500);
}
.s-eval .footer-insight {
  max-width: 80ch;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.45;
  padding: 16px 22px;
  background: var(--paper-2);
  border-left: 6px solid var(--brand-500);
  border-radius: 4px 14px 14px 4px;
  box-shadow: var(--shadow-sticker-sm);
}
.s-eval .footer-insight em {
  font-style: normal;
  color: var(--brand-700);
  font-weight: 900;
}

.s-eval .eval-card:nth-child(1) {
  transform: rotate(-0.5deg);
}
.s-eval .eval-card:nth-child(2) {
  transform: rotate(0.3deg);
}
.s-eval .eval-card:nth-child(3) {
  transform: rotate(-0.3deg);
}
.s-eval .eval-card:nth-child(4) {
  transform: rotate(0.5deg);
}

/* =========================================================
       FOLIE 13 — MODELS-ARCHITEKTUR-ANIMATION (Kai-Stil)
       Narrative Sequenz Botika → Modelia · 7 interne Stages
       ========================================================= */
.s-arch {
  padding-top: 64px;
  padding-bottom: 100px;
}
.s-arch .arch-head-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 18px;
}
.s-arch h2 {
  margin: 0 0 6px;
  font-size: 38px;
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.1;
}
.s-arch h2 .accent {
  color: var(--brand-500);
}
.s-arch .arch-sub {
  margin: 0 0 10px;
  font-size: 16px;
  color: var(--ink-soft);
  font-weight: 300;
  line-height: 1.45;
  max-width: 80ch;
}
.s-arch .arch-caption {
  position: absolute;
  bottom: 96px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 60%;
  text-align: center;
  font-size: 17px;
  line-height: 1.45;
  color: var(--ink);
  background: var(--paper-2);
  padding: 12px 24px;
  border-radius: 999px;
  border: 2.5px solid var(--ink);
  box-shadow: var(--shadow-sticker-sm);
  z-index: 6;
}
.s-arch .arch-caption strong {
  font-weight: 900;
  color: var(--brand-700);
}
.s-arch .arch-stage-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 6;
}
.s-arch .arch-stage-indicator .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: transparent;
  border: 1.5px solid var(--ink);
  cursor: pointer;
  position: relative;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}
.s-arch .arch-stage-indicator .dot.passed {
  background: var(--ink);
}
.s-arch .arch-stage-indicator .dot.active {
  background: var(--brand-500);
  border-color: var(--brand-500);
  transform: scale(1.4);
}

.s-arch .scene {
  position: relative;
  width: 1640px;
  height: 800px;
  margin: 0 auto;
}

/* Result-Box statt Kai-Figur */
.s-arch .result-box {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 280px;
  height: 280px;
  display: grid;
  place-items: center;
  z-index: 3;
  background: var(--paper-2);
  border: 3px solid var(--ink);
  border-radius: 20px;
  box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.9);
  overflow: hidden;
  transition:
    box-shadow 0.6s ease,
    transform 0.6s ease;
}
.s-arch .result-box.done {
  box-shadow: 10px 10px 0 var(--brand-500);
  transform: translate(-50%, -50%) scale(1.05);
}
.s-arch .result-box .placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: repeating-linear-gradient(135deg, #fff 0 14px, #f3f1ec 14px 28px);
  transition: opacity 0.6s ease;
}
.s-arch .result-box.done .placeholder {
  opacity: 0;
}
.s-arch .result-box .placeholder .ph-icon {
  width: 64px;
  height: 64px;
  border: 3px dashed var(--ink);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 28px;
  font-weight: 900;
  background: var(--paper-2);
}
.s-arch .result-box .placeholder .ph-label {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  background: var(--paper-2);
  border: 2px solid var(--ink);
  padding: 6px 14px;
  border-radius: 999px;
  box-shadow: var(--shadow-sticker-sm);
}
.s-arch .result-box .result-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.s-arch .result-box.done .result-img {
  opacity: 1;
}
.s-arch .result-box .result-tag {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  background: var(--ink);
  color: var(--paper);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: var(--shadow-sticker-sm);
  z-index: 4;
  opacity: 0;
  transition: opacity 0.45s ease 0.3s;
}
.s-arch .result-box.done .result-tag {
  opacity: 1;
}
.s-arch .result-box .spinner {
  position: absolute;
  inset: 0;
  background: rgba(253, 251, 245, 0.92);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  z-index: 5;
}
.s-arch .result-box.generating .spinner {
  display: flex;
}
.s-arch .result-box .spinner .ring {
  width: 60px;
  height: 60px;
  border: 4px solid var(--ink);
  border-top-color: var(--brand-500);
  border-radius: 50%;
  animation: arch-spin 0.9s linear infinite;
}
.s-arch .result-box .spinner .label {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--paper);
  padding: 6px 14px;
  border-radius: 999px;
}
@keyframes arch-spin {
  to {
    transform: rotate(360deg);
  }
}

/* Nodes (Inputs + Fundamente) — wie Kai */
.s-arch .node {
  position: absolute;
  width: 280px;
  padding: 16px 20px;
  background: var(--paper-2);
  border: 2.5px solid var(--ink);
  border-radius: 18px;
  box-shadow: var(--shadow-sticker);
  opacity: 0;
  transform: translateY(10px) scale(0.96);
  transition:
    opacity 0.45s ease,
    transform 0.45s ease;
  z-index: 2;
}
.s-arch .node.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.s-arch .node.dim {
  opacity: 0.4;
}
.s-arch .node .preview {
  width: 100%;
  height: 100px;
  border-radius: 10px;
  border: 2px solid var(--ink);
  overflow: hidden;
  margin-bottom: 8px;
  background: #efece5;
  position: relative;
}
.s-arch .node .preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.s-arch .node .preview .corner-mark {
  position: absolute;
  top: 6px;
  left: 6px;
  background: var(--ink);
  color: var(--paper);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 7px;
  border-radius: 999px;
}
.s-arch .node .preview.scene-prev {
  display: grid;
  place-items: center;
  background: #fff;
  text-align: center;
}
.s-arch .node .preview.scene-prev .scene-label {
  font-size: 11px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  font-weight: 900;
  color: var(--ink-soft);
}
.s-arch .node .badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 6px;
  border: 1.5px solid var(--ink);
}
.s-arch .node .title {
  font-size: 16px;
  font-weight: 900;
  margin-bottom: 2px;
  line-height: 1.2;
}
.s-arch .node .desc {
  font-size: 12px;
  color: var(--ink-soft);
  line-height: 1.4;
}
.s-arch .node.input .badge {
  background: var(--brand-500);
  color: var(--paper);
}
.s-arch .node.foundation .badge {
  background: var(--brand-700);
  color: var(--paper);
}

/* Node Positionen — Original-Layout aus kollegialer Modelia-HTML, 1:1 übernommen */
.s-arch .node {
  width: 240px;
}
.s-arch .node .preview {
  height: 90px;
}
.s-arch #arch-input-flatlay {
  top: 0;
  left: 50%;
  margin-left: -120px;
  transform: translateY(10px) scale(0.96) rotate(-1.5deg);
}
.s-arch #arch-input-flatlay.visible {
  transform: translateY(0) scale(1) rotate(-1.5deg);
}
.s-arch #arch-input-model {
  top: 130px;
  left: 40px;
  transform: translateY(10px) scale(0.96) rotate(-2deg);
}
.s-arch #arch-input-model.visible {
  transform: translateY(0) scale(1) rotate(-2deg);
}
.s-arch #arch-input-scene {
  top: 130px;
  right: 40px;
  transform: translateY(10px) scale(0.96) rotate(2deg);
}
.s-arch #arch-input-scene.visible {
  transform: translateY(0) scale(1) rotate(2deg);
}
.s-arch #arch-foundation-ai {
  bottom: 30px;
  left: 40px;
  transform: translateY(10px) scale(0.96) rotate(-1.5deg);
  width: 240px;
}
.s-arch #arch-foundation-ai.visible {
  transform: translateY(0) scale(1) rotate(-1.5deg);
}
.s-arch #arch-foundation-brand {
  bottom: 30px;
  right: 40px;
  transform: translateY(10px) scale(0.96) rotate(1.5deg);
  width: 240px;
}
.s-arch #arch-foundation-brand.visible {
  transform: translateY(0) scale(1) rotate(1.5deg);
}

/* Flat-Lay-Bild: Produktfoto, vollständig sichtbar (contain) */
.s-arch #arch-input-flatlay .preview img {
  object-fit: contain;
  background: #fff;
}

/* =========================================================
       FOLIE 17 — DANKE / KONTAKT / FRAGEN mit QR
       ========================================================= */
.s-thanks {
  justify-content: space-between;
}
.s-thanks .thanks-head {
  margin-bottom: 40px;
}
.s-thanks h2 {
  margin: 0;
  font-size: var(--t-hero);
  font-weight: 900;
  letter-spacing: -3px;
  line-height: 0.98;
  color: var(--ink);
}
.s-thanks h2 .accent {
  display: inline-block;
  color: var(--paper);
  background: var(--brand-500);
  padding: 0 18px 8px;
  border-radius: 14px;
  border: 3px solid var(--ink);
  box-shadow: var(--shadow-sticker);
  transform: rotate(-1.5deg);
  margin: 6px 6px 0 0;
}
.s-thanks .sub {
  margin: 20px 0 0;
  font-size: 24px;
  color: var(--ink-soft);
  font-weight: 300;
  line-height: 1.4;
  max-width: 40ch;
}
.s-thanks .thanks-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  flex: 1;
  padding-bottom: 40px;
}
.s-thanks .qr-card {
  background: var(--paper-2);
  border: 3px solid var(--ink);
  border-radius: 24px;
  box-shadow: var(--shadow-sticker-lg);
  padding: 18px;
  transform: rotate(-1.5deg);
  width: max-content;
  max-width: 480px;
  margin: 0 auto;
}
.s-thanks .qr-card img {
  display: block;
  width: 100%;
  max-width: 440px;
  height: auto;
  border-radius: 14px;
}
.s-thanks .qr-card .qr-hint {
  margin-top: 12px;
  text-align: center;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--brand-500);
}
.s-thanks .contact-block {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.s-thanks .contact-row {
  padding: 18px 24px;
  background: var(--paper-2);
  border: 2.5px solid var(--ink);
  border-radius: 16px;
  box-shadow: var(--shadow-sticker-sm);
}
.s-thanks .contact-row:nth-child(1) {
  transform: rotate(0.7deg);
}
.s-thanks .contact-row:nth-child(2) {
  transform: rotate(-0.5deg);
}
.s-thanks .contact-row:nth-child(3) {
  transform: rotate(0.4deg);
}
.s-thanks .contact-row .label {
  display: block;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--brand-500);
  margin-bottom: 6px;
}
.s-thanks .contact-row .value {
  font-size: 22px;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.3px;
}
.s-thanks .contact-row .value a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 2px solid var(--brand-500);
}
.s-thanks .contact-row .value a:hover {
  color: var(--brand-700);
}
.s-thanks .contact-row .value small {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: var(--ink-soft);
  margin-top: 4px;
  letter-spacing: 0;
}
.s-thanks .thanks-body {
  padding-bottom: 16px;
}
.s-thanks .ai-credits {
  padding: 14px 22px;
  background: var(--paper-2);
  border: 2px solid var(--ink);
  border-radius: 14px;
  box-shadow: var(--shadow-sticker-sm);
  transform: rotate(-0.4deg);
  margin-right: 220px; /* Platz für Kai-Mascot rechts unten */
  margin-bottom: 8px;
}
.s-thanks .ai-credits .credits-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--brand-500);
  margin-bottom: 8px;
}
.s-thanks .credit-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  font-size: 13px;
  line-height: 1.4;
  color: var(--ink);
}
.s-thanks .credit-item {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
}
.s-thanks .credit-item strong {
  font-weight: 900;
  color: var(--ink);
}
.s-thanks .credit-item em {
  font-style: italic;
  color: var(--brand-700);
  font-weight: 400;
}
.s-thanks .credit-item::after {
  content: "·";
  margin-left: 14px;
  color: var(--brand-500);
  font-weight: 900;
}
.s-thanks .credit-item:last-child::after {
  display: none;
}

/* Connectors */
.s-arch svg.connectors {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
.s-arch .edge {
  fill: none;
  stroke: var(--ink);
  stroke-width: 2.5;
  stroke-linecap: round;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.s-arch .edge.visible {
  opacity: 1;
}
.s-arch .edge.input {
  stroke-dasharray: 6 7;
  animation: arch-dash 16s linear infinite;
}
.s-arch .edge.foundation {
  stroke: var(--brand-500);
  stroke-width: 3;
}
@keyframes arch-dash {
  to {
    stroke-dashoffset: -260;
  }
}

/* =========================================================
       NEUE FOLIEN-TYPEN (Enhance the Experience · v02-Storyline)
       s-photo · s-chat · s-statement · s-compare · s-split · s-roadmap
       Primitives (.sticker/.badge/.pill/.bullet-list/.kai-*) bleiben global.
       ========================================================= */

/* kleiner Maskottchen-Slot für dichte Folien */
.kai-mascot.small {
  width: 120px;
  height: 120px;
  bottom: 48px;
}

/* Inline-Code (llms.txt etc.) */
.deck code {
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 0.86em;
  background: var(--brand-50);
  border: 1.5px solid var(--brand-500);
  border-radius: 7px;
  padding: 1px 7px;
}

/* gemeinsame Headlines der neuen Sections */
.s-photo h2,
.s-chat h2,
.s-statement .statement-head h2,
.s-statement .statement-center h2,
.s-compare h2,
.s-split h2,
.s-roadmap h2 {
  margin: 0 0 14px;
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -1.6px;
  color: var(--ink);
}
.s-photo h2,
.s-compare h2,
.s-split h2 {
  font-size: 56px;
  max-width: 26ch;
}
.s-roadmap h2 {
  font-size: 52px;
  max-width: 30ch;
}
.s-photo h2 .accent,
.s-chat h2 .accent,
.s-statement h2 .accent,
.s-compare h2 .accent,
.s-split h2 .accent,
.s-roadmap h2 .accent {
  color: var(--brand-500);
}
.s-photo .lead,
.s-compare .lead,
.s-split .lead,
.s-roadmap .lead,
.s-statement .lead {
  margin: 0 0 26px;
  font-size: 22px;
  font-weight: 300;
  color: var(--ink-soft);
  max-width: 80ch;
  line-height: 1.45;
}
.s-photo .lead strong,
.s-statement .lead strong,
.s-roadmap .lead strong,
.s-split .lead strong,
.s-compare .lead strong {
  font-weight: 900;
  color: var(--brand-700);
}

/* ---------- FOTO-HERO (Folie 2 · 13) ---------- */
.s-photo .photo-layout {
  flex: 1;
  min-height: 0;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.s-photo .photo-text {
  display: flex;
  flex-direction: column;
}
.s-photo .scd-sticker {
  align-self: flex-start;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--paper-2);
  border: 2px solid var(--ink);
  box-shadow: var(--shadow-sticker-sm);
  padding: 8px 16px;
  border-radius: 999px;
  transform: rotate(-1.5deg);
}
.photo-hero {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2;
  border: 6px solid var(--ink);
  border-radius: 22px;
  box-shadow: 13px 13px 0 var(--ink);
  overflow: hidden;
  background: var(--paper-2);
}
.photo-hero img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.04);
}
.photo-hero .scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(8, 14, 12, 0.42) 0%,
    rgba(8, 14, 12, 0.06) 26%,
    rgba(8, 14, 12, 0) 46%
  );
}
.photo-hero .photo-pill {
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.6px;
  color: var(--paper);
  background: var(--brand-700);
  border: 2px solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
  padding: 8px 14px;
  border-radius: 999px;
}
.photo-hero .photo-pill .d {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-100);
}

/* Foto-Platzhalter im Sticker-Look (statt sichtbarem „Platzhalter"-Text) */
.is-placeholder {
  background:
    repeating-linear-gradient(
      45deg,
      var(--brand-50),
      var(--brand-50) 16px,
      var(--brand-100) 16px,
      var(--brand-100) 32px
    );
  border-style: dashed;
  display: grid;
  place-items: center;
}
.photo-hero.is-placeholder {
  border: 4px dashed var(--ink);
}
.slot-hint {
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--brand-700);
  background: var(--paper-2);
  border: 2px solid var(--ink);
  border-radius: 10px;
  padding: 10px 16px;
  box-shadow: var(--shadow-sticker-sm);
}

/* gemeinsame Pill-Reihen */
.trait-pills,
.proof-row,
.criteria-row,
.connector-note {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.trait-pills {
  margin-top: 26px;
}
.proof-pill,
.crit-pill {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 999px;
  border: 2.5px solid var(--ink);
  background: var(--paper-2);
  font-size: 19px;
  font-weight: 900;
  color: var(--ink);
  box-shadow: var(--shadow-sticker-sm);
}
.crit-pill {
  background: var(--brand-50);
}

/* ---------- STATEMENT (Folie 5 · 6 · 11 · 16 · 19) ---------- */
.s-statement {
  justify-content: center;
}
.s-statement.big {
  text-align: center;
  align-items: center;
}
.s-statement .statement-head h2,
.s-statement .statement-center h2 {
  font-size: 64px;
  max-width: 26ch;
}
.s-statement.big .statement-center h2 {
  font-size: 76px;
}
.s-statement .statement-center {
  max-width: 1100px;
}
.s-statement .statement-foot {
  margin: 30px 0 0;
  font-size: 22px;
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 60ch;
}
.s-statement .statement-foot em {
  font-style: normal;
  font-weight: 900;
  color: var(--brand-700);
}
.s-statement .proof-row {
  margin-top: 30px;
}

/* ---------- CHAT (Folie 4 · 10 · 18 · 22) ---------- */
.s-chat {
  justify-content: center;
}
.s-chat .chat-title {
  font-size: 46px;
  font-weight: 900;
  letter-spacing: -1.2px;
  line-height: 1.08;
  margin: 0 0 26px;
  max-width: 30ch;
  color: var(--ink);
}
.s-chat .chat-title .accent {
  color: var(--brand-500);
}
.chat-stage {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
}
.chat-stage.wide {
  max-width: 1400px;
}
.chat-stage.inline {
  gap: 12px;
  margin: 0;
}
.cbubble {
  border: 2.5px solid var(--ink);
  border-radius: 22px;
  padding: 20px 26px;
  font-size: 25px;
  line-height: 1.32;
  font-weight: 400;
  box-shadow: var(--shadow-sticker-sm);
  max-width: 80%;
}
.cbubble strong {
  font-weight: 900;
  color: var(--brand-700);
}
.cbubble.kai {
  align-self: flex-start;
  background: var(--paper-2);
  border-bottom-left-radius: 6px;
}
.cbubble.user {
  align-self: flex-end;
  background: var(--brand-50);
  border-bottom-right-radius: 6px;
}
.cbubble.kai.guard {
  background: var(--brand-700);
  color: var(--paper);
}
.cbubble.kai.guard strong {
  color: var(--paper);
}
.s-chat .chat-foot {
  margin: 28px auto 0;
  max-width: 70ch;
  text-align: center;
  font-size: 19px;
  color: var(--ink-soft);
}

/* Chat mit Hero-Seite (Folie 4) */
.s-chat .chat-layout {
  flex: 1;
  min-height: 0;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 48px;
  align-items: center;
}
.s-chat .hero-side {
  display: flex;
  flex-direction: column;
}
.s-chat .kai-figure-big {
  width: 220px;
  height: 220px;
  margin-bottom: 18px;
}
.s-chat .kai-figure-big video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(8px 8px 0 rgba(0, 0, 0, 0.85));
}
.s-chat .hero-side h2 {
  font-size: 44px;
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -1.2px;
  margin: 0;
  color: var(--ink);
}
.s-chat .hero-side h2 .accent {
  color: var(--brand-500);
}
.s-chat .song-hint {
  margin-top: 22px;
  font-size: 16px;
  font-weight: 700;
  color: var(--brand-700);
}
.s-chat.has-hero .chat-stage {
  max-width: none;
  margin: 0;
}
.s-chat.has-hero .cbubble {
  font-size: 20px;
  padding: 15px 20px;
  max-width: 92%;
}

/* ---------- BILDVERGLEICH (Folie 14) ---------- */
.s-compare .compare-row {
  flex: 1;
  min-height: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: stretch;
  margin-bottom: 6px;
}
.s-compare .cmp {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.s-compare .cmp-img {
  flex: 1;
  min-height: 0;
  max-height: 560px; /* Bild deckeln, damit figcaption + Kriterien im 1080er-Deck sichtbar bleiben */
  border: 5px solid var(--ink);
  border-radius: 18px;
  box-shadow: var(--shadow-sticker);
  overflow: hidden;
  background: #fff;
  display: grid;
  place-items: center;
}
.s-compare .cmp-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.s-compare .cmp.is-placeholder .cmp-img {
  background:
    repeating-linear-gradient(
      45deg,
      var(--brand-50),
      var(--brand-50) 16px,
      var(--brand-100) 16px,
      var(--brand-100) 32px
    );
  border-style: dashed;
}
.s-compare .cmp figcaption {
  text-align: center;
  font-size: 18px;
  font-weight: 900;
  color: var(--ink);
}
.s-compare .criteria-row {
  justify-content: center;
  margin-top: 22px;
}

/* ---------- SPLIT-SCREEN (Folie 17) ---------- */
.s-split .split-row {
  flex: 1;
  min-height: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}
.s-split .split-half {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 30px 34px;
}
.s-split .split-half .bullet-list li {
  font-size: 21px;
}
.s-split .split-foot {
  margin: 26px 0 0;
  font-size: 21px;
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 92ch;
}
.s-split .split-foot strong {
  font-weight: 900;
  color: var(--brand-700);
}

/* ---------- WISSENSRÄUME-Zusatz (Folie 9) ---------- */
.s-3a .connector-note {
  margin-top: 22px;
  font-size: 17px;
  color: var(--ink-soft);
}
.s-3a .connector-note em {
  font-style: normal;
}

/* ---------- ROADMAP / WORKFLOW (Folie 15 · 21) ---------- */
.s-roadmap .roadmap {
  display: flex;
  align-items: stretch;
  gap: 12px;
  flex: 1;
  min-height: 0;
}
.s-roadmap .r-step {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 22px;
}
.s-roadmap .r-step.focus {
  background: var(--brand-50);
  border-color: var(--brand-500);
}
.s-roadmap .r-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2.5px solid var(--ink);
  background: var(--brand-500);
  color: var(--paper);
  font-size: 24px;
  font-weight: 900;
}
.s-roadmap .r-step h3 {
  margin: 0;
  font-size: 25px;
  font-weight: 900;
  letter-spacing: -0.6px;
  line-height: 1.12;
  color: var(--ink);
}
.s-roadmap .r-step p {
  margin: 0;
  font-size: 15px;
  line-height: 1.45;
  color: var(--ink-soft);
}
.s-roadmap .r-arrow {
  display: flex;
  align-items: center;
  font-size: 38px;
  font-weight: 900;
  color: var(--brand-500);
  flex: 0 0 auto;
}
.s-roadmap .footer-insight {
  margin: 26px 0 0;
  font-size: 20px;
  color: var(--ink-soft);
  max-width: 80ch;
}
.s-roadmap .footer-insight em {
  font-style: normal;
  font-weight: 900;
  color: var(--brand-700);
}

/* ---------- SCHLUSS-Zusätze (Folie 22) ---------- */
.s-thanks .close-layers {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 8px 0 28px;
}
.s-thanks .close-layers .layer {
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
}
.s-thanks .close-dialog {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 22px;
}
.s-thanks .close-photo {
  flex: 0 0 auto;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 4px solid var(--ink);
  box-shadow: 0 0 0 7px var(--paper-2), 0 0 0 10px var(--ink), 9px 9px 0 rgba(0, 0, 0, 0.85);
  overflow: hidden;
  background: var(--brand-500);
}
.s-thanks .close-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 78% 30%;
}
.s-thanks .audience-q {
  font-size: 26px;
  font-weight: 900;
  color: var(--brand-700);
  max-width: 60ch;
}


/* ---------- WISSENSRÄUME-Szene (Folie 9 · reuse s-kai, statisch) ---------- */
.s-kai h2 {
  margin: 0 0 16px;
  font-size: 48px;
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -1.4px;
  color: var(--ink);
  max-width: 32ch;
}
.s-kai h2 .accent {
  color: var(--brand-500);
}

/* ---------- A2 · Claim-Trio (Intro) ---------- */
.s-photo .claim-trio {
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--brand-500);
  margin-bottom: 14px;
}
.s-photo .claim-trio strong {
  color: var(--brand-700);
}

/* ---------- C1 · Modelia-Szene (zentrales Model-Foto, Kai-Layout) ---------- */
.s-modelscene .kai-figure.model-figure {
  width: 300px;
  height: 420px;
  display: block;
}
.s-modelscene .model-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border: 5px solid var(--ink);
  border-radius: 18px;
  box-shadow: var(--shadow-sticker);
}
.s-modelscene .model-figure .model-tag {
  position: absolute;
  left: 50%;
  bottom: -14px;
  transform: translateX(-50%);
  background: var(--brand-700);
  color: var(--paper);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.6px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 2px solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
  white-space: nowrap;
}
.s-modelscene #m-flatlay {
  top: 0;
  left: 50%;
  margin-left: -140px;
  transform: rotate(-1.5deg);
}
.s-modelscene #m-model {
  top: 150px;
  left: 0;
  transform: rotate(-2deg);
}
.s-modelscene #m-scene {
  top: 150px;
  right: 0;
  transform: rotate(2deg);
}
.s-modelscene #m-brand {
  bottom: 30px;
  left: 40px;
  transform: rotate(-1.5deg);
}
.s-modelscene #m-aimodel {
  bottom: 30px;
  right: 40px;
  transform: rotate(1.5deg);
}

/* ---------- C4 · 2-Bild-Vergleich ---------- */
.s-compare .compare-row.two {
  grid-template-columns: 1fr 1fr;
  max-width: 1400px;
  margin: 0 auto;
}
.s-compare .cmp-badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 900;
  padding: 3px 11px;
  border-radius: 999px;
  margin-right: 8px;
  border: 2px solid var(--ink);
  vertical-align: middle;
}
.s-compare .cmp-badge.ok {
  background: var(--brand-500);
  color: var(--paper);
}
.s-compare .cmp-badge.warn {
  background: var(--ink);
  color: var(--paper);
}

/* ---------- D2 · Kontakt-Karten (LinkedIn) ---------- */
.s-thanks .contact-cards {
  display: flex;
  gap: 26px;
  align-items: center;
  flex-wrap: wrap;
  margin: 6px 0 22px;
}
.s-thanks .li-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--paper-2);
  border: 2.5px solid var(--ink);
  border-radius: 22px;
  box-shadow: var(--shadow-sticker);
  padding: 14px 22px 14px 14px;
}
.s-thanks .li-card.tilt-l { transform: rotate(-1.2deg); }
.s-thanks .li-card.tilt-r { transform: rotate(1.2deg); }
.s-thanks .li-photo {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  overflow: hidden;
  flex: 0 0 auto;
  border: 3px solid var(--ink);
  box-shadow: 0 0 0 4px var(--paper-2), 0 0 0 6px var(--ink);
}
.s-thanks .li-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.s-thanks .li-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.s-thanks .li-meta .name {
  font-size: 23px;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.4px;
}
.s-thanks .li-tag {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--brand-500);
}

/* ---------- Chat-Stage · Safeguard gegen Überlauf ---------- */
.s-chat .chat-stage {
  max-height: 740px;
  overflow-y: auto;
}

/* =========================================================
       CHATBOX · wiederverwendbare, getippte Chat-Box
       (Port der Original-Kai-Chat-Optik aus human-led-ai-2026;
        app.js injiziert Inhalt datengetrieben pro [data-chat]-Folie)
       ========================================================= */
.chatbox {
  width: 860px;
  height: 660px;
  margin: 8px auto 0;
  background: var(--paper-2);
  border: 2.5px solid var(--ink);
  border-radius: 22px;
  box-shadow: var(--shadow-sticker);
  padding: 18px 20px 16px;
  transform: rotate(-0.6deg);
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
}
.chatbox .chat-header {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  color: var(--brand-700);
}
.chatbox .chat-header .icon {
  font-size: 18px;
  opacity: 0.85;
}
.chatbox .chat-msgs {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1 1 0;
  min-height: 0;
  overflow-y: auto;
  padding-right: 6px;
  scroll-behavior: smooth;
}
.chatbox .chat-msgs::-webkit-scrollbar { width: 6px; }
.chatbox .chat-msgs::-webkit-scrollbar-thumb {
  background: var(--line-soft);
  border-radius: 999px;
}
.chatbox .msg {
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  font-size: 18px;
  line-height: 1.45;
}
.chatbox .msg.show { opacity: 1; transform: translateY(0); }
.chatbox .msg.kai-msg {
  align-self: flex-start;
  width: 100%;
  box-sizing: border-box;
  background: var(--paper-2);
  border: 1.5px solid var(--line-soft);
  border-radius: 12px;
  padding: 13px 17px;
  color: var(--ink);
}
.chatbox .msg.kai-msg.kai-guard {
  background: var(--brand-700);
  color: var(--paper);
  border-color: var(--ink);
}
.chatbox .msg.kai-msg strong { color: var(--brand-700); font-weight: 900; }
.chatbox .msg.kai-msg.kai-guard strong { color: var(--paper); }
.chatbox .msg.kai-msg a, .chatbox .msg.kai-msg .link {
  color: var(--brand-500); font-weight: 700; text-decoration: none;
}
.chatbox .msg.user {
  align-self: flex-end;
  margin-left: auto;
  max-width: 78%;
  background: #f0f1f3;
  border-radius: 12px;
  padding: 13px 17px;
  color: var(--ink);
}
.chatbox .msg.typing {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--paper-2);
  border: 1.5px solid var(--line-soft);
  border-radius: 12px;
  padding: 14px 18px;
  width: fit-content;
  opacity: 1;
}
.chatbox .msg.typing span {
  width: 7px; height: 7px;
  background: var(--brand-500);
  border-radius: 50%;
  animation: kai-typing 1.2s infinite ease-in-out;
}
.chatbox .msg.typing span:nth-child(2) { animation-delay: 0.15s; }
.chatbox .msg.typing span:nth-child(3) { animation-delay: 0.3s; }
.chatbox .chat-input {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f5f5f6;
  border-radius: 12px;
  padding: 12px 14px;
  flex-shrink: 0;
}
.chatbox .chat-input .input-placeholder {
  flex: 1;
  font-size: 14px;
  color: #9aa0a6;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-weight: 700;
}
.chatbox .chat-input .send-btn {
  width: 38px; height: 38px;
  background: var(--brand-500);
  color: var(--paper);
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 18px;
  font-weight: 900;
}
.chatbox .caret {
  display: inline-block;
  width: 2px;
  height: 1em;
  background: currentColor;
  margin-left: 2px;
  vertical-align: text-bottom;
  animation: kai-blink 0.9s infinite;
}

/* =========================================================
       STORY MODE — mobile (≤600px)
       One slide per viewport, tap/swipe navigation (story.js). The existing
       .slide / .slide.active opacity handling stays; we only drop the scale,
       size slides to the viewport and make them inner-scrollable.
       ?stages=anim plays the native stage choreography; default static = overview.
       ========================================================= */
@media (max-width: 600px) {
  html,
  body {
    overflow: hidden;
    height: 100dvh;
  }
  .stage {
    position: fixed;
    inset: 0;
    overflow: hidden;
  }
  .deck {
    position: fixed;
    inset: 0;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100dvh;
    transform: none !important; /* override the inline scale() from story.js */
  }
  .slide {
    position: absolute;
    inset: 0;
    width: 100vw;
    height: 100dvh;
    display: block; /* not flex — flex children would shrink instead of scroll */
    padding: 28px 18px 32px; /* ≥24px breathing room at the bottom */
    overflow-y: auto;
    /* visibility keeps the existing .slide (opacity:0) / .slide.active (opacity:1) rules */
  }

  /* Mobile type scale — fixed desktop px become fluid */
  :root {
    --t-hero: clamp(34px, 11vw, 54px);
    --t-h1: clamp(27px, 8vw, 40px);
    --t-h2: clamp(23px, 6.5vw, 33px);
    --t-h3: clamp(19px, 5vw, 25px);
    --t-h4: clamp(17px, 4.5vw, 22px);
    --t-body: clamp(15px, 4vw, 17px);
    --t-small: 14px;
    --t-eyebrow: 11px;
    --pad-x: 18px;
    --pad-y: 24px;
  }

  /* Multi-column layouts collapse to a single column */
  .s-about .cols,
  .s-hook .duo,
  .s-3a .spectrum,
  .s-fluency .four-grid,
  .s-d .sub-grid,
  .s-eval .eval-grid,
  .s-quint .take-grid,
  .s-split .split-row,
  .s-thanks .thanks-body {
    grid-template-columns: 1fr !important;
  }

  /* Folie 6 (s-eval): Kästchen nur so hoch wie ihr Text — feste Mindesthöhe raus */
  .s-eval .eval-card {
    min-height: 0;
  }

  /* Nav reduced to just the slide-overview menu, pinned top-right next to the header logo */
  .nav {
    position: absolute; /* nav lives inside the active slide (placeNav) → scrolls with the content, sits at the top */
    top: 28px;
    right: 18px;
    bottom: auto;
    left: auto; /* same raster as slide padding: top = logo top, right = box edge */
    transform: none;
    padding: 4px;
    z-index: 300;
  }
  .nav #prevBtn,
  .nav #nextBtn,
  .nav .count,
  .nav .sound-toggle,
  .nav .hide-hint {
    display: none;
  }
  /* Burger borderless on mobile (sits alone in the pill) */
  .nav #menuBtn {
    border: none;
    background: transparent;
  }
  .nav .slide-menu {
    position: fixed;
    top: 72px;
    bottom: auto;
    left: 18px;
    right: 18px;
    width: auto;
    max-height: calc(100vh - 86px);
  }
  .kai-mascot {
    display: none;
  }

  /* Header: section-tag entfällt mobil, nur das Logo bleibt */
  .slide-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .slide-head .section-tag {
    display: none;
  }

  /* --- Multi-stage scenes (11 Kai / 13 Models): stacked column --- */
  .s-kai .scene,
  .s-arch .scene {
    position: static;
    height: auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
    margin: 8px 0 0;
  }
  .s-kai .connectors,
  .s-arch .connectors {
    display: none;
  }
  .s-kai .node,
  .s-arch .node {
    position: static !important;
    inset: auto;
    width: 100% !important;
    max-width: none;
    margin: 0 !important;
    transform: none !important;
  }
  .s-kai .kai-figure {
    display: none;
  }
  .s-arch .result-box {
    display: none;
  }
  .s-arch .arch-head-row {
    margin-bottom: 10px;
  }

  /* Static overview: every node visible at once, stage panels + indicators hidden */
  html[data-stages="static"] .s-kai .node,
  html[data-stages="static"] .s-arch .node {
    opacity: 1 !important;
  }
  html[data-stages="static"] .s-kai .chat-window,
  html[data-stages="static"] .s-kai .animation-info,
  html[data-stages="static"] .s-kai .state-map,
  html[data-stages="static"] .s-kai .guardrail-info,
  html[data-stages="static"] .s-kai .kai-stage-indicator,
  html[data-stages="static"] .s-arch .arch-stage-indicator {
    display: none;
  }

  /* Anim mode: stage panels flow inline instead of floating in absolute positions */
  html[data-stages="anim"] .s-kai .chat-window,
  html[data-stages="anim"] .s-kai .animation-info,
  html[data-stages="anim"] .s-kai .state-map,
  html[data-stages="anim"] .s-kai .guardrail-info {
    position: static;
    inset: auto;
    width: 100%;
    max-width: none;
    margin: 8px 0 0;
    transform: none;
  }

  /* ---------- Per-slide tweaks ---------- */

  /* Folie 1 (Titel): große Kai-Animation entfernt, Inhalt auf den Viewport */
  .s-title {
    justify-content: flex-start;
  }
  .s-title .kai-hero {
    display: none;
  }
  .s-title .swipe-hint {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
    padding: 12px 16px;
    background: var(--brand-50);
    border: 2.5px solid var(--ink);
    border-radius: 14px;
    box-shadow: var(--shadow-sticker-sm);
    font-size: 14px;
    font-weight: 700;
    color: var(--ink-soft);
    line-height: 1.4;
  }
  .s-title .swipe-hint .arrow {
    font-size: 24px;
    font-weight: 900;
    color: var(--brand-500);
    flex: 0 0 auto;
  }
  .s-title .hero-block {
    padding-right: 0;
    justify-content: center;
  }
  .s-title h1 {
    letter-spacing: -1.5px;
    max-width: 100%;
  }
  .s-title h1 .accent {
    padding: 0 12px 5px;
    border-width: 3px;
    margin: 4px 4px 0 0;
  }
  .s-title .subtitle {
    font-size: var(--t-body);
    margin-top: 16px;
    max-width: 100%;
  }
  .s-title .team-row {
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
  }
  .s-title .team-row .eyebrow {
    writing-mode: horizontal-tb;
    transform: none;
    flex-basis: 100%;
    padding: 0;
    letter-spacing: 2px;
  }
  .s-title .team-card {
    padding: 10px 16px 10px 10px;
    gap: 12px;
    border-radius: 16px;
    flex: 1 1 auto;
  }
  .s-title .team-card.tilt-l,
  .s-title .team-card.tilt-r {
    transform: none;
  }
  .s-title .team-card .photo-frame {
    width: 56px;
    height: 56px;
  }
  .s-title .team-card .name {
    font-size: 17px;
  }
  .s-title .team-card .role {
    font-size: 10px;
    letter-spacing: 0.8px;
  }
  .s-title .team-and {
    font-size: 22px;
    transform: none;
    padding: 0 2px;
  }

  /* Folien A2 + C3 (s-photo): Zwei-Spalten-Grid auflösen — Bild volle Breite unter den Text */
  .s-photo .photo-layout {
    display: block;
  }
  .s-photo .photo-text {
    margin-bottom: 22px;
  }
  .s-photo .photo-hero,
  .s-photo .photo-hero.tilt-l,
  .s-photo .photo-hero.tilt-r {
    transform: none;
    box-shadow: 7px 7px 0 var(--ink);
    border-width: 4px;
  }

  /* Folien 4/8/17 (s-chat): fixe 860px-Chatbox an den Viewport anpassen —
     nur die Breite begrenzen, nach unten so lang wachsen wie nötig */
  .chatbox {
    width: 100%;
    height: auto;
    max-height: none;
    transform: none;
    box-shadow: var(--shadow-sticker-sm);
    padding: 14px 14px 12px;
    overflow: visible;
  }
  .chatbox .chat-msgs {
    flex: 0 0 auto;
    min-height: 0;
    overflow-y: visible;
    padding-right: 0;
  }

  /* Folie 10 (s-statement): lange Wörter (z. B. „reproduzierbar") dürfen umbrechen */
  .s-statement .statement-head h2,
  .s-statement .statement-center h2 {
    font-size: var(--t-h1);
    overflow-wrap: break-word;
    hyphens: auto;
  }
  /* Folie 15 (s-statement.big): großen Text um 23px verkleinern (76 → 53) */
  .s-statement.big .statement-center h2 {
    font-size: 53px;
  }

  /* Folie 11 (s-modelscene): Model-Bild aus der Überlagerung lösen und ans Ende (unten) setzen */
  .s-modelscene .kai-figure.model-figure {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: 100%;
    max-width: 260px;
    height: auto;
    margin: 6px auto 24px;
    z-index: 1;
  }
  .s-modelscene .model-figure img {
    height: auto;
  }

  /* Kai transition overlays (sections 3/5/10/12/14/15) removed on mobile */
  .kai-transition {
    display: none !important;
  }

  /* Folie 5 (Schmerz): Zitat + Symptom-Kästchen alle untereinander */
  .s-pain .quote-block {
    flex-direction: column;
  }
  .s-pain .symptom:nth-child(odd),
  .s-pain .symptom:nth-child(even) {
    transform: none;
  }
  .s-pain h2 {
    margin-bottom: 16px;
  }
  .s-pain .quote-card .text {
    font-size: 24px;
  }

  /* Folie 6 (AI Fluency): kompaktere Karten */
  .s-fluency .d-card {
    min-height: 260px;
  }

  /* Folien 11 + 13: Kai-/Arch-Caption entfernen */
  .s-kai .kai-caption,
  .s-arch .arch-caption {
    display: none;
  }

  /* Folie 16 (Danke): Karten in den Viewport, kein Überstand */
  .s-thanks .thanks-head {
    margin-bottom: 20px;
  }
  .s-thanks .qr-card {
    width: auto;
    max-width: 100%;
    transform: none;
  }
  .s-thanks .qr-card img {
    max-width: 100%;
  }
  .s-thanks .contact-row:nth-child(1),
  .s-thanks .contact-row:nth-child(2),
  .s-thanks .contact-row:nth-child(3) {
    transform: none;
  }
  .s-thanks .ai-credits {
    margin-right: 0;
    transform: none;
  }
  .s-thanks .credit-item::after {
    display: none;
  }

  /* Mobile-only Kai slides on, desktop-only Kai slide off */
  .slide.m-only {
    display: block;
  }
  .slide.d-only {
    display: none;
  }

  /* Folien 11a/11b/13a (mobil): Kästen-Liste + optionales Kai-Bild */
  .m-only h2 {
    font-size: var(--t-h1);
    margin: 0 0 16px;
    line-height: 1.1;
    font-weight: 900;
  }
  .m-only h2 .accent {
    color: var(--brand-500);
  }
  .m-only .m-box-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .m-only .m-box {
    background: var(--paper-2);
    border: 2.5px solid var(--ink);
    border-radius: 14px;
    box-shadow: var(--shadow-sticker-sm);
    padding: 14px 16px;
    font-size: var(--t-body);
    line-height: 1.4;
    color: var(--ink);
  }
  .m-only .m-box .badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 4px 11px;
    border-radius: 999px;
    border: 1.5px solid var(--ink);
    margin-bottom: 8px;
  }
  .m-only .m-box.foundation .badge {
    background: var(--brand-700);
    color: var(--paper);
  }
  .m-only .m-box.input .badge {
    background: var(--brand-500);
    color: var(--paper);
  }
  .m-only .m-box .title {
    font-size: var(--t-h4);
    font-weight: 900;
    margin-bottom: 4px;
    line-height: 1.2;
  }
  .m-only .m-box .desc {
    font-size: var(--t-small);
    color: var(--ink-soft);
    line-height: 1.4;
  }
  .m-only .m-box strong {
    color: var(--brand-700);
    font-weight: 900;
  }
  .m-only .m-kai-img {
    width: 120px;
    margin: -40px 8px 0 auto;
    position: relative;
    z-index: 2;
  }
  .m-only .m-kai-img video {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(5px 5px 0 rgba(0, 0, 0, 0.85));
  }
}

/* =========================================================
   MODELIA-BLOCK v2 (C1–C4) — aus Flatlay-Prozess-Briefing
   ========================================================= */

/* Gemeinsame Eyebrow-Pille (C1–C4) */
.s-process .proc-eyebrow,
.s-fix .fix-eyebrow,
.s-variants .var-eyebrow,
.s-4dfull .d4-eyebrow {
  align-self: flex-start;
  display: inline-block;
  font-size: var(--t-eyebrow);
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--paper);
  background: var(--brand-500);
  border: 2px solid var(--ink);
  box-shadow: var(--shadow-sticker-sm);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}

/* ---------- C1 · Prozess-Kreis ---------- */
.s-process .proc-layout {
  flex: 1;
  min-height: 0;
  display: grid;
  grid-template-columns: 560px 1fr;
  gap: 40px;
  align-items: center;
}
.s-process h2 {
  margin: 0 0 18px;
  font-size: 50px;
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -1.4px;
  color: var(--ink);
}
.s-process h2 .accent { color: var(--brand-500); }
.s-process .lead {
  font-size: 21px;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.5;
  max-width: 46ch;
  margin: 0 0 26px;
}
.s-process .lead strong { font-weight: 900; color: var(--brand-700); }
.s-process .proc-loop {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--paper-2);
  border: 2.5px solid var(--ink);
  border-radius: 16px;
  box-shadow: var(--shadow-sticker);
  padding: 18px 20px;
  max-width: 480px;
}
.s-process .proc-loop .loop-ico { font-size: 30px; line-height: 1; color: var(--brand-500); }
.s-process .proc-loop p { font-size: 15px; line-height: 1.45; color: var(--ink-soft); }
.s-process .proc-loop strong { color: var(--ink); }

.s-process .proc-circle {
  position: relative;
  width: 780px;
  height: 780px;
  justify-self: center;
}
.s-process .proc-arcs { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.s-process .proc-arcs .ring { fill: none; stroke: var(--brand-500); stroke-opacity: .18; stroke-width: 2; }
.s-process .proc-arcs .arc { fill: none; stroke: var(--brand-500); stroke-width: 4; stroke-linecap: round; }
.s-process .proc-arcs .arc.dashed { stroke-opacity: .5; stroke-dasharray: 2 12; }
.s-process .proc-arcs .ah-solid { fill: var(--brand-500); }
.s-process .proc-arcs .ah-dashed { fill: var(--brand-500); fill-opacity: .5; }

.s-process .proc-hub {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 240px; height: 240px;
  border-radius: 50%;
  background: var(--paper-2);
  border: 2.5px solid var(--ink);
  box-shadow: var(--shadow-sticker);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
}
.s-process .hub-top { font-size: 30px; font-weight: 900; font-style: italic; letter-spacing: -.5px; color: var(--ink); }
.s-process .hub-rule { width: 44px; height: 3px; background: var(--brand-500); margin: 9px 0 10px; }
.s-process .hub-mid { font-size: 17px; font-weight: 900; color: var(--brand-700); }
.s-process .hub-bot { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--ink-soft); margin-top: 5px; }

.s-process .proc-node {
  position: absolute;
  width: 246px;
  background: var(--paper-2);
  border: 2.5px solid var(--ink);
  border-radius: 16px;
  box-shadow: var(--shadow-sticker);
  padding: 15px 18px;
}
.s-process .n-top    { left: 50%;   top: 12.5%; transform: translate(-50%, -50%) rotate(-1.2deg); }
.s-process .n-right  { left: 87.5%; top: 50%;   transform: translate(-50%, -50%) rotate(1.2deg); }
.s-process .n-bottom { left: 50%;   top: 87.5%; transform: translate(-50%, -50%) rotate(-1deg); }
.s-process .n-left   { left: 12.5%; top: 50%;   transform: translate(-50%, -50%) rotate(1deg); }
.s-process .pn-head { display: flex; align-items: center; gap: 9px; margin-bottom: 9px; }
.s-process .pn-num {
  display: inline-grid; place-items: center;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--brand-500); color: var(--paper);
  font-weight: 900; font-size: 13px; border: 2px solid var(--ink);
}
.s-process .pn-badge {
  font-size: 11px; font-weight: 900; letter-spacing: 1.4px; text-transform: uppercase;
  color: var(--brand-700); background: var(--brand-50);
  border: 1.5px solid var(--brand-500); border-radius: 999px; padding: 4px 10px;
}
.s-process .pn-thumb {
  width: 40px; height: 40px; border-radius: 9px; overflow: hidden;
  border: 2px solid var(--ink); margin-left: auto; background: var(--brand-50);
}
.s-process .pn-thumb img { width: 100%; height: 100%; object-fit: cover; }
.s-process .pn-title { font-size: 20px; font-weight: 900; line-height: 1.1; }
.s-process .pn-desc { font-size: 13px; color: var(--ink-soft); line-height: 1.35; margin-top: 3px; }

/* ---------- C2 · 4D-Bewertung (gefüllt: Antworten + Raster) ---------- */
.s-4dfull h2 { font-size: 42px; letter-spacing: -1px; max-width: none; margin: 0 0 14px; }
.s-4dfull .d4-legend { display: flex; gap: 26px; margin: 0 0 20px; }
.s-4dfull .d4-legend .lg { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; color: var(--ink-soft); }
.s-4dfull .d4-legend .sw { width: 16px; height: 16px; border-radius: 4px; border: 2px solid var(--ink); }
.s-4dfull .d4-legend .sw.white { background: var(--paper-2); }
.s-4dfull .d4-legend .sw.green { background: var(--brand-50); border-color: var(--brand-500); }

.s-4dfull .eval-grid { gap: 22px; margin-bottom: 0; flex: 1; min-height: 0; }
.s-4dfull .eval-card { padding: 0; min-height: 0; gap: 0; overflow: hidden; border-radius: 18px; }
.s-4dfull .eval-card:nth-child(1),
.s-4dfull .eval-card:nth-child(2),
.s-4dfull .eval-card:nth-child(3),
.s-4dfull .eval-card:nth-child(4) { transform: none; }
.s-4dfull .card-head {
  position: relative;
  background: var(--brand-700);
  border-bottom: 2.5px solid var(--ink);
  padding: 15px 18px 16px;
  color: var(--paper);
}
.s-4dfull .card-head .d-num { position: absolute; top: 12px; right: 15px; font-size: 15px; font-weight: 900; color: rgba(255, 255, 255, .45); }
.s-4dfull .card-head .d-sub { display: block; font-style: italic; font-weight: 600; font-size: 12.5px; line-height: 1.3; color: rgba(255, 255, 255, .9); max-width: 90%; }
.s-4dfull .card-head .d-title { display: block; font-size: 25px; font-weight: 900; margin-top: 5px; }
.s-4dfull .answers { list-style: none; margin: 0; padding: 15px 16px 8px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.s-4dfull .answers li { font-size: 13.5px; line-height: 1.35; color: var(--ink); padding-left: 15px; position: relative; }
.s-4dfull .answers li::before { content: "—"; position: absolute; left: 0; color: var(--brand-500); font-weight: 900; }
.s-4dfull .answers li strong { color: var(--brand-700); }
.s-4dfull .raster { margin: 0 12px 12px; background: var(--brand-50); border: 1.5px solid var(--brand-100); border-radius: 11px; padding: 11px 13px; }
.s-4dfull .raster ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 6px; }
.s-4dfull .raster li { font-size: 12px; line-height: 1.3; color: var(--brand-700); padding-left: 13px; position: relative; }
.s-4dfull .raster li::before { content: "\2022"; position: absolute; left: 0; color: var(--brand-500); }

/* ---------- C3 · Fehlerkorrektur ---------- */
.s-fix h2 { margin: 0 0 12px; font-size: 46px; font-weight: 900; line-height: 1.05; letter-spacing: -1.4px; color: var(--ink); }
.s-fix h2 .accent { color: var(--brand-500); }
.s-fix .lead { font-size: 20px; font-weight: 300; color: var(--ink-soft); line-height: 1.45; max-width: 108ch; margin: 0 0 26px; }
.s-fix .lead strong { font-weight: 900; color: var(--brand-700); }
.s-fix .fix-row { flex: 1; min-height: 0; display: grid; grid-template-columns: 1fr 0.86fr 1fr; gap: 30px; align-items: center; }
.s-fix .fix-card { margin: 0; display: flex; height: 600px; }
.s-fix .fix-img { position: relative; flex: 1; min-height: 0; width: 100%; border: 5px solid var(--ink); border-radius: 20px; box-shadow: var(--shadow-sticker-lg); overflow: hidden; background: #c9d2d4; }
.s-fix .fix-img img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 8%; }
.s-fix .fix-tag { position: absolute; top: 14px; font-size: 12px; font-weight: 900; letter-spacing: .6px; padding: 6px 12px; border-radius: 999px; border: 2px solid var(--ink); color: var(--paper); }
.s-fix .fix-tag.dark { left: 14px; background: var(--ink); }
.s-fix .fix-tag.bad { right: 14px; background: #b3402f; }
.s-fix .fix-tag.good { right: 14px; background: var(--brand-500); }
.s-fix .loupe { position: absolute; right: 18px; bottom: 18px; width: 168px; height: 168px; border-radius: 50%; background-size: cover; background-position: center; box-shadow: 5px 6px 0 var(--ink), inset 0 0 0 2px #fff; }
.s-fix .loupe.bad { border: 3px solid #b3402f; }
.s-fix .loupe.good { border: 3px solid var(--brand-500); }
.s-fix .loupe-note { position: absolute; right: 20px; bottom: 194px; background: var(--paper-2); border-radius: 9px; padding: 5px 11px; font-size: 14px; font-weight: 900; }
.s-fix .loupe-note.bad { border: 2px solid #b3402f; color: #b3402f; }
.s-fix .loupe-note.good { border: 2px solid var(--brand-500); color: var(--brand-700); }
.s-fix .fix-mid { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 22px; }
.s-fix .ref-card { background: var(--paper-2); border: 2.5px solid var(--ink); border-radius: 16px; box-shadow: var(--shadow-sticker); padding: 16px; width: 100%; max-width: 320px; text-align: center; }
.s-fix .ref-eyebrow { display: block; font-size: 11px; font-weight: 900; letter-spacing: 2px; text-transform: uppercase; color: var(--brand-500); margin-bottom: 10px; }
.s-fix .ref-img { height: 150px; border-radius: 10px; overflow: hidden; border: 2px solid var(--ink); }
.s-fix .ref-img img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 42%; }
.s-fix .ref-logo { margin-top: 10px; font-size: 19px; font-weight: 900; color: var(--ink); }
.s-fix .ref-logo .ok { color: var(--brand-500); }
.s-fix .ref-sub { font-size: 12px; color: var(--ink-soft); margin-top: 2px; }
.s-fix .feedback-pill { display: inline-flex; align-items: center; gap: 12px; background: var(--brand-500); color: var(--paper); border: 2px solid var(--ink); box-shadow: var(--shadow-sticker-sm); border-radius: 999px; padding: 11px 20px; font-weight: 800; font-size: 15px; }
.s-fix .feedback-pill .fi { font-size: 19px; line-height: 1; }

/* ---------- C4 · Varianten & Grenzen ---------- */
.s-variants h2 { margin: 0 0 12px; font-size: 46px; font-weight: 900; line-height: 1.05; letter-spacing: -1.4px; color: var(--ink); }
.s-variants h2 .accent { color: var(--brand-500); }
.s-variants .lead { font-size: 20px; font-weight: 300; color: var(--ink-soft); line-height: 1.45; max-width: 110ch; margin: 0 0 24px; }
.s-variants .lead strong { font-weight: 900; color: var(--brand-700); }
.s-variants .var-grid { flex: 1; min-height: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; align-items: stretch; }
.s-variants .var-card { margin: 0; display: flex; flex-direction: column; background: var(--paper-2); border: 2.5px solid var(--ink); border-radius: 16px; box-shadow: var(--shadow-sticker); overflow: hidden; }
.s-variants .var-img { position: relative; height: 300px; overflow: hidden; border-bottom: 2.5px solid var(--ink); background: #c9d2d4; }
.s-variants .var-img img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 6%; }
.s-variants .var-img.cutout { background: repeating-conic-gradient(#e7ece8 0% 25%, #f4f6f4 0% 50%) 0 0 / 22px 22px; display: grid; place-items: center; }
.s-variants .var-img.cutout img { width: 92%; height: 92%; object-fit: contain; object-position: center; }
.s-variants .tool-tag { position: absolute; top: 14px; left: 14px; font-size: 11px; font-weight: 900; letter-spacing: 1.5px; text-transform: uppercase; color: var(--paper); border: 2px solid var(--ink); border-radius: 999px; padding: 5px 11px; }
.s-variants .tool-tag.teal { background: var(--brand-500); }
.s-variants .tool-tag.dark { background: var(--ink); }
.s-variants figcaption { padding: 14px 16px 16px; display: flex; flex-direction: column; gap: 7px; }
.s-variants .vc-head { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.s-variants .vc-title { font-size: 19px; font-weight: 900; color: var(--ink); }
.s-variants figcaption p { font-size: 13px; line-height: 1.4; color: var(--ink-soft); }
.s-variants .st { font-size: 12px; font-weight: 900; padding: 4px 9px; border-radius: 999px; border: 2px solid var(--ink); white-space: nowrap; }
.s-variants .st-ok { background: var(--brand-50); color: var(--brand-700); }
.s-variants .st-warn { background: #fbf1dd; color: #a9761d; border-color: #d99a2b; }
.s-variants .st-fail { background: #f6dcd5; color: #b3402f; border-color: #b3402f; }
.s-variants .var-foot { margin: 22px 0 0; font-size: 18px; line-height: 1.45; color: var(--ink); max-width: 120ch; padding: 16px 22px; background: var(--paper-2); border-left: 6px solid var(--brand-500); border-radius: 4px 14px 14px 4px; box-shadow: var(--shadow-sticker-sm); }
.s-variants .var-foot strong { color: var(--brand-700); font-weight: 900; }

/* =========================================================
   D2 · OUTRO / KONTAKT (Design nach Outro-PDF)
   ========================================================= */
.s-thanks .d2-layout {
  flex: 1;
  min-height: 0;
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 54px;
  align-items: center;
}
.s-thanks .d2-left { display: flex; flex-direction: column; }
.s-thanks .d2-left .sub { max-width: 34ch; }
.s-thanks .contact-stickers { margin-top: 38px; display: flex; flex-direction: column; gap: 16px; }
.s-thanks .c-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.s-thanks .c-sticker {
  background: var(--paper-2);
  border: 2.5px solid var(--ink);
  border-radius: 14px;
  box-shadow: var(--shadow-sticker-sm);
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.s-thanks .c-label { font-size: 11px; font-weight: 900; letter-spacing: 1.6px; text-transform: uppercase; color: var(--brand-500); }
.s-thanks .c-val { font-size: 21px; font-weight: 900; color: var(--ink); text-decoration: none; letter-spacing: -0.3px; }
a.c-val:hover { color: var(--brand-700); }

.s-thanks .d2-right { display: flex; flex-direction: column; gap: 22px; }
.s-thanks .team-frame { width: 100%; aspect-ratio: 16 / 7; }
.s-thanks .people-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.s-thanks .person-card {
  margin: 0;
  background: var(--paper-2);
  border: 2.5px solid var(--ink);
  border-radius: 18px;
  box-shadow: var(--shadow-sticker);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 14px 14px 14px;
  gap: 10px;
}
.s-thanks .person-card .pc-img { width: 100%; flex: 1; min-height: 0; display: grid; place-items: center; }
.s-thanks .person-card .pc-img img { width: 100%; max-height: 100%; object-fit: contain; border-radius: 10px; }
.s-thanks .person-card .pc-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 900; letter-spacing: 1.2px; text-transform: uppercase;
  color: var(--paper); background: var(--brand-500);
  border: 2px solid var(--ink); border-radius: 999px; padding: 5px 14px;
}
.s-thanks .person-card.kai { justify-content: center; gap: 6px; }
.s-thanks .person-card.kai .pc-kai { width: 100%; flex: 1; min-height: 0; display: grid; place-items: center; }
.s-thanks .person-card.kai .pc-kai video { height: 100%; max-height: 240px; object-fit: contain; filter: drop-shadow(6px 6px 0 rgba(0, 0, 0, 0.85)); }
.s-thanks .person-card.kai .pc-name { font-size: 24px; font-weight: 900; color: var(--ink); }
.s-thanks .person-card.kai .pc-role { font-size: 13px; font-weight: 800; letter-spacing: 0.4px; color: var(--brand-500); }

/* =========================================================
   C4b · SHOPWARE COPILOT (Case) — Shopware-Blau als Akzent
   ========================================================= */
.s-copilot .cp-eyebrow {
  align-self: flex-start;
  display: inline-block;
  font-size: var(--t-eyebrow);
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  background: #0870d8;
  border: 2px solid var(--ink);
  box-shadow: var(--shadow-sticker-sm);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.s-copilot h2 { margin: 0 0 22px; font-size: 46px; font-weight: 900; line-height: 1.05; letter-spacing: -1.4px; color: var(--ink); }
.s-copilot h2 .accent { color: #0870d8; }
.s-copilot .cp-layout { flex: 1; min-height: 0; display: grid; grid-template-columns: 0.7fr 1fr; gap: 32px; align-items: stretch; }

.s-copilot .cp-info { background: var(--paper-2); border: 2.5px solid var(--ink); border-radius: 18px; box-shadow: var(--shadow-sticker); padding: 26px 28px; display: flex; flex-direction: column; }
.s-copilot .cp-info-head { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
.s-copilot .cp-icon { flex: 0 0 auto; width: 46px; height: 46px; border-radius: 12px; background: #0870d8; color: #fff; display: grid; place-items: center; font-size: 24px; border: 2px solid var(--ink); box-shadow: 3px 3px 0 var(--ink); }
.s-copilot .cp-title { font-size: 24px; font-weight: 900; color: var(--ink); line-height: 1.05; }
.s-copilot .cp-sub { font-size: 14px; color: var(--ink-soft); margin-top: 4px; }
.s-copilot .cp-bullets { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 15px; }
.s-copilot .cp-bullets li { font-size: 16px; line-height: 1.4; color: var(--ink); padding-left: 26px; position: relative; }
.s-copilot .cp-bullets li::before { content: "\25B8"; position: absolute; left: 0; top: 1px; color: #0870d8; font-weight: 900; }
.s-copilot .cp-bullets strong { font-weight: 900; color: var(--ink); }
.s-copilot .cp-tags { margin-top: auto; padding-top: 22px; display: flex; flex-wrap: wrap; gap: 8px; }
.s-copilot .cp-tag { font-size: 12px; font-weight: 800; padding: 6px 12px; border-radius: 999px; border: 1.5px solid #0870d8; background: #eef2f8; color: #0870d8; }
.s-copilot .cp-tag.on { border-color: var(--brand-500); background: var(--brand-50); color: var(--brand-700); }

.s-copilot .cp-shots { display: flex; flex-direction: column; gap: 20px; min-height: 0; }
.s-copilot .cp-shot { margin: 0; background: var(--paper-2); border: 2.5px solid var(--ink); border-radius: 16px; box-shadow: var(--shadow-sticker); overflow: hidden; display: flex; flex-direction: column; }
.s-copilot .cp-shot.wide { flex: 1.15; }
.s-copilot .cp-shot-row { flex: 1; min-height: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.s-copilot .cp-shot-row .cp-shot { flex: 1; }
.s-copilot .cp-shot figcaption { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 10px 14px; border-bottom: 2.5px solid var(--ink); background: #f4f6f8; }
.s-copilot .cp-cap { font-weight: 800; font-size: 13.5px; color: var(--ink); }
.s-copilot .cp-badge { flex: 0 0 auto; font-size: 11.5px; font-weight: 900; padding: 4px 10px; border-radius: 999px; border: 2px solid var(--ink); color: var(--paper); }
.s-copilot .cp-badge.ok { background: var(--brand-500); }
.s-copilot .cp-badge.bad { background: #b3402f; }
.s-copilot .cp-img { flex: 1; min-height: 0; background: #e9edf0; overflow: hidden; position: relative; }
.s-copilot .cp-img img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 0%; }
.s-copilot .cp-marker { position: absolute; left: 10px; bottom: 10px; background: var(--paper-2); border: 2px solid #b3402f; border-radius: 7px; padding: 3px 9px; font-size: 11px; font-weight: 900; color: #b3402f; }

/* =========================================================
   MOBILE-OVERRIDES für den umgebauten Modelia-Block (C1–C4b).
   Steht bewusst NACH den Basisregeln, damit die Overrides greifen.
   ========================================================= */
@media (max-width: 600px) {
  /* Folie 10 (s-process): Kreis-Prozess auflösen — Text oben, Schritte untereinander */
  .s-process .proc-layout {
    display: block;
  }
  .s-process .proc-text {
    margin-bottom: 22px;
  }
  .s-process h2 {
    font-size: var(--t-h1);
  }
  .s-process .lead {
    font-size: var(--t-body);
    max-width: none;
  }
  .s-process .proc-loop {
    max-width: none;
  }

  /* Kreis wird zur gestapelten Spalte, SVG-Ring/Pfeile raus */
  .s-process .proc-circle {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .s-process .proc-arcs {
    display: none;
  }
  .s-process .proc-hub {
    position: static;
    transform: none;
    width: 100%;
    height: auto;
    border-radius: 16px;
    padding: 18px;
  }
  .s-process .proc-node {
    position: static;
    transform: none;
    width: 100%;
  }

  /* Folie 12 (s-fix): 3-Spalten-Vergleich untereinander — Fehler → Referenz/Feedback → Korrekt */
  .s-fix h2 {
    font-size: var(--t-h1);
  }
  .s-fix .lead {
    font-size: var(--t-body);
    max-width: none;
  }
  .s-fix .fix-row {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .s-fix .fix-card,
  .s-fix .fix-card.tilt-l,
  .s-fix .fix-card.tilt-r {
    height: auto;
    transform: none;
  }
  .s-fix .fix-img {
    flex: none;
    aspect-ratio: 3 / 4;
  }
  .s-fix .ref-card {
    max-width: none;
  }

  /* Folie 13 (s-variants): 4er-Bildraster untereinander */
  .s-variants h2 {
    font-size: var(--t-h1);
  }
  .s-variants .lead {
    font-size: var(--t-body);
    max-width: none;
  }
  .s-variants .var-grid {
    grid-template-columns: 1fr;
  }
  .s-variants .var-foot {
    max-width: none;
  }

  /* Folie 14 (s-copilot): Info + Screenshots untereinander */
  .s-copilot h2 {
    font-size: var(--t-h1);
  }
  .s-copilot .cp-layout {
    display: block;
  }
  .s-copilot .cp-info {
    margin-bottom: 20px;
  }
  .s-copilot .cp-shot-row {
    grid-template-columns: 1fr;
  }
  /* cp-img hat flex:1 ohne Container-Höhe → Seitenverhältnis geben, sonst Höhe 0 */
  .s-copilot .cp-img {
    flex: none;
    aspect-ratio: 4 / 3;
  }
  .s-copilot .cp-shot.wide .cp-img {
    aspect-ratio: 16 / 10;
  }

  /* Folie 19 (s-thanks · D2): Kontakt-Layout untereinander */
  .s-thanks .d2-layout {
    display: block;
  }
  .s-thanks .d2-left {
    margin-bottom: 26px;
  }
  .s-thanks .c-row {
    grid-template-columns: 1fr;
  }
  .s-thanks .team-frame {
    box-shadow: 7px 7px 0 var(--ink);
    border-width: 4px;
  }
  .s-thanks .people-row {
    grid-template-columns: 1fr;
  }
  /* pc-img/pc-kai nutzen flex:1 ohne Container-Höhe → natürliche Höhe geben, sonst Höhe 0 */
  .s-thanks .person-card .pc-img,
  .s-thanks .person-card.kai .pc-kai {
    flex: none;
  }
  .s-thanks .person-card .pc-img img {
    height: auto;
    max-height: 360px;
  }
  .s-thanks .person-card.kai .pc-kai video {
    height: auto;
  }
}
