/* ==========================================================================
   muveup.music Landingpage (index.html)
   Layout nach "Landingpage-hotfix" + "Add on" (Lokal/Musik-Toggle).
   Animationen: js/landing-motion.js (GSAP + ScrollTrigger).
   ========================================================================== */

@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/montserrat/Montserrat-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --lp-purple: #815da7;
  --lp-purple-dark: #6a4b8d;
  --lp-orange: #e38722;
  --lp-orange-dark: #c9731a;
  --lp-ink: #1d1d1f;
  --lp-text: #333;
  --lp-muted: #8a8a8a;
  --lp-light: #f5f5f5;
  --lp-card: #efefef;
  --lp-tile-idle: #e6e6e6;
  --lp-dark: #333333;
  --lp-darker: #262626;
  --lp-node: #5a5a5a;
  --lp-max: 1200px;
  --lp-gutter: clamp(20px, 5vw, 64px);
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
}

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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: 'Montserrat', Arial, sans-serif;
  background: var(--lp-light);
  color: var(--lp-text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, video, canvas { display: block; max-width: 100%; }

.lp-wrap {
  width: 100%;
  max-width: calc(var(--lp-max) + 2 * var(--lp-gutter));
  margin: 0 auto;
  padding-left: var(--lp-gutter);
  padding-right: var(--lp-gutter);
}

.lp-accent { color: var(--lp-orange); font-style: italic; font-weight: 500; }
.lp-accent--purple { color: var(--lp-purple); }

/* ---------- Buttons ---------- */
.btn,
.lp-btn {
  display: inline-block;
  background-color: var(--lp-purple);
  color: #fff;
  padding: 14px 32px;
  border: none;
  border-radius: 999px;
  font: 500 17px/1.2 'Montserrat', Arial, sans-serif;
  cursor: pointer;
  text-decoration: none;
  transition: transform 160ms var(--ease-out), background-color 200ms ease, box-shadow 200ms ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}
.lp-btn--orange { background-color: var(--lp-orange); }
.btn:active, .lp-btn:active { transform: scale(0.97); }
@media (hover: hover) and (pointer: fine) {
  .btn:hover, .lp-btn:hover { background-color: var(--lp-purple-dark); transform: translateY(-2px); }
  .lp-btn--orange:hover { background-color: var(--lp-orange-dark); }
}

.lp-pill-label {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1.5px solid var(--lp-purple);
  font-style: italic;
  font-size: 15px;
  color: var(--lp-muted);
}
.lp-pill-label--orange { border-color: var(--lp-orange); color: #fff; }

/* ---------- Loader ---------- */
.loader {
  position: fixed; inset: 0;
  background: var(--lp-purple);
  display: flex; justify-content: center; align-items: center;
  z-index: 9999; transition: opacity 0.5s ease-out;
}
.loader.hidden { opacity: 0; pointer-events: none; }
.spinner {
  width: 44px; height: 44px;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: lp-spin 0.9s linear infinite;
}
@keyframes lp-spin { to { transform: rotate(360deg); } }

/* ---------- Header ---------- */
header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  padding: 18px var(--lp-gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background: transparent;
  transition: background-color 250ms ease, box-shadow 250ms ease, padding 250ms var(--ease-out);
}
header.is-solid {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.08);
  padding-top: 12px; padding-bottom: 12px;
}
@supports (backdrop-filter: blur(8px)) {
  header.is-solid { background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(12px); }
}

.logo { font-size: 26px; font-weight: 600; letter-spacing: 0.02em; }
.logo a { text-decoration: none; color: #fff; transition: color 250ms ease; }
.logo .logo-muveup, .logo .logo-dot, .logo .logo-music-part { transition: color 300ms ease; }
header.is-solid .logo a { color: var(--lp-purple); }
@media (hover: hover) and (pointer: fine) {
  .logo a:hover .logo-dot, .logo a:hover .logo-music-part { color: var(--lp-orange); }
}

/* Burger + Slide-in-Panel auf allen Breakpoints (wie im Design) */
.burger-menu { position: relative; }
.burger-icon {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px; height: 20px;
  cursor: pointer;
  z-index: 1001;
  background: none; border: 0; padding: 0;
}
.burger-icon span {
  width: 100%; height: 2.5px;
  border-radius: 2px;
  background-color: #fff;
  transition: transform 250ms var(--ease-out), opacity 200ms ease, background-color 250ms ease;
}
header.is-solid .burger-icon span,
.burger-icon.active span { background-color: var(--lp-purple); }
.burger-icon.active span:nth-child(1) { transform: translateY(8.75px) rotate(45deg); }
.burger-icon.active span:nth-child(2) { opacity: 0; }
.burger-icon.active span:nth-child(3) { transform: translateY(-8.75px) rotate(-45deg); }

.top-nav {
  position: fixed;
  top: 0; right: 0;
  height: 100vh; height: 100dvh;
  width: min(320px, 86vw);
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 8px;
  padding: 32px;
  transform: translateX(100%);
  box-shadow: -6px 0 24px rgba(0, 0, 0, 0.12);
  z-index: 1000;
  transition: transform 350ms var(--ease-drawer, cubic-bezier(0.32, 0.72, 0, 1));
}
.top-nav.active { transform: translateX(0); }
.nav-link {
  color: var(--lp-purple);
  font-size: 22px;
  font-weight: 500;
  text-decoration: none;
  padding: 8px 0;
  transition: color 200ms ease;
}
@media (hover: hover) and (pointer: fine) { .nav-link:hover { color: var(--lp-orange); } }
.close-icon {
  display: block;
  position: absolute;
  top: 18px; right: 22px;
  font-size: 40px;
  line-height: 1;
  color: var(--lp-text);
  cursor: pointer;
  z-index: 1002;
}
.menu-overlay {
  position: fixed; inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 300ms ease, visibility 0s linear 300ms;
}
.menu-overlay.active { opacity: 1; visibility: visible; transition: opacity 300ms ease; }

/* Desktop: mobile.css zeigt die Links app-weit direkt im Header (Konvention aller Seiten).
   Über dem lila Hero weiß, danach lila. */
@media (min-width: 901px) {
  header { justify-content: space-between !important; }
  header:not(.is-solid) .top-nav .nav-link,
  header:not(.is-solid) .top-nav .muveup-lang-toggle { color: #fff; }
  html[lang] header:not(.is-solid) .top-nav .muveup-lang-toggle [data-part] { color: #fff; }
  header .top-nav { background: transparent; }
  header .top-nav .nav-link { font-size: 17px; }
  @media (hover: hover) and (pointer: fine) {
    header:not(.is-solid) .top-nav .nav-link:hover,
    header:not(.is-solid) .top-nav .muveup-lang-toggle:hover { color: var(--lp-orange); }
  }
}

/* Geteilte Banner/Modal-Styles (aus der alten Seite übernommen) */
.mobile-info-banner{display:none;position:fixed;top:0;left:0;width:100%;background:linear-gradient(135deg,#815da7,#704f91);color:#FFFFFF;text-align:center;padding:12px 40px 12px 15px;z-index:1001;box-shadow:0 2px 8px rgba(0,0,0,0.2);font-size:14px;font-weight:500;transform:translateY(-100%);transition:transform .5s ease-out,opacity .5s ease-out;align-items:center;justify-content:space-between}.mobile-info-banner.show{display:flex;transform:translateY(0);opacity:1}.mobile-info-banner p{margin:0;text-shadow:0 1px 3px rgba(0,0,0,0.2);text-align:left}.close-banner-btn{font-size:32px;font-weight:300;color:#FFFFFF;cursor:pointer;padding:0 20px 0 15px;line-height:1;transition:transform .2s ease}.close-banner-btn:hover{transform:scale(1.2)}body.mobile-banner-active header{top:54px}
#maintenanceBanner{position:fixed;top:0;left:0;right:0;z-index:10001;background:linear-gradient(135deg,#815da7,#704f91);color:#fff;padding:12px 20px;text-align:center;font-size:14px;font-weight:500;line-height:1.45;box-shadow:0 2px 8px rgba(0,0,0,0.15);box-sizing:border-box}body.maintenance-banner-active header{top:var(--maintenance-banner-height,48px)}body.maintenance-banner-active .menu-overlay{top:var(--maintenance-banner-height,48px)}body.maintenance-banner-active .top-nav{top:var(--maintenance-banner-height,48px);height:calc(100vh - var(--maintenance-banner-height,48px))}
.cookie-modal{display:none;position:fixed;top:0;left:0;width:100%;height:100%;background:rgba(0,0,0,0.6);z-index:2000;justify-content:center;align-items:center;backdrop-filter:blur(5px)}.cookie-modal.active{display:flex}.cookie-content{background:#FFFFFF;padding:30px;border-radius:15px;box-shadow:0 4px 25px rgba(0,0,0,0.2);max-width:500px;width:90%;text-align:center;font-family:'Montserrat',Arial,sans-serif;color:#333}.cookie-content h3{font-size:24px;color:#815da7;margin-bottom:15px;font-weight:600}.cookie-content p{font-size:16px;line-height:1.6;margin-bottom:20px}.cookie-options{display:flex;flex-direction:column;gap:10px;margin-bottom:20px;text-align:left}.cookie-options label{display:flex;align-items:center;gap:10px;font-size:16px}.cookie-options input[type="checkbox"]{width:20px;height:20px}.cookie-buttons{display:flex;gap:10px;justify-content:center;flex-wrap:wrap}.cookie-btn{background:#815da7;color:#FFFFFF;padding:8px 16px;border:none;border-radius:10px;font-size:14px;cursor:pointer;transition:background-color .3s ease,transform .3s ease;font-weight:600}.cookie-btn:hover{background:#e38722;transform:scale(1.05)}.cookie-btn.reject{background:#A0A0A0}.cookie-btn.reject:hover{background:#808080}.cookie-icon{width:80px;height:80px;margin:0 auto 15px}

/* ==========================================================================
   1. HERO: drei Pillen, ein Video, Vorhang-Reveal (Canvas)
   ========================================================================== */
/* lvh = Höhe ohne Adressleiste: beim Ein-/Ausblenden der Leiste bleibt kein Spalt unter dem Hero */
.lp-hero {
  position: relative;
  height: 100vh;
  height: 100lvh;
  min-height: 560px;
  background: var(--lp-purple);
  overflow: hidden;
}
/* Scroll-Strecke für den Vorhang: der Hero klebt per CSS-Sticky (kein GSAP-Pin, nichts wird umgehängt) */
html.lp-motion .lp-hero-wrap { position: relative; height: calc(100lvh + 220svh); }
html.lp-motion .lp-hero { position: sticky; top: 0; }
@media (max-width: 767px) {
  html.lp-motion .lp-hero-wrap { height: calc(100lvh + 160svh); }
  /* Kein Gummiband-Ziehen am Seitenanfang, sonst rutscht der Hero vor dem Vorhang weg */
  html.lp-motion { overscroll-behavior-y: none; }
}

/* Stage = PDF-Position der drei Balken; gezeichnet wird auf der Canvas über den ganzen Hero */
.lp-hero__stage {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 53vh;
  top: 53svh;
  width: min(62vw, 760px, calc(76svh * 1.306));
  aspect-ratio: 738 / 565;
  transform: translate(-50%, -50%);
}
.lp-hero__canvas {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  filter: grayscale(1) contrast(1.08) brightness(1.15);
}
/* Vorhang: lila Fläche mit drei Fenstern über dem Video, ohne Graufilter */
.lp-hero__curtain {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
}
.lp-hero__title { transform-origin: 0 50%; will-change: transform; }
.lp-hero__video { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }

.lp-hero__title {
  position: absolute;
  left: 86%;
  top: 47%;
  margin: 0;
  color: #fff;
  font-weight: 500;
  font-size: clamp(44px, 7.4vw, 104px);
  line-height: 1.12;
  letter-spacing: 0.04em;
  white-space: nowrap;
  z-index: 2;
}
.lp-hero__line { display: block; overflow: hidden; padding: 0 0.08em 0.06em 0; }
.lp-hero__line > span { display: inline-block; will-change: transform; }
.lp-hero__city { color: var(--lp-orange); font-style: italic; font-weight: 700; }

.lp-hero__hint {
  position: absolute;
  left: 50%;
  top: calc(100vh - 88px);
  top: calc(100svh - 88px);
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.lp-hero__hint-line {
  width: 2px; height: 40px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.3);
  overflow: hidden;
  position: relative;
}
.lp-hero__hint-line::after {
  content: '';
  position: absolute; left: 0; top: 0;
  width: 100%; height: 40%;
  background: #fff;
  animation: lp-hint 1.8s var(--ease-in-out) infinite;
}
@keyframes lp-hint {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(260%); }
}

/* Ohne JS / reduzierte Bewegung: Endzustand, Titel sichtbar */
@media (max-width: 767px) {
  /* Gleiches Seitenverhältnis wie Desktop (738:565); Titel überlappt unten rechts wie im Design */
  .lp-hero__stage { width: 88vw; top: 50vh; top: 50svh; }
  .lp-hero__title { left: auto; right: -2%; top: auto; bottom: -40%; text-align: right; font-size: clamp(44px, 13vw, 64px); }
}

/* ==========================================================================
   2. INTRO + Stats
   ========================================================================== */
.lp-intro { padding: clamp(72px, 10vw, 120px) 0 clamp(64px, 9vw, 110px); background: var(--lp-light); }
.lp-intro__headline {
  margin-top: 28px;
  font-size: clamp(30px, 4.2vw, 54px);
  line-height: 1.22;
  font-weight: 600;
  color: var(--lp-ink);
}
.lp-line { display: block; overflow: hidden; padding-bottom: 0.08em; }
.lp-line > span { display: inline-block; }
.lp-intro__text { margin-top: 28px; max-width: 560px; font-size: 16px; line-height: 1.7; }

.lp-stats {
  margin-top: clamp(48px, 7vw, 90px);
  display: grid;
  grid-template-columns: repeat(3, auto);
  justify-content: end;
  gap: clamp(32px, 7vw, 110px);
}
.lp-stat { text-align: center; }
.lp-stat__num {
  display: block;
  font-size: clamp(44px, 6vw, 84px);
  font-weight: 400;
  color: var(--lp-ink);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.lp-stat__label { display: block; margin-top: 10px; color: var(--lp-muted); font-size: clamp(13px, 1.4vw, 18px); }

@media (max-width: 767px) {
  .lp-stats { grid-template-columns: repeat(3, 1fr); justify-content: stretch; gap: 8px; }
  .lp-stat__num { font-size: clamp(28px, 9vw, 44px); }
}

/* ==========================================================================
   3. BACKED BY (Laufband)
   ========================================================================== */
.lp-backed { background: var(--lp-orange); padding: clamp(56px, 8vw, 96px) 0 clamp(48px, 7vw, 80px); overflow: hidden; }
.lp-backed__title { font-size: clamp(30px, 4vw, 48px); font-style: italic; font-weight: 700; color: var(--lp-ink); line-height: 1.15; }
.lp-marquee {
  margin-top: clamp(36px, 5vw, 60px);
  display: flex;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.lp-marquee__track {
  display: flex;
  flex-shrink: 0;
  gap: clamp(48px, 8vw, 120px);
  padding-right: clamp(48px, 8vw, 120px);
  animation: lp-marquee 28s linear infinite;
}
.lp-marquee__item { font-size: clamp(20px, 2.2vw, 28px); font-weight: 600; letter-spacing: 0.06em; color: #111; white-space: nowrap; }
@media (hover: hover) and (pointer: fine) { .lp-marquee:hover .lp-marquee__track { animation-play-state: paused; } }
@keyframes lp-marquee { to { transform: translateX(-100%); } }

/* ==========================================================================
   4. LOKAL / MUSIK
   ========================================================================== */
.lp-paths { background: var(--lp-light); padding: clamp(64px, 9vw, 110px) 0; }

.lp-toggle {
  position: relative;
  display: inline-flex;
  padding: 4px;
  border-radius: 999px;
  background: #e9e9e9;
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.12), 0 1px 0 #fff;
}
.lp-toggle__indicator {
  position: absolute;
  top: 4px; left: 4px;
  height: calc(100% - 8px);
  width: var(--lp-toggle-w, 110px);
  border-radius: 999px;
  background: var(--lp-purple);
  box-shadow: 0 4px 12px rgba(129, 93, 167, 0.35);
  transform: translateX(var(--lp-toggle-x, 0px));
  transition: transform 450ms var(--ease-out), width 450ms var(--ease-out), background-color 300ms ease, box-shadow 300ms ease;
}
.lp-toggle[data-active="musik"] .lp-toggle__indicator { background: var(--lp-orange); box-shadow: 0 4px 12px rgba(227, 135, 34, 0.35); }
.lp-toggle__btn {
  position: relative;
  z-index: 1;
  border: 0;
  background: none;
  padding: 12px 30px;
  border-radius: 999px;
  font: 500 18px/1 'Montserrat', Arial, sans-serif;
  color: #7a7a7a;
  cursor: pointer;
  transition: color 250ms ease;
}
.lp-toggle__btn[aria-selected="true"] { color: #fff; }
.lp-toggle__btn:focus-visible { outline: 2px solid var(--lp-ink); outline-offset: 2px; }

.lp-panel[hidden] { display: none; }
.lp-panel__head {
  margin-top: clamp(40px, 6vw, 80px);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  flex-wrap: wrap;
}
.lp-panel__title { font-size: clamp(30px, 4.2vw, 54px); line-height: 1.22; font-weight: 600; color: var(--lp-ink); }
.lp-panel__aside { text-align: right; max-width: 460px; margin-left: auto; }
.lp-panel__aside p { font-size: 17px; line-height: 1.55; margin-bottom: 18px; }

.lp-steps-card {
  position: relative;
  margin-top: clamp(48px, 6vw, 80px);
  padding: clamp(28px, 4vw, 44px);
  border-radius: 40px;
  background: var(--lp-card);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.04);
}
.lp-steps-card__intro { font-size: 17px; line-height: 1.55; max-width: 300px; }
.lp-steps-card__intro em { font-weight: 600; }

.lp-steps {
  --tile: clamp(120px, 15vw, 206px);
  display: grid;
  grid-template-columns: repeat(var(--cols), var(--tile));
  grid-template-rows: var(--tile) var(--tile);
  justify-content: end;
  margin-top: -40px;
}
.lp-steps--4 { --cols: 5; }
.lp-steps--3 { --cols: 4; }

.lp-step { display: contents; }
.lp-step__tile {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--tile);
  height: var(--tile);
  background: var(--lp-tile-idle);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
  transition: background-color 450ms var(--ease-out), box-shadow 450ms ease;
}
.lp-step__tile--arch { border-radius: calc(var(--tile) / 2) calc(var(--tile) / 2) 0 0; }
.lp-step__tile--cup { border-radius: 0 0 calc(var(--tile) / 2) calc(var(--tile) / 2); }
.lp-step__tile svg { width: 34%; height: 34%; color: #fff; transition: transform 450ms var(--ease-out); }
.lp-step__body { padding: 22px 0 0 22px; }
.lp-step__num {
  display: block;
  font-size: clamp(36px, 4.2vw, 60px);
  line-height: 1;
  font-weight: 500;
  color: #9a9a9a;
  transition: color 450ms ease;
}
.lp-step__title { display: block; margin-top: 6px; font-size: clamp(15px, 1.5vw, 20px); font-weight: 600; color: #8f8f8f; transition: color 450ms ease; }
.lp-step__text { margin-top: 8px; font-size: clamp(13px, 1.1vw, 15px); font-style: italic; line-height: 1.5; color: #9a9a9a; transition: color 450ms ease; }

.lp-step.is-on .lp-step__title { color: var(--lp-ink); }
.lp-step.is-on .lp-step__text { color: #444; }
.lp-step.is-on[data-tone="purple"] .lp-step__tile { background: var(--lp-purple); box-shadow: 0 14px 30px rgba(129, 93, 167, 0.35); }
.lp-step.is-on[data-tone="purple"] .lp-step__num { color: var(--lp-purple); }
.lp-step.is-on[data-tone="orange"] .lp-step__tile { background: var(--lp-orange); box-shadow: 0 14px 30px rgba(227, 135, 34, 0.35); }
.lp-step.is-on[data-tone="orange"] .lp-step__num { color: var(--lp-orange); }
.lp-step.is-on .lp-step__tile svg { transform: scale(1.06); }

/* Grid-Positionen: Kachel und Text nebeneinander, Treppe aus Bögen */
.lp-steps--4 .lp-step:nth-child(1) .lp-step__tile { grid-area: 2 / 1; }
.lp-steps--4 .lp-step:nth-child(1) .lp-step__body { grid-area: 2 / 2; }
.lp-steps--4 .lp-step:nth-child(2) .lp-step__tile { grid-area: 1 / 2; }
.lp-steps--4 .lp-step:nth-child(2) .lp-step__body { grid-area: 1 / 3; }
.lp-steps--4 .lp-step:nth-child(3) .lp-step__tile { grid-area: 2 / 3; }
.lp-steps--4 .lp-step:nth-child(3) .lp-step__body { grid-area: 2 / 4; }
.lp-steps--4 .lp-step:nth-child(4) .lp-step__tile { grid-area: 1 / 4; }
.lp-steps--4 .lp-step:nth-child(4) .lp-step__body { grid-area: 1 / 5; }
.lp-steps--3 .lp-step:nth-child(1) .lp-step__tile { grid-area: 1 / 1; }
.lp-steps--3 .lp-step:nth-child(1) .lp-step__body { grid-area: 1 / 2; }
.lp-steps--3 .lp-step:nth-child(2) .lp-step__tile { grid-area: 2 / 2; }
.lp-steps--3 .lp-step:nth-child(2) .lp-step__body { grid-area: 2 / 3; }
.lp-steps--3 .lp-step:nth-child(3) .lp-step__tile { grid-area: 1 / 3; }
.lp-steps--3 .lp-step:nth-child(3) .lp-step__body { grid-area: 1 / 4; }
.lp-steps--3 { margin-top: 24px; }

@media (max-width: 1023px) {
  .lp-panel__aside { text-align: left; margin-left: 0; }
  .lp-steps-card { border-radius: 28px; }
  .lp-steps, .lp-steps--4, .lp-steps--3 {
    --tile: 92px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 28px;
  }
  .lp-step { display: grid; grid-template-columns: var(--tile) 1fr; align-items: center; gap: 18px; }
  .lp-step .lp-step__tile, .lp-step .lp-step__body { grid-area: auto !important; }
  .lp-step__body { padding: 0; }
}

/* ==========================================================================
   5. VIELE MÖGLICHKEITEN
   ========================================================================== */
.lp-chances {
  position: relative;
  min-height: clamp(520px, 62vw, 680px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  text-align: left;
}
.lp-chances__bg {
  position: absolute;
  inset: -12% 0;
  background: url('../images/landing-cafe.jpg') center / cover no-repeat;
  filter: blur(2px);
  will-change: transform;
}
.lp-chances::after { content: ''; position: absolute; inset: 0; background: rgba(20, 16, 24, 0.55); }
.lp-chances__content { position: relative; z-index: 2; max-width: 680px; padding: 0 20px; }
.lp-chances__title { font-size: clamp(30px, 4vw, 48px); font-weight: 600; line-height: 1.25; }
.lp-chances__text { margin-top: 16px; font-size: 16px; line-height: 1.6; }
.lp-chances__cta { margin-top: 32px; text-align: center; }
.lp-chances__cta .lp-btn { min-width: 240px; text-align: center; }

.lp-tags { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.lp-tag-wrap { position: absolute; }
.lp-tag {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: clamp(14px, 1.3vw, 18px);
  font-weight: 600;
  color: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  white-space: nowrap;
}
.lp-tag--pop { background: #ef5f8f; }
.lp-tag--singer { background: #3f7fbf; }
.lp-tag--jazz { background: #7cc67e; }
.lp-tag--cafe { background: #f8c82c; color: #1d1d1f; }
.lp-tag--bar { background: #4ec3f4; }
.lp-tag-wrap--pop { left: 47%; top: 9%; }
.lp-tag-wrap--singer { left: 8%; top: 25%; }
.lp-tag-wrap--jazz { right: 9%; top: 25%; }
.lp-tag-wrap--cafe { left: 18%; top: 63%; }
.lp-tag-wrap--bar { right: 17%; top: 55%; }
@media (max-width: 767px) {
  .lp-tag-wrap--pop { left: auto; right: 6%; top: 44px; }
  .lp-tag-wrap--singer { left: 5%; top: 56px; }
  .lp-tag-wrap--jazz { right: 6%; top: auto; bottom: 16%; }
  .lp-tag-wrap--cafe { left: 6%; top: auto; bottom: 8%; }
  .lp-tag-wrap--bar { right: 34%; top: auto; bottom: 3%; }
  .lp-chances { padding: 130px 0 190px; }
}

/* ==========================================================================
   6. PROZESS
   ========================================================================== */
.lp-process { background: var(--lp-dark); color: #fff; padding: clamp(72px, 9vw, 110px) 0 clamp(72px, 9vw, 110px); }
.lp-process__title { margin-top: 28px; font-size: clamp(30px, 4.2vw, 54px); line-height: 1.22; font-weight: 600; }

.lp-flow {
  position: relative;
  margin-top: clamp(56px, 8vw, 110px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 270px minmax(0, 1fr);
  column-gap: clamp(24px, 5vw, 64px);
  row-gap: clamp(64px, 8vw, 96px);
}
.lp-flow__svg { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; pointer-events: none; }
.lp-flow__dash { fill: none; stroke: var(--lp-orange); stroke-width: 2; stroke-dasharray: 8 7; }
.lp-flow__mask-path { fill: none; stroke: #fff; stroke-width: 6; }
.lp-flow__arrow { fill: var(--lp-orange); }

.lp-flow__cards { grid-column: 1 / 3; display: flex; justify-content: flex-end; gap: clamp(24px, 5vw, 64px); }
.lp-profile {
  position: relative;
  width: 300px;
  max-width: 100%;
  padding: 14px 14px 16px;
  border-radius: 18px;
  background: #3d3d3d;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.lp-flow__cards .lp-profile:last-child { width: 270px; }
.lp-profile__banner { height: 88px; border-radius: 6px; background: var(--lp-purple); }
.lp-profile--artist .lp-profile__banner { background: var(--lp-orange); }
.lp-profile__avatar {
  position: absolute;
  left: 34px; top: 58px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--lp-orange);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
}
.lp-profile--artist .lp-profile__avatar { background: var(--lp-purple); }
.lp-profile__row { margin-top: 36px; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.lp-profile__name { font-weight: 600; font-size: 15px; }
.lp-profile__tags { display: flex; gap: 6px; }
.lp-profile__tags i { display: block; width: 50px; height: 16px; border-radius: 999px; }

.lp-node {
  grid-column: 2;
  position: relative;
  height: 136px;
  border-radius: 18px;
  background: var(--lp-node);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lp-node svg { width: 70px; height: 70px; overflow: visible; }

.lp-flow__text { align-self: center; max-width: 320px; font-size: 16px; line-height: 1.55; }
.lp-flow__text strong { display: block; font-style: italic; font-size: 19px; font-weight: 600; margin-bottom: 4px; }
.lp-flow__text .lp-flow__title { color: var(--lp-orange); }
.lp-flow__text--right { grid-column: 3; }
.lp-flow__text--left { grid-column: 1; justify-self: end; }

/* Feste Zeilen, damit die Schritte im Zickzack sitzen */
.lp-flow__cards { grid-row: 1; }
.lp-flow__text--s1 { grid-row: 1; }
.lp-node--2, .lp-flow__text--s2 { grid-row: 2; }
.lp-node--3, .lp-flow__text--s3 { grid-row: 3; }
.lp-node--4, .lp-flow__text--s4 { grid-row: 4; }

.lp-process__outro { margin-top: clamp(72px, 9vw, 120px); text-align: center; font-size: clamp(17px, 1.8vw, 22px); }
.lp-process__outro .lp-btn { margin-top: 20px; font-size: clamp(17px, 1.8vw, 22px); padding: 14px 44px; }


@media (max-width: 899px) {
  .lp-flow { grid-template-columns: 112px 1fr; column-gap: 20px; row-gap: 44px; }
  .lp-flow__cards { grid-column: 1 / -1; justify-content: flex-start; gap: 14px; }
  .lp-profile, .lp-flow__cards .lp-profile:last-child { width: calc(50% - 7px); padding: 10px 10px 12px; }
  .lp-profile__banner { height: 56px; }
  .lp-profile__avatar { left: 18px; top: 38px; width: 40px; height: 40px; }
  .lp-profile__row { margin-top: 26px; flex-direction: column; align-items: flex-start; gap: 8px; }
  .lp-profile__name { font-size: 13px; }
  .lp-profile__tags i { width: 34px; height: 12px; }
  .lp-flow__text--s1 { grid-column: 1 / -1; grid-row: 1; }
  .lp-flow__cards { grid-row: 2; }
  .lp-node { grid-column: 1; height: 100px; }
  .lp-node svg { width: 50px; height: 50px; }
  .lp-flow__text--s2, .lp-flow__text--s3, .lp-flow__text--s4 { grid-column: 2; justify-self: start; }
  .lp-node--2, .lp-flow__text--s2 { grid-row: 3; }
  .lp-node--3, .lp-flow__text--s3 { grid-row: 4; }
  .lp-node--4, .lp-flow__text--s4 { grid-row: 5; }
}

/* ==========================================================================
   7. AUFTRITTE (Instagram-Plakate)
   ========================================================================== */
.lp-gigs { background: var(--lp-light); padding: clamp(64px, 8vw, 96px) 0 clamp(48px, 6vw, 80px); overflow: hidden; }
.lp-gigs__title { font-size: clamp(30px, 4.2vw, 54px); line-height: 1.22; font-weight: 600; color: var(--lp-ink); }
.lp-gigs__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.lp-gigs__insta { color: var(--lp-purple); font-weight: 600; text-decoration: none; }
@media (hover: hover) and (pointer: fine) { .lp-gigs__insta:hover { color: var(--lp-orange); } }

.insta-slider { position: relative; margin-top: clamp(32px, 4vw, 48px); }
.insta-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: auto;
  padding: 10px var(--lp-gutter) 28px;
  scrollbar-width: none;
  cursor: grab;
}
.insta-track::-webkit-scrollbar { display: none; }
.insta-track:active { cursor: grabbing; }
.insta-card {
  flex: 0 0 auto;
  width: clamp(210px, 22vw, 290px);
  aspect-ratio: 4 / 5;
  border-radius: 14px;
  overflow: hidden;
  background: #ddd;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.14);
  transition: transform 300ms var(--ease-out), box-shadow 300ms ease;
}
.insta-card { display: block; user-select: none; -webkit-user-drag: none; }
.insta-card img { width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
@media (hover: hover) and (pointer: fine) {
  .insta-card:hover { transform: translateY(-6px); box-shadow: 0 22px 40px rgba(0, 0, 0, 0.2); }
}
.insta-nav {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.95);
  color: var(--lp-purple);
  font-size: 18px;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transition: opacity 200ms ease, transform 160ms var(--ease-out);
}
.insta-slider:hover .insta-nav, .insta-nav:focus-visible { opacity: 1; }
.insta-nav:active { transform: translateY(-50%) scale(0.95); }
.insta-nav.prev { left: 16px; }
.insta-nav.next { right: 16px; }
@media (hover: none), (max-width: 767px) { .insta-nav { display: none; } }

/* ==========================================================================
   8. COMMUNITY
   ========================================================================== */
.lp-community { background: var(--lp-darker); color: #fff; padding-top: clamp(64px, 8vw, 100px); overflow: hidden; }
.lp-community__title { font-size: clamp(30px, 4.2vw, 54px); line-height: 1.22; font-weight: 600; }
.lp-community__text { margin-top: 24px; font-size: 17px; }

.lp-arches {
  margin-top: clamp(56px, 8vw, 110px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.lp-arch {
  position: relative;
  height: clamp(420px, 48vw, 640px);
  border-radius: 999px 999px 0 0;
  overflow: hidden;
  background: var(--lp-orange);
  color: #fff;
  text-align: center;
  isolation: isolate;
  -webkit-tap-highlight-color: transparent;
}
.lp-arch--purple { background: var(--lp-purple); }
.lp-arch__img {
  transform-origin: 50% 100%;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  z-index: -1;
  transition: transform 700ms var(--ease-out);
}
.lp-arch__head { position: absolute; top: 10%; left: 0; right: 0; }
.lp-arch__foot { position: absolute; bottom: 5%; left: 0; right: 0; padding: 0 12px; }
.lp-arch__name { display: block; font-size: clamp(18px, 2vw, 26px); font-weight: 700; }
.lp-arch__meta { display: block; margin-top: 4px; font-size: clamp(13px, 1.3vw, 17px); }
.lp-arch__credit { display: block; margin-top: 6px; font-size: 10px; opacity: 0.85; }
.lp-arch__smile { display: block; font-size: clamp(32px, 3.4vw, 46px); font-weight: 500; margin-bottom: 16px; }
.lp-arch__you { font-size: clamp(18px, 2vw, 26px); font-weight: 700; }
.lp-arch--you { display: block; text-decoration: none; }
.lp-arch--you .lp-arch__foot { bottom: 14%; }

.lp-arch__quote {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 clamp(16px, 2.2vw, 32px) 18%;
  background: linear-gradient(180deg, rgba(20, 14, 26, 0) 20%, rgba(20, 14, 26, 0.88) 70%);
  text-align: left;
  opacity: 0;
  transition: opacity 300ms ease;
}
.lp-arch__quote blockquote {
  font-size: clamp(15px, 1.45vw, 19px);
  line-height: 1.5;
  font-style: italic;
  font-weight: 500;
  transform: translateY(16px);
  transition: transform 450ms var(--ease-out);
}
.lp-arch__quote blockquote::before {
  content: '“';
  display: block;
  font-size: 64px;
  line-height: 0.6;
  font-style: normal;
  color: var(--lp-orange);
  margin-bottom: 8px;
}
.lp-arch--purple .lp-arch__quote blockquote::before { color: #c9a8ec; }
.lp-arch__quote cite { display: block; margin-top: 14px; font-style: normal; font-weight: 700; font-size: 14px; }
.lp-arch__tap {
  position: absolute;
  z-index: 2;
  right: 14px; bottom: 14px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--lp-ink);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 700; font-family: Georgia, serif;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: transform 250ms var(--ease-out), opacity 200ms ease;
}
.lp-arch.is-open .lp-arch__quote { opacity: 1; }
.lp-arch.is-open .lp-arch__quote blockquote { transform: translateY(0); }
.lp-arch.is-open .lp-arch__tap { opacity: 0; transform: scale(0.9); }
.lp-arch[data-quote] { cursor: pointer; }
.lp-arch[data-quote]:focus-visible { outline: 3px solid #fff; outline-offset: -6px; }
@media (hover: hover) and (pointer: fine) {
  .lp-arch[data-quote]:hover .lp-arch__quote { opacity: 1; }
  .lp-arch[data-quote]:hover .lp-arch__quote blockquote { transform: translateY(0); }
  .lp-arch[data-quote]:hover .lp-arch__tap { opacity: 0; }
  .lp-arch:hover .lp-arch__img { transform: scale(1.04); }
}

/* Kathrina: Zitatkarte ohne Foto */
.lp-arch--text .lp-arch__statement {
  position: absolute;
  inset: 26% 12% 9%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: left;
}
.lp-arch--text blockquote {
  font-size: clamp(16px, 1.55vw, 21px);
  line-height: 1.5;
  font-style: italic;
  font-weight: 500;
  margin-bottom: 22px;
}
.lp-arch--text blockquote::before {
  content: '“';
  display: block;
  font-size: 72px;
  line-height: 0.6;
  font-style: normal;
  color: #d9bff2;
  margin-bottom: 10px;
}

/* Mobil: alle Bögen in einer Reihe als Auto-Slide-Karussell (js/landing-motion.js) */
@media (max-width: 767px) {
  .lp-arches {
    position: relative;
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0 16vw;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .lp-arches::-webkit-scrollbar { display: none; }
  .lp-arch {
    flex: 0 0 68vw;
    height: min(118vw, 460px);
    scroll-snap-align: center;
    transform: scale(0.92);
    filter: brightness(0.8);
    transition: transform 400ms var(--ease-out), filter 400ms ease;
  }
  .lp-arch.is-active { transform: scale(1); filter: none; }
  .lp-arches.is-jumping .lp-arch { transition: none; }
  .lp-arch__head { top: 11%; }
  .lp-arch--text blockquote { font-size: 15px; }
}
@media (max-width: 767px) and (prefers-reduced-motion: reduce) {
  .lp-arch { transition: none; }
}

/* ==========================================================================
   9. AKKORDEON (Über uns + FAQ)
   ========================================================================== */
.lp-acc { background: var(--lp-light); border-top: 1px solid #3a3a3a; }
.lp-acc__item, .lp-acc__label { border-bottom: 1px solid #3a3a3a; }
.lp-acc__item > summary,
.lp-acc__label {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: clamp(26px, 3.4vw, 42px) var(--lp-gutter);
  font-size: clamp(22px, 2.6vw, 34px);
  font-weight: 600;
  color: var(--lp-ink);
  cursor: pointer;
  transition: color 200ms ease;
}
.lp-acc__item > summary::-webkit-details-marker { display: none; }
.lp-acc__label { cursor: default; color: var(--lp-orange); }
@media (hover: hover) and (pointer: fine) { .lp-acc__item > summary:hover { color: var(--lp-purple); } }
.lp-acc__item > summary:focus-visible { outline: 2px solid var(--lp-purple); outline-offset: -4px; }

.lp-plus { position: relative; flex: 0 0 auto; width: 26px; height: 26px; transition: transform 300ms var(--ease-out); }
.lp-plus::before, .lp-plus::after {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  width: 100%; height: 2px;
  background: currentColor;
  transform: translate(-50%, -50%);
}
.lp-plus::after { transform: translate(-50%, -50%) rotate(90deg); }
.lp-acc__item[open] > summary .lp-plus { transform: rotate(45deg); }
.lp-acc__item.is-closing > summary .lp-plus { transform: none; }

.lp-acc__body { overflow: hidden; }
/* Unterpunkte laufen über die volle Breite, ihr Plus liegt unter dem großen Plus; nur Fließtext bleibt lesbar schmal */
.lp-acc__inner { padding: 0 var(--lp-gutter) clamp(28px, 4vw, 48px); }
.lp-acc__inner > p, .faq-answer { max-width: 860px; }
.lp-acc__inner p { font-size: 17px; line-height: 1.7; margin-bottom: 14px; }
.lp-acc__inner a:not(.lp-btn) { color: var(--lp-purple); }
.lp-acc__inner .lp-btn { margin-top: 10px; }
.lp-acc__more { display: inline-block; margin-top: 20px; font-weight: 600; color: var(--lp-purple); text-decoration: none; }

.faq-item { border-bottom: 1px solid #ddd; }
.faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--lp-text);
  cursor: pointer;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 24px; font-weight: 400; color: var(--lp-purple); transition: transform 300ms var(--ease-out); }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item.is-closing summary::after { transform: none; }
.faq-answer { padding: 0 0 18px; font-size: 16px; line-height: 1.7; color: #555; }
.faq-answer ol, .faq-answer ul { padding-left: 20px; margin: 8px 0; }
.faq-answer li { margin-bottom: 6px; }

/* ==========================================================================
   10. NEWSLETTER + FOOTER
   ========================================================================== */
.lp-news { background: var(--lp-purple); color: #fff; padding: clamp(72px, 9vw, 110px) 0; }
.lp-news__grid { display: grid; grid-template-columns: 1fr minmax(0, 460px); gap: 40px; align-items: center; }
.lp-news__title { font-size: clamp(28px, 3.4vw, 44px); font-weight: 600; line-height: 1.3; }

.newsletter-form { display: flex; flex-direction: column; gap: 12px; }
.lp-field {
  position: relative;
  display: flex;
  align-items: center;
  border: 1.5px solid var(--lp-orange);
  border-radius: 999px;
  transition: border-color 200ms ease, background-color 200ms ease;
}
.lp-field:focus-within { border-color: #fff; background: rgba(255, 255, 255, 0.08); }
.lp-field input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: 0;
  outline: 0;
  color: #fff;
  padding: 16px 26px;
  font: 400 17px/1.2 'Montserrat', Arial, sans-serif;
}
.lp-field input::placeholder { color: rgba(255, 255, 255, 0.85); }
.lp-field--small input { padding: 12px 26px; font-size: 15px; }
.lp-send {
  flex: 0 0 auto;
  width: 52px; height: 52px;
  margin-right: 4px;
  border-radius: 50%;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: transform 200ms var(--ease-out), background-color 200ms ease;
}
.lp-send svg { width: 30px; height: 30px; }
@media (hover: hover) and (pointer: fine) { .lp-send:hover { background: rgba(255, 255, 255, 0.14); transform: translateX(3px); } }
.lp-send:active { transform: scale(0.94); }
.lp-send.muveup-btn-loading { padding: 0; overflow: hidden; font-size: 0; }

.checkbox-group { display: flex; gap: 10px; align-items: flex-start; margin-top: 4px; padding: 0 10px; }
.checkbox-group input { margin-top: 3px; accent-color: var(--lp-orange); }
.checkbox-group label { font-size: 12px; line-height: 1.5; color: #fff; }
.checkbox-group a { color: #fff; text-decoration: underline; }
#newsletterMessage { margin-top: 6px; padding: 0 10px; font-weight: 500; font-size: 14px; }

footer {
  background: var(--lp-darker);
  color: #bdbdbd;
  text-align: center;
  padding: 18px 20px;
  font-size: 13px;
  line-height: 1.7;
  position: relative;
  z-index: 5;
}
footer a { color: #fff; text-decoration: underline; text-underline-offset: 2px; }
footer .lp-footer-social { text-decoration: none; }

@media (max-width: 899px) {
  .lp-news__grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Reveal-Basis: nur wenn JS + Bewegung aktiv (Klasse vom Motion-Script)
   ========================================================================== */
html.lp-motion [data-reveal] { opacity: 0; transform: translateY(24px); }
html.lp-motion .lp-line > span { transform: translateY(105%); }

@media (prefers-reduced-motion: reduce) {
  .lp-marquee__track { animation-duration: 80s; }
  .lp-hero__hint-line::after { animation: none; }
  .lp-arch__img, .lp-arch__quote blockquote { transition: none; }
}
