/* ============================================================
   SONGSTORY — „Herzklang" Design System
   Hell · Warm · Verspielt · Emotional
   Lila × Türkis auf Cremeweiß · 100 % menschgemacht
   ============================================================ */

:root {
  /* Markenfarben */
  --purple:        #8b5cf6;
  --purple-deep:   #6d3df0;
  --purple-light:  #c4b5fd;
  --teal:          #14b8a6;
  --teal-deep:     #0d9488;
  --teal-light:    #7df0dd;
  --peach:         #ffb88a;
  --gold:          #f7b733;

  /* Flächen — hell & warm */
  --bg:            #fdfbf7;
  --bg-lav:        #f5f1fe;
  --bg-mint:       #eafaf5;
  --bg-peach:      #fff3ea;
  --card:          #ffffff;
  --line:          rgba(91, 61, 160, 0.12);
  --line-strong:   rgba(91, 61, 160, 0.22);

  /* Text */
  --ink:           #2b2150;
  --text:          #554c77;
  --text-dim:      #8e86ac;

  /* Signatur-Verlauf */
  --grad:          linear-gradient(92deg, var(--purple) 0%, var(--teal) 100%);
  --grad-soft:     linear-gradient(120deg, rgba(139,92,246,.12), rgba(20,184,166,.12));

  /* Schatten — weich & farbig */
  --shadow-sm:     0 6px 22px -6px rgba(91, 61, 160, 0.14);
  --shadow:        0 18px 50px -16px rgba(91, 61, 160, 0.22);
  --shadow-purple: 0 16px 44px -10px rgba(139, 92, 246, 0.4);
  --shadow-teal:   0 16px 44px -10px rgba(20, 184, 166, 0.35);

  /* Typografie */
  --font-display:  'Fraunces', Georgia, serif;
  --font-body:     'DM Sans', system-ui, -apple-system, sans-serif;
  --font-hand:     'Caveat', cursive;

  /* Layout */
  --container:     1180px;
  --radius:        26px;
  --radius-sm:     16px;

  /* Bewegung */
  --ease-out:      cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring:   cubic-bezier(0.34, 1.45, 0.4, 1);
}

/* ---------- Reset & Basis ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background:
    radial-gradient(1100px 750px at 88% -8%, rgba(20, 184, 166, 0.15), transparent 62%),
    radial-gradient(1100px 850px at -12% 6%, rgba(139, 92, 246, 0.16), transparent 62%),
    radial-gradient(850px 650px at 72% 42%, rgba(255, 184, 138, 0.11), transparent 65%),
    radial-gradient(950px 800px at 28% 112%, rgba(125, 240, 221, 0.16), transparent 62%),
    var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Feines Punktraster gibt dem Grund Papier-Textur */
body::before {
  content: ""; position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background-image: radial-gradient(rgba(91, 61, 160, 0.05) 1px, transparent 1.4px);
  background-size: 34px 34px;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
::selection { background: rgba(139, 92, 246, 0.25); color: var(--ink); }

/* ---------- Schwebende Pastell-Blasen ---------- */
.aurora { position: fixed; inset: 0; z-index: -2; overflow: hidden; pointer-events: none; }
.aurora::before, .aurora::after {
  content: ""; position: absolute; width: 52vw; height: 52vw;
  border-radius: 50%; filter: blur(100px); opacity: 0.65;
}
.aurora::before {
  background: radial-gradient(circle, rgba(196, 181, 253, 0.5), transparent 65%);
  top: -16vw; right: -10vw;
  animation: aurora-a 30s ease-in-out infinite alternate;
}
.aurora::after {
  background: radial-gradient(circle, rgba(125, 240, 221, 0.4), transparent 65%);
  bottom: -18vw; left: -12vw;
  animation: aurora-b 36s ease-in-out infinite alternate;
}
@keyframes aurora-a { to { transform: translate(-7vw, 8vh) scale(1.12); } }
@keyframes aurora-b { to { transform: translate(8vw, -7vh) scale(1.08); } }

/* ===========================================================================
   iOS/WebKit-Performance: filter:blur(100px) (Aurora) + backdrop-filter (Glas)
   zwingen Safari/WebKit, vor dem ersten Bild riesige Unschärfe-Ebenen zu rastern
   → 5–8s weiße Seite auf dem iPhone. Auf Mobil komplett abschalten.
   (Blink/Desktop rendert das mühelos und behält die Effekte.)
   =========================================================================== */
@media (max-width: 980px) {
  .aurora { display: none !important; }
  .hero-stage .blob-bg, .hero-video-stage .blob-bg { filter: none !important; }
  .site-header, .site-header.scrolled,
  .hero-dark .hero-badge, .hero-dark .btn-ghost,
  .cookie-notice {
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
  }
}

/* Der Faden der Geschichte: Hauptlinie hinter der Seite … */
.ribbon-bg {
  position: fixed; inset: 0; z-index: -1;
  width: 100%; height: 100%;
  pointer-events: none;
}
/* … und ein hauchzartes Geist-Abbild über den Karten,
   damit der Faden auch dort durchschimmert (inkl. Spitze & Funken) */
.ribbon-fg {
  position: fixed; inset: 0; z-index: 5;
  width: 100%; height: 100%;
  pointer-events: none;
}

/* Scroll-Fortschritt */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 100%;
  z-index: 1001; transform-origin: 0 50%; transform: scaleX(0);
  background: var(--grad); border-radius: 0 3px 3px 0;
}

/* ---------- Container & Sektionen ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

section { position: relative; padding: 110px 0; }
section.tight { padding: 64px 0; }

/* Abgerundete Pastell-Bänder */
.band {
  margin: 0 18px; border-radius: 44px;
  background: linear-gradient(135deg, var(--bg-lav) 0%, var(--bg-mint) 100%);
  overflow: hidden;
}
.band.peachy { background: linear-gradient(135deg, var(--bg-peach) 0%, var(--bg-lav) 100%); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--teal-deep);
  margin-bottom: 16px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; border-radius: 2px; background: var(--grad); }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 560;
  font-variation-settings: "SOFT" 60, "WONK" 1;
  line-height: 1.06; color: var(--ink);
  letter-spacing: -0.015em;
}
h1 { font-size: clamp(2.7rem, 6vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3.2rem); margin-bottom: 18px; }
h3 { font-size: 1.5rem; }

.lead { font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: var(--text); max-width: 620px; }

/* Akzentwörter: Verlauf + handgemalte Wellenlinie */
em.accent {
  font-style: italic; font-weight: 600;
  background: linear-gradient(92deg, var(--purple-deep), var(--teal-deep));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  position: relative; white-space: nowrap;
}
/* Bei wortweiser Animation ([data-split]) liegt der Text in inneren Spans —
   der Verlauf muss dort erneut angewendet werden, sonst bleibt er unsichtbar */
