@font-face {
  font-family: "Lora";
  src: url("fonts/Lora/Lora-VariableFont_wght.ttf") format("truetype-variations");
  font-weight: 400 700;
  font-style: normal;
}
@font-face {
  font-family: "Lora";
  src: url("fonts/Lora/Lora-Italic-VariableFont_wght.ttf") format("truetype-variations");
  font-weight: 400 700;
  font-style: italic;
}
@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("fonts/PlusJakartaSans/PlusJakartaSans-VariableFont_wght.ttf") format("truetype-variations");
  font-weight: 200 800;
  font-style: normal;
}
@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("fonts/PlusJakartaSans/PlusJakartaSans-Italic-VariableFont_wght.ttf") format("truetype-variations");
  font-weight: 200 800;
  font-style: italic;
}

:root {
  --bg-hell: #fdfcf8;
  --bg: #fff7ed;
  --bg-alt: #ede9e0;
  --card: #eef2ee;
  --text: #1a1f1e;
  --text-muted: #5c6660;
  --highlight: #c8e0cc;
  --accent: #2f6e4e;
  --accent-hover: #245939;
  --border: #7c5f1c;
  --accent-teal: #14383a;
  --radius: 10px;
  --max-width: 1080px;
}

* { box-sizing: border-box; }

html {
  overflow-x: hidden;
}
body {
  margin: 0;
  font-family: "Lora", Georgia, "Times New Roman", serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

h1, h2, h3 { line-height: 1.25; margin: 0 0 0.6em; font-weight: 700; }
h1 {
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(2.6rem, 5.5vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.35;
  color: var(--text);
}
.h1-nowrap { white-space: nowrap; text-decoration: underline; text-underline-offset: 0.08em; }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); }
h3 { font-size: 1.15rem; margin-bottom: 0.4em; }
p { color: var(--text-muted); margin: 0 0 1em; }

a { color: var(--accent); text-decoration: none; }

::selection {
  background: var(--highlight);
  color: var(--text);
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  background: var(--bg);
  z-index: 10;
}
.nav-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0.55rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  display: inline-flex;
  align-items: center;
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  letter-spacing: -0.02em;
}
.logo-mark {
  display: inline-block;
  height: 0.85em;
  width: auto;
  margin-right: 0.02em;
  vertical-align: -0.08em;
}
.cta-brand-font {
  display: inline-flex;
  align-items: center;
}

/* Header-Nav: schlichter Textlink zur eigenen Seite. */
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  margin-left: auto;
  margin-right: 1.75rem;
}
.nav-link {
  position: relative;
  display: inline-block;
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
}
.nav-link:hover { color: var(--accent-teal); }
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-link:hover::after {
  transform: scaleX(1);
}
@media (max-width: 760px) {
  .nav-links { display: none; }
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-weight: 600;
  transition: background 0.15s ease;
}
/* Demo-Anfragen-Buttons: goldene Border zeichnet sich bei Hover von
   oben-mittig im Uhrzeigersinn einmal komplett herum, beim Verlassen
   läuft dieselbe Animation rückwärts (siehe initDemoBtnOutline im
   Script — SVG-Pfad mit stroke-dashoffset-Transition). */
