/* flosy.ai Landingpage - Branding aus dem SaaS-Produkt
   ZWEI Markenfarben (CI ab 24.08.2026):
     --brand   #16fff0  Türkis  (Primär, die Brandingfarbe)
     --violet  #8b5cf6  Violett (Sekundär, das Lila aus dem Brand Brain)
   Auf der Seite erscheinen AUSSCHLIESSLICH diese zwei Farben und ihre
   Aufhellungen (--brand-hell / --violet-hell). Keine dritte Markenfarbe,
   keine Zwischentöne als Flächenfarbe - Blau entsteht nur INNERHALB von
   Verläufen zwischen den beiden. --cyan/--flame/--flame2 sind Alt-Aliase.
   Ausnahmen mit Absicht: Signalfarben (--success/--danger) und die vier
   fremden Farbwelten in der Branding-Demo (die zeigen KUNDEN-Farben). */

@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;
  --brand: #16fff0;
  --violet: #8b5cf6;
  /* Aufhellungen der beiden Markenfarben - KEINE dritte Farbe. Nur diese
     zwei Töne (und ihre Aufhellungen) dürfen auf der Seite auftauchen. */
  --brand-hell: color-mix(in srgb, var(--brand) 62%, #ffffff);
  --violet-hell: color-mix(in srgb, var(--violet) 60%, #ffffff);
  /* Alt-Aliase: warme Akzente sind jetzt die Markenfarbe */
  --cyan: var(--brand);
  --flame: var(--brand);
  --flame2: var(--brand-hell);
  --success: #34d399;
  --danger: #f87171;
  --radius: 14px;
  --grad: linear-gradient(100deg, var(--brand), var(--violet));
}

* {
  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(22, 255, 240, 0.3);
}
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(22, 255, 240, 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(22, 255, 240, 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(22, 255, 240, 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-img {
  height: 36px;
  width: auto;
  display: block;
}
.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(22, 255, 240, 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 {
  /* 16.09.: enger (vorher clamp(70px, 10vw, 120px)) - Sektionen rücken zusammen */
  padding: clamp(46px, 6.5vw, 82px) 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: var(--violet-hell);
  margin-bottom: 26px;
}
.badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  /* Marken-Chrome, kein Systemstatus - deshalb Markenfarbe statt Grün */
  background: var(--brand);
  box-shadow: 0 0 0 0 rgba(22, 255, 240, 0.6);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  70% {
    box-shadow: 0 0 0 9px rgba(22, 255, 240, 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(22, 255, 240, 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);
}
/* Fenster-Punkte im Browser-Mockup: keine Ampelfarben mehr (24.08.),
   sondern die zwei Markenfarben in Abstufungen. */
.browser-bar i:nth-child(1) {
  background: rgba(139, 92, 246, 0.75);
}
.browser-bar i:nth-child(2) {
  background: rgba(139, 92, 246, 0.4);
}
.browser-bar i:nth-child(3) {
  background: rgba(22, 255, 240, 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,
.browser video {
  width: 100%;
  height: auto;
  display: block;
}

/* 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(22, 255, 240, 0.5);
  animation-delay: 0.5s;
}
.float-chip.b {
  top: 42%;
  right: -80px;
  border-color: rgba(22, 255, 240, 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(22, 255, 240, 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(22, 255, 240, 0.1);
  border: 1px solid rgba(22, 255, 240, 0.4);
  color: var(--brand-hell);
  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(22, 255, 240, 0.14);
  color: var(--brand);
}
.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: var(--brand-hell);
  background: rgba(22, 255, 240, 0.1);
  border: 1px solid rgba(22, 255, 240, 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;
  /* Mockup-Kennzahl, keine Systemmeldung - deshalb Markenfarbe statt Rot */
  color: var(--violet);
  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(22, 255, 240, 0.5));
}
.chart-fill {
  fill: url(#chartFade);
  opacity: 0.35;
}
.chart-dot {
  fill: var(--flame);
}
.chart-dot-ring {
  fill: none;
  stroke: rgba(22, 255, 240, 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(22, 255, 240, 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: var(--brand-hell);
  background: rgba(22, 255, 240, 0.1);
  border: 1px solid rgba(22, 255, 240, 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: 56px;
  text-align: center;
  flex-wrap: wrap;
}
.sl-item {
  max-width: 300px;
}
.sl-item b {
  display: block;
  white-space: nowrap;
  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(22, 255, 240, 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: 56px 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(22, 255, 240, 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(22, 255, 240, 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(22, 255, 240, 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(22, 255, 240, 0.1);
  border-color: rgba(22, 255, 240, 0.45);
  box-shadow: 0 0 26px rgba(22, 255, 240, 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(22, 255, 240, 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), var(--brand));
  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;
  transform: perspective(1100px) rotateY(0deg);
}
/* Hover: Shot wendet sich nach innen, zur Textseite hin */
.walk-row:not(.flip) .walk-shot:hover .browser {
  transform: perspective(1100px) rotateY(7deg) scale(1.03);
}
.walk-row.flip .walk-shot:hover .browser {
  transform: perspective(1100px) rotateY(-7deg) scale(1.03);
}
.walk-shot:hover .browser {
  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(22, 255, 240, 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(22, 255, 240, 0.1);
  border-color: rgba(22, 255, 240, 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(22, 255, 240, 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(22, 255, 240, 0.12);
  border: 1px solid rgba(22, 255, 240, 0.5);
  color: var(--brand);
  font-size: 2rem;
  position: relative;
}
.check-ring::before,
.check-ring::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(22, 255, 240, 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: var(--violet-hell);
}

/* ── 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: var(--violet-hell);
}

/* ── Demo-Schriften (nur fürs Branding-Spielfeld) ────────────── */
@font-face {
  font-family: "Space Grotesk";
  src: url("fonts/SpaceGrotesk-SemiBold.woff2") format("woff2");
  font-weight: 400 700;
  font-display: swap;
}
@font-face {
  font-family: "Playfair Display";
  src: url("fonts/PlayfairDisplay-Bold.woff2") format("woff2");
  font-weight: 400 700;
  font-display: swap;
}
@font-face {
  font-family: "Caveat";
  src: url("fonts/Caveat-SemiBold.woff2") format("woff2");
  font-weight: 400 700;
  font-display: swap;
}

/* ── Branding-Demo: CI live wechseln ─────────────────────────── */
/* registrierte Farb-Properties: so animieren sogar Verläufe weich */
@property --a {
  syntax: "<color>";
  inherits: true;
  initial-value: #16fff0;
}
@property --b {
  syntax: "<color>";
  inherits: true;
  initial-value: #8b5cf6;
}

.bd {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.35fr);
  gap: 40px;
  align-items: center;
  margin-top: 52px;
}
@media (max-width: 940px) {
  .bd {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
.bd-group + .bd-group {
  margin-top: 28px;
}
.bd-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.bd-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.bd-swatch {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: linear-gradient(135deg, var(--sa), var(--sb));
  cursor: pointer;
  transition:
    transform 0.2s,
    border-color 0.2s,
    box-shadow 0.2s;
}
.bd-swatch:hover {
  transform: scale(1.1);
}
.bd-swatch.on {
  border-color: #fff;
  box-shadow:
    0 0 0 3px rgba(255, 255, 255, 0.14),
    0 8px 22px rgba(0, 0, 0, 0.45);
}
.bd-custom {
  position: relative;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px dashed var(--border);
  display: grid;
  place-items: center;
  cursor: pointer;
  color: var(--muted);
  font-size: 24px;
  line-height: 1;
  transition:
    border-color 0.2s,
    color 0.2s;
}
.bd-custom:hover {
  border-color: var(--violet);
  color: var(--text);
}
.bd-custom.on {
  border-style: solid;
  border-color: #fff;
  color: var(--text);
}
.bd-custom input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}
.bd-fontlist {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.bd-font {
  padding: 10px 18px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-size: 17px;
  cursor: pointer;
  transition:
    border-color 0.2s,
    background 0.2s,
    transform 0.2s;
}
.bd-font:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.35);
}
.bd-font.on {
  border-color: #fff;
  background: var(--surface2);
}
.bd-hint {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.6;
  margin-top: 22px;
  max-width: 46ch;
}

/* das Mini-Dashboard, das die CI live übernimmt */
.bd-app {
  /* Startzustand = die erste Farbwelt (unsere eigene CI) */
  --a: #16fff0;
  --b: #8b5cf6;
  --f: "Satoshi", system-ui, sans-serif;
  transition:
    --a 0.6s ease,
    --b 0.6s ease;
}
.bd-ui {
  display: grid;
  grid-template-columns: 170px 1fr;
  background: #101016;
}
.bd-side {
  border-right: 1px solid var(--border);
  background: #0c0c11;
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.bd-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
  font-family: var(--f);
  font-size: 15px;
  margin-bottom: 14px;
}
.bd-logo i {
  width: 22px;
  height: 22px;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--a), var(--b));
  flex: none;
}
.bd-nav {
  padding: 8px 11px;
  border-radius: 9px;
  color: var(--muted);
  font-size: 13.5px;
  transition: color 0.3s;
}
.bd-nav.on {
  color: #fff;
  background: color-mix(in srgb, var(--a) 20%, transparent);
  box-shadow: inset 2px 0 0 var(--a);
}
.bd-main {
  display: grid;
  grid-template-columns: 1fr 178px;
  gap: 20px;
  padding: 22px;
  align-items: stretch;
}
.bd-left {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}
.bd-title {
  font-family: var(--f);
  font-size: 21px;
  line-height: 1.3;
  margin-bottom: 4px;
}
.bd-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.bd-card span {
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
}
.bd-card b {
  font-family: var(--f);
  font-size: 16.5px;
  color: var(--a);
}
.bd-bar {
  display: block;
  height: 6px;
  border-radius: 99px;
  background: var(--surface2);
  overflow: hidden;
}
.bd-bar u {
  display: block;
  height: 100%;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--a), var(--b));
}
.bd-btn {
  align-self: flex-start;
  margin-top: 4px;
  padding: 9px 20px;
  border-radius: 11px;
  background: linear-gradient(100deg, var(--a), var(--b));
  color: #fff;
  font-family: var(--f);
  font-weight: 700;
  font-size: 14.5px;
  box-shadow: 0 8px 24px color-mix(in srgb, var(--a) 35%, transparent);
}
.bd-reel {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: linear-gradient(
    160deg,
    color-mix(in srgb, var(--a) 55%, #101016),
    color-mix(in srgb, var(--b) 45%, #101016)
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 7px;
  padding: 14px 12px;
  min-height: 300px;
}
.bd-reel-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 10.5px;
  letter-spacing: 0.06em;
  background: rgba(0, 0, 0, 0.4);
  padding: 3px 9px;
  border-radius: 99px;
}
.bd-reel-title {
  font-family: var(--f);
  font-weight: 700;
  font-size: 21px;
  line-height: 1.15;
  color: #fff;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.55);
}
.bd-reel-sub {
  font-family: var(--f);
  font-size: 12.5px;
  background: var(--a);
  color: #fff;
  padding: 3px 10px;
  border-radius: 8px;
}
@media (max-width: 640px) {
  .bd-ui {
    grid-template-columns: 1fr;
  }
  .bd-side {
    display: none;
  }
  .bd-main {
    grid-template-columns: 1fr 128px;
    gap: 14px;
    padding: 16px;
  }
  .bd-reel {
    min-height: 220px;
  }
  .bd-title {
    font-size: 18px;
  }
}

/* ── Kontrolle & Qualität: USP-Grid ──────────────────────────── */
.ctrl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 48px;
}
@media (max-width: 940px) {
  .ctrl-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .ctrl-grid {
    grid-template-columns: 1fr;
  }
}
.ctrl-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--surface), rgba(22, 22, 28, 0.35));
  padding: 24px 22px;
  transition:
    transform 0.25s,
    border-color 0.25s;
}
.ctrl-card:hover {
  transform: translateY(-4px);
  border-color: rgba(139, 92, 246, 0.45);
}
.ctrl-ico {
  font-size: 26px;
  line-height: 1;
  display: block;
}
.ctrl-card b {
  display: block;
  font-size: 17.5px;
  margin: 12px 0 6px;
}
.ctrl-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

/* ── "Was wäre, wenn ..." (Traumzustand) ─────────────────────── */
.wish-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 46px;
}
@media (max-width: 820px) {
  .wish-grid {
    grid-template-columns: 1fr;
  }
}
.wish-card {
  position: relative;
  background: linear-gradient(180deg, var(--surface), rgba(22, 22, 28, 0.6));
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 26px 26px 24px;
  overflow: hidden;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.45s, box-shadow 0.45s;
}
.wish-card::before {
  content: "";
  position: absolute;
  inset: -40% -30% auto;
  height: 75%;
  background: radial-gradient(ellipse 60% 70% at 50% 0%, color-mix(in srgb, var(--wc) 22%, transparent), transparent 70%);
  pointer-events: none;
}
.wish-card:hover {
  transform: translateY(-5px);
  border-color: color-mix(in srgb, var(--wc) 45%, var(--border));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45), 0 0 50px color-mix(in srgb, var(--wc) 22%, transparent);
}
.wish-card h3 {
  font-size: 1.18rem;
  line-height: 1.4;
  margin-top: 20px;
}
.wish-card h3 em {
  font-style: normal;
  color: var(--wc);
}
.wish-vis {
  position: relative;
  min-height: 210px;
  display: grid;
  place-items: center;
}

/* Visual 1: Kalender füllt sich */
.w-cal {
  width: min(100%, 330px);
  background: rgba(14, 14, 18, 0.75);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
}
.w-cal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  margin-bottom: 12px;
}
.w-cal-badge {
  font-size: 0.72rem;
  color: var(--brand);
  border: 1px solid rgba(22, 255, 240, 0.35);
  background: rgba(22, 255, 240, 0.1);
  border-radius: 999px;
  padding: 2px 10px;
}
.w-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}
.w-cal-grid i {
  position: relative;
  aspect-ratio: 1;
  border: 1px solid var(--border);
  border-radius: 9px;
  display: grid;
  place-items: center;
  font-style: normal;
}
.w-cal-grid i span {
  position: absolute;
  top: -1.15em;
  font-size: 0.58rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.w-cal-grid i::after {
  content: "✓";
  font-weight: 700;
  font-size: 0.85rem;
  color: #0e0e12;
  background: linear-gradient(135deg, var(--violet), var(--brand));
  width: 74%;
  height: 74%;
  border-radius: 7px;
  display: grid;
  place-items: center;
  animation: w-cal-pop 6.3s infinite;
  animation-delay: calc(var(--n) * 0.75s - 6.3s);
}
@keyframes w-cal-pop {
  0% { opacity: 0; transform: scale(0.3); }
  5% { opacity: 1; transform: scale(1.12); }
  8% { transform: scale(1); }
  82% { opacity: 1; }
  90%, 100% { opacity: 0; transform: scale(0.6); }
}
.w-cal-grid i:nth-child(6)::after,
.w-cal-grid i:nth-child(7)::after {
  background: linear-gradient(135deg, var(--flame2), var(--brand));
}

/* Visual 2: Ideen-Chips mit Score */
.w-ideas {
  width: min(100%, 330px);
  display: grid;
  gap: 8px;
}
.w-idea {
  display: flex;
  align-items: center;
  gap: 11px;
  background: rgba(14, 14, 18, 0.75);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 9px 12px;
  animation: w-idea-in 6.3s infinite;
  animation-delay: calc(var(--n) * 0.9s - 6.3s);
}
.w-idea b {
  display: block;
  font-size: 0.8rem;
  line-height: 1.25;
}
.w-idea > div > span {
  font-size: 0.68rem;
  color: var(--muted);
}
.w-score {
  flex: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.72rem;
  color: #fff;
  background: conic-gradient(from 210deg, var(--brand), var(--violet), var(--brand));
  box-shadow: 0 0 16px rgba(139, 92, 246, 0.4);
}
@keyframes w-idea-in {
  0% { opacity: 0; transform: translateX(-22px); }
  6% { opacity: 1; transform: none; }
  84% { opacity: 1; }
  92%, 100% { opacity: 0; transform: translateX(14px); }
}
.w-ideas-note {
  text-align: center;
  font-size: 0.72rem;
  color: var(--muted);
}

/* Visual 3: Anfragen ploppen rein */
.w-leads {
  width: min(100%, 330px);
  display: grid;
  gap: 8px;
}
.w-lead {
  display: flex;
  align-items: center;
  gap: 11px;
  background: rgba(14, 14, 18, 0.75);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 9px 12px;
  animation: w-lead-pop 6.3s infinite;
  animation-delay: calc(var(--n) * 1.1s - 6.3s);
}
.w-lead b {
  display: block;
  font-size: 0.8rem;
}
.w-lead > div > span {
  font-size: 0.68rem;
  color: var(--muted);
}
.w-lead-ico {
  flex: none;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 1rem;
  background: rgba(22, 255, 240, 0.14);
  border: 1px solid rgba(22, 255, 240, 0.3);
}
@keyframes w-lead-pop {
  0% { opacity: 0; transform: scale(0.85) translateY(10px); }
  6% { opacity: 1; transform: scale(1.03); }
  9% { transform: none; }
  84% { opacity: 1; }
  92%, 100% { opacity: 0; transform: scale(0.9); }
}
.w-leads-sum {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--flame);
}

/* Visual 4: Wachstum bei Feierabend */
.w-night {
  position: relative;
  width: min(100%, 330px);
  background: rgba(14, 14, 18, 0.75);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 14px 10px;
}
.w-moon {
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 1.15rem;
  filter: drop-shadow(0 0 10px rgba(22, 255, 240, 0.5));
}
.w-night-chip {
  display: inline-block;
  font-size: 0.7rem;
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 3px 10px;
  margin-bottom: 8px;
}
.w-night svg {
  display: block;
  width: 100%;
  height: 96px;
}
.w-grow-fill {
  fill: url(#wGrowFill);
}
.w-grow-line {
  fill: none;
  stroke: url(#wGrow);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 320;
  animation: w-grow 6.3s infinite;
}
@keyframes w-grow {
  0% { stroke-dashoffset: 320; }
  38%, 88% { stroke-dashoffset: 0; }
  96%, 100% { stroke-dashoffset: 320; }
}
.w-grow-dot {
  fill: var(--cyan);
  animation: w-grow-dot 6.3s infinite;
}
@keyframes w-grow-dot {
  0%, 34% { opacity: 0; }
  40%, 88% { opacity: 1; }
  94%, 100% { opacity: 0; }
}
.w-night-stat {
  font-size: 0.75rem;
  color: var(--muted);
  padding: 6px 2px 2px;
}
.w-night-stat b {
  color: var(--cyan);
}

.wish-bridge {
  margin-top: 44px;
}
.wish-bridge p {
  font-size: 1.15rem;
  margin-bottom: 18px;
}

/* ── Reduced Motion ──────────────────────────────────────────── */

/* ── "Für wen" 16.09.: Passt-wenn-Leiste unter dem Orbit ─────── */
.fit {
  margin: 44px auto 0;
  max-width: 940px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 14px;
}
.fit-lead {
  width: 100%;
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.fit-list {
  display: contents;
  list-style: none;
}
.fit-list li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, var(--surface), rgba(22, 22, 28, 0.6));
  font-size: 0.93rem;
  font-weight: 600;
}
.fit-list li .ico {
  width: 18px;
  height: 18px;
  color: var(--brand);
}
.fit-list li:nth-child(2) .ico {
  color: var(--violet);
}

/* ── KI-Avatar-Sektion (16.09.) ──────────────────────────────── */
.av-row {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}
.av-txt h2 {
  margin-bottom: 14px;
}
.av-txt .sub {
  margin-bottom: 6px;
}
.av-points {
  --walk-c: var(--brand);
  margin-top: 22px;
}
.av-points li:nth-child(even)::before {
  color: var(--violet);
}
.av-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 26px;
  font-size: 0.85rem;
  color: var(--muted);
}
.av-flow span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-weight: 600;
}
.av-flow span .ico {
  width: 15px;
  height: 15px;
  color: var(--violet);
}
.av-flow span:nth-child(3) .ico { color: var(--brand); }
.av-flow span:nth-child(5) .ico { color: var(--brand-hell); }
.av-flow i {
  font-style: normal;
  opacity: 0.6;
}
.av-vis {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 26px 0;
}
.av-vis::before {
  content: "";
  position: absolute;
  inset: 10% 8%;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 45%, rgba(139, 92, 246, 0.28), rgba(22, 255, 240, 0.12) 45%, transparent 70%);
  filter: blur(18px);
  pointer-events: none;
}
.av-phone {
  width: min(270px, 78vw);
  padding: 12px 10px 14px;
}
.av-screen {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: 22px;
  overflow: hidden;
  background:
    radial-gradient(120% 70% at 50% 30%, rgba(139, 92, 246, 0.35), transparent 60%),
    linear-gradient(180deg, #1b1b27 0%, #0f0f16 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}
.av-figure {
  position: absolute;
  inset: 0 0 24%;
  display: grid;
  place-items: end center;
}
.av-figure svg {
  width: 82%;
  height: auto;
  overflow: visible;
}
.av-mouth {
  transform-box: fill-box;
  transform-origin: center;
  animation: av-talk 0.62s ease-in-out infinite;
}
@keyframes av-talk {
  0%, 100% { transform: scaleY(0.25); }
  35% { transform: scaleY(1); }
  70% { transform: scaleY(0.55); }
}
.av-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(14, 14, 18, 0.7);
  border: 1px solid rgba(139, 92, 246, 0.45);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--violet-hell);
  backdrop-filter: blur(6px);
}
.av-badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 10px var(--brand);
  animation: pulse-dot 1.6s ease-in-out infinite;
}
.av-caps {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px 6px;
  padding: 0 14px;
  margin-bottom: 14px;
  font-size: clamp(0.9rem, 1.4vw, 1.05rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}
.av-caps span {
  --n: 0;
  color: rgba(244, 244, 246, 0.55);
  animation: av-karaoke 4.2s steps(1, end) infinite;
  animation-delay: calc(var(--n) * 0.6s - 4.2s);
}
@keyframes av-karaoke {
  0%, 12% { color: var(--brand); text-shadow: 0 0 14px rgba(22, 255, 240, 0.7); }
  13%, 100% { color: #f4f4f6; text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7); }
}
.av-wave {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 4px;
  height: 26px;
  margin-bottom: 18px;
}
.av-wave i {
  --h: 0.5;
  width: 4px;
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--brand), var(--violet));
  transform: scaleY(var(--h));
  animation: av-wave 0.9s ease-in-out infinite;
}
.av-wave i:nth-child(1) { --h: 0.35; animation-delay: -0.1s; }
.av-wave i:nth-child(2) { --h: 0.7; animation-delay: -0.35s; }
.av-wave i:nth-child(3) { --h: 1; animation-delay: -0.6s; }
.av-wave i:nth-child(4) { --h: 0.55; animation-delay: -0.2s; }
.av-wave i:nth-child(5) { --h: 0.85; animation-delay: -0.75s; }
.av-wave i:nth-child(6) { --h: 0.4; animation-delay: -0.5s; }
.av-wave i:nth-child(7) { --h: 0.9; animation-delay: -0.05s; }
.av-wave i:nth-child(8) { --h: 0.5; animation-delay: -0.4s; }
.av-wave i:nth-child(9) { --h: 0.3; animation-delay: -0.65s; }
@keyframes av-wave {
  0%, 100% { transform: scaleY(var(--h)); }
  50% { transform: scaleY(calc(var(--h) * 0.35 + 0.1)); }
}
.av-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(22, 22, 28, 0.92);
  font-size: 0.82rem;
  font-weight: 600;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  animation: chip-float 7s ease-in-out infinite;
  white-space: nowrap;
  z-index: 2;
}
.av-chip .ico {
  width: 16px;
  height: 16px;
  color: var(--brand);
}
.av-chip.b .ico {
  color: var(--violet);
}
.av-chip.a { left: 0; top: 16%; animation-delay: 1.4s; }
.av-chip.b { right: 0; top: 46%; animation-delay: 0.4s; }
.av-chip.c { left: 6%; bottom: 8%; animation-delay: 2.2s; }
@media (max-width: 900px) {
  .av-row {
    grid-template-columns: 1fr;
  }
  .av-vis {
    padding: 10px 0 0;
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }
  .av-chip {
    position: static;
    animation: none;
    white-space: normal;
  }
  .av-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
  }
}
@media (min-width: 901px) {
  .av-chips {
    display: contents;
  }
}

@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;
  }
}