em.accent .w > span {
  background: linear-gradient(92deg, var(--purple-deep), var(--teal-deep));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
em.accent::after {
  content: ""; position: absolute; left: 1%; right: 1%; bottom: -0.12em; height: 0.24em;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='12' viewBox='0 0 120 12' preserveAspectRatio='none'%3E%3Cpath d='M2 8c12-6 24 4 36-2s24 4 36-2 24 4 44-2' fill='none' stroke='%2314b8a6' stroke-width='3.4' stroke-linecap='round' opacity='.65'/%3E%3C/svg%3E") no-repeat;
  background-size: 100% 100%;
  pointer-events: none;
}
@media (max-width: 600px) { em.accent { white-space: normal; } }

.hand {
  font-family: var(--font-hand); font-weight: 600;
  font-size: 1.55rem; line-height: 1.2; color: var(--purple-deep);
}

.center { text-align: center; }
.center .lead { margin-inline: auto; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: background 0.4s, box-shadow 0.4s, backdrop-filter 0.4s;
}
.site-header.scrolled {
  background: rgba(253, 251, 247, 0.82);
  -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
  box-shadow: 0 8px 32px -12px rgba(91, 61, 160, 0.18);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 78px; }
.nav-logo img { height: 40px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
  font-size: 0.97rem; font-weight: 600; color: var(--text);
  position: relative; transition: color 0.25s;
}
.nav-links a:hover, .nav-links a[aria-current] { color: var(--ink); }
.nav-links a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 100%; height: 2.5px; border-radius: 3px; background: var(--grad);
  transform: scaleX(0); transform-origin: 0 50%;
  transition: transform 0.35s var(--ease-out);
}
.nav-links a:not(.btn):hover::after,
.nav-links a[aria-current]:not(.btn)::after { transform: scaleX(1); }

.nav-toggle { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; color: var(--ink); }
.nav-toggle svg { width: 26px; height: 26px; }

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: fixed; inset: 78px 14px auto 14px; flex-direction: column;
    gap: 4px; padding: 18px 22px 24px;
    background: rgba(255, 255, 255, 0.97);
    border-radius: 24px; box-shadow: var(--shadow);
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: transform 0.35s var(--ease-out), opacity 0.3s;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 12px 6px; font-size: 1.1rem; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 30px; border-radius: 999px;
  font-weight: 700; font-size: 1rem; line-height: 1;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s, background 0.3s, border-color 0.3s;
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; flex: none; transition: transform 0.3s var(--ease-out); }
.btn:hover svg.arrow { transform: translateX(4px); }

.btn-primary {
  background: var(--grad); color: #fff;
  box-shadow: var(--shadow-purple);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 22px 50px -10px rgba(139, 92, 246, 0.5); }

.btn-ghost {
  background: #fff; color: var(--ink);
  border: 1.5px solid var(--line-strong);
  box-shadow: var(--shadow-sm);
}
.btn-ghost:hover { border-color: var(--teal); color: var(--teal-deep); transform: translateY(-2px); box-shadow: var(--shadow-teal); }

.btn-lg { padding: 19px 38px; font-size: 1.08rem; }
.btn-sm { padding: 11px 22px; font-size: 0.9rem; }

/* ---------- Hero ---------- */
.hero {
  min-height: 100svh; display: flex; align-items: flex-start;
  padding: clamp(130px, 17vh, 200px) 0 70px; overflow: visible;
}
/* Kompakter Hero: endet mit dem Inhalt, der nächste Abschnitt folgt zügig */
.hero.hero-compact { min-height: 0; padding-bottom: 48px; }
.hero-compact h1 { font-size: clamp(2.3rem, 3.8vw, 3.4rem); }
.hero-compact .lead { font-size: 1.05rem; margin-bottom: 28px; }
/* Abstand zum Herzstück: etwas Spannung vor dem Hauptprodukt */
#hauptsong { padding-top: 64px; }

/* Schnörkel-Trenner: ein kalligrafischer Federzug mit kleiner Öse —
   ein goldener Lichtfunke wandert die Kurve entlang */
.flourish-divider { display: flex; justify-content: center; margin: 2px 0 0; }
.flourish-divider svg {
  width: min(360px, 72vw); height: 64px; display: block; overflow: visible;
}
.flourish-divider .fd-base { opacity: 0.8; }
.flourish-divider .fd-spark {
  stroke-dasharray: 30 1200;
  stroke-dashoffset: 30;
  opacity: 0;
  filter: drop-shadow(0 0 6px rgba(247, 183, 51, 0.9));
  animation: fd-run 3.2s ease-in-out infinite;
}
@keyframes fd-run {
  0% { stroke-dashoffset: 30; opacity: 0; }
  12% { opacity: 1; }
  82% { opacity: 1; }
  100% { stroke-dashoffset: -640; opacity: 0; }
}

/* Mobil: Polaroid-Klebestreifen darf nicht in das Herzstück-Badge ragen */
@media (max-width: 900px) {
  .showcase .polaroid { margin-top: 30px; }
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  column-gap: 40px; align-items: center; width: 100%;
}
.hero-left { grid-column: 1; }
.hero-stage, .hero-video-stage { grid-column: 2; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 10px 20px; border-radius: 999px;
  background: #fff; box-shadow: var(--shadow-sm);
  font-size: 0.88rem; font-weight: 600; color: var(--text);
  margin-bottom: 26px;
}
.hero-badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--teal); box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.18);
  animation: pulse-dot 2.4s ease-in-out infinite;
}
@keyframes pulse-dot { 50% { opacity: 0.5; transform: scale(0.8); } }

.hero h1 { margin-bottom: 22px; }
.hero .lead { margin-bottom: 36px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 44px; }

/* Hero-Bühne (Startseite): großes Studio-Polaroid mit Chips & Funkeln */
.hero-stage {
  position: relative; min-height: 460px;
  display: flex; align-items: center; justify-content: center;
}
.hero-stage .hero-photo {
  position: relative; width: min(440px, 88%); z-index: 1;
}

/* Video-Bühne (/songs): das Original-Video als Hero-Star */
.hero-video-stage { position: relative; }
.hero-video-stage .ss-video { transform: rotate(1.6deg); }
.hero-video-stage .ss-video .vid-box { box-shadow: 0 36px 90px -22px rgba(43, 33, 80, 0.42); }
.hero-stage .blob-bg, .hero-video-stage .blob-bg {
  position: absolute; inset: 4% 0; z-index: 0;
  background: linear-gradient(135deg, rgba(196, 181, 253, 0.55), rgba(125, 240, 221, 0.5));
  border-radius: 58% 42% 55% 45% / 48% 55% 45% 52%;
  filter: blur(8px);
  animation: blob-morph 14s ease-in-out infinite alternate;
}
.hero-video-stage .blob-bg { inset: -7% -5%; }

/* Funkelnde Sterne */
.sparkle {
  position: absolute; pointer-events: none; z-index: 2;
  color: var(--gold);
  animation: twinkle 3.8s ease-in-out infinite;
}
.sparkle.lila { color: var(--purple); }
.sparkle.mint { color: var(--teal); }
.sparkle svg { width: 100%; height: 100%; display: block; }
@keyframes twinkle {
  0%, 100% { transform: scale(0.5) rotate(0deg); opacity: 0.3; }
  50% { transform: scale(1) rotate(22deg); opacity: 1; }
}
@keyframes blob-morph {
  0%   { border-radius: 58% 42% 55% 45% / 48% 55% 45% 52%; transform: rotate(0deg) scale(1); }
  100% { border-radius: 45% 55% 44% 56% / 55% 44% 56% 45%; transform: rotate(6deg) scale(1.05); }
}