.btn-demo {
  position: relative;
  overflow: visible;
}
.btn-demo-outline {
  position: absolute;
  inset: -1px;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  pointer-events: none;
  overflow: visible;
}
.btn-demo-outline path {
  fill: none;
  stroke: #d9ab48;
  stroke-width: 1.5;
  transition: stroke-dashoffset 0.6s ease;
}
.btn-primary { background: var(--accent); color: var(--bg-hell); }
.btn-primary:hover { background: var(--accent-hover); }
.btn-small { padding: 0.5rem 1rem; font-size: 0.9rem; background: var(--text); color: #fff; border: 1px solid var(--text); }
.btn-small:hover { background: #000; border-color: #000; }

/* Sections */
section { padding: 4.5rem 1.5rem; }
.section-inner { max-width: var(--max-width); margin: 0 auto; }
.section-inner.narrow { max-width: 640px; }
.center { text-align: center; }

.hero {
  position: relative;
  padding: 6rem 1.5rem 5rem;
  background: var(--bg);
  overflow: hidden;
}
.hero-inner { max-width: 1320px; margin: 0 auto; }
.subhead { font-size: 1.35rem; margin-bottom: 2rem; color: var(--text); }

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: center;
  text-align: left;
}
@media (max-width: 760px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-demo { order: -1; }
}

/* Lebendiges Partikel-Netzwerk (Canvas, prozedural) — ersetzt das alte
   statische SVG mit fest codierten Punkten. Siehe initHeroNetwork im
   Script: Partikel driften langsam, Linien verbinden nahe Partikel. */
.hero-bg {
  position: absolute;
  inset: 70px 0 0 0;
  z-index: 0;
  opacity: 0.6;
  pointer-events: none;
}
.hero-bg canvas { width: 100%; height: 100%; display: block; }

/* Chat demo mockup — an die echte App angelehnt (theme.css: Gold #7c5f1c
   als Rand-/Struktur-Farbe, Teal #14383a als Akzent/Nutzer-Bubble im Hell-Modus) */
.hero-demo { display: flex; justify-content: center; }
.chat-window {
  width: 100%;
  max-width: 480px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.75rem;
  box-shadow: 0 16px 40px -16px rgba(26,31,30,0.18);
  overflow: hidden;
}
.chat-window-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.5rem;
  margin: 0 0 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.chat-window-label { display: inline-flex; align-items: center; font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif; font-size: 0.9rem; font-weight: 700; color: var(--text); }
.chat-sender {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: right;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.chat-row { display: flex; margin-bottom: 1.1rem; }
.chat-row-user { justify-content: flex-end; }
.chat-row-bot { justify-content: flex-start; }

.chat-bubble {
  max-width: 85%;
  border-radius: 12px;
  padding: 0.7rem 1.05rem;
  font-size: 1rem;
  line-height: 1.45;
}
.chat-bubble-user {
  position: relative;
  background: var(--accent-teal);
  color: #fff;
  overflow: hidden;
}
.chat-mask {
  position: absolute;
  inset: 0;
  right: 0;
  left: auto;
  width: 100%;
  background: var(--accent-teal);
  animation: reveal 1.6s steps(30, end) 0.6s forwards;
}
@keyframes reveal {
  to { width: 0%; }
}

.chat-bubble-bot {
  background: var(--bg-hell);
  border: 1px solid var(--border);
  color: var(--text);
  opacity: 0;
  animation: fade-in 0.6s ease forwards 2.6s;
}
.chat-bubble-bot p { margin: 0 0 0.4em; color: var(--text); }
.chat-source {
  font-size: 0.85rem;
  color: var(--border);
}
@keyframes fade-in {
  to { opacity: 1; }
}

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: var(--text-muted);
  animation: bob 2s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 6px); }
}

/* Expanding Video Window — Scroll-gekoppelter Effekt wie im Claude-Fable-
   Bereich auf der Anthropic-Seite. Klassisches Sticky+Scale-Muster:
   .video-scroll-section ist 200vh hoch, der Sticky-Wrapper klebt bei
   top:0 über die volle Scrollstrecke, JS berechnet den Fortschritt
   (0–1) daraus und interpoliert width/border-radius live (siehe Script). */
.video-outer {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background: var(--bg);
  display: flex;
  justify-content: center;
  padding: 0 0 5rem;
}
.video-box {
  position: relative;
  width: 70%;
  max-width: 1000px;
  height: 100vh;
  border-radius: 20px;
  overflow: hidden;
  transition: none;
}
.video-box video {
  position: absolute;
  width: 100vw;
  height: 100%;
  min-height: 100%;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  object-fit: cover;
}
#grain {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: overlay;
  z-index: 1;
}

/* Problem/Lösung-Text im Video — gekoppelt an denselben Feder-Wert,
   der auch die Box öffnet (siehe tick() im Script). Dunkler Scrim
   unten sorgt für Lesbarkeit von weißem Text auf hellen Wolken. */
.video-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(8, 14, 13, 0.5) 0%, rgba(8, 14, 13, 0.22) 45%, rgba(8, 14, 13, 0.1) 70%);
  pointer-events: none;
  z-index: 1;
}
.video-copy {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  display: grid;
  align-items: center;
  padding: 0 8%;
}
/* Problem- und Lösung-Panel sollen exakt dieselbe Bezugslinie haben
   (nicht wie das dritte Panel einzeln nach eigener Höhe zentriert) --
   sonst verschiebt unterschiedlich langer Text sie gegeneinander. */
