/* Contentpilot Landingpage - Branding aus dem SaaS-Produkt ("Violet Studio")
   Akzente: Violett #8b5cf6, Cyan #22d3ee, Rot-Orange (Fragen-Flow) #ff6b4a */

@font-face {
  font-family: "Satoshi";
  src: url("fonts/Satoshi-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Satoshi";
  src: url("fonts/Satoshi-Medium.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Satoshi";
  src: url("fonts/Satoshi-Bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}

:root {
  --bg: #0e0e12;
  --surface: #16161c;
  --surface2: #1d1d25;
  --border: #2a2a33;
  --text: #f4f4f6;
  --muted: #8c8c99;
  --violet: #8b5cf6;
  --cyan: #22d3ee;
  --flame: #ff6b4a;
  --flame2: #fb923c;
  --success: #34d399;
  --danger: #f87171;
  --radius: 14px;
  --grad: linear-gradient(100deg, var(--violet), #c084fc 40%, var(--flame));
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: "Satoshi", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
::selection {
  background: rgba(139, 92, 246, 0.4);
}
img,
svg {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
}

/* ── Hintergrund: Grid + Aurora-Orbs ─────────────────────────── */
.bg-fx {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(139, 92, 246, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 92, 246, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, #000 30%, transparent 75%);
}
.orb {
  position: fixed;
  z-index: -1;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
  pointer-events: none;
  will-change: transform;
}
.orb-violet {
  width: 560px;
  height: 560px;
  top: -180px;
  left: -120px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.55), transparent 65%);
  animation: orb-a 22s ease-in-out infinite alternate;
}
.orb-flame {
  width: 460px;
  height: 460px;
  top: 20vh;
  right: -160px;
  background: radial-gradient(circle, rgba(255, 107, 74, 0.4), transparent 65%);
  animation: orb-b 26s ease-in-out infinite alternate;
}
.orb-cyan {
  width: 380px;
  height: 380px;
  bottom: -140px;
  left: 30vw;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.28), transparent 65%);
  animation: orb-c 30s ease-in-out infinite alternate;
}
@keyframes orb-a {
  to {
    transform: translate(90px, 70px) scale(1.12);
  }
}
@keyframes orb-b {
  to {
    transform: translate(-70px, 90px) scale(0.94);
  }
}
@keyframes orb-c {
  to {
    transform: translate(60px, -60px) scale(1.08);
  }
}

/* ── Scroll-Progress + Nav ───────────────────────────────────── */
.progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: var(--grad);
  z-index: 60;
  box-shadow: 0 0 12px rgba(255, 107, 74, 0.6);
}
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px clamp(16px, 4vw, 40px);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(14, 14, 18, 0.72);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}
.nav.scrolled {
  border-bottom-color: var(--border);
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.15rem;
  text-decoration: none;
  letter-spacing: -0.02em;
}
.logo-mark {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: var(--grad);
  display: grid;
  place-items: center;
  color: #0e0e12;
  box-shadow: 0 0 18px rgba(139, 92, 246, 0.55);
}
.logo-mark svg {
  width: 17px;
  height: 17px;
}
.nav-links {
  display: flex;
  gap: 26px;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--text);
}
.nav-links a.btn-primary,
.nav-links a.btn-primary:hover {
  color: #0e0e12;
}
@media (max-width: 760px) {
  .nav-links a:not(.btn) {
    display: none;
  }
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 26px;
  border-radius: 999px;
  border: none;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary {
  background: var(--grad);
  color: #0e0e12;
  box-shadow: 0 4px 30px rgba(139, 92, 246, 0.45);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(255, 107, 74, 0.45);
}
.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.55) 50%, transparent 60%);
  transform: translateX(-120%);
  animation: sheen 4.5s ease-in-out infinite;
}
@keyframes sheen {
  0%, 60% {
    transform: translateX(-120%);
  }
  75%, 100% {
    transform: translateX(120%);
  }
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  border-color: var(--violet);
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.25);
}
.nav .btn {
  padding: 9px 20px;
  font-size: 0.92rem;
}