/* Schwebende Info-Chips über der 3D-Bühne */
.float-chip {
  position: absolute; z-index: 2;
  background: #fff; border-radius: 18px; box-shadow: var(--shadow);
  padding: 13px 19px; display: flex; align-items: center; gap: 11px;
  font-size: 0.92rem; font-weight: 700; color: var(--ink);
  animation: chip-bob 5.5s ease-in-out infinite;
}
.float-chip .chip-icon {
  width: 34px; height: 34px; border-radius: 11px; flex: none;
  display: grid; place-items: center; color: #fff;
}
.float-chip .chip-icon.p { background: linear-gradient(135deg, var(--purple), var(--purple-deep)); }
.float-chip .chip-icon.t { background: linear-gradient(135deg, var(--teal), var(--teal-deep)); }
.float-chip .chip-icon.g { background: linear-gradient(135deg, var(--peach), var(--gold)); }
.float-chip .chip-icon svg { width: 17px; height: 17px; }
.float-chip small { display: block; font-weight: 500; color: var(--text-dim); font-size: 0.78rem; line-height: 1.2; }
@keyframes chip-bob {
  0%, 100% { transform: translateY(0) rotate(var(--rot, -2deg)); }
  50% { transform: translateY(-14px) rotate(var(--rot, -2deg)); }
}

/* Handschrift-Notiz mit Pfeil */
.hand-note {
  position: absolute; z-index: 2; pointer-events: none;
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  transform: rotate(-6deg);
}
.hand-note svg.squiggle-arrow { width: 52px; height: 44px; color: var(--purple); }

@media (max-width: 980px) {
  .hero { padding-top: 120px; }
  /* Mobil: Überschrift → Foto/Video → Buttons */
  .hero-grid { grid-template-columns: 1fr; grid-template-areas: "head" "stage" "cta"; }
  .hero-left { display: contents; }
  .hero-head { grid-area: head; }
  .hero-cta-block { grid-area: cta; }
  .hero-stage, .hero-video-stage { grid-area: stage; grid-column: auto; }
  /* Kompakter Hero: mobil eine Stufe kleiner, kein Größensprung */
  .hero.hero-compact h1 { font-size: clamp(1.9rem, 6.6vw, 2.6rem); }
  .hero-stage { min-height: 0; padding: 22px 0 48px; }
  .hero-stage .hero-photo { width: min(360px, 86%); }
  .hero-video-stage { margin: 16px 0 26px; }
  .hero h1 { font-size: clamp(2.4rem, 9vw, 3.2rem); }
  .float-chip { font-size: 0.78rem; padding: 9px 13px; border-radius: 14px; }
  .float-chip .chip-icon { width: 28px; height: 28px; border-radius: 9px; }
  /* Chips sicher im Sichtbereich halten */
  .float-chip[style*="right"] { right: 0 !important; }
  .float-chip[style*="left"] { left: 0 !important; }
  /* Die Handschrift-Notiz braucht Platz — auf kleinen Bühnen ausblenden */
  .hand-note { display: none; }
}

/* Trust-Leiste */
.trust-row {
  display: flex; flex-wrap: wrap; gap: 14px 36px; align-items: center;
  color: var(--text-dim); font-size: 0.95rem;
}
.trust-row .stars { display: inline-flex; gap: 2px; margin-right: 8px; }
.trust-item { display: inline-flex; align-items: center; gap: 9px; }
.trust-item svg:not(.star) { width: 17px; height: 17px; color: var(--teal-deep); }
.trust-item strong { color: var(--ink); font-weight: 700; }

.star { width: 16px; height: 16px; fill: var(--gold); }

/* Scroll-Hinweis */
.scroll-hint {
  position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--text-dim); font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
}
.scroll-hint .mouse { width: 24px; height: 38px; border: 2px solid var(--line-strong); border-radius: 14px; position: relative; }
.scroll-hint .mouse::after {
  content: ""; position: absolute; top: 7px; left: 50%; margin-left: -1.5px;
  width: 3px; height: 7px; border-radius: 3px; background: var(--teal);
  animation: scroll-dot 2s ease-in-out infinite;
}
@keyframes scroll-dot { 50% { transform: translateY(9px); opacity: 0.2; } }

/* ---------- Zahlen / Counter ---------- */
.stats {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 20px;
}
.stat {
  background: var(--card); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); padding: 38px 20px; text-align: center;
  transition: transform 0.35s var(--ease-spring), box-shadow 0.35s;
}
.stat:hover { transform: translateY(-6px) rotate(-1deg); box-shadow: var(--shadow); }
.stat:nth-child(even):hover { transform: translateY(-6px) rotate(1deg); }
.stat .num {
  font-family: var(--font-display); font-weight: 620;
  font-size: clamp(2.3rem, 4vw, 3.2rem); line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat .label { margin-top: 10px; color: var(--text-dim); font-size: 0.92rem; font-weight: 500; }

/* ---------- Prozess / Klanglinie ---------- */
.process { position: relative; }
.process-track {
  position: absolute; left: 50%; top: 0; bottom: 0; width: 3px;
  margin-left: -1.5px; background: rgba(91, 61, 160, 0.1);
  border-radius: 3px; overflow: hidden;
}
.process-track .fill {
  position: absolute; inset: 0;
  background: var(--grad);
  transform-origin: 0 0; transform: scaleY(var(--progress, 0));
}
.process-steps { position: relative; display: flex; flex-direction: column; gap: 76px; }
.process-step { display: grid; grid-template-columns: 1fr 88px 1fr; align-items: center; gap: 0 28px; }
.process-step .step-num {
  grid-column: 2; justify-self: center;
  width: 66px; height: 66px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 620;
  background: #fff; border: 2px solid var(--line);
  position: relative; z-index: 1; color: var(--text-dim);
  transition: border-color 0.5s, box-shadow 0.5s, color 0.5s, transform 0.5s var(--ease-spring);
}
.process-step.lit .step-num {
  border-color: var(--teal); color: var(--teal-deep);
  box-shadow: 0 10px 30px -8px rgba(20, 184, 166, 0.45);
  transform: scale(1.08);
}
.process-step .step-body { grid-column: 3; max-width: 430px; }
.process-step:nth-child(even) .step-body { grid-column: 1; grid-row: 1; justify-self: end; text-align: right; }
.process-step h3 { margin-bottom: 10px; }
.process-step p { color: var(--text); font-size: 1rem; }
.process-step .step-icon { width: 46px; height: 46px; margin-bottom: 14px; color: var(--purple); display: inline-block; }
.process-step .step-icon svg { width: 100%; height: 100%; }

@media (max-width: 760px) {
  .process-track { left: 32px; }
  .process-step { grid-template-columns: 66px 1fr; }
  .process-step .step-num { grid-column: 1; }
  .process-step .step-body,
  .process-step:nth-child(even) .step-body { grid-column: 2; grid-row: auto; justify-self: start; text-align: left; }
}

/* ---------- Karten ---------- */
.card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.35s, transform 0.35s var(--ease-out);
}
.card:hover { box-shadow: var(--shadow); }