#panel-problem,
#panel-solution {
  align-self: center;
  min-height: 68vh;
  justify-content: center;
}
.copy-panel {
  grid-area: 1 / 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.75rem;
  max-width: 900px;
  pointer-events: auto;
}
.copy-row {
  display: flex;
  align-items: baseline;
  gap: 2rem;
  row-gap: 0.75rem;
  flex-wrap: wrap;
}
.copy-panel h3 {
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-weight: 800;
  color: #fff;
  font-size: clamp(1.8rem, 3.6vw, 3rem);
  letter-spacing: -0.01em;
  margin: 0;
  flex: 0 0 auto;
}
.copy-panel p {
  font-family: "Lora", Georgia, "Times New Roman", serif;
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  line-height: 1.6;
  flex: 1 1 320px;
  max-width: 40ch;
  margin: 0;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55), 0 1px 3px rgba(0, 0, 0, 0.6);
}
#panel-solution p {
  max-width: 52ch;
}
#panel-solution .copy-row {
  align-items: center; /* Headline automatisch mittig zur Texthöhe, egal wie lang der Text ist */
}
.copy-stats {
  flex: 1 1 320px;
  max-width: 40ch;
}
.copy-stats h4 {
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  margin: 0 0 0.75rem;
}
.copy-stats p {
  font-size: clamp(0.88rem, 1.1vw, 0.98rem);
  margin: 0 0 0.35rem;
}
.copy-stats p:last-child {
  margin-bottom: 0;
}

/* Ausgangszustand: Problem sanft ausgeblendet (scroll-gesteuert via JS),
   Lösung unsichtbar nach rechts versetzt bis zum Button-Klick. */
#panel-problem {
  opacity: 0;
  transform: translateY(14px);
}
#panel-solution {
  opacity: 0;
  transform: translateX(48px);
  filter: blur(10px);
  pointer-events: none;
}

/* Klick-Übergang: Problem wischt schnell dezent nach links weg und löst
   sich auf, Lösung löst sich von rechts kommend sichtbar ein — leicht
   zeitversetzt für einen fließenden Wechsel statt hartem Cut. */
.video-copy.is-swapped #panel-problem {
  transition: opacity 0.32s ease, transform 0.32s ease, filter 0.32s ease;
  opacity: 0 !important;
  transform: translateX(-56px) !important;
  filter: blur(10px);
  pointer-events: none;
}
.video-copy.is-swapped #panel-solution {
  transition: opacity 0.5s ease 0.14s, transform 0.5s ease 0.14s, filter 0.5s ease 0.14s;
  opacity: 1 !important;
  transform: translateX(0) !important;
  filter: blur(0);
  pointer-events: auto;
}

/* Problem-Panel: Headline + erster Text bleiben 1:1 an der
   ursprünglichen Stelle (eigene, unveränderte Zeile mit fester
   max-width wie vorher) — die Fluktuations-Spalte wird absolut
   positioniert rechts daneben gelegt, ohne die Zeile zu beeinflussen. */
.copy-panel-problem {
  max-width: 1200px;
  position: relative;
}
.copy-panel-problem .copy-row {
  max-width: 760px;
  flex-wrap: nowrap;
  align-items: flex-start;
}
.copy-panel-problem .copy-row h3 {
  margin-top: 4.5rem; /* exakt wie bei "Unsere Lösung" */
}
.copy-panel-problem .copy-row > p {
  /* margin-top wird per JS pixelgenau auf die Höhe von "Die Fluktuation..."
     gesetzt, damit "Wissen steckt..." exakt auf Höhe von "Produktion ..."
     startet (siehe alignProblemText im Script). */
}
.copy-panel-problem .copy-stats p {
  font-size: clamp(0.95rem, 1.25vw, 1.05rem);
}
.copy-panel-problem .copy-stats {
  position: absolute;
  top: 0;
  left: 72%;
  width: 30%;
  max-width: 420px;
}