/* ── Layout-Bausteine ────────────────────────────────────────── */
.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 40px);
}
section {
  padding: clamp(70px, 10vw, 120px) 0;
  position: relative;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 18px;
}
.kicker.flame {
  color: var(--flame);
}
.kicker::before {
  content: "";
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}
h1,
h2,
h3 {
  letter-spacing: -0.03em;
  line-height: 1.12;
  font-weight: 700;
}
h2 {
  font-size: clamp(1.9rem, 4.4vw, 2.9rem);
  margin-bottom: 16px;
}
.sub {
  color: var(--muted);
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
  max-width: 640px;
}
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.center {
  text-align: center;
}
.center .sub {
  margin: 0 auto;
}

/* ── Reveal-Animationen ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }
.reveal[data-delay="4"] { transition-delay: 0.4s; }
.reveal[data-delay="5"] { transition-delay: 0.5s; }

/* ── Hero (zentriert, mit grossem Produkt-Screenshot) ────────── */
.hero {
  padding-top: 150px;
  padding-bottom: 30px;
  text-align: center;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 16px;
  border-radius: 999px;
  border: 1px solid rgba(139, 92, 246, 0.4);
  background: rgba(139, 92, 246, 0.1);
  font-size: 0.88rem;
  font-weight: 500;
  color: #c4b5fd;
  margin-bottom: 26px;
}
.badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.6);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  70% {
    box-shadow: 0 0 0 9px rgba(52, 211, 153, 0);
  }
}
.hero h1 {
  font-size: clamp(2.6rem, 6.4vw, 4.4rem);
  margin: 0 auto 22px;
  max-width: 860px;
}
.hero .sub {
  margin: 0 auto 34px;
  max-width: 700px;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.hero-note {
  margin-top: 18px;
  font-size: 0.88rem;
  color: var(--muted);
}
.hero-note strong {
  color: var(--text);
}

/* grosses Hero-Bild: echtes Cockpit im Browser-Rahmen, 3D-Kippung */
.hero-stage {
  perspective: 1200px;
  margin-top: 64px;
  position: relative;
}
.hero-shot {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  transform: rotateX(14deg) scale(0.97);
  transform-origin: center top;
  will-change: transform;
  transition: transform 0.1s linear;
}
.hero-glow {
  position: absolute;
  inset: -8% -12%;
  background:
    radial-gradient(ellipse 60% 55% at 30% 60%, rgba(139, 92, 246, 0.32), transparent 65%),
    radial-gradient(ellipse 55% 50% at 75% 45%, rgba(255, 107, 74, 0.22), transparent 65%);
  filter: blur(30px);
  z-index: -1;
}

/* Browser-Rahmen fuer Screenshots */
.browser {
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: #101016;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6), 0 0 70px rgba(139, 92, 246, 0.14);
}
.browser-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 11px 16px;
  background: #15151b;
  border-bottom: 1px solid var(--border);
}
.browser-bar i {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--border);
}
.browser-bar i:nth-child(1) {
  background: rgba(255, 107, 74, 0.75);
}
.browser-bar i:nth-child(2) {
  background: rgba(251, 191, 36, 0.6);
}
.browser-bar i:nth-child(3) {
  background: rgba(52, 211, 153, 0.6);
}
.browser-url {
  margin-left: 12px;
  font-size: 0.76rem;
  color: var(--muted);
  background: rgba(14, 14, 18, 0.8);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 3px 14px;
}
.browser img {
  width: 100%;
  height: auto;
}