/* Produktkarten */
.product-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px; margin-top: 56px;
}
.product-card {
  position: relative; padding: 44px 38px;
  display: flex; flex-direction: column;
  transform-style: preserve-3d; will-change: transform;
}
.product-card.featured {
  border: 2.5px solid transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, var(--purple), var(--teal)) border-box;
  box-shadow: 0 28px 70px -18px rgba(139, 92, 246, 0.35);
}
.product-flag {
  position: absolute; top: -16px; right: 26px;
  padding: 8px 17px; border-radius: 999px;
  background: var(--grad); color: #fff;
  font-size: 0.78rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 6px;
  box-shadow: var(--shadow-purple);
  transform: rotate(2deg);
}
.product-flag svg { width: 13px; height: 13px; }
.product-icon {
  width: 60px; height: 60px; border-radius: 18px;
  display: grid; place-items: center; margin-bottom: 22px;
  background: var(--grad-soft); color: var(--purple-deep);
  transform: rotate(-4deg);
}
.product-icon svg { width: 28px; height: 28px; }
.product-card h3 { font-size: 1.75rem; margin-bottom: 6px; }
.product-card .price { font-size: 1rem; color: var(--text-dim); margin-bottom: 16px; }
.product-card .price strong {
  font-family: var(--font-display); font-size: 1.9rem; font-weight: 620;
  color: var(--ink); margin-right: 6px;
}
.product-card p.desc { color: var(--text); margin-bottom: 22px; }
.feature-list { list-style: none; display: grid; gap: 12px; margin-bottom: 30px; }
.feature-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--text); font-size: 0.98rem; }
.feature-list svg { width: 20px; height: 20px; flex: none; margin-top: 2px; color: var(--teal); }
.product-card .btn { margin-top: auto; align-self: flex-start; }

/* ---------- Polaroids ---------- */
.polaroid {
  background: #fff; padding: 14px 14px 18px;
  border-radius: 6px;
  box-shadow: 0 24px 55px -18px rgba(43, 33, 80, 0.35);
  position: relative;
  transition: transform 0.45s var(--ease-spring), box-shadow 0.45s;
}
.polaroid.tilt-l { transform: rotate(-3deg); }
.polaroid.tilt-r { transform: rotate(2.5deg); }
.polaroid:hover { transform: rotate(0deg) translateY(-10px) scale(1.02); box-shadow: 0 36px 70px -20px rgba(43, 33, 80, 0.4); z-index: 2; }
.polaroid .ph {
  overflow: hidden; border-radius: 3px; background: var(--bg-lav);
}
.polaroid .ph img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.12);
  transition: transform 1.4s var(--ease-out);
}
.polaroid.revealed .ph img, .polaroid:hover .ph img { transform: scale(1.02); }
.polaroid .ph-caption {
  font-family: var(--font-hand); font-weight: 600; font-size: 1.45rem;
  color: var(--ink); text-align: center; padding-top: 13px;
  display: flex; align-items: center; justify-content: center; gap: 9px;
}
.polaroid .ph-caption svg { width: 19px; height: 19px; color: var(--purple); flex: none; }
.tape {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%) rotate(-3deg);
  width: 108px; height: 30px; border-radius: 3px;
  background: linear-gradient(92deg, rgba(196, 181, 253, 0.75), rgba(125, 240, 221, 0.75));
  box-shadow: 0 3px 8px rgba(43, 33, 80, 0.12);
}
.tape.tape-2 { transform: translateX(-50%) rotate(4deg); }

.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 44px; margin-top: 64px; max-width: 820px; margin-inline: auto; }
.team-grid .polaroid .ph { aspect-ratio: 4 / 4.5; }
.team-grid .team-text { text-align: center; margin-top: 22px; }
.team-grid .team-text .role {
  font-size: 0.8rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--teal-deep); margin-bottom: 8px;
}
.team-grid .team-text p { font-size: 0.97rem; color: var(--text); }

.live-grid { display: grid; grid-template-columns: 1.25fr 1fr; gap: 56px; margin-top: 70px; align-items: start; }
.live-grid .polaroid:first-child .ph { aspect-ratio: 16 / 10.5; }
.live-grid .polaroid:last-child .ph { aspect-ratio: 4 / 4.2; }
.live-grid .polaroid:last-child { margin-top: 70px; }
@media (max-width: 760px) {
  .live-grid { grid-template-columns: 1fr; gap: 44px; }
  .live-grid .polaroid:last-child { margin-top: 0; }
}

/* ---------- Video-Komponente (Bunny Stream) ---------- */
.ss-video { position: relative; cursor: pointer; }
.ss-video .vid-box {
  position: relative; overflow: hidden; border-radius: var(--radius);
  box-shadow: var(--shadow); aspect-ratio: 16 / 9.6; background: #241b4d;
}
.ss-video .vid-box > img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.ss-video:hover .vid-box > img { transform: scale(1.045); }
.ss-video .vid-box::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(43, 33, 80, 0.06) 40%, rgba(43, 33, 80, 0.55));
  transition: opacity 0.4s;
}
.ss-video .vid-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 86px; height: 86px; border-radius: 50%; z-index: 2;
  display: grid; place-items: center;
  background: var(--grad); color: #fff;
  box-shadow: 0 14px 40px -8px rgba(43, 33, 80, 0.55);
  transition: transform 0.35s var(--ease-spring);
}
.ss-video .vid-play svg { width: 30px; height: 30px; margin-left: 4px; }
.ss-video:hover .vid-play { transform: translate(-50%, -50%) scale(1.1); }
.ss-video .vid-play::after {
  content: ""; position: absolute; inset: -9px; border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.65);
  animation: pp-ring 2.2s ease-out infinite;
}
.ss-video .vid-badge {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 15px; border-radius: 999px;
  background: rgba(255, 255, 255, 0.92); color: var(--ink);
  font-size: 0.82rem; font-weight: 700;
}
.ss-video .vid-badge svg { width: 12px; height: 12px; color: var(--purple-deep); }
.ss-video .vid-caption {
  position: absolute; left: 22px; right: 22px; bottom: 18px; z-index: 2;
  color: #fff; font-size: 0.95rem; font-weight: 500;
  text-shadow: 0 2px 10px rgba(43, 33, 80, 0.5);
}
.ss-video iframe {
  position: absolute; inset: 0; width: 100%; height: 100%;
  border: 0; z-index: 3;
}
.ss-video.playing { cursor: default; }
.ss-video.playing .vid-play, .ss-video.playing .vid-badge,
.ss-video.playing .vid-caption, .ss-video.playing .vid-box::after { display: none; }
.ss-video.playing .vid-box { aspect-ratio: 16 / 9; }
.ss-video .vid-sub {
  margin-top: 14px; text-align: center;
  font-family: var(--font-hand); font-weight: 600; font-size: 1.35rem; color: var(--ink);
}

.video-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 56px; align-items: start; }
@media (max-width: 820px) { .video-grid { grid-template-columns: 1fr; } }
.video-feature { max-width: 880px; margin: 56px auto 0; }

/* ---------- Showcase: das Herzstück, besonders gerahmt ---------- */
.showcase {
  position: relative; padding: 58px 56px;
  border-radius: 44px;
  border: 3px solid transparent;
  background:
    radial-gradient(560px 320px at 8% -5%, rgba(196, 181, 253, 0.5), transparent 62%) padding-box,
    radial-gradient(560px 340px at 98% 108%, rgba(125, 240, 221, 0.5), transparent 62%) padding-box,
    radial-gradient(420px 260px at 85% 0%, rgba(255, 184, 138, 0.28), transparent 60%) padding-box,
    linear-gradient(150deg, var(--bg-lav) 0%, #fdfbff 45%, var(--bg-mint) 100%) padding-box,
    linear-gradient(135deg, var(--purple), var(--teal)) border-box;
  box-shadow: 0 44px 120px -34px rgba(124, 58, 237, 0.38);
}
.showcase .product-flag {
  top: -19px; left: 50%; right: auto;
  transform: translateX(-50%) rotate(-1deg);
  font-size: 0.85rem; padding: 10px 22px;
}
.showcase .two-col { gap: 52px; }
.showcase h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); }
@media (max-width: 700px) {
  .showcase { padding: 40px 22px 32px; border-radius: 32px; }
}