/* ── Icons (24.08.): Emoji sind raus, alle Piktogramme sind Strich-SVGs in
   den zwei Markenfarben. Größe folgt der font-size des Containers, Farbe
   der color-Eigenschaft - so bleiben die alten Layout-Regeln gültig. */
.ico-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
/* svg.ico statt .ico: Regeln wie ".nightclock svg" haben dieselbe
   Spezifität - der Elementname hier hebt die Icons wieder heraus. */
svg.ico {
  width: 1em;
  height: 1em;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  vertical-align: -0.14em;
}
.ctrl-ico {
  color: var(--brand);
}
.ctrl-card:nth-child(even) .ctrl-ico {
  color: var(--violet);
}
.o-ico {
  color: var(--violet);
}
.o-ico.warm {
  color: var(--brand);
}
.j-num {
  color: var(--j, var(--violet));
}
.notif-ico {
  color: var(--violet);
}
.w-lead-ico {
  color: var(--brand);
}
.ig-ava {
  color: var(--violet);
}
.nc-moon,
.w-moon,
.nc-zz,
.zz {
  color: var(--brand);
}
.float-chip svg.ico {
  color: var(--brand);
}
.float-chip.b svg.ico {
  color: var(--violet);
}
.like-pill svg.ico {
  color: var(--violet);
}
.like-pill + .like-pill svg.ico {
  color: var(--brand);
}
.danke-chip svg.ico {
  color: var(--brand);
}
.danke-chip.b svg.ico {
  color: var(--violet);
}