/* schwebende Status-Chips am Hero-Bild */
.float-chip {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(22, 22, 28, 0.94);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 500;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  animation: chip-float 6s ease-in-out infinite;
  white-space: nowrap;
}
.float-chip.a {
  top: 8%;
  left: -70px;
  border-color: rgba(52, 211, 153, 0.5);
  animation-delay: 0.5s;
}
.float-chip.b {
  top: 42%;
  right: -80px;
  border-color: rgba(255, 107, 74, 0.5);
}
.float-chip.c {
  bottom: 14%;
  left: -50px;
  border-color: rgba(139, 92, 246, 0.55);
  animation-delay: 1.4s;
}
@keyframes chip-float {
  50% {
    transform: translateY(-11px);
  }
}
@media (max-width: 1180px) {
  .float-chip.a { left: 8px; }
  .float-chip.c { left: 8px; }
  .float-chip.b { right: 8px; }
}
@media (max-width: 640px) {
  .float-chip { display: none; }
}

/* ── Marquee (Symptome-Laufband) ─────────────────────────────── */
.marquee {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  overflow: hidden;
  background: rgba(22, 22, 28, 0.5);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.marquee-track {
  display: flex;
  gap: 44px;
  width: max-content;
  animation: marquee 36s linear infinite;
}
.marquee span {
  white-space: nowrap;
  color: var(--muted);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 12px;
}
.marquee span::before {
  content: "✕";
  color: var(--flame);
  font-size: 0.8rem;
}
@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

/* ── Problem-Vignetten (visuell statt Karten) ────────────────── */
.vignette {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
  margin-top: clamp(56px, 8vw, 90px);
}
.vignette.flip .vis {
  order: 2;
}
@media (max-width: 860px) {
  .vignette,
  .vignette.flip .vis {
    grid-template-columns: 1fr;
    order: initial;
  }
  .vignette .vis {
    order: -1;
  }
}
.vignette h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 14px;
}
.vignette h3 em {
  font-style: normal;
  color: var(--flame);
}
.vignette p {
  color: var(--muted);
  font-size: 1.02rem;
}
.vignette p strong {
  color: var(--text);
}
.vis {
  position: relative;
  display: flex;
  justify-content: center;
}
.vis-glow {
  position: absolute;
  inset: 6% 12%;
  background: radial-gradient(ellipse, rgba(255, 107, 74, 0.16), transparent 70%);
  filter: blur(26px);
  z-index: 0;
}