/* Lieferoptionen */
.delivery-row { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin: 16px 0 4px; }
.delivery-row .dlabel { font-size: 0.85rem; font-weight: 700; color: var(--text-dim); margin-right: 4px; }
.dchip {
  display: inline-flex; gap: 8px; align-items: center;
  padding: 9px 15px; border-radius: 999px;
  background: var(--bg-lav); font-size: 0.87rem; font-weight: 600; color: var(--ink);
}
.dchip svg { width: 16px; height: 16px; flex: none; color: var(--purple-deep); }

/* Namenssong als dezenter Hinweis */
.namens-hint {
  display: flex; flex-wrap: wrap; gap: 18px; align-items: center;
  padding: 24px 28px; margin-top: 28px;
  background: linear-gradient(120deg, #fff 35%, var(--bg-peach));
  border: 2px dashed rgba(247, 183, 51, 0.45);
}
.namens-hint .nh-icon {
  width: 48px; height: 48px; border-radius: 15px; flex: none;
  display: grid; place-items: center;
  background: var(--grad-soft); color: var(--purple-deep);
  transform: rotate(-4deg);
}
.namens-hint .nh-icon svg { width: 23px; height: 23px; }
.namens-hint .nh-text { flex: 1 1 320px; font-size: 0.97rem; color: var(--text); }
.namens-hint .nh-text strong { color: var(--ink); }

/* Polaroid in der 3D-Bühne (Foto von Felix) */
.polaroid.mini { padding: 10px 10px 13px; }
.polaroid.mini .ph-caption { font-size: 1.2rem; padding-top: 10px; gap: 7px; }
.polaroid.mini .ph-caption svg { width: 15px; height: 15px; }

/* Klassischer Bildrahmen (Produktseite) */
.img-frame { position: relative; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); }
.img-frame img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.12);
  transition: transform 1.4s var(--ease-out);
}
.img-frame.revealed img { transform: scale(1.02); }

/* ---------- Reveal-Utilities ---------- */
.reveal {
  opacity: 0; transform: translateY(34px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  transition-delay: var(--d, 0s);
}
.reveal.in { opacity: 1; transform: none; }

.pop {
  opacity: 0; transform: scale(0.85) translateY(20px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-spring);
  transition-delay: var(--d, 0s);
}
.pop.in { opacity: 1; transform: none; }

[data-split] .w {
  display: inline-block; overflow: hidden; vertical-align: bottom;
  /* großzügiger Innenabstand, damit Ober-/Unterlängen nie abgeschnitten werden */
  padding: 0.14em 0.08em 0.24em;
  margin: -0.14em -0.08em -0.24em;
}
[data-split] .w > span { display: inline-block; transform: translateY(135%); transition: transform 0.9s var(--ease-out); }
[data-split].in .w > span { transform: translateY(0); }
[data-split].split-done .w { overflow: visible; }

/* Hero-Inhalt SOFORT sichtbar — nicht erst per JS/Scroll einblenden (verhindert „leere Seite") */
.hero .reveal, .hero .pop, .hero [data-split] .w > span { opacity: 1; transform: none; }
.hero [data-split] .w { overflow: visible; }

[data-parallax] { will-change: transform; }

/* ---------- Audio-Player ---------- */
.ss-player {
  display: grid; grid-template-columns: 64px 1fr; gap: 18px;
  align-items: center; padding: 20px 22px;
}
.ss-player .pp {
  width: 64px; height: 64px; border-radius: 50%;
  display: grid; place-items: center; position: relative;
  background: var(--grad); color: #fff;
  box-shadow: var(--shadow-purple);
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s;
}
.ss-player .pp:hover { transform: scale(1.09) rotate(-3deg); }
.ss-player .pp svg { width: 24px; height: 24px; }
.ss-player .pp .ic-pause { display: none; }
.ss-player.playing .pp .ic-play { display: none; }
.ss-player.playing .pp .ic-pause { display: block; }
.ss-player.playing .pp::after {
  content: ""; position: absolute; inset: -7px; border-radius: 50%;
  border: 2px solid rgba(20, 184, 166, 0.55);
  animation: pp-ring 1.8s ease-out infinite;
}
@keyframes pp-ring { from { transform: scale(0.85); opacity: 1; } to { transform: scale(1.25); opacity: 0; } }

.ss-player .meta { min-width: 0; }
.ss-player .row1 { display: flex; justify-content: space-between; align-items: baseline; gap: 14px; margin-bottom: 2px; }
.ss-player .title { font-weight: 700; font-size: 1.02rem; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ss-player .time { font-size: 0.82rem; color: var(--text-dim); font-variant-numeric: tabular-nums; flex: none; }
.ss-player .sub { font-size: 0.85rem; color: var(--text-dim); margin-bottom: 8px; }
.ss-player .viz { width: 100%; height: 44px; display: block; cursor: pointer; border-radius: 6px; }

.player-stack { display: grid; gap: 18px; margin-top: 44px; }
.player-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(330px, 1fr)); gap: 22px; margin-top: 48px; }