/* Drittes Panel: breiter/wichtiger, reicht bis über die Mitte hinaus */
.copy-panel-wide {
  max-width: 1300px;
  width: 100%;
  margin: 6.5rem auto 0;
  align-items: center;
}
.copy-panel-wide h3 {
  margin-bottom: 0.25rem;
}
.copy-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8.5rem;
  width: 100%;
}
.copy-col {
  min-width: 0;
}
.copy-col:first-child {
  margin-top: 3.5rem; /* bewusst asymmetrisch tiefer als die rechte Spalte */
}
.copy-steps {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.copy-step {
  display: flex;
  align-items: baseline;
  gap: 1.25rem;
}
.copy-step-num {
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  flex: 0 0 auto;
}
.copy-step h4 {
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  margin: 0 0 0.3rem;
}
.copy-step p {
  font-family: "Lora", Georgia, "Times New Roman", serif;
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  line-height: 1.55;
  max-width: 56ch;
  margin: 0;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55), 0 1px 3px rgba(0, 0, 0, 0.6);
}

/* Tresorschloss-Rotation: 3 Sätze gleichzeitig sichtbar, laufen von oben
   nach unten durch — oben klein/verblasst einblendend, in der Mitte groß
   und voll sichtbar, unten wieder klein/verblasst ausblendend. Schmaler
   als die beiden Spalten, mittig darunter. Position/Skalierung/Opacity
   werden pro Frame in JS gesetzt (siehe tickSafeDial). */
.safe-dial {
  --slot-h: 2.6rem;
  position: relative;
  width: 100%;
  max-width: 560px;
  height: calc(var(--slot-h) * 3);
  margin: 2.25rem auto 0;
  overflow: hidden;
  perspective: 420px;
  mask-image: linear-gradient(to bottom, transparent, #000 22%, #000 78%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 22%, #000 78%, transparent);
}
.safe-dial-track {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}
.safe-dial-item {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: var(--slot-h);
  line-height: var(--slot-h);
  text-align: center;
  font-family: "Lora", Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 1.05rem;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transform-origin: center center;
  backface-visibility: hidden;
  will-change: transform, opacity;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}

/* Ausgangszustand & zweiter Klick-Übergang: Solution -> Wie funktioniert */
#panel-howitworks {
  opacity: 0;
  transform: translateX(48px);
  filter: blur(10px);
  pointer-events: none;
}
.video-copy.is-swapped-2 #panel-solution {
  transition: opacity 0.32s ease, transform 0.32s ease, filter 0.32s ease;
  opacity: 0 !important;
  transform: translateX(-56px) !important;
  filter: blur(10px);
  pointer-events: none;
}
.video-copy.is-swapped-2 #panel-howitworks {
  transition: opacity 0.5s ease 0.14s, transform 0.5s ease 0.14s, filter 0.5s ease 0.14s;
  opacity: 1 !important;
  transform: translateX(0) !important;
  filter: blur(0);
  pointer-events: auto;
}