/* Vignette 1: eingeschlafenes Insta-Profil (Phone-Mockup) */
.phone {
  position: relative;
  z-index: 1;
  width: min(290px, 80vw);
  border: 1px solid #33333e;
  border-radius: 34px;
  background: #101016;
  padding: 14px 12px 18px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.55), 0 0 44px rgba(139, 92, 246, 0.08);
  animation: chip-float 7s ease-in-out infinite;
}
.phone-notch {
  width: 90px;
  height: 20px;
  border-radius: 12px;
  background: #000;
  margin: 0 auto 12px;
}
.ig-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 6px;
}
.ig-ava {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3a3a46, #23232c);
  border: 2px solid #3a3a46;
  flex: none;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  filter: grayscale(1);
}
.ig-stats {
  display: flex;
  gap: 14px;
  font-size: 0.72rem;
  color: var(--muted);
  text-align: center;
}
.ig-stats b {
  display: block;
  color: var(--text);
  font-size: 0.9rem;
}
.ig-alert {
  margin: 12px 6px;
  padding: 9px 12px;
  border-radius: 10px;
  background: rgba(255, 107, 74, 0.1);
  border: 1px solid rgba(255, 107, 74, 0.4);
  color: #ffb39f;
  font-size: 0.76rem;
  font-weight: 500;
  display: flex;
  gap: 8px;
  align-items: center;
}
.ig-alert .zz {
  animation: zz-blink 2.4s infinite;
}
@keyframes zz-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.ig-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  margin: 0 6px;
}
.ig-grid i {
  aspect-ratio: 1;
  background: linear-gradient(150deg, #1c1c24, #15151c);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.ig-grid i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 42%, rgba(255, 255, 255, 0.045) 50%, transparent 58%);
  transform: translateX(-130%);
  animation: sheen 5.5s ease-in-out infinite;
}
.ig-grid i:nth-child(2)::after { animation-delay: 0.4s; }
.ig-grid i:nth-child(3)::after { animation-delay: 0.8s; }
.ig-grid i:nth-child(4)::after { animation-delay: 1.2s; }
.ig-grid i:nth-child(5)::after { animation-delay: 1.6s; }
.ig-grid i:nth-child(6)::after { animation-delay: 2s; }
.ig-old {
  position: absolute;
  top: 6px;
  left: 6px;
  font-size: 0.56rem;
  background: rgba(14, 14, 18, 0.85);
  border-radius: 5px;
  padding: 2px 6px;
  color: var(--muted);
}

/* Vignette 2: Erinnerungs-Stack (immer wieder verschoben) */
.notif-stack {
  position: relative;
  z-index: 1;
  width: min(360px, 88vw);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.notif {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: rgba(22, 22, 28, 0.95);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 13px 16px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
  opacity: 0;
  transform: translateY(18px) scale(0.97);
}
.notif.on {
  opacity: 1;
  transform: none;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.notif-ico {
  width: 36px;
  height: 36px;
  flex: none;
  border-radius: 9px;
  display: grid;
  place-items: center;
  font-size: 1.05rem;
  background: rgba(139, 92, 246, 0.15);
}
.notif.wa .notif-ico {
  background: rgba(52, 211, 153, 0.14);
}
.notif b {
  display: block;
  font-size: 0.86rem;
}
.notif p {
  font-size: 0.8rem !important;
  color: var(--muted);
}
.notif .when {
  margin-left: auto;
  font-size: 0.7rem;
  color: var(--muted);
  flex: none;
}
.notif .snooze {
  display: inline-block;
  margin-top: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #ffb39f;
  background: rgba(255, 107, 74, 0.1);
  border: 1px solid rgba(255, 107, 74, 0.35);
  padding: 2px 10px;
  border-radius: 999px;
}

/* Vignette 3: sinkende Kurve + muede Likes */
.chartbox {
  position: relative;
  z-index: 1;
  width: min(420px, 90vw);
  background: linear-gradient(160deg, var(--surface), #131318);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.5);
}
.chartbox-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 12px;
}
.chartbox-head b {
  font-size: 0.95rem;
}
.chartbox-head span {
  font-size: 0.76rem;
  color: var(--danger);
  font-weight: 700;
}
.chart-svg {
  width: 100%;
  height: auto;
}
.chart-line {
  fill: none;
  stroke: var(--flame);
  stroke-width: 2.5;
  stroke-linecap: round;
  filter: drop-shadow(0 0 6px rgba(255, 107, 74, 0.5));
}
.chart-fill {
  fill: url(#chartFade);
  opacity: 0.35;
}
.chart-dot {
  fill: var(--flame);
}
.chart-dot-ring {
  fill: none;
  stroke: rgba(255, 107, 74, 0.5);
  animation: dot-ring 2s ease-out infinite;
  transform-origin: center;
}
@keyframes dot-ring {
  from { r: 4; opacity: 1; }
  to { r: 14; opacity: 0; }
}
.likes-row {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.like-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 5px 12px;
  background: rgba(14, 14, 18, 0.6);
}
.like-pill b {
  color: var(--text);
}

/* Vignette 2: Nachtszene - Uhr auf 21:47 mit Mond */
.v2-head {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  justify-content: space-between;
}
.v2-head h3 {
  flex: 1;
}
.nightclock {
  position: relative;
  flex: none;
  width: 116px;
  text-align: center;
  animation: chip-float 7s ease-in-out infinite;
}
.nightclock svg {
  width: 104px;
  height: 104px;
  margin: 0 auto;
  filter: drop-shadow(0 0 18px rgba(255, 107, 74, 0.25));
}
.nc-face {
  fill: rgba(22, 22, 28, 0.9);
  stroke: var(--border);
  stroke-width: 2;
}
.nc-ticks line {
  stroke: var(--muted);
  stroke-width: 2;
  stroke-linecap: round;
  opacity: 0.6;
}
.nc-hand {
  stroke-linecap: round;
}
.nc-hour {
  stroke: var(--text);
  stroke-width: 4;
}
.nc-min {
  stroke: var(--flame);
  stroke-width: 3;
  transform-origin: 60px 60px;
  animation: nc-tick 60s steps(60) infinite;
}
@keyframes nc-tick {
  to {
    transform: rotate(360deg);
  }
}
.nc-dot {
  fill: var(--flame);
}
.nc-moon {
  position: absolute;
  top: -14px;
  right: -4px;
  font-size: 1.3rem;
  filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.6));
}
.nc-zz {
  position: absolute;
  bottom: 8px;
  left: -12px;
  font-size: 1rem;
  animation: zz-blink 2.4s infinite;
}
.nc-time {
  display: inline-block;
  margin-top: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #ffb39f;
  background: rgba(255, 107, 74, 0.1);
  border: 1px solid rgba(255, 107, 74, 0.35);
  border-radius: 999px;
  padding: 2px 12px;
}
@media (max-width: 560px) {
  .v2-head {
    flex-direction: column-reverse;
    align-items: center;
  }
}

/* ── Stats ohne Boxen: eine Linie mit Verlaufs-Trennern ──────── */
.stats-line {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: clamp(20px, 4vw, 48px);
  margin-top: 64px;
  text-align: center;
  flex-wrap: wrap;
}
.sl-item {
  max-width: 240px;
}
.sl-item b {
  display: block;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.sl-item span {
  color: var(--muted);
  font-size: 0.92rem;
}
.sl-sep {
  width: 1px;
  align-self: stretch;
  background: linear-gradient(180deg, transparent, rgba(139, 92, 246, 0.5) 30%, rgba(255, 107, 74, 0.5) 70%, transparent);
}
@media (max-width: 700px) {
  .sl-sep {
    display: none;
  }
}

/* ── "Für wen": Orbit-Konstellation statt Karten ─────────────── */
.orbit {
  position: relative;
  max-width: 940px;
  margin: 70px auto 0;
  min-height: 560px;
}
.orbit-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px dashed rgba(139, 92, 246, 0.3);
}
.orbit-ring.r1 {
  width: 320px;
  height: 320px;
  animation: orbit-spin 60s linear infinite;
}
.orbit-ring.r2 {
  width: 520px;
  height: 520px;
  border-color: rgba(255, 107, 74, 0.22);
  animation: orbit-spin 90s linear infinite reverse;
}
@keyframes orbit-spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
/* umlaufende Leuchtpunkte */
.orbit-track {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 320px;
  height: 320px;
  margin: -160px 0 0 -160px;
  animation: orbit-spin-track 26s linear infinite;
  pointer-events: none;
}
.orbit-track.t2 {
  width: 520px;
  height: 520px;
  margin: -260px 0 0 -260px;
  animation-duration: 44s;
  animation-direction: reverse;
}
@keyframes orbit-spin-track {
  to {
    transform: rotate(360deg);
  }
}
.orbit-dot {
  position: absolute;
  left: 50%;
  top: -4px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--violet);
  box-shadow: 0 0 14px 3px rgba(139, 92, 246, 0.6);
}
.orbit-dot.warm {
  background: var(--flame);
  box-shadow: 0 0 14px 3px rgba(255, 107, 74, 0.6);
}
.orbit-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
  z-index: 2;
}
.orbit-mark {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: var(--grad);
  display: grid;
  place-items: center;
  color: #0e0e12;
  box-shadow: 0 0 46px rgba(139, 92, 246, 0.5), 0 0 80px rgba(255, 107, 74, 0.25);
  margin-bottom: 8px;
  animation: chip-float 6s ease-in-out infinite;
}
.orbit-mark svg {
  width: 30px;
  height: 30px;
}
.orbit-center b {
  font-size: 1.05rem;
}
.orbit-center > span {
  font-size: 0.8rem;
  color: var(--muted);
}
/* Satelliten: frei schwebend, keine Karten */
.o-sat {
  position: absolute;
  width: 230px;
  text-align: center;
  animation: chip-float 7s ease-in-out infinite;
}
.o-sat.s1 { left: 4%; top: 6%; }
.o-sat.s2 { right: 4%; top: 6%; animation-delay: 1.2s; }
.o-sat.s3 { left: 4%; bottom: 4%; animation-delay: 2s; }
.o-sat.s4 { right: 4%; bottom: 4%; animation-delay: 0.6s; }
.o-ico {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin: 0 auto 10px;
  border-radius: 50%;
  font-size: 1.5rem;
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(139, 92, 246, 0.45);
  box-shadow: 0 0 26px rgba(139, 92, 246, 0.3);
}
.o-ico.warm {
  background: rgba(255, 107, 74, 0.1);
  border-color: rgba(255, 107, 74, 0.45);
  box-shadow: 0 0 26px rgba(255, 107, 74, 0.28);
}
.o-sat b {
  display: block;
  font-size: 1rem;
  margin-bottom: 4px;
}
.o-sat p {
  font-size: 0.85rem;
  color: var(--muted);
}
@media (max-width: 860px) {
  .orbit {
    min-height: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px 18px;
    padding-top: 10px;
  }
  .orbit-ring,
  .orbit-track,
  .orbit-center {
    display: none;
  }
  .o-sat,
  .o-sat.s1,
  .o-sat.s2,
  .o-sat.s3,
  .o-sat.s4 {
    position: static;
    width: auto;
  }
}
@media (max-width: 480px) {
  .orbit {
    grid-template-columns: 1fr;
  }
}