/* ---------- Testimonial-Marquee ---------- */
.marquee {
  overflow: hidden; margin-top: 56px; padding: 20px 0 34px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.marquee-track { display: flex; gap: 26px; width: max-content; animation: marquee 48s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }

.review-card {
  width: 400px; max-width: 86vw; padding: 32px 32px 28px; flex: none;
  display: flex; flex-direction: column; gap: 16px;
  border-radius: var(--radius);
  background: #fff; box-shadow: var(--shadow-sm);
}
.marquee .review-card:nth-child(3n+1) { background: linear-gradient(150deg, #fff 30%, var(--bg-lav)); transform: rotate(-1.2deg); }
.marquee .review-card:nth-child(3n+2) { background: linear-gradient(150deg, #fff 30%, var(--bg-mint)); transform: rotate(1deg); }
.marquee .review-card:nth-child(3n)   { background: linear-gradient(150deg, #fff 30%, var(--bg-peach)); transform: rotate(-0.6deg); }
.review-card .stars { display: flex; gap: 3px; }
.review-card blockquote {
  font-family: var(--font-display); font-style: italic; font-weight: 480;
  font-size: 1.22rem; line-height: 1.45; color: var(--ink);
}
.review-card figcaption { color: var(--text-dim); font-size: 0.9rem; font-weight: 600; display: flex; align-items: center; gap: 10px; }
.review-card figcaption::before { content: ""; width: 22px; height: 2px; border-radius: 2px; background: var(--grad); }

.review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 26px; margin-top: 56px; }
.review-grid .review-card { width: auto; max-width: none; }
.review-grid .review-card:nth-child(1) { transform: rotate(-1deg); }
.review-grid .review-card:nth-child(2) { transform: rotate(0.8deg) translateY(14px); }
.review-grid .review-card:nth-child(3) { transform: rotate(-0.5deg); }

/* ---------- Vergleich KI vs. Mensch ---------- */
.versus { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 56px; align-items: start; }
.versus-col { padding: 42px 38px; border-radius: var(--radius); }
.versus-col.ki {
  background: repeating-linear-gradient(-45deg, #f4f2f8 0 14px, #efedf5 14px 28px);
  border: 2px dashed rgba(91, 61, 160, 0.2);
  color: var(--text-dim);
  transform: rotate(-0.8deg);
}
.versus-col.human {
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, var(--purple), var(--teal)) border-box;
  border: 2.5px solid transparent;
  box-shadow: 0 28px 70px -18px rgba(20, 184, 166, 0.3);
  transform: rotate(0.8deg);
}
.versus-col .vs-head { display: flex; align-items: center; gap: 14px; margin-bottom: 26px; }
.versus-col .vs-head svg { width: 32px; height: 32px; }
.versus-col.ki .vs-head svg { color: var(--text-dim); }
.versus-col.human .vs-head svg { color: var(--teal-deep); }
.versus-col h3 { font-size: 1.55rem; }
.versus-col.ki h3 { color: var(--text-dim); }
.versus-col ul { list-style: none; display: grid; gap: 15px; }
.versus-col li { display: flex; gap: 13px; align-items: flex-start; font-size: 0.99rem; }
.versus-col li svg { width: 20px; height: 20px; flex: none; margin-top: 2px; }
.versus-col.ki li svg { color: #e98989; }
.versus-col.human li { color: var(--text); }
.versus-col.human li svg { color: var(--teal); }
@media (max-width: 760px) { .versus { grid-template-columns: 1fr; } .versus-col { transform: none; } }

/* ---------- Genre-Wahl: kompakt, immer drei in einer Reihe ---------- */
.genre-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 40px; }
.genre-card { padding: 22px 16px; text-align: center; cursor: pointer; position: relative; border: 2.5px solid transparent; }
.genre-card .g-icon {
  width: 46px; height: 46px; margin: 0 auto 12px;
  border-radius: 50%; display: grid; place-items: center;
  background: var(--grad-soft); color: var(--purple-deep);
  transition: transform 0.35s var(--ease-spring), background 0.3s, color 0.3s;
}
.genre-card .g-icon svg { width: 21px; height: 21px; }
.genre-card:hover .g-icon { transform: scale(1.12) rotate(-6deg); }
.genre-card h3 { font-size: 1.15rem; margin-bottom: 3px; }
.genre-card p { font-size: 0.82rem; color: var(--text-dim); }
@media (max-width: 700px) {
  .genre-grid { gap: 10px; }
  .genre-card { padding: 15px 8px; border-radius: 18px; }
  .genre-card p { display: none; }
  .genre-card .g-icon { width: 40px; height: 40px; margin-bottom: 9px; }
  .genre-card h3 { font-size: 1rem; }
  .genre-card .g-check { top: 7px; right: 7px; width: 21px; height: 21px; }
  .genre-card .g-check svg { width: 11px; height: 11px; }
}
.genre-card .g-check {
  position: absolute; top: 14px; right: 14px;
  width: 28px; height: 28px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--grad); color: #fff;
  opacity: 0; transform: scale(0.4) rotate(-90deg);
  transition: opacity 0.3s, transform 0.35s var(--ease-spring);
}
.genre-card .g-check svg { width: 14px; height: 14px; }
.genre-card.active {
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, var(--purple), var(--teal)) border-box;
  box-shadow: 0 22px 55px -14px rgba(139, 92, 246, 0.35);
  transform: translateY(-4px);
}
.genre-card.active .g-icon { background: var(--grad); color: #fff; }
.genre-card.active .g-check { opacity: 1; transform: scale(1) rotate(0deg); }

.genre-panel { margin-top: 34px; padding: 34px; border-radius: var(--radius); background: linear-gradient(135deg, var(--bg-lav), var(--bg-mint)); }
.genre-panel .panel-head { display: flex; align-items: baseline; gap: 12px; margin-bottom: 22px; flex-wrap: wrap; }
.genre-panel .panel-head h3 { font-size: 1.35rem; }
.genre-panel .panel-head .hand { font-size: 1.4rem; color: var(--teal-deep); }
.genre-panel .player-stack { margin-top: 0; }

/* ---------- Formular ---------- */
.order-form { display: grid; gap: 22px; }
.form-card { padding: 44px 42px; }
@media (max-width: 600px) { .form-card { padding: 32px 24px; } }
.form-field { display: grid; gap: 9px; }
.form-field label { font-size: 0.93rem; font-weight: 700; color: var(--ink); }
.form-field label .req { color: var(--teal-deep); }
.form-field input, .form-field textarea {
  width: 100%; padding: 16px 18px;
  background: var(--bg-lav);
  border: 2px solid transparent; border-radius: var(--radius-sm);
  color: var(--ink); font: inherit; font-size: 1rem;
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
}
.form-field textarea { min-height: 150px; resize: vertical; }
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--text-dim); }
.form-field input:focus, .form-field textarea:focus {
  outline: none; border-color: var(--purple); background: #fff;
  box-shadow: 0 0 0 5px rgba(139, 92, 246, 0.14);
}
.form-note { font-size: 0.85rem; color: var(--text-dim); }
.form-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.form-success {
  display: none; padding: 18px 22px; border-radius: var(--radius-sm);
  background: var(--bg-mint); border: 2px solid rgba(20, 184, 166, 0.35);
  color: var(--teal-deep); font-size: 0.95rem; font-weight: 600;
  align-items: flex-start; gap: 12px;
}
.form-success.show { display: flex; }
.form-success svg { width: 20px; height: 20px; flex: none; margin-top: 2px; }

/* ---------- Produkt-Hero (Detailseite) ---------- */
.product-hero { display: grid; grid-template-columns: 1.08fr 0.92fr; gap: 56px; align-items: center; }
.product-hero .price-tag { display: flex; align-items: baseline; gap: 12px; margin: 24px 0 8px; }
.product-hero .price-tag .amount {
  font-family: var(--font-display); font-weight: 620;
  font-size: clamp(1.9rem, 2.6vw, 2.5rem);
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.product-hero .price-tag .vat { font-size: 0.88rem; color: var(--text-dim); }
@media (max-width: 900px) { .product-hero { grid-template-columns: 1fr; gap: 44px; } }

/* ---------- CTA-Finale ---------- */
.final-cta {
  position: relative; text-align: center; overflow: hidden;
  margin: 40px 18px 90px; padding: 110px 28px; border-radius: 48px;
  background:
    radial-gradient(700px 380px at 20% 0%, rgba(139, 92, 246, 0.18), transparent 60%),
    radial-gradient(700px 380px at 85% 100%, rgba(20, 184, 166, 0.18), transparent 60%),
    linear-gradient(135deg, var(--bg-lav), var(--bg-mint));
}
.final-cta .cta-wave { position: absolute; inset: auto 0 0 0; height: 55%; width: 100%; z-index: 0; pointer-events: none; }
.final-cta > .container { position: relative; z-index: 1; }
.final-cta h2 { font-size: clamp(2.3rem, 5vw, 3.8rem); max-width: 780px; margin-inline: auto; }
.final-cta .lead { margin: 18px auto 38px; }

/* ---------- Steps-Mini ---------- */
.mini-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 24px; margin-top: 56px; }
.mini-step { padding: 34px 28px; position: relative; }
.mini-step:nth-child(odd) { transform: rotate(-0.6deg); }
.mini-step:nth-child(even) { transform: rotate(0.6deg) translateY(10px); }
.mini-step .ms-num {
  font-family: var(--font-hand); font-size: 3rem; font-weight: 700; line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 12px;
}
.mini-step h3 { font-size: 1.28rem; margin-bottom: 8px; }
.mini-step p { font-size: 0.94rem; color: var(--text); }
.ms-icon {
  width: 50px; height: 50px; border-radius: 16px;
  display: grid; place-items: center; margin-bottom: 16px;
  background: var(--grad-soft); color: var(--purple-deep);
  transform: rotate(-4deg);
}
.ms-icon svg { width: 23px; height: 23px; }

/* ---------- Leitzitat ---------- */
.kicker-quote {
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: clamp(1.6rem, 3.4vw, 2.5rem); line-height: 1.35;
  max-width: 860px; margin: 0 auto; text-align: center; color: var(--ink);
}
.kicker-quote .q-mark { display: block; width: 46px; height: 46px; margin: 0 auto 20px; color: var(--purple); opacity: 0.85; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; gap: 44px; } }

/* ---------- Schwebende Noten-Doodles ---------- */
.doodle {
  position: absolute; pointer-events: none; color: var(--purple-light);
  animation: doodle-drift 13s ease-in-out infinite;
  z-index: 0;
}
.doodle.teal { color: var(--teal-light); }
.doodle.peachy { color: var(--peach); }
.doodle svg { width: 100%; height: 100%; }
@keyframes doodle-drift {
  0%, 100% { transform: translateY(0) rotate(-8deg); }
  50% { transform: translateY(-30px) rotate(10deg); }
}

/* ---------- Footer ---------- */
.site-footer {
  background: linear-gradient(180deg, transparent, rgba(139, 92, 246, 0.07)), var(--bg-lav);
  border-radius: 48px 48px 0 0; margin: 0 18px;
  padding: 44px 0 26px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px;
  padding-bottom: 30px; border-bottom: 2px solid rgba(91, 61, 160, 0.1);
  align-items: start;
}
.footer-cols2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.footer-brand img { height: 36px; margin-bottom: 12px; }
.footer-brand p { color: var(--text); font-size: 0.9rem; max-width: 320px; margin-bottom: 16px; }
.socials { display: flex; gap: 12px; }
.socials a {
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center;
  background: #fff; box-shadow: var(--shadow-sm); color: var(--text);
  transition: color 0.3s, transform 0.3s var(--ease-spring), box-shadow 0.3s;
}
.socials a:hover { color: var(--purple-deep); transform: translateY(-4px) rotate(-6deg); box-shadow: var(--shadow); }
.socials svg { width: 18px; height: 18px; }

.footer-col h4 {
  font-size: 0.76rem; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-dim); margin-bottom: 12px;
}
.footer-col ul { list-style: none; display: grid; gap: 8px; }
.footer-col a { color: var(--text); font-size: 0.92rem; font-weight: 500; transition: color 0.25s; }
.footer-col a:hover { color: var(--purple-deep); }

.footer-bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px; padding-top: 22px; }
.footer-bottom .copyright { color: var(--text-dim); font-size: 0.88rem; }
.payments { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.payments img {
  height: 27px; width: auto; border-radius: 6px;
  background: #fff; padding: 3px 7px; box-shadow: var(--shadow-sm);
}
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr; gap: 36px; } }