.copy-btn {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  backdrop-filter: blur(6px);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}
.copy-btn:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: #fff;
}
.copy-btn svg {
  transition: transform 0.2s ease;
}
.copy-btn:hover svg {
  transform: translateX(4px);
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.target {
  position: relative;
  text-align: center;
  overflow: hidden;
  padding-top: 0.25rem;
}
.target h2 {
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
}
.target .section-inner.narrow {
  max-width: 760px;
}
.target > .section-inner > p {
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  line-height: 1.65;
}
.target-bg {
  position: absolute;
  inset: -96px;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
  background-image:
    repeating-linear-gradient(0deg, rgba(20, 56, 58, 0.1) 0 1px, transparent 1px 96px),
    repeating-linear-gradient(90deg, rgba(20, 56, 58, 0.1) 0 1px, transparent 1px 96px);
  mask-image: radial-gradient(ellipse at center, #000 35%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 35%, transparent 78%);
  animation: target-bg-drift 40s linear infinite;
}
@keyframes target-bg-drift {
  0% { transform: translate(0, 0); }
  100% { transform: translate(96px, 96px); }
}
.target .section-inner {
  position: relative;
  z-index: 1;
}

.fit-check {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}
.fit-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: "Lora", Georgia, "Times New Roman", serif;
  font-size: 0.95rem;
  padding: 0.6rem 1.15rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}
.fit-chip::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  flex: 0 0 auto;
  transition: background 0.15s ease;
}
.fit-chip:hover {
  border-color: var(--accent-teal);
}
.fit-chip[data-checked="true"] {
  background: var(--accent-teal);
  border-color: var(--accent-teal);
  color: #fff;
}
.fit-chip[data-checked="true"]::before {
  background: #fff;
}
.fit-result {
  margin: 1.25rem 0 0;
  min-height: 1.6em;
  font-weight: 600;
  color: var(--accent-teal);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.fit-result.is-visible {
  opacity: 1;
}

/* CTA-Video-Bereich — 1:1 dieselbe Mechanik wie der Himmel-Bereich:
   Video immer 100vw fix, nur die Box wächst beim Scrollen (siehe
   tick() im Script), plus Film-Grain-Canvas obendrauf. */
.cta-video-outer {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background: var(--bg);
  display: flex;
  justify-content: center;
  padding: 0 0 5rem;
}
.cta-video-box {
  position: relative;
  width: 62%;
  max-width: 880px;
  height: 62vh;
  max-height: 620px;
  border-radius: 20px;
  overflow: hidden;
  transition: none;
}
.cta-video-box video {
  position: absolute;
  width: 100vw;
  height: 100%;
  min-height: 100%;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  object-fit: cover;
}
.cta-card-wrap {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  padding: 0 6%;
}
/* Kein Container mehr — Typografie selbst ist die Struktur. Große,
   selbstbewusste Headline; Text/Button bewusst klein und zurückhaltend
   darunter. Kein Rand, kein Schatten, kein Blur. */
.cta-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  max-width: 780px;
  text-align: center;
}
.cta-brand-font {
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  font-size: 1.12em;
}
.cta-card h2 {
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 5.8vw, 4.4rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: #fff;
  margin: 0;
  text-shadow: 0 4px 32px rgba(0, 0, 0, 0.35);
}
.cta-card-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
}
.cta-card-side p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
  margin: 0;
}
.cta-card .btn-primary {
  background: var(--text);
  color: #fff;
  border: 1px solid var(--text);
  padding: 0.6rem 1.3rem;
  font-size: 0.9rem;
  box-shadow: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.cta-card .btn-primary:hover {
  background: #000;
  border-color: #000;
  box-shadow: none;
}

/* Datenschutz-für-Mitarbeiter-Seite: zweispaltiges Layout nach
   Anthropic-Vorbild — links eine feste Intro-Spalte, rechts ein
   2-spaltiges Raster nummerierter FAQ-Punkte. Kein Kasten, keine
   Trennlinien, Struktur kommt aus Raster + Nummerierung. */
.dsm-layout {
  max-width: 1320px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
  display: grid;
  grid-template-columns: 0.85fr 1.6fr;
  gap: 4rem;
  align-items: start;
}
.dsm-intro h1 {
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.35rem);
  margin: 0 0 1rem;
}
.dsm-intro p {
  color: var(--text);
  font-size: 1.25rem;
  line-height: 1.6;
  margin: 0;
}
.dsm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.75rem 3rem;
}
.dsm-item {
  border-left: 2px solid var(--accent);
  padding-left: 1.25rem;
}
.dsm-item h3 {
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  color: var(--text);
  margin: 0 0 0.6em;
}
.dsm-item p {
  color: var(--text);
  margin: 0;
}
/* Kernfrage bricht bewusst das gleichförmige Raster auf: volle Breite,
   goldener statt grüner Akzentrand, größere Headline. */
.dsm-item-featured {
  grid-column: 1 / -1;
  border-left-color: var(--border);
  padding: 0.25rem 0 0.25rem 1.5rem;
}
.dsm-item-featured h3 {
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
}
.dsm-item-featured p {
  max-width: 65ch;
}
@media (max-width: 900px) {
  .dsm-item-featured { grid-column: 1; }
}
@media (max-width: 900px) {
  .dsm-layout { grid-template-columns: 1fr; }
  .dsm-grid { grid-template-columns: 1fr; }
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2rem 1.5rem;
  display: flex;
  justify-content: space-between;
  color: var(--text-muted);
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.9rem;
}
.footer-inner a {
  position: relative;
  display: inline-block;
  color: var(--text-muted);
}
.footer-inner a:hover { color: var(--accent-teal); }
.footer-inner a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.footer-inner a:hover::after {
  transform: scaleX(1);
}
.footer-links { display: flex; gap: 1.25rem; }