/* ── Ablauf: Leuchtpfad statt Karten ─────────────────────────── */
.journey {
  position: relative;
  margin-top: 70px;
}
.journey-svg {
  position: absolute;
  inset: -20px 0 auto;
  width: 100%;
  height: 170px;
  pointer-events: none;
}
.j-path {
  fill: none;
  stroke: var(--border);
  stroke-width: 2;
  stroke-dasharray: 5 8;
}
.j-path-lit {
  fill: none;
  stroke: url(#jGrad);
  stroke-width: 2.5;
  stroke-linecap: round;
  filter: drop-shadow(0 0 6px rgba(255, 107, 74, 0.5));
}
.journey-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 3vw, 40px);
  padding-top: 120px;
  text-align: center;
}
.j-step.mid {
  margin-top: -34px;
}
.j-num {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin: 0 auto 14px;
  border-radius: 50%;
  font-size: 1.5rem;
  background: color-mix(in srgb, var(--j, #8b5cf6) 14%, transparent);
  border: 1px solid color-mix(in srgb, var(--j, #8b5cf6) 55%, transparent);
  box-shadow: 0 0 30px color-mix(in srgb, var(--j, #8b5cf6) 40%, transparent);
  animation: chip-float 6.5s ease-in-out infinite;
}
.j-step h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.j-step h3::before {
  content: counter(j-step) ". ";
}
.journey-steps {
  counter-reset: j-step;
}
.j-step {
  counter-increment: j-step;
}
.j-step p {
  font-size: 0.93rem;
  color: var(--muted);
  max-width: 300px;
  margin: 0 auto;
}
@media (max-width: 760px) {
  .journey-svg {
    display: none;
  }
  .journey-steps {
    grid-template-columns: 1fr;
    padding-top: 0;
    gap: 40px;
  }
  .j-step.mid {
    margin-top: 0;
  }
}

/* ── Walkthrough: Ein Blick ins Tool ─────────────────────────── */
.walk {
  position: relative;
  margin-top: clamp(50px, 7vw, 80px);
  display: flex;
  flex-direction: column;
  gap: clamp(70px, 9vw, 120px);
}
/* verbindende Leuchtlinie Violett -> Rot-Orange */
.walk::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, var(--violet), #c084fc 55%, var(--flame));
  opacity: 0.28;
  border-radius: 2px;
}
@media (max-width: 900px) {
  .walk::before {
    display: none;
  }
}
.walk-row {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(28px, 4.5vw, 60px);
  align-items: center;
  position: relative;
}
.walk-row.flip {
  grid-template-columns: 0.85fr 1.15fr;
}
.walk-row.flip .walk-shot {
  order: 2;
}
@media (max-width: 900px) {
  .walk-row,
  .walk-row.flip {
    grid-template-columns: 1fr;
  }
  .walk-row.flip .walk-shot {
    order: initial;
  }
  .walk-row .walk-shot {
    order: -1;
  }
}
.walk-shot {
  position: relative;
}
.walk-shot .browser {
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s;
}
.walk-row:not(.flip) .walk-shot .browser {
  transform: perspective(1100px) rotateY(-5deg);
}
.walk-row.flip .walk-shot .browser {
  transform: perspective(1100px) rotateY(5deg);
}
.walk-shot:hover .browser {
  transform: perspective(1100px) rotateY(0deg) scale(1.015);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6), 0 0 80px var(--walk-glow, rgba(139, 92, 246, 0.28));
}
.walk-num {
  position: absolute;
  top: -22px;
  left: -14px;
  z-index: 3;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 1.05rem;
  color: #0e0e12;
  background: var(--walk-c, var(--violet));
  box-shadow: 0 0 26px var(--walk-glow, rgba(139, 92, 246, 0.55));
}
.walk-txt .kicker {
  margin-bottom: 10px;
}
.walk-txt h3 {
  font-size: clamp(1.45rem, 2.8vw, 1.9rem);
  margin-bottom: 12px;
}
.walk-txt p {
  color: var(--muted);
  font-size: 1rem;
}
.walk-txt p strong {
  color: var(--text);
}
.walk-points {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  list-style: none;
}
.walk-points li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.93rem;
  color: var(--muted);
}
.walk-points li::before {
  content: "✓";
  color: var(--walk-c, var(--violet));
  font-weight: 700;
  flex: none;
}

/* ── Stats-Band ──────────────────────────────────────────────── */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 54px;
}
@media (max-width: 700px) {
  .stats {
    grid-template-columns: 1fr;
  }
}
.stat {
  text-align: center;
  padding: 30px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(22, 22, 28, 0.6);
}
.stat b {
  display: block;
  font-size: clamp(2rem, 4vw, 2.7rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat span {
  color: var(--muted);
  font-size: 0.92rem;
}

/* ── Karten (Ablauf) ─────────────────────────────────────────── */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 48px;
}
@media (max-width: 900px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 620px) {
  .cards {
    grid-template-columns: 1fr;
  }
}
.card {
  background: linear-gradient(165deg, var(--surface), #14141a);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 24px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s, box-shadow 0.3s;
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(139, 92, 246, 0.55);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45), 0 0 34px rgba(139, 92, 246, 0.14);
}
.card h3 {
  font-size: 1.12rem;
  margin: 14px 0 8px;
}
.card p {
  font-size: 0.94rem;
  color: var(--muted);
}
.card-ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  background: rgba(139, 92, 246, 0.14);
  border: 1px solid rgba(139, 92, 246, 0.3);
}

/* ── Zielgruppen ("Für wen") ─────────────────────────────────── */
.audience {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 46px;
}
@media (max-width: 900px) {
  .audience {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 540px) {
  .audience {
    grid-template-columns: 1fr;
  }
}
.aud {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 20px;
  background: linear-gradient(165deg, var(--surface), #14141a);
  transition: transform 0.3s, border-color 0.3s;
}
.aud:hover {
  transform: translateY(-4px);
  border-color: rgba(34, 211, 238, 0.5);
}
.aud b {
  display: block;
  margin: 10px 0 6px;
  font-size: 1rem;
}
.aud p {
  font-size: 0.87rem;
  color: var(--muted);
}
.aud .card-ico {
  background: rgba(34, 211, 238, 0.1);
  border-color: rgba(34, 211, 238, 0.28);
}

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq {
  max-width: 760px;
  margin: 46px auto 0;
}
.faq details {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(165deg, var(--surface), #14141a);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq details[open] {
  border-color: rgba(139, 92, 246, 0.5);
}
.faq summary {
  cursor: pointer;
  padding: 19px 22px;
  font-weight: 700;
  font-size: 1.02rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--violet);
  transition: transform 0.3s;
  flex: none;
}
.faq details[open] summary::after {
  transform: rotate(45deg);
  color: var(--flame);
}
.faq .faq-body {
  padding: 0 22px 20px;
  color: var(--muted);
  font-size: 0.96rem;
}

/* ── Warteliste-Formular ─────────────────────────────────────── */
.apply {
  position: relative;
}
.apply-box {
  max-width: 720px;
  margin: 0 auto;
  background: linear-gradient(165deg, #17171e, #121217);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: clamp(28px, 5vw, 48px);
  position: relative;
  overflow: hidden;
}
.apply-box::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 22px;
  padding: 1px;
  background: linear-gradient(130deg, rgba(139, 92, 246, 0.65), transparent 35%, transparent 65%, rgba(255, 107, 74, 0.6));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 30px;
}
@media (max-width: 620px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}
.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.field.full {
  grid-column: 1 / -1;
}
.field label {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--text);
}
.field label small {
  color: var(--muted);
  font-weight: 400;
}
.field input,
.field select,
.field textarea {
  background: rgba(14, 14, 18, 0.8);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.97rem;
  padding: 12px 14px;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.field textarea {
  resize: vertical;
  min-height: 96px;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--violet);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.2);
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238c8c99' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}
.hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
}
.form-msg {
  margin-top: 18px;
  padding: 13px 16px;
  border-radius: 10px;
  font-size: 0.94rem;
  display: none;
}
.form-msg.ok {
  display: block;
  background: rgba(52, 211, 153, 0.1);
  border: 1px solid rgba(52, 211, 153, 0.4);
  color: var(--success);
}
.form-msg.err {
  display: block;
  background: rgba(248, 113, 113, 0.08);
  border: 1px solid rgba(248, 113, 113, 0.4);
  color: var(--danger);
}
.apply-success {
  display: none;
  text-align: center;
  padding: 30px 10px;
}
.apply-success.show {
  display: block;
  animation: pop-in 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes pop-in {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
}
.check-ring {
  width: 74px;
  height: 74px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(52, 211, 153, 0.12);
  border: 1px solid rgba(52, 211, 153, 0.5);
  font-size: 2rem;
  position: relative;
}
.check-ring::before,
.check-ring::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(52, 211, 153, 0.5);
  animation: ring-out 2.2s ease-out infinite;
}
.check-ring::after {
  animation-delay: 0.7s;
}
@keyframes ring-out {
  to {
    transform: scale(1.9);
    opacity: 0;
  }
}
.form-note {
  margin-top: 16px;
  font-size: 0.8rem;
  color: var(--muted);
}
.form-note a {
  color: #c4b5fd;
}

/* ── Footer ──────────────────────────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 40px 0 50px;
  color: var(--muted);
  font-size: 0.88rem;
}
.foot-grid {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
  align-items: center;
}
.foot-links {
  display: flex;
  gap: 22px;
}
.foot-links a {
  color: var(--muted);
  text-decoration: none;
}
.foot-links a:hover {
  color: var(--text);
}

/* ── Unterseiten (Impressum/Datenschutz) ─────────────────────── */
.legal {
  padding-top: 130px;
  max-width: 780px;
  margin: 0 auto;
}
.legal h1 {
  font-size: 2.2rem;
  margin-bottom: 30px;
}
.legal section.card {
  margin-bottom: 16px;
}
.legal h2 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.legal p,
.legal li {
  color: var(--muted);
  font-size: 0.95rem;
}
.legal ul {
  padding-left: 20px;
}
.legal a {
  color: #c4b5fd;
}

/* ── Reduced Motion ──────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  .hero-shot {
    transform: none !important;
  }
  .notif {
    opacity: 1;
    transform: none;
  }
}