.divider-fade { height: 2px; border: 0; margin: 0 auto; max-width: var(--container); border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--line-strong), transparent); }

/* ---------- Variante B: dunkler Studio-Hero (index2) ---------- */
.hero-dark {
  position: relative; overflow: hidden;
  border-radius: 0 0 48px 48px;
  background: #0a0820;
  box-shadow: 0 34px 90px -30px rgba(18, 12, 60, 0.55);
}
/* Foto rechts verankert, links weich in die dunkle Fläche maskiert —
   so bleibt das Gesicht auf jeder Bildschirmbreite rechts und es gibt
   nie eine sichtbare Bildkante */
.hero-dark .hd-bg {
  position: absolute; top: 0; bottom: 0; right: 0; width: 72%;
  background: url("/media/image/business_hero.jpg") 68% 28% / cover no-repeat;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 34%);
  mask-image: linear-gradient(to right, transparent 0, #000 34%);
}
.hero-dark .hd-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right,
      rgba(10, 8, 32, 0.5) 0%,
      rgba(11, 9, 36, 0.42) 48%,
      rgba(10, 8, 32, 0.05) 80%),
    linear-gradient(to top, rgba(10, 8, 32, 0.55), transparent 30%);
}
@media (max-width: 980px) {
  /* Mobil wie das Original: grosses Foto, der Text liegt linksbündig
     auf dem abgedunkelten unteren Bildteil — Gesicht bleibt frei */
  .hero-dark { min-height: 0; padding: 0 0 36px; }
  .hero-dark .hd-bg {
    left: 0; right: 0; top: 0; bottom: auto; width: auto; height: 400px;
    background-position: 56% 16%;
    -webkit-mask-image: linear-gradient(to bottom, #000 70%, transparent 99%);
    mask-image: linear-gradient(to bottom, #000 70%, transparent 99%);
  }
  .hero-dark .hd-overlay {
    background:
      linear-gradient(to top,
        rgba(10, 8, 32, 0.96) 32%,
        rgba(10, 8, 32, 0.6) 52%,
        rgba(10, 8, 32, 0.12) 72%,
        transparent 100%);
  }
  .hero-dark .hero-head { padding-top: 150px; }
  .hero-dark h1 { font-size: clamp(1.7rem, 6.4vw, 2.1rem); }
  .hero-dark .lead { font-size: 0.93rem; margin-bottom: 18px; }
  .hero-dark .hero-badge { padding: 6px 13px; font-size: 0.76rem; margin-bottom: 14px; }
  .hero-dark .hero-ctas { margin-bottom: 20px; gap: 10px; }
  .hero-dark .hero-ctas .btn { padding: 13px 22px; font-size: 0.92rem; }
  .hero-dark .trust-row { font-size: 0.85rem; gap: 8px 22px; }
  .hero-dark .scroll-hint { display: none; }
}

/* Weicher Übergang: ein Hauch des Dunkels klingt unter dem Hero aus */
.dark-fade {
  height: 130px; margin: -56px 0 -34px;
  background: radial-gradient(62% 100% at 50% 0%, rgba(18, 12, 50, 0.16), transparent 72%);
  pointer-events: none;
}
/* Text ganz links am Bildschirmrand, wie auf einer Kinoleinwand */
.hero-dark { align-items: center; }
.hero-dark .container {
  position: relative; z-index: 2;
  max-width: none; width: 100%;
  padding: 0 5vw;
}
.hero-dark .hero-head { max-width: 620px; }
.hero-dark h1 { color: #fff; font-size: clamp(2.4rem, 4.2vw, 3.7rem); }
.hero-dark em.accent,
.hero-dark em.accent .w > span {
  background: linear-gradient(92deg, #d4a8ff, #7ffcf4);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-dark .lead { color: rgba(255, 255, 255, 0.8); }
.hero-dark .hero-badge {
  background: rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.88); box-shadow: none;
}
.hero-dark .btn-ghost {
  background: rgba(255, 255, 255, 0.06); color: #fff;
  border-color: rgba(255, 255, 255, 0.4); box-shadow: none;
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
}
.hero-dark .btn-ghost:hover { border-color: var(--teal-light); color: var(--teal-light); background: rgba(125, 240, 221, 0.08); }
.hero-dark .trust-row { color: rgba(255, 255, 255, 0.65); }
.hero-dark .trust-item strong { color: #fff; }
.hero-dark .trust-item svg:not(.star) { color: var(--teal-light); }
.hero-dark .scroll-hint { color: rgba(255, 255, 255, 0.55); }
.hero-dark .scroll-hint .mouse { border-color: rgba(255, 255, 255, 0.35); }
.hero-dark .float-chip { z-index: 2; }
@media (max-width: 980px) {
  .hero-dark { border-radius: 0 0 32px 32px; }
  .hero-dark .float-chip { display: none; }
}

/* Header über dunklem Hero: helle Navigation bis zum Scrollen —
   nur auf Desktop, mobil liegt das Menü im weißen Panel */
@media (min-width: 861px) {
  .header-dark:not(.scrolled) .nav-links a:not(.btn) { color: rgba(255, 255, 255, 0.85); }
  .header-dark:not(.scrolled) .nav-links a:not(.btn):hover,
  .header-dark:not(.scrolled) .nav-links a[aria-current]:not(.btn) { color: #fff; }
}
.header-dark:not(.scrolled) .nav-toggle { color: #fff; }

/* ---------- Mobile: kompaktere Abstände & Bildgrößen ---------- */
@media (max-width: 700px) {
  section { padding: 64px 0; }
  section.tight { padding: 42px 0; }
  .hero { padding: 104px 0 36px; }
  h2 { margin-bottom: 14px; }
  .stats { gap: 14px; }
  .stat { padding: 26px 14px; }
  .process { margin-top: 56px !important; }
  .process-steps { gap: 54px; }
  .product-grid, .review-grid, .mini-steps, .video-grid, .team-grid, .live-grid { margin-top: 40px; }
  .video-feature { margin-top: 40px; }
  .marquee { margin-top: 36px; padding-bottom: 24px; }
  .team-grid { gap: 34px; }
  .team-grid .polaroid { max-width: 300px; margin-inline: auto; }
  .live-grid .polaroid { max-width: 400px; margin-inline: auto; }
  .two-col { gap: 36px; }
  .final-cta { margin: 20px 12px 56px; padding: 74px 20px; border-radius: 36px; }
  .band { margin: 0 10px; border-radius: 32px; }
  .site-footer { margin: 0 10px; border-radius: 32px 32px 0 0; padding-top: 54px; }
  .genre-panel { padding: 22px 18px; }
  .form-card { padding: 30px 22px; }
}

/* ---------- Reduzierte Bewegung ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .pop, [data-split] .w > span { opacity: 1 !important; transform: none !important; }
  .marquee-track { animation: none; flex-wrap: wrap; width: auto; }
}


/* ============================================================
   ADAPTER: Bestands-Contentseiten (.ss-legal / CMS) im hellen Theme
   Wird aktiv, wenn components.js body.v2-light setzt.
   ============================================================ */
body.v2-light .ss-legal,
body.v2-light .cms-page-body {
  color: var(--text);
  padding-top: 96px;
}
body.v2-light .ss-legal h1,
body.v2-light .cms-page-body h1 {
  font-family: var(--font-display); color: var(--ink); text-shadow: none;
  font-size: clamp(2rem, 3.4vw, 2.8rem); font-weight: 560;
}
body.v2-light .ss-legal h2,
body.v2-light .cms-page-body h2 {
  font-family: var(--font-display); color: var(--purple-deep); font-weight: 600;
}
body.v2-light .ss-legal h3,
body.v2-light .cms-page-body h3 { color: var(--ink); }
body.v2-light .ss-legal p, body.v2-light .ss-legal li,
body.v2-light .cms-page-body p, body.v2-light .cms-page-body li {
  color: var(--text);
}
body.v2-light .ss-legal a, body.v2-light .cms-page-body a { color: var(--purple-deep); }
body.v2-light .ss-legal table, body.v2-light .cms-page-body table { color: var(--text); }

/* Streichpreis */
.price-was {
  color: var(--text-dim); text-decoration: line-through;
  font-size: 0.95rem; font-weight: 500; margin-left: 8px;
}


/* ---------- Cookie-Notice (v2, hell) ---------- */
.cookie-notice {
  position: fixed; bottom: 24px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  z-index: 9999;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-radius: 20px; padding: 18px 24px;
  display: flex; align-items: flex-start; gap: 20px;
  max-width: 700px; width: calc(100% - 48px);
  box-shadow: var(--shadow);
  font-size: 13px; line-height: 1.55; color: var(--text);
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s, transform 0.35s;
}
.cookie-notice.visible { opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.cookie-notice.hidden { opacity: 0; pointer-events: none; transform: translateX(-50%) translateY(20px); }
.cookie-notice p { flex: 1; margin: 0; }
.cookie-notice__actions { display: flex; gap: 8px; flex-shrink: 0; align-items: flex-start; }
.cn-btn {
  display: inline-flex; align-items: center; height: 38px; padding: 0 18px;
  border-radius: 999px; font-size: 13px; font-weight: 700; cursor: pointer;
  border: 1.5px solid var(--line-strong); background: #fff; color: var(--ink);
}
.cn-btn.cn-accept { background: linear-gradient(92deg, var(--purple), var(--teal)); color: #fff; border: 0; }
@media (max-width: 700px) {
  .cookie-notice { flex-direction: column; }
  .cookie-notice__actions { width: 100%; justify-content: flex-end; }
}


/* ---------- Live-Bewertungen (Produktseiten) ---------- */
.reviews-panel { margin-top: 36px; }
.reviews-toolbar {
  display: flex; flex-wrap: wrap; gap: 16px; justify-content: center;
  margin-bottom: 26px;
}
.reviews-toolbar label {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.88rem; font-weight: 700; color: var(--text-dim);
}
.reviews-toolbar select {
  font: inherit; font-weight: 600; color: var(--ink);
  padding: 10px 14px; border-radius: 12px;
  border: 1.5px solid var(--line-strong); background: #fff;
  box-shadow: var(--shadow-sm); cursor: pointer;
}
.reviews-list {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
  max-height: 640px; overflow-y: auto; padding: 4px;
}
@media (max-width: 760px) { .reviews-list { grid-template-columns: 1fr; max-height: 540px; } }
.review-item { padding: 22px 24px; }
.review-item-head { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 8px; }
.review-name { font-weight: 700; color: var(--ink); }
.review-item .stars { display: inline-flex; gap: 2px; }
.review-title { font-weight: 700; color: var(--ink); font-size: 0.95rem; margin-bottom: 4px; }
.review-text { font-size: 0.93rem; color: var(--text); margin: 0; }
.review-empty { grid-column: 1 / -1; text-align: center; color: var(--text-dim); padding: 30px 0; }
#toggleReviews .tr-chevron { transition: transform 0.3s; }
#toggleReviews.is-open .tr-chevron { transform: rotate(180deg); }

/* Anlass-Raster (Namenssong): 5 Kacheln */
.genre-grid.anlass5 { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 760px) { .genre-grid.anlass5 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .genre-grid.anlass5 { grid-template-columns: repeat(2, 1fr); } }

/* Meldung der Bestell-API */
.form-message {
  display: none; padding: 16px 20px; border-radius: var(--radius-sm);
  background: var(--bg-mint); border: 2px solid rgba(20, 184, 166, 0.35);
  color: var(--teal-deep); font-size: 0.95rem; font-weight: 600;
  margin-bottom: 18px;
}
.form-message.show { display: block; }
.form-message.is-error {
  background: rgba(220, 38, 38, 0.07); border-color: rgba(220, 38, 38, 0.35);
  color: #991b1b;
}
