/* =========================================================================
   TRUST LEAP — section layouts
   ========================================================================= */

/* generic card */
.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  overflow: hidden;
  transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s, background 0.35s;
}
.card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 2px;
  background: var(--grad-brand); transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s var(--ease);
  opacity: 0.6;
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,0.18);
  box-shadow: var(--shadow-card);
}
.card:hover::before { transform: scaleX(1); }
.card > * { position: relative; z-index: 1; }
.card__icon {
  width: 46px; height: 46px; border-radius: 13px;
  display: grid; place-items: center;
  background: var(--green-14); border: 1px solid var(--green-22);
  margin-bottom: 18px;
  transition: transform 0.4s var(--ease), background 0.35s;
}
.card:hover .card__icon { transform: translateY(-2px) scale(1.08); }
.card__icon svg { width: 22px; height: 22px; color: var(--green); }
.card h3 { font-size: var(--t-h3); margin-bottom: 10px; }
.card p { color: var(--text-2); font-size: 0.98rem; line-height: 1.55; }

/* number stat */
.stat-num {
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  font-weight: 800; letter-spacing: -0.04em;
  line-height: 1;
}

/* ---------------- PROBLEM ---------------- */
/* ---------------- PROBLEM ---------------- */
section#problem.band { overflow: visible; position: relative; }
section#problem.band > .wrap { position: relative; z-index: 1; }
.problem__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 80px); align-items: center;
  position: sticky;
  top: clamp(210px, 30vh, 360px);
  will-change: transform, opacity, filter;
}
@media (max-width: 900px){ .problem__grid { grid-template-columns: 1fr; position: static; } }
.lostlist { margin-top: 32px; display: grid; gap: 12px; }
.lostitem {
  display: flex; gap: 15px; align-items: flex-start;
  padding: 16px 18px;
  border-radius: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  transition: transform 0.3s var(--ease), border-color 0.3s, background 0.3s, box-shadow 0.3s;
}
.lostitem:hover { transform: translateX(5px); border-color: var(--coral-30); background: var(--surface-2); box-shadow: var(--shadow-card); }
.lostitem .x {
  flex: none; width: 28px; height: 28px; border-radius: 8px;
  display: grid; place-items: center; margin-top: 1px;
  background: var(--coral-10); border: 1px solid var(--coral-30); color: var(--coral);
  transition: background 0.3s, transform 0.3s var(--ease);
}
.lostitem:hover .x { background: var(--coral-18); transform: scale(1.08) rotate(-5deg); }
.lostitem .x svg { width: 15px; height: 15px; }
.lostitem b { font-weight: 700; color: var(--coral); display: block; margin-bottom: 4px; }
.lostitem p { color: var(--text-2); font-size: 0.96rem; line-height: 1.45; }
.lostitem .lost-sub { display: block; color: var(--muted); font-size: 0.93rem; }

/* scattered "lost referrals" visual */
.scatter { position: relative; align-self: stretch; min-height: 520px; display: flex; align-items: center; justify-content: center; }

/* central loss counter — styled like .jv-card (gradient border) */
.scatter__counter {
  position: relative;
  z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 24px 30px;
  border-radius: 14px;
  background:
    linear-gradient(160deg, #101a16, #0a120f) padding-box,
    linear-gradient(150deg, rgba(63,180,136,0.6), rgba(255,255,255,0.05) 42%, rgba(240,127,94,0.35)) border-box;
  border: 1px solid transparent;
  box-shadow: 0 24px 60px -18px rgba(0,0,0,0.7), 0 0 28px -10px rgba(63,180,136,0.32);
  text-align: center;
  pointer-events: none;
  width: 340px; max-width: 90%;
}
.scatter__big {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 700;
  background: linear-gradient(135deg, var(--coral), #ffb39a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.02em;
  line-height: 1;
}
.scatter__lbl {
  font-size: 0.9rem;
  color: #e6edf3;
  line-height: 1.35;
  margin-top: 4px;
}
.scatter__hint {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
  white-space: normal;
  line-height: 1.5;
  max-width: 100%;
}
@media (max-width: 760px) {
  .scatter__counter { padding: 18px 22px; width: 280px; }
  .scatter__hint { white-space: normal; }
  .scatter { min-height: 380px; padding: 0 12px; }
  /* Tighten chip positions on mobile so they stay inside the container */
  .scatter .node-wrap { max-width: 44vw; }
  .scatter .node-wrap[style*="left:calc(50% - 230px)"] { left: 8px !important; }
  .scatter .node-wrap[style*="right:calc(50% - 230px)"] { right: 8px !important; }
  .scatter .node { padding: 8px 12px; font-size: 0.78rem; }
  .scatter .node::before { width: 6px; height: 6px; }
}
/* soft cloud behind the floating chips (section 1) */
.scatter::before {
  content: ""; position: absolute; inset: -12% -16%; z-index: 0; pointer-events: none;
  background:
    radial-gradient(30% 30% at 40% 46%, rgba(63,180,136,0.12), transparent 100%),
    radial-gradient(34% 34% at 70% 60%, rgba(240,127,94,0.12), transparent 100%),
    radial-gradient(26% 26% at 50% 78%, rgba(120,160,235,0.06), transparent 100%);
  filter: blur(70px);
}
.scatter > * { position: relative; z-index: 1; }
.scatter .node-wrap {
  position: absolute;
  opacity: 0;
  transform: translateY(24px) scale(0.9);
  transition: opacity 0.65s var(--ease), transform 0.75s var(--ease);
  transition-delay: calc(var(--i, 0) * 95ms);
  will-change: opacity, transform;
}
.scatter.in .node-wrap { opacity: 1; transform: none; }
.scatter .node {
  position: relative;
  padding: 12px 16px; border-radius: 14px;
  background:
    linear-gradient(160deg, #14181d, #0e1116) padding-box,
    linear-gradient(150deg, rgba(255,255,255,0.10), rgba(255,255,255,0.03) 42%, rgba(255,255,255,0.06)) border-box;
  border: 1px solid transparent;
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.88rem; color: var(--text);
  box-shadow: 0 12px 28px -14px rgba(0,0,0,0.7);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.scatter .node::before { content:""; width: 8px; height: 8px; border-radius: 50%; background: var(--muted); flex-shrink: 0; }
.scatter .node-wrap.lost .node {
  color: var(--muted);
  /* same neutral chip look — "lost" is conveyed by muted text + slip animation, not by color */
}
.scatter .node-wrap.lost .node::before { background: var(--muted); opacity: 0.6; box-shadow: none; }
.scatter .node-wrap.lost .node:hover { transform: translateY(-1px); box-shadow: 0 16px 36px -14px rgba(0,0,0,0.55); }
/* lost referrals slowly slip away + fade (ambient loop, starts after entrance) */
.scatter.in .node-wrap.lost .node {
  animation: lost-slip var(--dur, 7s) ease-in-out infinite;
  animation-delay: calc(var(--i, 0) * 1.6s + 600ms);
}
@keyframes lost-slip {
  0%, 100% { transform: translate(0,0); opacity: 0.85; filter: grayscale(0.25) blur(0); }
  50%      { transform: translate(10px, 16px); opacity: 0.28; filter: grayscale(0.7) blur(0.6px); }
}

/* ---------------- SOLUTION ---------------- */
/* fog corridor handles the dark→light transition above; solution stays light */
/* solution bg fades in from the dark transition (no hard seam) */
#solution {
  position: relative; perspective: 1600px; margin-top: 0;
  padding-top: clamp(40px, 6vw, 96px);
  background: linear-gradient(#080b10 0px, #0d1626 720px) !important;
}
#solution > .wrap { position: relative; z-index: 1; }
/* Lösungsboden ist Navy (#0d1626) — hier weich auf exakt #080b10 (Bridge-Farbe) auslaufen, plus zarter Brand-Hauch */
#solution::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 660px;
  background:
    linear-gradient(180deg, rgba(13,22,38,0) 0%, rgba(12,19,30,0.5) 40%, rgba(10,14,22,0.85) 72%, #080b10 100%);
  pointer-events: none; z-index: 0;
}
#solution .solution__grid {
  transform-origin: 50% 100%;
  transform: rotateX(15deg) translateY(64px) scale(0.965);
  opacity: 0;
  transition: transform 1.05s var(--ease), opacity 0.85s var(--ease);
  will-change: transform, opacity;
}
#solution.in-3d .solution__grid { transform: none; opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  #solution .solution__grid { transform: none; opacity: 1; transition: none; }
}

.solution__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px,5vw,72px); align-items: center; }

/* solution transformation pillars (from → to) */
.transform-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; }
@media (max-width: 860px){ .transform-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; } }
.tcard {
  position: relative; text-align: left; overflow: hidden;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 30px 28px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s, border-color 0.35s;
}
.tcard::after {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: var(--grad-brand); transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.tcard:hover { transform: translateY(-6px); border-color: rgba(255,255,255,0.18); box-shadow: var(--shadow-card); }
.tcard:hover::after { transform: scaleX(1); }
.tcard__icon {
  width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center;
  background: var(--green-14); border: 1px solid var(--green-22); color: var(--green); margin-bottom: 24px;
}
.tcard__icon svg { width: 24px; height: 24px; }
.tcard__from {
  font-family: 'Space Mono', monospace; font-size: 0.78rem; letter-spacing: 0.04em;
  color: var(--muted); text-transform: uppercase;
}
.tcard__to {
  font-size: 1.32rem; font-weight: 700; letter-spacing: -0.02em; color: var(--text);
  margin: 10px 0 0; display: flex; align-items: center; gap: 10px;
}
.tcard__to svg { width: 18px; height: 18px; color: var(--coral); flex: none; }
.tcard p { color: var(--text-2); font-size: 0.95rem; line-height: 1.55; margin-top: 14px; }

/* ===== central explainer scene (what Trust Leap does, at a glance) ===== */
.flowscene {
  position: relative; margin-top: 56px; border-radius: 28px; overflow: hidden;
  background:
    radial-gradient(130% 120% at 0% 0%, rgba(63,180,136,0.16), transparent 52%),
    radial-gradient(130% 120% at 100% 100%, rgba(240,127,94,0.14), transparent 52%),
    linear-gradient(160deg, #101822, #0a0e13);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: var(--shadow-float);
  padding: clamp(32px, 4vw, 56px) clamp(22px, 4vw, 60px);
}
.flowscene__grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  gap: clamp(20px, 5vw, 72px);
}
.fs-col { position: relative; }
.fs-cap {
  font-family: 'Space Mono', monospace; font-size: 0.68rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--green); margin-bottom: 16px; display: block; text-align: center;
}

/* data-flow wires behind the columns */
.fs-wire { position: absolute; top: 50%; height: 2px; z-index: 1; transform: translateY(-50%);
  background: linear-gradient(90deg, transparent, rgba(63,180,136,0.55), transparent); border-radius: 2px; }
.fs-wire--l { left: 28%; width: 14%; }
.fs-wire--r { right: 28%; width: 14%; }
.fs-wire span { position: absolute; top: 50%; width: 9px; height: 9px; margin-top: -4.5px; border-radius: 50%;
  background: var(--green); box-shadow: 0 0 12px rgba(63,180,136,0.9); animation: fs-travel 2.6s linear infinite; }
.fs-wire--r span { animation-delay: 1.3s; }
@keyframes fs-travel { 0% { left: -4px; opacity: 0; } 12% { opacity: 1; } 88% { opacity: 1; } 100% { left: calc(100% - 4px); opacity: 0; } }

/* left: contact cards */
.fs-contacts { display: grid; gap: 12px; }
.fs-contact { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border-radius: 14px;
  background: rgba(255,255,255,0.045); border: 1px solid rgba(255,255,255,0.09); }
.fs-contact .ava { width: 36px; height: 36px; border-radius: 50%; flex: none; }
.fs-contact b { font-size: 0.9rem; color: #e9f0ee; display: block; }
.fs-contact span { font-size: 0.72rem; color: #748583; }
.fs-contact:nth-child(2) { margin-left: 18px; }
.fs-contact:nth-child(3) { margin-left: 6px; }

/* center: compact phone */
.fs-phone { position: relative; width: clamp(160px, 17vw, 200px); margin-inline: auto;
  border-radius: 32px; padding: 8px; background: linear-gradient(150deg, #2b323b, #0c0f14);
  box-shadow: var(--shadow-float), inset 0 1px 1px rgba(255,255,255,0.2); }
.fs-phone__scr { border-radius: 26px; overflow: hidden; background:
    radial-gradient(120% 60% at 50% 0%, rgba(63,180,136,0.18), transparent 60%), #0a0e13;
  padding: 22px 14px 16px; aspect-ratio: 184/360; }
.fs-phone__brand { display: flex; align-items: center; gap: 7px; font-weight: 700; font-size: 12px; color: #e9f0ee; letter-spacing: -0.02em; }
.fs-phone__brand i { width: 15px; height: 15px; border-radius: 5px; background: var(--grad-brand); display: block; }
.fs-phone__lbl { font-family: 'Space Mono', monospace; font-size: 8px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green); margin: 16px 0 7px; }
.fs-phone__link { display: flex; align-items: center; gap: 6px; padding: 8px 10px; border-radius: 10px;
  background: rgba(0,0,0,0.35); border: 1px solid rgba(255,255,255,0.08);
  font-family: 'Space Mono', monospace; font-size: 9px; color: #cfe9df; }
.fs-phone__link .copy { margin-left: auto; color: var(--green); }
.fs-phone__wa { display: flex; align-items: center; justify-content: center; gap: 7px; margin-top: 9px; padding: 10px;
  border-radius: 11px; font-weight: 700; font-size: 11px; background: #25D366; color: #04140b; }
.fs-phone__wa svg { width: 14px; height: 14px; }

/* right: onepager + dashboard */
.fs-right { display: grid; gap: 14px; }

/* floating bits */
.fs-bubble { position: absolute; z-index: 5; top: -14px; left: 50%; transform: translateX(-30%);
  width: 190px; padding: 10px 13px; border-radius: 14px 14px 14px 4px; background: #fff; color: #0c1c18;
  font-size: 11px; line-height: 1.4; box-shadow: 0 18px 40px -16px rgba(0,0,0,0.6); }
.fs-bubble::before { content: "WhatsApp"; display: block; font-size: 8.5px; font-weight: 700; color: #25D366; margin-bottom: 3px; }
.fs-badge { position: absolute; z-index: 5; bottom: -12px; right: 4%;
  display: inline-flex; align-items: center; gap: 8px; padding: 9px 14px; border-radius: 999px;
  background: var(--green); color: #04130d; font-weight: 700; font-size: 0.8rem;
  box-shadow: 0 14px 30px -10px rgba(63,180,136,0.7), 0 0 0 6px rgba(63,180,136,0.12);
  animation: fs-badge-pop 4s ease-in-out infinite; }
.fs-badge svg { width: 15px; height: 15px; }
@keyframes fs-badge-pop { 0%, 70%, 100% { transform: translateY(0); } 80% { transform: translateY(-5px); } }
@media (max-width: 900px) {
  .flowscene__grid { grid-template-columns: 1fr; gap: 40px; }
  .fs-wire { display: none; }
  .fs-contact:nth-child(2), .fs-contact:nth-child(3) { margin-left: 0; }
  .fs-bubble { position: static; transform: none; width: auto; margin: 0 auto 4px; max-width: 240px; }
  .fs-badge { position: static; margin: 4px auto 0; }
}
@media (prefers-reduced-motion: reduce) {
  .fs-wire span { animation: none; left: 50%; }
  .fs-badge { animation: none; }
}

/* ---------------- FALLGATE: durchs Raster fallen ---------------- */
.fallgate {
  position: relative;
  height: 150vh;                              /* scroll track length */
  background: #080b10;
  overflow: clip;
  pointer-events: none;
  z-index: 1;
}
.fallgate__stage {
  position: sticky; top: 0; height: 100vh;
  overflow: hidden;
}
.fallgate__canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
}
/* glowing core (vanishing point you fall into) */
.fallgate__core {
  position: absolute; left: 50%; top: 50%; width: 320px; height: 320px;
  transform: translate(-50%,-50%);
  background: radial-gradient(circle, rgba(63,180,136,0.32), rgba(120,160,235,0.10) 40%, transparent 72%);
  filter: blur(20px); opacity: 0;
  will-change: opacity;
}
@media (prefers-reduced-motion: reduce) {
  .fallgate { height: 60vh; }
  .fallgate__stage { position: relative; height: 60vh; }
}

/* ---------------- FOG GATE (scroll-pinned swallow → light) ---------------- */
.foggate {
  position: relative;
  z-index: 2;
  margin-top: 0;
  height: 150vh;                 /* fog-only transition */
  pointer-events: none;
}
.foggate__stage {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 100%);
          mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 100%);
}
/* dark veil that swallows section 2 (opacity driven by scroll) */
.foggate__veil {
  position: absolute; inset: 0;
  background:
    radial-gradient(130% 90% at 50% 120%, #16243a 0%, #0c1422 45%, #080b10 75%);
  opacity: 0;
  will-change: opacity;
}
/* blue wash that resolves into the (blue-dark) solution section */
.foggate__light {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,33,54,0.0) 0%, rgba(13,22,38,0.7) 55%, #0d1626 100%);
  opacity: 0;
  will-change: opacity;
}
/* volumetric god-rays that fan out as we break into the light */
.foggate__rays {
  position: absolute; left: 50%; bottom: -25%;
  width: 175vh; height: 175vh;
  transform: translateX(-50%);
  background: repeating-conic-gradient(from 0deg,
    rgba(255,255,255,0.0) 0deg 3deg,
    rgba(255,255,255,0.07) 3deg 4.2deg,
    rgba(255,255,255,0.0) 4.2deg 9deg);
  -webkit-mask-image: radial-gradient(circle at 50% 100%, #000 4%, rgba(0,0,0,0.5) 34%, transparent 62%);
          mask-image: radial-gradient(circle at 50% 100%, #000 4%, rgba(0,0,0,0.5) 34%, transparent 62%);
  mix-blend-mode: screen;
  opacity: 0;
  will-change: opacity;
  animation: rays-rot 90s linear infinite;
  pointer-events: none;
}
@keyframes rays-rot { to { transform: translateX(-50%) rotate(360deg); } }
.fogway__fog {
  position: absolute;
  border-radius: 50%;
  z-index: 2;
  will-change: transform, translate, rotate;
  pointer-events: none;
}
.foggate .f1 { width: 70vw; height: 70vw; max-width: 860px; max-height: 860px; left: -18vw; top: 26%; filter: blur(104px); background: radial-gradient(circle, rgba(63,180,136,0.78), transparent 70%); animation: fog-1 26s ease-in-out infinite; }
.foggate .f2 { width: 64vw; height: 64vw; max-width: 780px; max-height: 780px; right: -16vw; top: 36%; filter: blur(148px); background: radial-gradient(circle, rgba(240,127,94,0.66), transparent 70%); animation: fog-2 39s ease-in-out infinite -6s; }
.foggate .f3 { width: 58vw; height: 58vw; max-width: 700px; max-height: 700px; left: 4vw;  top: 52%; filter: blur(96px);  background: radial-gradient(circle, rgba(63,180,136,0.72), transparent 72%); animation: fog-3 21s ease-in-out infinite -9s; }
.foggate .f4 { width: 52vw; height: 52vw; max-width: 620px; max-height: 620px; right: 2vw;  top: 44%; filter: blur(156px); background: radial-gradient(circle, rgba(240,127,94,0.6), transparent 72%); animation: fog-4 47s ease-in-out infinite -3s; }
.foggate .f5 { width: 44vw; height: 44vw; max-width: 520px; max-height: 520px; left: 28vw; top: 32%; filter: blur(120px); background: radial-gradient(circle, rgba(120,210,255,0.34), transparent 72%); animation: fog-5 33s ease-in-out infinite -14s; }
/* general wind drifts left, but each layer has its own vector, bob & a touch of rotation */
@keyframes fog-1 { 0%,100% { translate: 0 0;     rotate: 0deg; }   50% { translate: -11% -5%; rotate: 4deg; } }
@keyframes fog-2 { 0%,100% { translate: 0 0;     rotate: 0deg; }   50% { translate: -8% 6%;   rotate: -3deg; } }
@keyframes fog-3 { 0%,100% { translate: 0 0;     rotate: -2deg; }  50% { translate: -14% -2%; rotate: 5deg; } }
@keyframes fog-4 { 0%,100% { translate: 0 0;     rotate: 0deg; }   50% { translate: -7% -7%;  rotate: 3deg; } }
@keyframes fog-5 { 0%,100% { translate: 0 0;     rotate: 0deg; }   34% { translate: -9% 4%;   rotate: -4deg; } 67% { translate: -5% -6%; rotate: 2deg; } }
/* fractal-noise cloud texture (wispy, uneven) over the soft blobs */
.foggate__wisp {
  position: absolute; inset: -30%;
  background:
    radial-gradient(60% 50% at 28% 38%, rgba(86,210,160,0.85), transparent 64%),
    radial-gradient(58% 50% at 72% 56%, rgba(245,150,120,0.75), transparent 64%),
    radial-gradient(50% 44% at 50% 80%, rgba(150,220,255,0.45), transparent 66%);
  -webkit-mask-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1500' height='1500'%3E%3Cfilter id='c'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.006' numOctaves='5' seed='5' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.95 0 0 0 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23c)'/%3E%3C/svg%3E"),
    radial-gradient(72% 68% at 50% 52%, #000 48%, transparent 100%);
          mask-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1500' height='1500'%3E%3Cfilter id='c'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.006' numOctaves='5' seed='5' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.95 0 0 0 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23c)'/%3E%3C/svg%3E"),
    radial-gradient(72% 68% at 50% 52%, #000 48%, transparent 100%);
  -webkit-mask-size: cover, cover;
          mask-size: cover, cover;
  -webkit-mask-repeat: no-repeat, no-repeat;
          mask-repeat: no-repeat, no-repeat;
  -webkit-mask-position: center, center;
          mask-position: center, center;
  -webkit-mask-composite: source-in;
          mask-composite: intersect;
  filter: blur(9px);
  opacity: 0.92;
  mix-blend-mode: screen;
  will-change: transform;
  animation: wisp-drift 46s linear infinite;
  pointer-events: none;
}
@keyframes wisp-drift {
  0%   { transform: translate(0, 0) scale(1.05); }
  50%  { transform: translate(-5%, -3%) scale(1.15); }
  100% { transform: translate(0, 0) scale(1.05); }
}

/* central guiding light band */
/* (3D tube transition removed — fog-only) */
.fog-tube-removed { display: none; }
.fogway__halo {
  position: absolute; left: 50%; bottom: 8%; transform: translate(-50%, 0);
  width: clamp(300px, 50vw, 760px); height: clamp(160px, 26vw, 360px);
  background: radial-gradient(ellipse at center, rgba(120,160,235,0.32), rgba(60,90,150,0.16) 42%, transparent 72%);
  opacity: 0;
  will-change: transform, opacity;
  pointer-events: none;
}
/* fog intensity variants (Tweaks) */
.foggate[data-fog="dezent"] { height: 150vh; }
.foggate[data-fog="dezent"] .foggate__wisp,
.foggate[data-fog="dezent"] .foggate__rays,
.foggate[data-fog="dezent"] .f5 { display: none; }
.foggate[data-fog="off"] {
  height: 64vh;
  background: linear-gradient(#080b10 0%, #0a1320 44%, #0d1626 100%);
}
.foggate[data-fog="off"] .foggate__stage { display: none; }

@media (prefers-reduced-motion: reduce) {
  .foggate { height: 60vh; }
  .foggate__stage { position: relative; height: 60vh; }
  .foggate__veil { opacity: 0.5; }
  .foggate__light { opacity: 0.5; }
  .fogway__fog { animation: none; }
  .foggate__wisp { animation: none; }
  .foggate__rays { animation: none; opacity: 0; }
}
@media (max-width: 900px){ .solution__grid { grid-template-columns: 1fr; } }
.flowpath { display: grid; gap: 0; }
.flowpath .step { display: flex; gap: 16px; align-items: flex-start; padding: 0 0 24px; position: relative; }
.flowpath .step:not(:last-child)::before {
  content:""; position: absolute; left: 17px; top: 38px; bottom: -2px; width: 2px;
  background: linear-gradient(var(--green), var(--green-22));
}
.flowpath .dot {
  flex: none; width: 36px; height: 36px; border-radius: 50%;
  display: grid; place-items: center; font-weight: 700; font-size: 0.9rem;
  background: var(--grad-brand); color: #04130d; z-index: 1;
}
.flowpath .step b { display:block; font-weight: 700; font-size: 1.06rem; }
.flowpath .step p { color: var(--text-2); font-size: 0.95rem; margin-top: 3px; }

/* ---------------- HOW IT WORKS (timeline) ---------------- */
.hiw { position: relative; }
.hiw__track {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px;
  margin-top: 64px; position: relative;
}
.hiw__line {
  position: absolute; top: 27px; left: 6%; right: 6%; height: 2px;
  background: var(--line);
  z-index: 0; overflow: hidden;
}
/* progress fill that draws across as the section enters view */
.hiw__line::before {
  content: ""; position: absolute; inset: 0; transform-origin: left; transform: scaleX(0);
  background: linear-gradient(90deg, var(--green), var(--coral));
  transition: transform 1.8s var(--ease);
}
.hiw__line.fill::before { transform: scaleX(1); }
/* travelling glow dot riding the progress edge */
.hiw__line::after {
  content: ""; position: absolute; top: 50%; left: 0; width: 11px; height: 11px; margin-top: -5.5px;
  border-radius: 50%; background: #fff; box-shadow: 0 0 12px 2px rgba(63,180,136,0.9);
  opacity: 0; transform: translateX(-50%);
  transition: left 1.8s var(--ease), opacity 0.3s;
}
.hiw__line.fill::after { left: 100%; opacity: 1; }
.hiw__step { position: relative; z-index: 1; text-align: center; }
.hiw__num {
  width: 54px; height: 54px; border-radius: 50%; margin: 0 auto 20px;
  display: grid; place-items: center;
  font-family:'Space Mono',monospace; font-weight: 700; font-size: 1.05rem;
  background: var(--bg); border: 2px solid var(--line); color: var(--muted);
  box-shadow: 0 0 0 6px var(--bg);
  transition: transform 0.4s var(--ease), border-color 0.4s, color 0.4s, background 0.4s, box-shadow 0.4s;
}
/* sequential activation as the progress line reaches each step */
.hiw__step.lit .hiw__num {
  background: var(--green); color: #04130d; border-color: var(--green);
  box-shadow: 0 0 0 6px var(--bg), 0 0 22px -2px rgba(63,180,136,0.7);
}
.hiw__step:hover .hiw__num { transform: translateY(-4px) scale(1.06); background: var(--green); color: #04130d; border-color: var(--green); }
.hiw__step h3 { font-size: 1.12rem; margin-bottom: 8px; }
.hiw__step p { color: var(--text-2); font-size: 0.92rem; line-height: 1.5; }
.hiw__icon { display:inline-flex; margin-bottom: 14px; color: var(--green); }
.hiw__icon svg { width: 20px; height: 20px; }
@media (max-width: 860px){
  .hiw__track { grid-template-columns: 1fr; gap: 14px; margin-top: 40px; text-align: left; }
  .hiw__line { display: none; }
  .hiw__step { display: grid; grid-template-columns: 54px 1fr; gap: 18px; align-items: start; text-align: left; }
  .hiw__num { margin: 0; }
  .hiw__icon { display: none; }
}

/* ---------------- FEATURES (bento) ---------------- */
.bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; margin-top: 56px; }
.bento .card { grid-column: span 2; }
.bento .card.wide { grid-column: span 3; }
.bento .card.tall { grid-row: span 2; grid-column: span 2; display: flex; flex-direction: column; }
.bento .card.feat { grid-column: span 3; }
@media (max-width: 920px){ .bento { grid-template-columns: repeat(2, 1fr); } .bento .card, .bento .card.wide, .bento .card.feat, .bento .card.tall { grid-column: span 1; grid-row: auto; } }
@media (max-width: 560px){ .bento { grid-template-columns: 1fr; } }

.feat-visual { margin-top: auto; padding-top: 22px; }
.kpi-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 16px; }
.kpi { padding: 9px 13px; border-radius: 11px; background: var(--green-08); border: 1px solid var(--green-22); }
.kpi b { font-size: 1.25rem; font-weight: 800; letter-spacing: -0.02em; }
.kpi span { font-size: 0.72rem; color: var(--muted); display:block; }

/* ---------------- USE CASES (horizontal scroll carousel) ---------------- */
#usecases { position: relative; overflow: hidden; }
.uc-atmos {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(45% 55% at 50% 30%, rgba(63,180,136,0.05), transparent 72%);
  filter: blur(40px);
}
#usecases .wrap { position: relative; z-index: 1; }
.uc-carousel { position: relative; margin-top: 56px; }
.uc-track {
  display: flex; gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 0;
  padding: 12px 0 18px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.18) transparent;
  /* edge fades are JS-controlled via --fl (fade-left) and --fr (fade-right) — 0% at the boundary, 5% in the middle */
  --fl: 0%;
  --fr: 0%;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 var(--fl), #000 calc(100% - var(--fr)), transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0%, #000 var(--fl), #000 calc(100% - var(--fr)), transparent 100%);
  transition: --fl 0.18s ease, --fr 0.18s ease;
}
.uc-track::-webkit-scrollbar { height: 6px; }
.uc-track::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.18); border-radius: 4px; }
.uc-track::-webkit-scrollbar-track { background: transparent; }
.uc-track .uc {
  flex: 0 0 clamp(300px, 31vw, 380px);
  scroll-snap-align: start;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  padding: 24px 24px 22px;
}
.uc__tag { font-family:'Space Mono',monospace; font-size: 0.72rem; letter-spacing: 0.08em; color: var(--coral); text-transform: uppercase; }
.uc h3 { font-size: 1.28rem; margin: 12px 0 10px; }
.uc p { color: var(--text-2); font-size: 0.93rem; line-height: 1.5; }
.uc__arrow { margin-top: 18px; display: inline-flex; align-items:center; gap: 7px; color: var(--green); font-weight: 600; font-size: 0.92rem; text-decoration: none; align-self: flex-start; }
.uc__arrow svg { width: 15px; height: 15px; transition: transform 0.3s var(--ease); }
.uc:hover .uc__arrow { color: var(--coral); }
.uc:hover .uc__arrow svg { transform: translateX(4px); }

.uc-carousel__dots { display: flex; justify-content: center; gap: 8px; margin-top: 8px; }
.uc-carousel__dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: rgba(255,255,255,0.14); border: none; padding: 0; cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease, width 0.3s ease;
}
.uc-carousel__dot.is-active { background: var(--coral); width: 22px; border-radius: 6px; }
.uc-carousel__hint {
  display: block; text-align: center; margin-top: 12px;
  font-family: 'Space Mono', monospace; font-size: 0.66rem; letter-spacing: 0.08em;
  color: var(--muted); text-transform: uppercase;
}

/* shared visual frame */
.uc-mock {
  margin-top: 18px; padding: 16px 16px;
  background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0));
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
}

/* 01 — KPI Finanz */
.uc-kpi-row { display: flex; align-items: center; gap: 12px; }
.uc-kpi { flex: 1; min-width: 0; }
.uc-kpi__val { display: block; font-family: 'Bricolage Grotesque', sans-serif; font-size: 1.65rem; font-weight: 800; color: var(--text); line-height: 1; }
.uc-kpi__val--coral { color: var(--coral); }
.uc-kpi__lbl { display: block; font-family: 'Space Mono', monospace; font-size: 0.62rem; letter-spacing: 0.06em; color: var(--muted); margin-top: 5px; line-height: 1.3; }
.uc-kpi__arrow { color: var(--muted); font-size: 1.1rem; align-self: flex-start; padding-top: 6px; }
.uc-kpi-bar { position: relative; margin-top: 16px; }
.uc-kpi-bar::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 6px; border-radius: 4px; background: rgba(255,255,255,0.06); }
.uc-kpi-bar__fill { position: absolute; left: 0; top: 0; height: 6px; border-radius: 4px; background: linear-gradient(90deg, var(--green), var(--coral)); }
.uc-kpi-bar__lbl { display: block; font-family: 'Space Mono', monospace; font-size: 0.62rem; letter-spacing: 0.06em; color: var(--muted); padding-top: 14px; }

/* 02 — Vorher/Nachher */
.uc-mock--prepost { display: flex; align-items: center; gap: 12px; }
.uc-pp { flex: 1; min-width: 0; padding: 8px 10px; border-radius: 9px; background: rgba(255,255,255,0.025); border: 1px solid rgba(255,255,255,0.05); }
.uc-pp--after { background: rgba(240,127,94,0.07); border-color: rgba(240,127,94,0.22); }
.uc-pp__lbl { display: block; font-family: 'Space Mono', monospace; font-size: 0.62rem; letter-spacing: 0.06em; color: var(--muted); text-transform: uppercase; }
.uc-pp--after .uc-pp__lbl { color: var(--coral); }
.uc-pp__val { display: block; font-family: 'Bricolage Grotesque', sans-serif; font-size: 1.15rem; font-weight: 800; color: var(--text); line-height: 1.2; margin-top: 2px; }
.uc-pp__val--coral { color: var(--coral); }
.uc-pp__cap { display: block; font-size: 0.74rem; color: var(--muted); line-height: 1.3; margin-top: 2px; }
.uc-pp__arrow { color: var(--muted); font-size: 1.1rem; }

/* 03 — Quote */
.uc-quote { display: flex; flex-direction: column; gap: 12px; }
.uc-quote__bubble {
  display: block; position: relative;
  padding: 10px 12px;
  background: linear-gradient(135deg, rgba(37,211,102,0.13), rgba(37,211,102,0.04));
  border: 1px solid rgba(37,211,102,0.22);
  border-radius: 14px 14px 14px 4px;
  font-size: 0.88rem; color: var(--text); line-height: 1.45;
}
.uc-quote__src { display: flex; align-items: center; gap: 10px; }
.uc-quote__av { width: 28px; height: 28px; border-radius: 50%; object-fit: cover; border: 1.5px solid rgba(37,211,102,0.4); }
.uc-quote__src span { display: flex; flex-direction: column; line-height: 1.25; }
.uc-quote__src b { font-size: 0.82rem; color: var(--text); font-weight: 600; }
.uc-quote__src em { font-style: normal; font-family: 'Space Mono', monospace; font-size: 0.62rem; letter-spacing: 0.06em; color: var(--muted); }

/* 04 — List */
.uc-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.uc-list li { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; color: var(--text); }
.uc-list__chk {
  flex: none; width: 16px; height: 16px; border-radius: 50%;
  background: var(--green);
  position: relative;
  box-shadow: 0 0 0 3px rgba(63,180,136,0.18);
}
.uc-list__chk::after {
  content: ""; position: absolute; left: 4px; top: 6px;
  width: 4px; height: 7px;
  border-right: 1.6px solid #fff; border-bottom: 1.6px solid #fff;
  transform: rotate(45deg);
}

/* Beta-voice chip per Use Case card */
.uc-voice {
  margin-top: 14px;
  padding: 11px 13px 12px;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(63,180,136,0.05), rgba(255,255,255,0.015));
  border: 1px solid rgba(63,180,136,0.16);
  display: flex; flex-direction: column; gap: 5px;
}

/* 05 — Custom CTA card with image placeholder */
.uc--cta {
  background: linear-gradient(165deg, rgba(63,180,136,0.06), rgba(240,127,94,0.05)) padding-box,
              linear-gradient(150deg, rgba(63,180,136,0.4), rgba(255,255,255,0.04) 50%, rgba(240,127,94,0.3)) border-box;
  border: 1px solid transparent;
}
.uc__placeholder {
  position: relative;
  margin: -28px -28px 18px; /* full-bleed top */
  height: 160px;
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.04) 0 12px, rgba(255,255,255,0.02) 12px 24px),
    linear-gradient(135deg, rgba(63,180,136,0.10), rgba(240,127,94,0.08));
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.uc__placeholder-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.66rem; letter-spacing: 0.16em;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
}
.uc__placeholder-hint {
  font-size: 0.78rem;
  color: var(--muted);
}

/* 05 — CTA card: same look as cards 1-4 (uses default .card styling) but with a subtle coral glow on the right edge */
.uc--cta {
  background:
    radial-gradient(80% 100% at 100% 50%, rgba(240,127,94,0.10), transparent 70%),
    var(--surface);
  border-color: rgba(240,127,94,0.22);
}
.uc-mock--branches { padding: 14px 16px; }
.uc-branches-row {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
}
.uc-bchip {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 9px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  color: var(--text-2);
}
.uc-bchip svg { width: 14px; height: 14px; }
.uc-bchip--add {
  width: auto; padding: 0 12px; height: 32px;
  background: transparent;
  border: 1px dashed rgba(240,127,94,0.5);
  color: var(--coral);
  font-family: 'Space Mono', monospace;
  font-size: 0.74rem; font-weight: 600;
  letter-spacing: 0.04em;
  margin-left: auto;
}
.uc-voice__q {
  font-size: 0.82rem; line-height: 1.4;
  color: var(--text-2); font-style: italic;
}
.uc-voice__by {
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem; letter-spacing: 0.08em;
  color: var(--muted); text-transform: uppercase;
}

/* Demo-Section: trust meta chips below bullets */
.demo-meta {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-top: 24px; padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.demo-meta__chip {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 6px 11px; border-radius: 999px;
  background: rgba(63,180,136,0.07);
  border: 1px solid rgba(63,180,136,0.20);
  color: var(--text-2); font-size: 0.78rem;
}
.demo-meta__chip svg { width: 13px; height: 13px; color: var(--green); }

/* ===== Sticky Mobile CTA (≤720px only) ===== */
.sticky-cta-mobile {
  position: fixed; left: 16px; right: 16px; bottom: 16px;
  z-index: 90;
  /* hidden by default — JS toggles .show once user has scrolled past the hero */
  opacity: 0; transform: translateY(110%);
  pointer-events: none;
  transition: opacity 0.28s ease, transform 0.28s ease;
  display: none;
  align-items: center; justify-content: center; gap: 10px;
  padding: 15px 22px;
  background: var(--coral);
  color: #fff; font-weight: 600; font-size: 1rem;
  border-radius: 14px;
  text-decoration: none;
  box-shadow:
    0 16px 32px -10px rgba(240,127,94,0.5),
    0 0 0 1px rgba(255,255,255,0.06) inset;
  transition: transform 0.2s ease, box-shadow 0.25s ease;
}
.sticky-cta-mobile svg { width: 16px; height: 16px; transition: transform 0.25s ease; }
.sticky-cta-mobile:hover svg { transform: translateX(4px); }
.sticky-cta-mobile:active { transform: scale(0.98); }
/* Show only on mobile, and not when the user is at the very top (hero own CTA visible) */
@media (max-width: 720px) {
  .sticky-cta-mobile { display: inline-flex; }
  .sticky-cta-mobile.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
}

/* ---------------- BENEFITS strip ---------------- */
.benefits { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 52px; }
@media (max-width: 900px){ .benefits { grid-template-columns: repeat(2,1fr);} }
@media (max-width: 480px){ .benefits { grid-template-columns: 1fr;} }

/* numbered glass benefit cards (top accent + glow inherited from .card) */
.benefit-card { background: var(--glass); border-color: var(--glass-line); backdrop-filter: blur(18px) saturate(1.2); }
.benefit-card .idx {
  position: absolute; top: 20px; right: 22px;
  font-family: 'Space Mono', monospace; font-size: 0.8rem; letter-spacing: 0.1em;
  color: var(--muted); opacity: 0.6; z-index: 1;
}
.benefit { text-align: left; }
.benefit .stat-num { background: var(--grad-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.benefit p { margin-top: 8px; color: var(--text-2); font-size: 0.95rem; }
.benefit small { color: var(--muted); font-size: 0.8rem; display:block; margin-top: 4px; }

/* featured social-proof card */
.proof-grid { position: relative; }
.quote--feat { grid-column: span 1; }
.quote__mark {
  position: absolute; top: 14px; right: 22px;
  font-family: Georgia, serif; font-size: 5rem; line-height: 1;
  color: var(--green); opacity: 0.16; pointer-events: none; user-select: none;
}
.quote { overflow: hidden; }

/* ---------------- DASHBOARD section ---------------- */
.dash__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(36px,5vw,64px); align-items: center; }
@media (max-width: 980px){ .dash__grid { grid-template-columns: 1fr; } }
.dashboard {
  border-radius: var(--r-xl); overflow: hidden;
  background: var(--surface-2); border: 1px solid var(--line);
  box-shadow: var(--shadow-float);
}
.dashboard__bar { display: flex; align-items: center; gap: 8px; padding: 13px 16px; border-bottom: 1px solid var(--line); background: rgba(255,255,255,0.02); }
.dashboard__bar i { width: 11px; height: 11px; border-radius: 50%; background: var(--line); }
.dashboard__bar i:nth-child(1){ background:#ff5f57;} .dashboard__bar i:nth-child(2){ background:#febc2e;} .dashboard__bar i:nth-child(3){ background:#28c840;}
.dashboard__bar span { margin-left: 10px; font-family:'Space Mono',monospace; font-size: 0.72rem; color: var(--muted); }
.dashboard__body { padding: 22px; }
.dash-kpis { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin-bottom: 20px; }
.dash-kpi { padding: 14px; border-radius: 14px; background: var(--surface); border: 1px solid var(--line); }
.dash-kpi .lbl { font-size: 0.7rem; color: var(--muted); font-family:'Space Mono',monospace; letter-spacing: 0.05em; }
.dash-kpi b { font-size: 1.55rem; font-weight: 800; letter-spacing:-0.03em; display:block; margin-top:5px; }
.dash-kpi .up { font-size: 0.72rem; color: var(--green); font-weight: 700; }
.dash-kpi .up.dn { color: var(--coral); }
@media (max-width: 560px){ .dash-kpis { grid-template-columns: repeat(2,1fr);} }

.dash-chart {
  border-radius: 16px; background: var(--surface); border: 1px solid var(--line);
  padding: 18px; position: relative;
}
.dash-chart .h { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.dash-chart .h b { font-size: 0.95rem; }
.bars { display: flex; align-items: flex-end; gap: 9px; height: 120px; }
.bars .col { flex: 1; display: flex; flex-direction: column; justify-content: flex-end; gap: 3px; }
.bars .col i { border-radius: 4px 4px 2px 2px; background: linear-gradient(var(--green), rgba(63,180,136,0.3)); transform-origin: bottom; }
.bars .col i.c { background: linear-gradient(var(--coral), rgba(240,127,94,0.3)); }
.bars .col span { font-size: 0.62rem; color: var(--muted); text-align:center; font-family:'Space Mono',monospace; }

/* ---------------- TRUST / DSGVO ---------------- */
.trust__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px,5vw,72px); align-items: center; }
@media (max-width: 900px){ .trust__grid { grid-template-columns: 1fr; } }
.trust-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 480px){ .trust-cards { grid-template-columns: 1fr; } }
.trust-card { padding: 22px; border-radius: var(--r-md); background: var(--surface); border: 1px solid var(--line); }
.trust-card svg { width: 24px; height: 24px; color: var(--green); margin-bottom: 12px; }
.trust-card b { display:block; font-weight: 700; margin-bottom: 5px; }
.trust-card p { color: var(--text-2); font-size: 0.88rem; line-height: 1.5; }

/* shield visual */
.shield-wrap { position: relative; display: grid; place-items: center; min-height: 420px; }
.shield {
  width: 220px; height: 256px; position: relative; z-index: 2;
  background: linear-gradient(160deg, var(--glass-2), var(--glass));
  border: 1px solid var(--green-40);
  border-radius: 50% 50% 50% 50% / 16% 16% 84% 84%;
  clip-path: path("M110 4 C 70 30, 30 38, 8 42 C 8 130, 30 210, 110 252 C 190 210, 212 130, 212 42 C 190 38, 150 30, 110 4 Z");
  display: grid; place-items: center;
  box-shadow: var(--glow-green);
  backdrop-filter: blur(10px);
}
.shield svg { width: 64px; height: 64px; color: var(--green); }
.shield-ring { position: absolute; border-radius: 50%; border: 1px solid var(--green-22); }
.shield-ring.a { width: 320px; height: 320px; animation: pulse-ring 4s ease-in-out infinite; }
.shield-ring.b { width: 420px; height: 420px; animation: pulse-ring 4s ease-in-out infinite 0.6s; }
@keyframes pulse-ring { 0%,100%{ opacity:0.25; transform: scale(0.96);} 50%{ opacity:0.6; transform: scale(1);} }
.dsgvo-chip {
  position: absolute; z-index: 3;
  padding: 9px 14px; border-radius: var(--r-pill);
  background: var(--glass-2); border: 1px solid var(--glass-line); backdrop-filter: blur(12px);
  font-size: 0.78rem; font-weight: 600; display:flex; align-items:center; gap:7px;
  box-shadow: var(--shadow-card);
}
.dsgvo-chip svg { width: 14px; height: 14px; color: var(--green); }
.dsgvo-chip.c1 { top: 40px; left: 0; } .dsgvo-chip.c2 { top: 120px; right: 0; } .dsgvo-chip.c3 { bottom: 60px; left: 16px; }

/* ---------------- SOCIAL PROOF ---------------- */
.proof-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 52px; }
@media (max-width: 900px){ .proof-grid { grid-template-columns: 1fr; } }
.quote { display: flex; flex-direction: column; }
.quote__stars { display: flex; gap: 3px; color: var(--coral); margin-bottom: 16px; }
.quote__stars svg { width: 16px; height: 16px; }
.quote blockquote { margin: 0; font-size: 1.05rem; line-height: 1.55; color: var(--text); font-weight: 500; }
.quote__who { display: flex; align-items: center; gap: 12px; margin-top: 22px; }
.quote__who .ava { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--green), var(--coral)); flex: none; opacity: 0.85; }
.quote__who b { font-size: 0.92rem; display:block; }
.quote__who span { font-size: 0.8rem; color: var(--muted); }
.proof-note { text-align:center; margin-top: 28px; }

/* ---------------- DEMO CTA ---------------- */
.democta {
  position: relative;
  border-radius: var(--r-xl);
  padding: clamp(40px, 6vw, 72px);
  overflow: hidden;
  background:
    radial-gradient(120% 130% at 0% 0%, rgba(63,180,136,0.22), transparent 55%),
    radial-gradient(120% 130% at 100% 100%, rgba(240,127,94,0.22), transparent 55%),
    var(--surface-2);
  border: 1px solid var(--glass-line);
}
.democta__grid { display: grid; grid-template-columns: 1fr 0.9fr; gap: clamp(32px,5vw,56px); align-items: center; position: relative; z-index: 2; }
@media (max-width: 900px){ .democta__grid { grid-template-columns: 1fr; } }
.democta h2 { font-size: var(--t-h2); }
.demo-list { display: grid; gap: 12px; margin-top: 24px; }
.demo-list li { display: flex; gap: 11px; align-items: flex-start; list-style: none; color: var(--text-2); font-size: 0.98rem; }
.demo-list svg { width: 20px; height: 20px; color: var(--green); flex: none; margin-top: 1px; }

.demo-form { display: grid; gap: 13px; }
.demo-form .field { display: grid; gap: 6px; }
.demo-form label { font-size: 0.78rem; font-weight: 600; color: var(--text-2); font-family:'Space Mono',monospace; letter-spacing: 0.04em; }
.demo-form input, .demo-form select {
  width: 100%; padding: 13px 15px; border-radius: var(--r-md);
  background: var(--glass); border: 1px solid var(--glass-line); color: var(--text);
  font-family: inherit; font-size: 0.96rem; transition: border-color 0.2s, background 0.2s;
}
.demo-form input::placeholder { color: var(--muted); }
.demo-form input:focus, .demo-form select:focus { outline: none; border-color: var(--green); background: var(--glass-2); }
.demo-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
@media (max-width: 480px){ .demo-form .row { grid-template-columns: 1fr; } }
.demo-form .btn { justify-content: center; width: 100%; margin-top: 4px; }
.demo-form .privacy { font-size: 0.74rem; color: var(--muted); display:flex; gap:8px; align-items:flex-start; }
.demo-form .privacy svg { width: 14px; height: 14px; color: var(--green); flex:none; margin-top:2px; }

/* DSGVO consent checkbox */
.df-consent {
  display: flex; align-items: flex-start; gap: 11px;
  font-size: 0.8rem; line-height: 1.5; color: var(--text-2);
  cursor: pointer; margin-top: 2px;
}
.df-consent input { position: absolute; opacity: 0; width: 0; height: 0; }
.df-consent__box {
  flex: none; width: 20px; height: 20px; margin-top: 1px;
  border: 1.5px solid var(--glass-line); border-radius: 6px;
  background: var(--glass);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background 0.18s, border-color 0.18s;
}
.df-consent__box svg { width: 13px; height: 13px; color: #fff; opacity: 0; transform: scale(0.6); transition: opacity 0.18s, transform 0.18s; }
.df-consent input:checked + .df-consent__box { background: var(--green); border-color: var(--green); }
.df-consent input:checked + .df-consent__box svg { opacity: 1; transform: scale(1); }
.df-consent input:focus-visible + .df-consent__box { outline: 2px solid var(--green); outline-offset: 2px; }
.df-consent__text a { color: var(--green); text-decoration: underline; }

/* ---------------- FAQ ---------------- */
.faq-list { max-width: 800px; margin: 52px auto 0; display: grid; gap: 12px; }
.faq-item { border: 1px solid var(--line); border-radius: var(--r-md); background: var(--surface); overflow: hidden; transition: border-color 0.25s; }
.faq-item.open { border-color: var(--green-40); }
.faq-q { width: 100%; display: flex; justify-content: space-between; gap: 16px; align-items: center; padding: 20px 24px; background: transparent; border: 0; cursor: pointer; text-align: left; color: var(--text); font-family: inherit; font-size: 1.02rem; font-weight: 600; }
.faq-q .ic { flex: none; width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; border: 1px solid var(--line); transition: transform 0.3s var(--ease), background 0.3s, color 0.3s, border-color 0.3s; color: var(--green); }
.faq-item.open .faq-q .ic { transform: rotate(45deg); background: var(--green); color: #04130d; border-color: var(--green); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-a__inner { padding: 0 24px 22px; color: var(--text-2); font-size: 0.97rem; line-height: 1.6; }

/* ---------------- FINAL CTA ---------------- */
.finalcta { position: relative; text-align: center; }
.finalcta .aurora span.a { width: 560px; height: 560px; background: var(--green); top: -160px; left: 50%; translate: -50%; opacity: 0.22; }
.finalcta .aurora span.b { width: 420px; height: 420px; background: var(--coral); bottom: -200px; left: 30%; opacity: 0.16; }
.finalcta h2 { font-size: clamp(2.4rem, 5.5vw, 4rem); max-width: 16ch; margin: 0 auto; }
.finalcta .lead { margin-inline: auto; max-width: 600px; }
.finalcta__cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 38px; }

/* network visual behind final cta */
.netviz { position: relative; height: 200px; margin-top: 56px; }

/* ---------------- FOOTER ---------------- */
.footer { position: relative; border-top: 0; padding-block: 80px 40px; }
/* Drop the heavy top-fade pseudo-element — the .band--light::after handles the transition cleanly */
/* soft top fade so FAQ (#080b10) blends into the #060809 footer — no colored fog */
.footer::before {
  display: block; content: "";
  position: absolute; left: 0; right: 0; top: 0; height: 300px;
  background: linear-gradient(180deg, #080b10 0%, #070a0d 38%, rgba(6,8,9,0) 100%);
  pointer-events: none; z-index: 0;
}
.footer .wrap { position: relative; z-index: 1; }
.footer__grid { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 40px; }
@media (max-width: 760px){ .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
.footer__brand svg, .footer__brand img { height: 26px; margin-bottom: 16px; }
.footer__brand p { color: var(--muted); font-size: 0.9rem; max-width: 280px; }
.footer__col h4 { font-size: 0.78rem; font-family:'Space Mono',monospace; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.footer__col a { display: block; color: var(--text-2); font-size: 0.92rem; padding: 6px 0; transition: color 0.2s; }
.footer__col a:hover { color: var(--green); }
.footer__bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 48px; padding-top: 28px; border-top: 1px solid var(--line); color: var(--muted); font-size: 0.82rem; }

/* utility */
.mt-s { margin-top: 18px; } .mt-m { margin-top: 30px; }
.center { text-align: center; }
.divider-soft { height: 1px; background: var(--line); border: 0; margin: 0; }

/* ===================== SOLUTION SCROLLYTELLING ===================== */
.tl-solution {
  overflow: visible;
  --vp-aspect: 1760 / 1100;
  --op-l: 4.52%; --op-t: 14.19%; --op-w: 90.95%; --op-h: 80%;
  background: var(--bg);
  color: var(--text);
  font-family: inherit;
  position: relative; overflow: hidden;
  padding: 0;
}
.tl-solution .atmos {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  -webkit-mask-image: linear-gradient(transparent 0%, #000 14%, #000 92%, transparent 100%);
          mask-image: linear-gradient(transparent 0%, #000 14%, #000 92%, transparent 100%);
}
.tl-solution .atmos::before {
  content: ""; position: absolute; inset: -20%;
  background:
    radial-gradient(40% 30% at 18% 18%, rgba(63,180,136,0.16), transparent 70%),
    radial-gradient(42% 30% at 85% 40%, rgba(240,127,94,0.12), transparent 72%);
}
.tl-solution .wrap { position: relative; z-index: 2; max-width: none; padding: 0; }
.tl-solution .intro {
  max-width: 1200px; margin: 0 auto;
  padding: 14vh 6vw 6vh; text-align: center;
}
.tl-solution .intro .eyebrow {
  display: inline-block; margin-bottom: 14px;
  font-size: 0.78rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--green); font-weight: 600;
}
.tl-solution .intro .eyebrow::before, .tl-solution .intro .eyebrow::after { content: none; }
.tl-solution .intro h2 {
  font-family: inherit;
  font-weight: 800; font-size: clamp(2rem, 5vw, 3.4rem);
  letter-spacing: -0.02em; line-height: 1.02;
}
.tl-solution .intro h2 em { font-style: normal; color: var(--coral); }
.tl-solution .intro p {
  margin: 16px auto 0; max-width: 640px;
  color: var(--text-2); font-size: clamp(0.95rem, 1.6vw, 1.1rem);
}
.tl-solution .stage {
  position: sticky; top: 0; height: 100vh;
  display: flex; align-items: center; gap: clamp(20px, 4vw, 64px);
  max-width: 1320px; margin: 0 auto; padding: 0 6vw;
}
.tl-solution .viewport {
  position: relative; flex: 1 1 58%;
  aspect-ratio: var(--vp-aspect);
  background-size: contain; background-repeat: no-repeat; background-position: center;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.55));
}
.tl-solution .screen {
  position: absolute; left: var(--op-l); top: var(--op-t);
  width: var(--op-w); height: var(--op-h);
  overflow: hidden; border-radius: 1.4cqw;
  container-type: inline-size;
}
.tl-solution .gfx {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: contain; opacity: 0; transform: scale(1.04);
  will-change: opacity, transform;
  filter: drop-shadow(0 0 24px rgba(63,180,136,0.22));
}
.tl-solution .gfx.active {
  opacity: 1; transform: scale(1);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.tl-solution .panel {
  flex: 1 1 42%; position: relative;
  display: flex; flex-direction: column; gap: 6px;
  max-width: 440px;
}
.tl-solution .progress { display: flex; gap: 8px; margin-bottom: 22px; }
.tl-solution .seg {
  height: 3px; flex: 1; border-radius: 2px;
  background: rgba(255,255,255,0.10); overflow: hidden;
}
.tl-solution .seg i {
  display: block; height: 100%; width: 0;
  background: linear-gradient(90deg, var(--green), var(--coral));
  transition: width 0.25s ease;
}
.tl-solution .steps { position: relative; min-height: 460px; }
.tl-solution .step {
  position: absolute; inset: 0;
  opacity: 0; visibility: hidden; transform: translateY(14px);
  pointer-events: none;
  display: flex; flex-direction: column; justify-content: flex-start;
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}
.tl-solution .step.active {
  opacity: 1 !important; visibility: visible !important;
  transform: translateY(0);
  pointer-events: auto; position: relative !important;
}
.tl-solution .step .num {
  font-family: inherit;
  font-size: 0.85rem; font-weight: 700; color: var(--green); letter-spacing: 0.12em;
}
.tl-solution .step h3 {
  font-family: inherit;
  font-weight: 800; font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.05; letter-spacing: -0.02em;
  margin: 10px 0 14px;
}
.tl-solution .step h3 b { color: var(--coral); font-weight: 800; }
.tl-solution .step p {
  color: var(--text-2);
  font-size: clamp(0.98rem, 1.5vw, 1.12rem); line-height: 1.55;
}
@media (max-width: 820px) {
  .tl-solution .stage { flex-direction: column; height: auto; position: static; padding: 0 5vw; gap: 0; }
  .tl-solution .viewport { position: sticky; top: 8vh; width: 100%; flex: none; margin-bottom: 4vh; }
  .tl-solution .panel { max-width: none; width: 100%; }
  .tl-solution .step { position: relative; opacity: 1; transform: none; min-height: 60vh; display: flex; flex-direction: column; justify-content: center; }
  .tl-solution .progress { position: sticky; top: 4vh; z-index: 3; }
}
@media (prefers-reduced-motion: reduce) {
  .tl-solution .gfx { opacity: 1; position: relative; transform: none; }
  .tl-solution .step { opacity: 1; position: relative; transform: none; margin-bottom: 8vh; }
  .tl-solution .stage { height: auto; position: static; }
}

section#solution.band.tl-solution { overflow: visible; }
section#solution.band.tl-solution .stage { position: sticky; top: 0; }

/* ===== SOLUTION SCROLLYTELLING — premium polish ===== */
.tl-solution { padding-block: clamp(80px, 12vh, 160px) 0; }
.tl-solution .intro { padding: 0 6vw clamp(56px, 8vh, 96px); }
.tl-solution .intro h2 { font-size: clamp(2.4rem, 4.6vw, 3.6rem); }

/* viewport: premium frame with brand glow + glass edge */
.tl-solution .viewport {
  border-radius: 18px;
  filter:
    drop-shadow(0 36px 80px rgba(0,0,0,0.7))
    drop-shadow(0 12px 40px rgba(63,180,136,0.18));
  position: relative;
}
.tl-solution .viewport::before {
  content: ""; position: absolute; inset: 0;
  border-radius: 18px;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.05),
    inset 0 0 80px rgba(63,180,136,0.06),
    inset 0 0 40px rgba(240,127,94,0.04);
  pointer-events: none; z-index: 3;
}
.tl-solution .viewport::after {
  content: ""; position: absolute; inset: -16%;
  background:
    radial-gradient(50% 50% at 50% 50%, rgba(63,180,136,0.16), transparent 65%);
  filter: blur(40px);
  z-index: -1; pointer-events: none;
}

.tl-solution .gfx {
  filter:
    drop-shadow(0 0 36px rgba(63,180,136,0.28))
    drop-shadow(0 12px 20px rgba(0,0,0,0.4));
}

/* premium panel: numbered active block, dotted side rail */
.tl-solution .panel { max-width: 480px; padding-left: 4px; }

.tl-solution .progress {
  margin-bottom: 32px; gap: 10px;
}
.tl-solution .seg {
  height: 2px; border-radius: 1px;
  background: rgba(255,255,255,0.08);
  position: relative;
}
.tl-solution .seg::after {
  content: ""; position: absolute; inset: -4px; pointer-events: none;
}
.tl-solution .seg i {
  background: linear-gradient(90deg, var(--green), var(--coral));
  box-shadow: 0 0 10px rgba(63,180,136,0.5);
}

.tl-solution .steps { min-height: 460px; }

.tl-solution .step .num {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: 'Space Mono', monospace;
  font-size: 0.72rem; letter-spacing: 0.22em;
  color: var(--green); font-weight: 700;
  text-transform: uppercase;
}
.tl-solution .step .num::before {
  content: ""; display: inline-block;
  width: 28px; height: 1px;
  background: linear-gradient(90deg, var(--green), transparent);
}
.tl-solution .step h3 {
  font-family: 'Manrope', sans-serif;
  font-weight: 700; letter-spacing: -0.025em; line-height: 1.08;
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  margin: 18px 0 18px;
}
.tl-solution .step h3 b {
  color: var(--coral); font-weight: 700;
  background: linear-gradient(110deg, var(--coral), #ffb89d);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.tl-solution .step p {
  color: var(--text-2); font-size: 1.06rem; line-height: 1.6;
  max-width: 440px;
}

/* atmospheric glow behind whole stage */
.tl-solution .stage::before {
  content: ""; position: absolute; left: -10%; top: 20%;
  width: 50%; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(63,180,136,0.10), transparent 70%);
  filter: blur(60px); pointer-events: none; z-index: 0;
}
.tl-solution .stage::after {
  content: ""; position: absolute; right: -10%; bottom: 10%;
  width: 40%; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(240,127,94,0.10), transparent 70%);
  filter: blur(60px); pointer-events: none; z-index: 0;
}
.tl-solution .viewport, .tl-solution .panel { position: relative; z-index: 1; }
/* ===== end premium polish ===== */

/* ===== SOLUTION — refinement pass ===== */
/* tighter, more balanced two-column layout */
.tl-solution .stage { gap: clamp(48px, 6vw, 96px); max-width: 1400px; }
.tl-solution .viewport { flex: 1 1 60%; }
.tl-solution .panel { flex: 1 1 40%; max-width: 460px; }

/* gfx fills more of the screen, less dead-space */
.tl-solution .screen { border-radius: 1cqw; }
.tl-solution .gfx { object-fit: cover; object-position: center; padding: 8% 12%; }

/* refined progress: thinner, denser, with subtle base shimmer */
.tl-solution .progress { gap: 10px; margin-bottom: 36px; max-width: 460px; }
.tl-solution .seg {
  position: relative;
  height: auto; flex: 1; min-width: 0;
  display: flex; flex-direction: column; gap: 8px;
  background: transparent; border: 0; padding: 14px 0 0; cursor: pointer;
  text-align: left;
  -webkit-tap-highlight-color: transparent;
}
.tl-solution .seg .seg-l {
  font-family: 'Space Mono', monospace;
  font-size: 0.48rem; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--text-2); opacity: 0.55;
  transition: color 0.3s ease, opacity 0.3s ease;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.tl-solution .seg i {
  display: block; height: 3px; width: 100%; border-radius: 2px;
  background: rgba(255,255,255,0.08);
  position: relative; overflow: hidden;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
.tl-solution .seg i::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--green), var(--coral));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.55s cubic-bezier(.22,.61,.36,1);
}
/* completed step — solid green, half-bright label */
.tl-solution .seg.done .seg-l { color: var(--green); opacity: 0.7; }
.tl-solution .seg.done i::after { transform: scaleX(1); background: var(--green); }
/* active step — green→coral gradient, bright label, glow */
.tl-solution .seg.active .seg-l { color: #fff; opacity: 1; font-weight: 700; }
.tl-solution .seg.active i { background: rgba(255,255,255,0.05); }
.tl-solution .seg.active i::after { transform: scaleX(1); box-shadow: 0 0 12px rgba(63,180,136,0.6); }
/* hover — preview brighten */
.tl-solution .seg:hover .seg-l { color: var(--text); opacity: 0.95; }
.tl-solution .seg:hover i { background: rgba(255,255,255,0.14); }
/* mobile — labels stay visible but compact, touch target keeps 44px via padding */
@media (max-width: 540px) {
  .tl-solution .progress { gap: 8px; max-width: 100%; }
  .tl-solution .seg { padding-top: 18px; }
  .tl-solution .seg .seg-l { font-size: 0.5rem; letter-spacing: 0.08em; }
}

/* number label — vertical accent rail on the left of the active step */
.tl-solution .step { padding-left: 22px; }
.tl-solution .step::before {
  content: ""; position: absolute; left: 0; top: 6%; bottom: 6%;
  width: 2px; border-radius: 2px;
  background: linear-gradient(180deg, var(--green), var(--coral));
  opacity: 0; transform: scaleY(0.6); transform-origin: top;
  transition: opacity 0.45s ease, transform 0.6s cubic-bezier(.22,.61,.36,1);
}
.tl-solution .step.active::before { opacity: 1; transform: scaleY(1); box-shadow: 0 0 10px rgba(63,180,136,0.4); }
.tl-solution .step .num { font-size: 0.7rem; letter-spacing: 0.26em; }
.tl-solution .step .num::before { width: 36px; }
.tl-solution .step h3 {
  font-size: clamp(1.8rem, 3.3vw, 2.5rem);
  font-weight: 800; letter-spacing: -0.028em;
  margin: 20px 0 20px;
}
.tl-solution .step p {
  font-size: 1.08rem; line-height: 1.62;
  color: var(--text-2);
  max-width: 420px;
}

/* smoother active-step crossfade */
.tl-solution .step { transition: opacity 0.55s cubic-bezier(.22,.61,.36,1), transform 0.55s cubic-bezier(.22,.61,.36,1); }
.tl-solution .gfx { transition: opacity 0.6s cubic-bezier(.22,.61,.36,1), transform 0.6s cubic-bezier(.22,.61,.36,1); }
.tl-solution .gfx.active { transform: scale(1) translateY(0); }
.tl-solution .gfx:not(.active) { transform: scale(1.06) translateY(8px); }

/* viewport frame: subtler glow, premium edge ring */
.tl-solution .viewport { filter: drop-shadow(0 22px 50px rgba(0,0,0,0.45)) drop-shadow(0 4px 10px rgba(63,180,136,0.06)); }
.tl-solution .viewport::before {
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.06),
    inset 0 0 0 2px rgba(0,0,0,0.4),
    inset 0 60px 80px -40px rgba(63,180,136,0.05),
    inset 0 -60px 80px -40px rgba(240,127,94,0.04);
}

/* atmosphere: gentler, less obvious */
.tl-solution .stage::before { width: 38%; opacity: 0.7; }
.tl-solution .stage::after { width: 32%; opacity: 0.6; }

/* intro tightening */
.tl-solution .intro { padding-bottom: clamp(48px, 6vh, 72px); }
.tl-solution .intro h2 {
  font-size: var(--t-h2-lg);
  font-weight: 800; letter-spacing: -0.028em;
}
.tl-solution .intro p { font-size: 1.06rem; }
/* ===== end refinement pass ===== */

/* ===== SOLUTION — mobile overrides (must come AFTER refinement pass rules) ===== */
@media (max-width: 820px) {
  /* Clean mobile pattern: static stack — each step has its own inline mini-mockup.
     No sticky, no occluder, no mask. */
  body.in-solution-mobile::after { display: none !important; }
  body.in-solution-mobile .tl-solution .panel {
    -webkit-mask-image: none !important;
            mask-image: none !important;
  }
  /* Hide the global sticky viewport — each step gets its own inline graphic instead */
  .tl-solution > .wrap > .scrolly > .stage > .viewport,
  .tl-solution .stage > .viewport {
    display: none !important;
  }
  /* Per-step inline mockup card (injected by solution.js for mobile only) */
  .tl-solution .step-mockup {
    display: block;
    position: relative;
    width: 100%;
    max-width: 360px;
    aspect-ratio: 1760 / 1100;
    margin: 28px auto 36px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    background-color: #080b10;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    box-shadow:
      0 24px 56px -12px rgba(0,0,0,0.78),
      0 0 0 1px rgba(255,255,255,0.04),
      0 -2px 18px -8px rgba(63,180,136,0.18);
    overflow: hidden;
  }
  .tl-solution .step-mockup .step-mockup__screen {
    position: absolute;
    left: var(--op-l);
    top: var(--op-t);
    width: var(--op-w);
    height: var(--op-h);
    overflow: hidden;
    border-radius: 1.4cqw;
    container-type: inline-size;
    background: #0d1218;
  }
  .tl-solution .step-mockup .gfx {
    position: absolute; inset: 0;
    opacity: 1; transform: none;
  }
  .tl-solution .progress { display: none !important; }
  .tl-solution .stage {
    flex-direction: column !important;
    padding: 0 5vw !important;
    max-width: 100% !important;
    gap: 0 !important;
    align-items: stretch !important;
    height: auto !important;
    position: static !important;
  }
  .tl-solution .viewport {
    position: relative !important;
    top: auto !important;
    width: 100% !important;
    flex: none !important;
    margin: 0 auto 22px !important;
    max-width: 480px;
    z-index: 2;
  }
  .tl-solution .panel {
    flex: none !important;
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 0 !important;
    position: relative;
    z-index: 1;
  }
  .tl-solution .progress {
    position: sticky;
    top: 4vh;
    z-index: 3;
    max-width: 100% !important;
    margin-bottom: 22px !important;
    backdrop-filter: blur(6px);
    background: rgba(8,11,16,0.6);
    padding: 8px 0;
    border-radius: 8px;
  }
  .tl-solution .step {
    position: relative !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    min-height: auto !important;
    height: auto !important;
    inset: auto !important;
    padding: 24px 0 32px !important;
    padding-left: 18px !important;
    display: block !important;
    pointer-events: auto !important;
  }
  .tl-solution .step.active { opacity: 1 !important; transform: none !important; }
  /* override the desktop stagger that hides .num/h3/p until step.active */
  .tl-solution .step .num,
  .tl-solution .step h3,
  .tl-solution .step p,
  .tl-solution .step ul {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .tl-solution .step h3 { font-size: 1.5rem !important; margin: 16px 0 14px !important; }
  .tl-solution .step p { font-size: 1rem !important; max-width: 100% !important; }
}
@media (max-width: 540px) {
  .tl-solution .intro { padding: 8vh 5vw 5vh !important; }
  .tl-solution .intro h2 { font-size: clamp(1.7rem, 7vw, 2.4rem) !important; }
  .tl-solution .stage { padding: 0 4vw !important; }
  .tl-solution .viewport { top: 9vh !important; }
}
/* Mobile: graphic sticks at BOTTOM of viewport, step text scrolls above */
@media (max-width: 820px) {
  /* Restore viewport — but pin it bottom-of-viewport instead of top */
  /* Restore mockup to its simple sticky position — NO more wrapper, NO halo.
     The fixed bottom-strip occluder (body.in-solution-mobile::after) handles hiding text behind. */
  .tl-solution .viewport {
    display: block !important;
    position: sticky !important;
    bottom: 24px !important;
    top: auto !important;
    width: 100% !important;
    max-width: 360px !important;
    margin: 24px auto 0 !important;
    flex: none !important;
    z-index: 5;
    order: 2;
    aspect-ratio: 1760 / 1100 !important;
    max-height: 40vh;
    height: auto !important;
    border-radius: 14px !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    box-shadow:
      0 24px 56px -12px rgba(0,0,0,0.78),
      0 0 0 1px rgba(255,255,255,0.04),
      0 -2px 18px -8px rgba(63,180,136,0.18);
    background-color: transparent !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    padding: 0 !important;
    overflow: visible !important;
    -webkit-mask-image: none !important;
            mask-image: none !important;
  }
  /* Restore the inner screen positioning */
  .tl-solution .viewport .screen {
    position: absolute !important;
    left: var(--op-l) !important;
    top: var(--op-t) !important;
    width: var(--op-w) !important;
    height: var(--op-h) !important;
    inset: auto !important;
    aspect-ratio: auto !important;
    max-height: none !important;
    margin: 0 !important;
    border-radius: 1.4cqw !important;
    overflow: hidden !important;
    background: #0d1218;
    box-shadow: none !important;
  }
  /* No more wrapper — JS no longer injects one, but if it has run before, hide its bg */
  .tl-solution .viewport-wrap {
    background: transparent !important;
    padding: 0 !important;
    position: static !important;
    margin: 0 !important;
    display: contents;
  }
  /* Restore the original screen positioning (inside the bezel of the dashboard PNG) on mobile */
  .tl-solution .viewport .screen {
    position: absolute !important;
    left: var(--op-l) !important;
    top: var(--op-t) !important;
    width: var(--op-w) !important;
    height: var(--op-h) !important;
    inset: auto !important;
    aspect-ratio: auto !important;
    max-height: none !important;
    margin: 0 !important;
    border-radius: 1.4cqw !important;
    overflow: hidden !important;
    background: #0d1218;
    box-shadow: none !important;
  }
  /* Sticky full-width backdrop sits behind the mockup, scoped to the .stage.
     Inserted by solution.js on mobile only. Hides step text that would otherwise
     be visible behind/around the floating mockup, while staying scoped to this
     section (vanishes when you scroll past). */
  /* (no separate full-width backdrop — only the mockup card itself is opaque) */
  /* Larger fixed bottom-strip occluder — covers the entire area where the mockup floats,
     so step text behind is fully hidden. Z-index sits between step text and the mockup card. */
}
@media (max-width: 820px) {
  body.in-solution-mobile::after {
    content: "";
    position: fixed;
    left: 0; right: 0;
    bottom: 0;
    /* covers the entire bottom region where the mockup is + below it */
    height: 50vh;
    background: #080b10;
    z-index: 4; /* between step text (z:1) and mockup card (z:5), under sticky CTA (z:90) */
    pointer-events: none;
  }
  /* When in solution section, also hide step text from rendering in the occluded bottom area
     by softly fading the panel out toward the bottom of the screen */
  body.in-solution-mobile .tl-solution .panel {
    -webkit-mask-image: linear-gradient(to bottom, black 0%, black calc(50vh - 80px), transparent calc(50vh));
            mask-image: linear-gradient(to bottom, black 0%, black calc(50vh - 80px), transparent calc(50vh));
  }
  /* Stage = flex column with panel on top, viewport at bottom (via order:2) */
  .tl-solution .stage {
    flex-direction: column !important;
    padding: 0 5vw !important;
    max-width: 100% !important;
    gap: 0 !important;
    align-items: stretch !important;
  }
  .tl-solution .panel {
    order: 1;
    width: 100% !important;
    max-width: 100% !important;
    flex: none !important;
    padding-left: 0 !important;
    padding-bottom: 0 !important;
    position: relative;
    z-index: 1;
  }
  /* Drop empty padding after last step + trim the section's bottom padding */
  .tl-solution .step:last-child { padding-bottom: 18px !important; }
  .tl-solution .scrolly { padding-bottom: 0 !important; min-height: 0 !important; }
  section#solution.band.tl-solution { padding-bottom: 36px !important; }
  .tl-solution .step {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 44px 0 16px !important;
    padding-left: 22px !important;
  }
  .tl-solution .step:first-child { border-top: 0; padding-top: 18px !important; }
  /* Restore the vertical accent rail — but only alongside the TEXT, ending where the mockup starts */
  .tl-solution .step::before {
    content: "" !important;
    display: block !important;
    position: absolute !important;
    left: 0 !important;
    top: 50px;
    /* bottom is set per-step below depending on the mockup position */
    bottom: auto;
    width: 2px !important;
    border-radius: 2px;
    background: linear-gradient(to bottom, var(--green), var(--coral));
    opacity: 0.6;
    pointer-events: none;
    /* dynamic height: stretches from below the eyebrow down to the top of the mockup */
    height: calc(100% - 50px - 100% / 2.5);
    transform: none !important;
  }
  .tl-solution .step:first-child::before { top: 28px; }
  /* Tighter rail for steps without inline mockup (graceful fallback) */
  .tl-solution .step:not(:has(.step-mockup))::before { height: calc(100% - 80px); }
  .tl-solution .step .num { margin-bottom: 18px; }
  .tl-solution .step h3 { font-size: 1.6rem !important; margin: 4px 0 14px !important; }
  .tl-solution .step p { font-size: 1.02rem !important; line-height: 1.6 !important; }
  .tl-solution .progress { display: none !important; }
}

/* ===== SOLUTION — animate the step graphics inside the container ===== */
/* per-step gentle motion when active; nothing while inactive */
.tl-solution .gfx[data-step="0"].active { animation: tl-step0 6s ease-in-out infinite alternate; }
.tl-solution .gfx[data-step="1"].active { animation: tl-step1 7s ease-in-out infinite alternate; }
.tl-solution .gfx[data-step="2"].active { animation: tl-step2 5.5s ease-in-out infinite alternate; }
.tl-solution .gfx[data-step="3"].active { animation: tl-step3 6.5s ease-in-out infinite alternate; }

@keyframes tl-step0 {
  0%   { transform: scale(1) translateY(0) rotate(0deg); }
  50%  { transform: scale(1.025) translateY(-6px) rotate(-0.6deg); }
  100% { transform: scale(1) translateY(0) rotate(0.4deg); }
}
@keyframes tl-step1 {
  0%   { transform: scale(1) translate(0,0); }
  50%  { transform: scale(1.03) translate(4px,-8px); }
  100% { transform: scale(1.01) translate(-2px,4px); }
}
@keyframes tl-step2 {
  0%   { transform: scale(1) translateY(0); }
  50%  { transform: scale(1.025) translateY(-10px); }
  100% { transform: scale(1.01) translateY(0); }
}
@keyframes tl-step3 {
  0%   { transform: scale(1) rotate(0deg) translateY(0); }
  50%  { transform: scale(1.02) rotate(1deg) translateY(-5px); }
  100% { transform: scale(1) rotate(-0.5deg) translateY(0); }
}

/* shimmer light pass across the screen while a step is active */
.tl-solution .screen::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(115deg, transparent 38%, rgba(63,180,136,0.10) 50%, transparent 62%);
  transform: translateX(-100%);
  animation: tl-shimmer 6s ease-in-out infinite;
  z-index: 2;
}
@keyframes tl-shimmer {
  0%, 60% { transform: translateX(-110%); }
  80%     { transform: translateX(110%); }
  100%    { transform: translateX(110%); }
}

/* subtle pulse around the viewport edge */

@keyframes tl-edge-pulse {
  0%, 100% { box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.06),
    inset 0 0 0 2px rgba(0,0,0,0.4),
    inset 0 60px 80px -40px rgba(63,180,136,0.05),
    inset 0 -60px 80px -40px rgba(240,127,94,0.04); }
  50%      { box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.09),
    inset 0 0 0 2px rgba(0,0,0,0.4),
    inset 0 60px 100px -40px rgba(63,180,136,0.10),
    inset 0 -60px 100px -40px rgba(240,127,94,0.08); }
}

@media (prefers-reduced-motion: reduce) {
  .tl-solution .gfx.active { animation: none; }
  .tl-solution .screen::after { animation: none; }
  .tl-solution .viewport::before { animation: none; }
}
/* ===== end animation pass ===== */

/* ===== SOLUTION — real CSS UI mockups (replaces Blender renders) ===== */
/* base gfx: position absolute, crossfade. Override the per-step transforms. */
.tl-solution .gfx {
  position: absolute; inset: 0;
  display: flex; padding: 0;
  font-family: 'Manrope', sans-serif; color: var(--text);
  background:
    linear-gradient(160deg, #0f1620, #0a0e15) padding-box,
    linear-gradient(150deg, rgba(63,180,136,0.5), rgba(255,255,255,0.04) 45%, rgba(240,127,94,0.4)) border-box;
  border: 1px solid transparent;
  border-radius: inherit;
  animation: none !important;
  transform: scale(1.02) translateY(8px); opacity: 0;
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.tl-solution .gfx.active { transform: scale(1); opacity: 1; }
.tl-solution .gfx[data-step] { padding: 0; }

/* common atoms */
.tl-solution .mock-editor, .tl-solution .mock-promoters,
.tl-solution .mock-analytics, .tl-solution .mock-trust { overflow: hidden; }

/* ----- Step 1: AI Onepager editor ----- */
.tl-solution .mock-editor { display: grid; grid-template-columns: 26% 1fr; gap: 0; }
.tl-solution .m-sidebar {
  background: rgba(255,255,255,0.025); border-right: 1px solid rgba(255,255,255,0.06);
  padding: 6% 5% 0; font-size: 0.62rem; color: var(--text-2);
}
.tl-solution .m-side-head {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.7rem; font-weight: 700; color: var(--text);
  margin-bottom: 14px;
}
.tl-solution .m-side-head i { width: 12px; height: 12px; border-radius: 4px; background: linear-gradient(135deg,var(--green),var(--coral)); }
.tl-solution .m-side-item {
  display: flex; align-items: center; gap: 8px; padding: 8px 9px;
  margin-bottom: 4px; border-radius: 7px;
}
.tl-solution .m-side-item i { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.18); }
.tl-solution .m-side-item.act { background: rgba(63,180,136,0.12); color: var(--text); }
.tl-solution .m-ai-pill {
  display: flex; align-items: center; gap: 6px;
  margin-top: 14px; padding: 7px 10px; border-radius: 999px;
  background: rgba(63,180,136,0.12); border: 1px solid rgba(63,180,136,0.3);
  color: var(--green); font-size: 0.6rem; font-weight: 600;
}
.tl-solution .m-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--green);
  animation: m-pulse 1.4s ease-in-out infinite;
}
@keyframes m-pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(0.7)} }

.tl-solution .m-canvas { padding: 6% 6%; overflow: hidden; }
.tl-solution .m-page {
  background: linear-gradient(160deg, #1a2433, #0f1622);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 10px; padding: 9%; height: 100%;
  display: flex; flex-direction: column; gap: 14px;
}
.tl-solution .m-pg-eyebrow { height: 6px; width: 28%; border-radius: 3px; background: rgba(63,180,136,0.55); }
.tl-solution .m-pg-h1 { height: 12px; border-radius: 6px; background: rgba(255,255,255,0.20); }
.tl-solution .m-pg-h1.short { width: 65%; }
.tl-solution .m-pg-cta {
  margin-top: 6px; width: 38%; height: 14px; border-radius: 999px;
  background: linear-gradient(120deg, var(--coral), #f2693f);
}
.tl-solution .m-pg-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-top: 8px; }
.tl-solution .m-pg-card { aspect-ratio: 4/3; border-radius: 6px; background: rgba(255,255,255,0.05); }

/* ----- Step 2: Promoters ----- */
.tl-solution .gfx.mock-promoters { flex-direction: column; justify-content: center; padding: 4% 8%; gap: 0; }
.tl-solution .m-prom-head {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.66rem; font-weight: 700; color: var(--text);
  margin-bottom: 5px;
}
.tl-solution .m-prom-count {
  display: inline-flex; align-items: center; gap: 5px;
  font-weight: 700; color: var(--green); font-size: 0.55rem;
  letter-spacing: 0.04em;
}
.tl-solution .m-prom-count::before {
  content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--green);
  box-shadow: 0 0 6px var(--green);
  animation: m-pulse 1.4s ease-in-out infinite;
}
.tl-solution .m-prom-list { display: flex; flex-direction: column; gap: 3px; flex: 0 0 auto; }
.tl-solution .m-prom-row {
  display: flex; align-items: center; gap: 9px;
  padding: 3px 9px; border-radius: 8px;
  background: rgba(255,255,255,0.025); border: 1px solid rgba(255,255,255,0.05);
}
.tl-solution .m-prom-row.act { border-color: rgba(63,180,136,0.4); background: rgba(63,180,136,0.07); }
.tl-solution .m-prom-row.dim { opacity: 0.55; }
.tl-solution .m-prom-ava { width: 20px; height: 20px; border-radius: 50%; flex: none; }
.tl-solution .m-prom-ava.sm { width: 22px; height: 22px; }
.tl-solution .m-prom-info { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.tl-solution .m-prom-info b { font-size: 0.66rem; font-weight: 700; color: var(--text); }
.tl-solution .m-prom-info span { font-size: 0.56rem; color: var(--text-2); }
.tl-solution .m-prom-badge span {
  display: block; width: 8px; height: 8px; border-radius: 50%;
  background: var(--green); box-shadow: 0 0 8px var(--green);
}
.tl-solution .m-prom-row:not(.act) .m-prom-badge span { background: rgba(255,255,255,0.18); box-shadow: none; }
.tl-solution .m-prom-cta {
  margin-top: 5px; padding: 7px; border-radius: 8px; text-align: center;
  background: linear-gradient(120deg, var(--coral), #f2693f);
  color: #fff; font-size: 0.66rem; font-weight: 700;
}

/* ----- Step 3: Analytics ----- */
.tl-solution .mock-analytics { flex-direction: column; padding: 5% 6%; gap: 12px; }
.tl-solution .m-kpis { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.tl-solution .m-kpi {
  padding: 9px 10px; border-radius: 8px;
  background: rgba(255,255,255,0.025); border: 1px solid rgba(255,255,255,0.06);
  display: flex; flex-direction: column; gap: 3px;
}
.tl-solution .m-kpi span { font-size: 0.55rem; color: var(--text-2); letter-spacing: 0.05em; text-transform: uppercase; }
.tl-solution .m-kpi b { font-size: 1.05rem; font-weight: 800; color: var(--text); letter-spacing: -0.02em; }
.tl-solution .m-kpi em { font-size: 0.58rem; color: var(--green); font-style: normal; font-weight: 700; }
.tl-solution .m-chart {
  flex: 1; padding: 12px; border-radius: 10px;
  background: rgba(255,255,255,0.025); border: 1px solid rgba(255,255,255,0.06);
  display: flex; flex-direction: column;
}
.tl-solution .m-chart-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 10px; font-size: 0.62rem;
}
.tl-solution .m-chart-head span:first-child {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 700; color: var(--text);
}
.tl-solution .m-chart-head span:first-child::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--green);
  box-shadow: 0 0 6px var(--green);
  animation: m-pulse 1.4s ease-in-out infinite;
}
.tl-solution .m-chart-l { font-family: 'Space Mono', monospace; color: var(--text-2); font-size: 0.55rem; }
.tl-solution .m-bars { display: flex; align-items: flex-end; gap: 7px; flex: 1; min-height: 80px; }
.tl-solution .m-bars .m-bar { flex: 1; display: flex; flex-direction: column; gap: 2px; justify-content: flex-end; }
.tl-solution .m-bars .m-bar i {
  border-radius: 3px 3px 1px 1px;
  background: linear-gradient(var(--green), rgba(63,180,136,0.3));
}
.tl-solution .m-bars .m-bar i.c { background: linear-gradient(var(--coral), rgba(240,127,94,0.3)); }

/* Step outcomes — 3 checkmark bullets under the body */
.tl-solution .step-outcomes {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid; gap: 10px;
}
.tl-solution .step-outcomes li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px; align-items: flex-start;
  font-size: 0.97rem;
  color: var(--text);
  line-height: 1.5;
}
.tl-solution .step-outcomes__chk {
  width: 18px; height: 18px;
  color: var(--green);
  flex-shrink: 0;
  margin-top: 3px;
}

/* ===== Leap-Dot: REMOVED — transition will be redesigned from scratch ===== */

/* 4-KPI variant + NPS slot */
.tl-solution .m-kpis--4 { grid-template-columns: repeat(4,1fr); }
.tl-solution .m-kpi--nps { border-color: rgba(63,180,136,0.32); background: rgba(63,180,136,0.06); }
.tl-solution .m-kpi--nps span { display: flex; align-items: baseline; gap: 5px; }
.tl-solution .m-kpi--nps span i {
  font-family: 'Space Mono', monospace; font-style: normal;
  font-size: 0.5rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--green); opacity: 0.8;
}
.tl-solution .m-kpi--nps b { color: var(--green); }

/* Month labels on bars */
.tl-solution .m-bars .m-bar { position: relative; }
.tl-solution .m-bar-m {
  position: absolute; bottom: -16px; left: 50%; transform: translateX(-50%);
  font-family: 'Space Mono', monospace; font-size: 0.55rem;
  color: var(--text-2); letter-spacing: 0.04em;
}
.tl-solution .m-bars { margin-bottom: 18px; }
/* Peak bar — last month accent */
.tl-solution .m-bar--peak .m-bar-m { color: var(--coral); font-weight: 700; }
.tl-solution .m-bar--peak i:not(.c) { box-shadow: 0 0 8px rgba(63,180,136,0.4); }

/* ----- Promoter Leaderboard ----- */
.tl-solution .m-leader {
  margin-top: 6px;
  padding: 10px 12px;
  border-radius: 9px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
}
.tl-solution .m-leader-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 8px;
  font-family: 'Space Mono', monospace;
  font-size: 0.55rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-2);
}
.tl-solution .m-leader-head em { font-style: normal; opacity: 0.65; }
.tl-solution .m-leader-row {
  display: grid;
  grid-template-columns: 16px 22px 1fr auto auto;
  gap: 9px; align-items: center;
  padding: 6px 0;
}
.tl-solution .m-leader-row + .m-leader-row { border-top: 1px solid rgba(255,255,255,0.05); }
.tl-solution .m-rank {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem; color: var(--text-2);
  text-align: center;
}
.tl-solution .m-leader-row:first-of-type .m-rank { color: var(--green); font-weight: 700; }
.tl-solution .m-leader-ava {
  width: 22px; height: 22px; border-radius: 50%;
  background-size: cover; background-position: center;
  border: 1.5px solid rgba(63,180,136,0.4);
}
.tl-solution .m-leader-nm { font-size: 0.72rem; color: var(--text); font-weight: 600; }
.tl-solution .m-leader-st { font-size: 0.65rem; color: var(--text-2); }
.tl-solution .m-leader-st b { color: var(--text); font-weight: 700; margin-right: 3px; }
.tl-solution .m-leader-nps {
  font-family: 'Space Mono', monospace;
  font-size: 0.55rem; letter-spacing: 0.06em;
  padding: 2px 6px; border-radius: 99px;
  background: rgba(63,180,136,0.14); color: var(--green);
  border: 1px solid rgba(63,180,136,0.22);
}

/* ----- Step 4: Trust / Reviews ----- */
.tl-solution .mock-trust { flex-direction: column; justify-content: center; padding: 2.5% 6%; gap: 8px; }
.tl-solution .m-nps-card {
  padding: 7px 12px; border-radius: 10px;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
  display: flex; flex-direction: column; gap: 6px;
}
.tl-solution .m-trust-head { display: flex; align-items: baseline; gap: 10px; }
.tl-solution .m-trust-head b { font-size: 1.15rem; font-weight: 800; color: var(--text); letter-spacing: -0.02em; }
.tl-solution .m-stars { color: var(--coral); letter-spacing: 0.04em; font-size: 0.78rem; }
.tl-solution .m-trust-cnt { color: var(--text-2); font-size: 0.6rem; }
.tl-solution .m-trust-bars { display: flex; flex-direction: column; gap: 3px; }
.tl-solution .m-tbar { display: grid; grid-template-columns: 22px 1fr 22px; gap: 7px; align-items: center; }
.tl-solution .m-tbar span { font-size: 0.55rem; color: var(--text-2); font-family: 'Space Mono', monospace; }
.tl-solution .m-tbar i {
  display: block; height: 6px; border-radius: 3px;
  background: linear-gradient(90deg, var(--green), var(--coral));
}
.tl-solution .m-tbar em { font-style: normal; font-size: 0.55rem; color: var(--text-2); text-align: right; }
.tl-solution .m-quote {
  margin-top: 0; padding: 7px 12px; border-radius: 10px;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
}
.tl-solution .m-quote .m-stars { font-size: 0.7rem; }
.tl-solution .m-quote p {
  font-size: 0.68rem; line-height: 1.45; color: var(--text); margin: 4px 0 8px;
  font-style: italic;
}
.tl-solution .m-quote-who { display: flex; align-items: center; gap: 8px; }
.tl-solution .m-quote-who span { font-size: 0.58rem; color: var(--text-2); }

@media (prefers-reduced-motion: reduce) {
  .tl-solution .m-dot { animation: none; }
}
/* ===== end CSS mockups ===== */

/* ===== SOLUTION mockups — density + lively details ===== */

/* shared "LIVE" pill in top-right corner of each mockup */
.tl-solution .gfx .m-live {
  position: absolute; top: 8px; right: 10px; z-index: 4;
  display: flex; align-items: center; gap: 5px;
  padding: 3px 8px; border-radius: 999px;
  background: rgba(63,180,136,0.14); border: 1px solid rgba(63,180,136,0.35);
  color: var(--green); font-size: 0.5rem; font-weight: 700; letter-spacing: 0.12em;
  font-family: 'Space Mono', monospace;
}
.tl-solution .gfx .m-live span {
  width: 5px; height: 5px; border-radius: 50%; background: var(--green);
  box-shadow: 0 0 6px var(--green);
  animation: m-pulse 1.4s ease-in-out infinite;
}



/* Editor — typing animation on the active headline + AI suggestion popover */
.tl-solution .m-pg-h1.typing { position: relative; overflow: hidden; width: 0; }
.tl-solution .gfx.active .m-pg-h1.typing {
  animation: m-typing 2.4s steps(40, end) 0.4s forwards;
}
@keyframes m-typing { to { width: 100%; } }

.tl-solution .m-ai-suggest {
  position: absolute; right: 6%; bottom: 6%;
  display: flex; align-items: center; gap: 6px;
  padding: 8px 12px; border-radius: 8px;
  background: rgba(20,30,40,0.92); border: 1px solid rgba(63,180,136,0.35);
  color: var(--text); font-size: 0.58rem; font-weight: 500;
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
  opacity: 0; transform: translateY(6px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.tl-solution .m-ai-suggest .m-stars { color: var(--coral); font-size: 0.72rem; }
.tl-solution .gfx.active .m-ai-suggest {
  opacity: 1; transform: translateY(0); transition-delay: 1.8s;
}

/* Promoter — pulse the active row's badge when step active */
.tl-solution .gfx.mock-promoters.active .m-prom-row.act .m-prom-badge span {
  animation: m-pulse 1.4s ease-in-out infinite;
}

/* Analytics — bars grow in on active */
.tl-solution .m-bars .m-bar i { transform-origin: bottom; transform: scaleY(0); }
.tl-solution .gfx.mock-analytics.active .m-bars .m-bar i {
  animation: m-grow 0.55s cubic-bezier(.22,.61,.36,1) forwards;
}
.tl-solution .gfx.mock-analytics.active .m-bars .m-bar:nth-child(1) i { animation-delay: 0.08s; }
.tl-solution .gfx.mock-analytics.active .m-bars .m-bar:nth-child(2) i { animation-delay: 0.13s; }
.tl-solution .gfx.mock-analytics.active .m-bars .m-bar:nth-child(3) i { animation-delay: 0.18s; }
.tl-solution .gfx.mock-analytics.active .m-bars .m-bar:nth-child(4) i { animation-delay: 0.23s; }
.tl-solution .gfx.mock-analytics.active .m-bars .m-bar:nth-child(5) i { animation-delay: 0.28s; }
.tl-solution .gfx.mock-analytics.active .m-bars .m-bar:nth-child(6) i { animation-delay: 0.33s; }
@keyframes m-grow { from { transform: scaleY(0); } to { transform: scaleY(1); } }

/* Analytics — KPI numbers fade in for "tick up" feel */
.tl-solution .m-kpi b { opacity: 0.3; transition: opacity 0.6s ease; }
.tl-solution .gfx.mock-analytics.active .m-kpi b { opacity: 1; transition-delay: 0.35s; }

/* Trust — verified tag, platforms, scaled bars */
.tl-solution .m-trust-head { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.tl-solution .m-trust-head-r { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.tl-solution .m-trust-cnt em { color: var(--green); font-style: normal; font-weight: 700; }
.tl-solution .m-verified {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 9px; border-radius: 999px;
  background: rgba(63,180,136,0.12); border: 1px solid rgba(63,180,136,0.30);
  color: var(--green); font-size: 0.55rem; font-weight: 700; letter-spacing: 0.04em;
}
.tl-solution .m-verified i {
  width: 7px; height: 7px; border-radius: 50%; background: var(--green);
  box-shadow: 0 0 6px var(--green);
}
.tl-solution .m-quote-verify {
  display: inline-flex; align-items: center; gap: 4px;
  margin-left: auto; padding: 2px 7px; border-radius: 999px;
  background: rgba(63,180,136,0.10); border: 1px solid rgba(63,180,136,0.25);
  color: var(--green); font-size: 0.5rem; font-weight: 700;
}
.tl-solution .m-quote-verify i { width: 5px; height: 5px; border-radius: 50%; background: var(--green); }

/* NPS color variants for the trust mockup bars (Step 4: Promoter Feedback) */
.tl-solution .m-tbar--nps.prom i { background: var(--green); }
.tl-solution .m-tbar--nps.pass i { background: linear-gradient(90deg, #6a7480, #8a95a1); }
.tl-solution .m-tbar--nps.det  i { background: var(--coral); }

/* "intern" badge — same shape as verified, muted tone instead of green */
.tl-solution .m-verified.m-intern {
  background: rgba(168, 180, 190, 0.12);
  border-color: rgba(168, 180, 190, 0.32);
  color: #a8b4be;
}
.tl-solution .m-verified.m-intern i {
  background: #a8b4be;
  box-shadow: 0 0 6px rgba(168, 180, 190, 0.4);
}

/* "veröffentlichbar" badge — coral accent, signals public-facing */
.tl-solution .m-quote-verify.m-quote-pub {
  background: rgba(240, 127, 94, 0.14);
  color: var(--coral);
}
.tl-solution .m-quote-verify.m-quote-pub i { background: var(--coral); }
.tl-solution .m-platforms {
  display: flex; gap: 8px; margin-top: 4px;
  font-family: 'Space Mono', monospace;
  font-size: 0.52rem; color: var(--text-2); letter-spacing: 0.08em;
}
.tl-solution .m-platforms span {
  padding: 4px 8px; border-radius: 6px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06);
}

/* Trust — bars grow in on active for "loading score" feel */
.tl-solution .m-tbar i { transform-origin: left; transform: scaleX(0); }
.tl-solution .gfx.mock-trust.active .m-tbar i {
  animation: m-grow-x 0.5s cubic-bezier(.22,.61,.36,1) forwards;
}
.tl-solution .gfx.mock-trust.active .m-tbar:nth-child(1) i { animation-delay: 0.10s; }
.tl-solution .gfx.mock-trust.active .m-tbar:nth-child(2) i { animation-delay: 0.16s; }
.tl-solution .gfx.mock-trust.active .m-tbar:nth-child(3) i { animation-delay: 0.22s; }
.tl-solution .gfx.mock-trust.active .m-tbar:nth-child(4) i { animation-delay: 0.28s; }
.tl-solution .gfx.mock-trust.active .m-tbar:nth-child(5) i { animation-delay: 0.34s; }
@keyframes m-grow-x { to { transform: scaleX(1); } }

@media (prefers-reduced-motion: reduce) {
  .tl-solution .m-pg-h1.typing { width: 100%; animation: none !important; }
  .tl-solution .m-ai-suggest { opacity: 1; transform: none; }
  .tl-solution .m-bars .m-bar i, .tl-solution .m-tbar i { transform: none !important; animation: none !important; }
  .tl-solution .gfx .m-live span,
  .tl-solution .mock-promoters::after,
  .tl-solution .mock-analytics::after,
  .tl-solution .mock-trust::after { animation: none; }
}
/* ===== end mockup density + lively ===== */

/* ===== SOLUTION — final optimizations ===== */
/* 1. Subtle vertical stagger on the active step's content */
.tl-solution .step .num,
.tl-solution .step h3,
.tl-solution .step p {
  opacity: 0; transform: translateY(10px);
  transition: opacity 0.5s cubic-bezier(.22,.61,.36,1), transform 0.5s cubic-bezier(.22,.61,.36,1);
}
.tl-solution .step.active .num   { opacity: 1; transform: translateY(0); transition-delay: 0.05s; }
.tl-solution .step.active h3     { opacity: 1; transform: translateY(0); transition-delay: 0.20s; }
.tl-solution .step.active p      { opacity: 1; transform: translateY(0); transition-delay: 0.35s; }

/* 3. Progress bar repositioned under headline with step counter */
.tl-solution .panel .progress {
  margin-bottom: 28px; max-width: 280px;
  position: relative; padding-right: 56px;
}
.tl-solution .panel .progress::after {
  content: attr(data-counter); position: absolute; right: 0; top: -7px;
  font-family: 'Space Mono', monospace; font-size: 0.65rem;
  color: var(--text-2); letter-spacing: 0.08em; font-weight: 700;
}

/* 6. Subtle step-tinted background glow behind the active mockup */
.tl-solution .viewport::after {
  transition: background 0.6s ease;
}
.tl-solution .gfx[data-step="0"].active ~ .stage::before { background: radial-gradient(circle, rgba(63,180,136,0.10), transparent 70%); }
.tl-solution .stage[data-active="0"]::before { background: radial-gradient(circle, rgba(63,180,136,0.14), transparent 70%); }
.tl-solution .stage[data-active="1"]::before { background: radial-gradient(circle, rgba(240,127,94,0.14), transparent 70%); }
.tl-solution .stage[data-active="2"]::before { background: radial-gradient(circle, rgba(90,141,238,0.14), transparent 70%); }
.tl-solution .stage[data-active="3"]::before { background: radial-gradient(circle, rgba(220,180,90,0.14), transparent 70%); }
.tl-solution .stage::before { transition: background 0.8s ease; }
.tl-solution .stage::after  { transition: background 0.8s ease; }

/* 7. Mobile: show two steps at a time, smaller viewport */
@media (max-width: 820px) {
  .tl-solution .viewport { aspect-ratio: 16/10; max-height: 50vh; }
  .tl-solution .step { min-height: 0 !important; }
}
/* ===== end final optimizations ===== */

/* ===== STICKY CTA (appears after hero, hides on demo section) ===== */
.sticky-cta {
  position: fixed; right: 24px; bottom: 24px; z-index: 90;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px; border-radius: 999px;
  background: linear-gradient(120deg, var(--coral), #f2693f);
  color: #fff; font-weight: 700; font-size: 0.95rem;
  text-decoration: none;
  box-shadow:
    0 14px 34px -10px rgba(240,127,94,0.55),
    0 6px 18px -6px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.25);
  opacity: 0; transform: translateY(20px) scale(0.92); pointer-events: none;
  transition: opacity 0.45s cubic-bezier(.22,.61,.36,1),
              transform 0.45s cubic-bezier(.22,.61,.36,1),
              box-shadow 0.3s ease;
  white-space: nowrap;
}
.sticky-cta.show { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.sticky-cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 22px 50px -12px rgba(240,127,94,0.7),
    0 8px 24px -6px rgba(0,0,0,0.6),
    inset 0 1px 0 rgba(255,255,255,0.3);
}
.sticky-cta svg { width: 16px; height: 16px; transition: transform 0.3s ease; }
.sticky-cta:hover svg { transform: translateX(4px); }
@media (max-width: 720px) {
  /* Hide the corner sticky CTA on mobile — the full-width .sticky-cta-mobile takes over */
  .sticky-cta { display: none !important; }
}
/* Desktop/tablet: the fixed header CTA is always visible, so the floating corner
   CTA is redundant — drop it to avoid two competing sticky CTAs. */
@media (min-width: 721px) {
  .sticky-cta { display: none !important; }
}
@media (max-width: 640px) {
  .sticky-cta { right: 16px; bottom: 16px; padding: 12px 18px; font-size: 0.88rem; }
}
@media (prefers-reduced-motion: reduce) {
  .sticky-cta { transition: opacity 0.2s ease; }
  .sticky-cta:hover { transform: none; }
}
/* ===== end sticky CTA ===== */

/* ===== TL-BRIDGE: ruhiger Übergang Lösung → Timeline ===== */
.tl-bridge {
  position: relative;
  margin-top: -2px;
  height: 42vh; min-height: 300px;
  display: flex; align-items: flex-start; justify-content: center;
  background: #080b10;
  overflow: hidden; text-align: center;
  padding: 0 6vw;
}
/* weicher Auslauf Lösung → Bridge: beide #080b10, nur ein zarter Brand-Hauch, KEIN harter Blau-Streifen */
.tl-bridge::before {
  content: none;
}
/* zarte Brand-Aura hinter der Zeile, hebt den Text vom Schwarz ab */
.tl-bridge::after {
  content: ""; position: absolute; left: 50%; top: 52%;
  width: min(70%, 620px); height: 220px;
  transform: translate(-50%,-50%);
  background:
    radial-gradient(50% 60% at 40% 50%, rgba(63,180,136,0.07), transparent 70%),
    radial-gradient(52% 60% at 65% 55%, rgba(240,127,94,0.06), transparent 72%);
  filter: blur(12px); pointer-events: none;
  opacity: 0; transition: opacity 1s ease;
}
.tl-bridge.in::after { opacity: 1; }

/* mittige Lichtachse: grün → coral, wächst beim Reinscrollen nach unten, endet im Punkt */
.tl-bridge__axis {
  position: absolute; left: 50%; top: 11%;
  width: 2px; height: 30%;
  transform: translateX(-50%) scaleY(0);
  transform-origin: top;
  background: linear-gradient(180deg, rgba(63,180,136,0) 0%, var(--green) 40%, var(--coral) 100%);
  box-shadow: 0 0 14px rgba(63,180,136,0.45);
  border-radius: 2px;
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.9s cubic-bezier(.22,.61,.36,1);
}
/* leuchtender Endpunkt + sanfter Abwärts-Impuls als „weiter unten"-Anker */
.tl-bridge__axis::after {
  content: ""; position: absolute; left: 50%; bottom: -4px;
  width: 9px; height: 9px; border-radius: 50%;
  transform: translateX(-50%);
  background: var(--coral);
  box-shadow: 0 0 16px 3px rgba(240,127,94,0.7);
}
.tl-bridge.in .tl-bridge__axis { opacity: 1; transform: translateX(-50%) scaleY(1); }
@media (prefers-reduced-motion: no-preference) {
  .tl-bridge.in .tl-bridge__axis::after { animation: tl-bridge-pulse 2.4s ease-in-out 1s infinite; }
}
@keyframes tl-bridge-pulse {
  0%, 100% { box-shadow: 0 0 16px 3px rgba(240,127,94,0.7); transform: translate(-50%, 0); }
  50%      { box-shadow: 0 0 22px 5px rgba(240,127,94,0.5); transform: translate(-50%, 3px); }
}

.tl-bridge__line {
  position: relative; z-index: 1; margin: 0;
  margin-top: clamp(150px, 20vh, 210px);
  max-width: 18ch;
  font-family: 'Bricolage Grotesque', 'Manrope', sans-serif;
  font-weight: 500; letter-spacing: -0.015em;
  font-size: clamp(1.1rem, 2.1vw, 1.5rem);
  line-height: 1.35;
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.7s cubic-bezier(.22,.61,.36,1) 0.25s, transform 0.7s cubic-bezier(.22,.61,.36,1) 0.25s;
}
.tl-bridge.in .tl-bridge__line { opacity: 1; transform: translateY(0); }
.tl-bridge__line .muted { color: #8b97a4; }
.tl-bridge__line .hi { color: #fff; font-weight: 700; }
@media (max-width: 640px) {
  .tl-bridge { height: 30vh; min-height: 220px; }
  .tl-bridge__line { margin-top: clamp(120px, 15vh, 160px); }
}
@media (prefers-reduced-motion: reduce) {
  .tl-bridge__axis { opacity: 1; transform: translateX(-50%) scaleY(1); transition: none; }
  .tl-bridge::after { opacity: 1; }
  .tl-bridge__line { opacity: 1; transform: none; transition: none; }
}
/* ===== end tl-bridge ===== */

/* ===== TL-JOURNEY: vertical referral path with mini-visuals ===== */
.tl-journey { position: relative; overflow: visible; }
/* fog atmosphere — soft warm clouds drifting behind the journey */
.tl-journey::after {
  content: ""; position: absolute; inset: -10% 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(38% 26% at 18% 56%, rgba(63,180,136,0.10), transparent 100%),
    radial-gradient(34% 30% at 82% 70%, rgba(240,127,94,0.09), transparent 100%),
    radial-gradient(34% 24% at 40% 64%, rgba(120,160,235,0.05), transparent 100%);
  filter: blur(40px);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, transparent 38%, #000 52%, #000 78%, transparent 100%);
          mask-image: linear-gradient(180deg, transparent 0%, transparent 38%, #000 52%, #000 78%, transparent 100%);
}
.tl-journey::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; bottom: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(63,180,136,0.10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(63,180,136,0.10) 1px, transparent 1px);
  background-size: 54px 54px;
  /* compound mask: radial fade for edges AND wide linear top+bottom-fade so the grid blends gradually into both adjacent sections */
  -webkit-mask-image:
    radial-gradient(62% 70% at 50% 55%, #000 0%, transparent 92%),
    linear-gradient(180deg, transparent 0%, #000 14%, #000 80%, transparent 100%);
          mask-image:
    radial-gradient(62% 70% at 50% 55%, #000 0%, transparent 92%),
    linear-gradient(180deg, transparent 0%, #000 14%, #000 80%, transparent 100%);
  -webkit-mask-composite: source-in;
          mask-composite: intersect;
  pointer-events: none;
}
.tl-journey .wrap { position: relative; z-index: 1; }
.jrny { position: relative; max-width: 980px; margin: 64px auto 0; }
/* central axis */
.jrny__axis {
  position: absolute; left: 50%; top: 0; bottom: 0; width: 2px;
  transform: translateX(-50%);
  background: rgba(255,255,255,0.08); overflow: hidden; border-radius: 2px;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
          mask-image: linear-gradient(180deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
}
.jrny__axis-fill {
  position: absolute; left: 0; top: 0; width: 100%; height: 100%;
  transform-origin: top; transform: scaleY(0);
  background: linear-gradient(180deg, var(--green), var(--coral));
  box-shadow: 0 0 12px rgba(63,180,136,0.4);
  transition: transform 0.8s cubic-bezier(.22,.61,.36,1);
}
.jrny.in .jrny__axis-fill { transform: scaleY(1); }
/* coral activation pulse travelling down the axis */
.jrny__pulse {
  position: absolute; left: 50%; top: 0; width: 18px; height: 18px;
  margin-left: -9px; border-radius: 50%;
  background: radial-gradient(circle at 50% 40%, #ffd9c9, var(--coral) 60%);
  box-shadow: 0 0 22px 6px rgba(240,127,94,0.8);
  opacity: 0; z-index: 4; pointer-events: none;
}
/* expanding sonar rings emitted from the pulse */
/* 3 thin sonar rings fired ONCE when a node is reached */
.jrny__rings { position: absolute; inset: 0; pointer-events: none; }
.jrny__rings i {
  position: absolute; left: 50%; top: 50%; width: 100%; height: 100%;
  margin: 0; translate: -50% -50%; border-radius: 50%;
  border: 1px solid var(--coral); opacity: 0;
}
.jrny__rings i:nth-child(2) { border-color: var(--coral); }
.jrny__rings i:nth-child(3) { border-color: var(--coral); }
.jrny__step.lit .jrny__rings i { animation: jrny-ping 2.2s ease-out 1 forwards; animation-delay: 0.05s; }
.jrny__step.lit .jrny__rings i:nth-child(2) { animation-delay: 0.32s; }
.jrny__step.lit .jrny__rings i:nth-child(3) { animation-delay: 0.6s; }
@keyframes jrny-ping {
  0% { opacity: 0.75; transform: scale(1); }
  80% { opacity: 0; transform: scale(4.2); }
  100% { opacity: 0; transform: scale(4.2); }
}
@media (prefers-reduced-motion: reduce) {
  .jrny__ping, .jv-card.flash::after { display: none; }
}
.jrny__pulse { transition: top 0.8s cubic-bezier(.22,.61,.36,1), opacity 0.4s ease; }
/* visible coral continuation line that drops from station 04 down to where the pulse rests above the CTA eyebrow */
.jrny-cont-line {
  position: fixed;
  left: 0; top: 0;
  width: 2px; height: 0;
  /* Solid coral throughout, only the very end fades — matches desktop continuity */
  background: linear-gradient(to bottom,
    rgba(240,127,94, 1) 0%,
    rgba(240,127,94, 1) 92%,
    rgba(240,127,94, 0) 100%);
  /* Behind the node circle (z:2) so the join under the node is hidden — line appears to come OUT of the node */
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  box-shadow: 0 0 10px rgba(240,127,94,0.55);
  border-radius: 2px;
  will-change: transform, height, opacity;
}

@media (prefers-reduced-motion: reduce) { .jrny__pulse { display: none; } }

/* ===== Journey continuation pulse: rides scroll from station 04 into the CTA, morphs into a pulsing nebula ===== */
.jrny__pulse--continue {
  position: fixed;
  left: 0; top: 0;
  width: 18px; height: 18px;
  margin: 0; border-radius: 50%;
  background: radial-gradient(circle at 50% 40%, #ffd9c9, var(--coral) 60%);
  box-shadow:
    0 0 22px 6px rgba(240,127,94,0.7),
    0 0 0 4px rgba(240,127,94,0.18);
  pointer-events: none;
  z-index: 6;
  opacity: 0;
  transition: opacity 0.32s ease;
  will-change: transform, box-shadow;
}
/* at the CTA: dot morphs into a soft pulsing nebula */
.jrny__pulse--continue.nebula {
  width: 22px; height: 22px;
  background: radial-gradient(circle at 50% 50%,
    rgba(255,210,190,0.95) 0%,
    rgba(240,127,94,0.65) 22%,
    rgba(240,127,94,0.25) 50%,
    rgba(240,127,94,0) 78%);
  box-shadow:
    0 0 28px 12px rgba(240,127,94,0.45),
    0 0 64px 26px rgba(240,127,94,0.2);
  animation: jrny-nebula-pulse 2.6s ease-in-out infinite;
}
@keyframes jrny-nebula-pulse {
  0%, 100% {
    box-shadow:
      0 0 22px 8px rgba(240,127,94,0.36),
      0 0 54px 20px rgba(240,127,94,0.14);
  }
  50% {
    box-shadow:
      0 0 38px 14px rgba(240,127,94,0.65),
      0 0 84px 32px rgba(240,127,94,0.3);
  }
}
@media (prefers-reduced-motion: reduce) {
  .jrny__pulse--continue { display: none; }
}

.jrny__step {
  position: relative; display: grid; gap: 0 88px;
  grid-template-columns: 1fr 56px 1fr; align-items: center;
  margin-bottom: 150px;
}
.jrny__step:last-child { margin-bottom: 0; }
.tl-journey { padding-bottom: clamp(40px, 6vh, 72px); }
/* odd: text left, visual right; even: visual left, text right */
.jrny__step > * { grid-row: 1; }
.jrny__step:nth-child(odd) .jrny__body   { grid-column: 1; text-align: right; }
.jrny__step:nth-child(odd) .jrny__visual { grid-column: 3; }
.jrny__step:nth-child(even) .jrny__body   { grid-column: 3; text-align: left; }
.jrny__step:nth-child(even) .jrny__visual { grid-column: 1; }
.jrny__node { grid-column: 2; align-self: center; }

.jrny__node {
  width: 52px; height: 52px; border-radius: 50%; justify-self: center;
  display: grid; place-items: center; z-index: 2; position: relative;
  background: var(--bg); border: 2px solid var(--line);
  font-family: 'Space Mono', monospace; font-weight: 700; font-size: 0.95rem;
  color: var(--muted);
  box-shadow: 0 0 0 6px var(--bg);
  transition: border-color 0.4s ease, color 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
}
.jrny__step.lit .jrny__node {
  color: var(--green); border-color: var(--green);
  box-shadow: 0 0 0 6px var(--bg), 0 0 20px -2px rgba(63,180,136,0.55);
  animation: jrny-snap 0.5s cubic-bezier(.34,1.56,.64,1) 1;
}
@keyframes jrny-snap {
  0% { transform: scale(0.78); }
  45% { transform: scale(1.18); border-color: var(--coral); color: var(--coral); box-shadow: 0 0 0 6px var(--bg), 0 0 26px 2px rgba(240,127,94,0.8); }
  100% { transform: scale(1); }
}
@media (prefers-reduced-motion: reduce) { .jrny__rings { display: none; } }
.jrny__step.lit .jrny__node--final {
  border-color: var(--coral); color: var(--coral);
  background: var(--coral); color: #1a0d08;
  box-shadow: 0 0 0 6px var(--bg), 0 0 26px -2px rgba(240,127,94,0.7);
}

.jrny__num {
  font-family: 'Space Mono', monospace; font-size: 0.68rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--green); margin-bottom: 16px;
}
.jrny__num--final { color: var(--coral); }
.jrny__body h3 {
  font-size: clamp(1.25rem, 2.2vw, 1.6rem); font-weight: 700;
  letter-spacing: -0.02em; line-height: 1.15; margin-bottom: 16px; color: var(--text);
}
.jrny__body p { color: var(--text-2); font-size: 0.98rem; line-height: 1.55; }
.jrny__step:nth-child(odd) .jrny__body p { margin-left: auto; max-width: 340px; }
.jrny__step:nth-child(even) .jrny__body p { margin-right: auto; max-width: 340px; }

/* visuals */
.jrny__visual { display: flex; position: relative; }
.jrny__visual::before {
  content: ""; position: absolute; z-index: 0; pointer-events: none;
  width: 130%; height: 150%; left: -15%; top: -25%;
  background:
    radial-gradient(42% 50% at 32% 38%, rgba(63,180,136,0.18), transparent 70%),
    radial-gradient(38% 46% at 72% 66%, rgba(240,127,94,0.14), transparent 72%);
  filter: blur(34px);
  opacity: 0.55; transition: opacity 0.8s ease;
}
.jrny__step.lit .jrny__visual::before { opacity: 1; }
/* even steps: mirror the fog asymmetry so it doesn't look templated */
.jrny__step:nth-child(even) .jrny__visual::before {
  background:
    radial-gradient(40% 48% at 70% 34%, rgba(63,180,136,0.14), transparent 70%),
    radial-gradient(40% 48% at 28% 68%, rgba(240,127,94,0.13), transparent 72%);
}
.jrny__step--final .jrny__visual::before {
  background:
    radial-gradient(46% 54% at 50% 50%, rgba(240,127,94,0.18), transparent 70%);
}
.jv-card { position: relative; z-index: 1; }
.jrny__step:nth-child(odd) .jrny__visual { justify-content: flex-start; }
.jrny__step:nth-child(even) .jrny__visual { justify-content: flex-end; }
.jv-card {
  width: 100%; max-width: 300px;
  border-radius: 14px; padding: 16px;
  box-shadow: var(--shadow-card);
  font-size: 0.8rem;
  position: relative; z-index: 1;
  background:
    linear-gradient(160deg, #131c27, #0c121b) padding-box,
    linear-gradient(150deg, rgba(63,180,136,0.55), rgba(255,255,255,0.04) 42%, rgba(240,127,94,0.45)) border-box;
  border: 1px solid transparent;
}
.jrny__step--final .jv-card {
  background:
    linear-gradient(160deg, #1a1410, #120c0a) padding-box,
    linear-gradient(150deg, rgba(240,127,94,0.7), rgba(255,255,255,0.05) 50%, rgba(240,127,94,0.4)) border-box;
}

/* 01 builder */
.jv-head { display: flex; align-items: center; gap: 5px; margin-bottom: 12px; }
.jv-head .jv-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.15); }
.jv-head em { margin-left: auto; font-style: normal; font-family: 'Space Mono', monospace; font-size: 0.6rem; color: var(--muted); }
.jv-build { background: rgba(0,0,0,0.25); border-radius: 10px; padding: 14px; }
.jv-eyebrow { height: 5px; width: 30%; border-radius: 3px; background: rgba(63,180,136,0.6); margin-bottom: 9px; }
.jv-h { height: 9px; border-radius: 5px; background: rgba(255,255,255,0.22); margin-bottom: 6px; }
.jv-h.short { width: 60%; }
.jv-btn { height: 12px; width: 40%; border-radius: 999px; background: linear-gradient(120deg, var(--coral), #f2693f); margin-top: 10px; }
.jv-ai { display: inline-flex; align-items: center; gap: 5px; margin-top: 12px; padding: 5px 9px; border-radius: 999px; background: rgba(63,180,136,0.12); border: 1px solid rgba(63,180,136,0.3); color: var(--green); font-size: 0.62rem; font-weight: 600; }
.jv-spark { color: var(--coral); }

/* 02 promoters */
.jv-prow { display: flex; align-items: center; gap: 9px; padding: 8px; border-radius: 8px; margin-bottom: 5px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05); }
.jv-prow.act { border-color: rgba(63,180,136,0.4); background: rgba(63,180,136,0.07); }
.jv-ava { width: 24px; height: 24px; border-radius: 50%; flex: none; background-size: cover; background-position: center; }
.jv-ava.sm { width: 20px; height: 20px; }
.jv-ava--img { border: 1.5px solid rgba(63,180,136,0.4); }
.jv-pn { font-weight: 700; color: var(--text); font-size: 0.72rem; }
.jv-plink { margin-left: auto; font-family: 'Space Mono', monospace; font-size: 0.62rem; color: var(--green); }
.jv-pcta { margin-top: 8px; padding: 9px; border-radius: 8px; text-align: center; background: rgba(255,255,255,0.04); border: 1px dashed rgba(255,255,255,0.14); color: var(--text-2); font-size: 0.68rem; font-weight: 600; }

/* 03 chat */
.jv-chat {
  background:
    linear-gradient(160deg, #0e1a16, #0c121b) padding-box,
    linear-gradient(150deg, rgba(63,180,136,0.55), rgba(255,255,255,0.04) 42%, rgba(240,127,94,0.45)) border-box;
}
.jv-bubble { background: #fff; color: #0c1c18; padding: 10px 12px; border-radius: 12px 12px 12px 4px; font-size: 0.74rem; line-height: 1.4; }
.jv-bubble .jv-link { display: block; margin-top: 5px; font-family: 'Space Mono', monospace; font-size: 0.64rem; color: #1c7d59; }
.jv-wa { display: flex; align-items: center; justify-content: center; gap: 7px; margin-top: 10px; padding: 10px; border-radius: 11px; background: #25D366; color: #04140b; font-weight: 700; font-size: 0.74rem; }
.jv-wa svg { width: 15px; height: 15px; }

/* 04 form */
.jv-rec { display: flex; align-items: center; gap: 7px; font-size: 0.7rem; color: var(--text-2); margin-bottom: 11px; }
.jv-rec b { color: var(--text); }
.jv-field { height: 13px; border-radius: 6px; background: rgba(255,255,255,0.06); margin-bottom: 7px; }
.jv-submit { margin-top: 4px; padding: 9px; border-radius: 8px; text-align: center; background: linear-gradient(120deg, var(--coral), #f2693f); color: #fff; font-weight: 700; font-size: 0.72rem; }

/* 05 lead */
.jv-lead { border-color: transparent; }
.jv-lead-top { display: flex; align-items: center; gap: 8px; font-weight: 700; color: var(--text); font-size: 0.78rem; }
.jv-check { width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; background: var(--green); color: #04130d; }
.jv-check svg { width: 13px; height: 13px; }
.jv-live { margin-left: auto; display: inline-flex; align-items: center; gap: 5px; font-style: normal; font-size: 0.6rem; font-weight: 700; color: var(--green); font-family: 'Space Mono', monospace; }
.jv-live i { width: 5px; height: 5px; border-radius: 50%; background: var(--green); box-shadow: 0 0 6px var(--green); animation: m-pulse 1.4s ease-in-out infinite; }
.jv-attrib { display: flex; align-items: center; gap: 0; margin-top: 14px; }
.jv-attrib-line { flex: 1; height: 2px; background: linear-gradient(90deg, var(--green), var(--coral)); border-radius: 2px; position: relative; }
.jv-attrib-labels { display: flex; justify-content: space-between; margin-top: 6px; font-size: 0.62rem; color: var(--text-2); font-family: 'Space Mono', monospace; }

@media (max-width: 760px) {
  .jrny { margin-top: 40px; }
  /* Center the axis on the node: node lives in a 52px column with center at 26px,
     so axis (2px wide) needs to start at 25px to have its center at 26px */
  .jrny__axis { left: 25px; }
  /* The travelling coral pulse follows that same center */
  .jrny__pulse { left: 26px !important; }
  .jrny__step { grid-template-columns: 52px 1fr; gap: 16px 18px; margin-bottom: 40px; }
  .jrny__step:nth-child(odd) .jrny__body, .jrny__step:nth-child(even) .jrny__body { grid-column: 2; text-align: left; }
  .jrny__step:nth-child(odd) .jrny__visual, .jrny__step:nth-child(even) .jrny__visual { grid-column: 2; justify-content: flex-start; margin-top: 14px; }
  .jrny__node { grid-column: 1; grid-row: 1; }
  .jrny__body { grid-row: 1; }
  .jrny__visual { grid-row: 2; }
  .jrny__step:nth-child(odd) .jrny__body p, .jrny__step:nth-child(even) .jrny__body p { max-width: none; margin: 0; }
  .jv-card { max-width: 320px; }
}
@media (prefers-reduced-motion: reduce) {
  .jrny__axis-fill { transition: none; }
}
/* ===== end tl-journey ===== */

/* ===== TL-JOURNEY sonar reveal ===== */
.jrny__body .jrny__num,
.jrny__body h3,
.jrny__body p,
.jrny__visual {
  opacity: 0.32; filter: blur(4px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(.22,.61,.36,1), filter 0.6s ease;
}
/* text drifts away from the axis; visual rises + slight blur */
.jrny__step:nth-child(odd) .jrny__body .jrny__num,
.jrny__step:nth-child(odd) .jrny__body h3,
.jrny__step:nth-child(odd) .jrny__body p { transform: translateX(14px); }
.jrny__step:nth-child(even) .jrny__body .jrny__num,
.jrny__step:nth-child(even) .jrny__body h3,
.jrny__step:nth-child(even) .jrny__body p { transform: translateX(-14px); }
.jrny__visual { transform: translateY(16px); filter: blur(3px); }

.jrny__step.lit .jrny__num    { opacity: 1; transform: none; filter: none; transition-delay: 0.04s; }
.jrny__step.lit h3            { opacity: 1; transform: none; filter: none; transition-delay: 0.12s; }
.jrny__step.lit p             { opacity: 1; transform: none; filter: none; transition-delay: 0.20s; }
.jrny__step.lit .jrny__visual { opacity: 1; transform: none; filter: none; transition-delay: 0.16s; }
.jrny__step.lit .jv-card::after {
  content: ""; position: absolute; inset: -1px; border-radius: inherit; pointer-events: none;
  border: 1px solid transparent;
  background: linear-gradient(150deg, var(--green), rgba(255,255,255,0.0) 50%, var(--coral)) border-box;
  -webkit-mask: linear-gradient(#000 0 0) padding-box exclude, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) padding-box exclude, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  opacity: 0; animation: jv-edge-flash 2s ease-out 0.1s 1;
}
@keyframes jv-edge-flash {
  0% { opacity: 0; } 18% { opacity: 0.9; } 100% { opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .jrny__body .jrny__num, .jrny__body h3, .jrny__body p, .jrny__visual {
    opacity: 1 !important; transform: none !important; filter: none !important;
  }
}
/* ===== end sonar reveal ===== */

/* ===== TL-MOMENTUM: trust bar + soft demo CTA ===== */
.tl-trustband { background: var(--bg); position: relative; padding-block: var(--sec-y-sm); }
.tl-trustband::before {
  content: ""; position: absolute; left: 50%; top: 50%; z-index: 0; pointer-events: none;
  width: min(1100px, 100%); height: 100%; transform: translate(-50%, -50%);
  background:
    radial-gradient(36% 50% at 30% 50%, rgba(63,180,136,0.18), transparent 72%),
    radial-gradient(38% 54% at 72% 52%, rgba(240,127,94,0.15), transparent 74%);
  filter: blur(48px);
}
.tl-trustband > .wrap { position: relative; z-index: 1; }
.tl-momentum { background: var(--bg); position: relative; overflow: visible; min-height: 100vh; display: flex; align-items: center; justify-content: center; }
.tl-momentum > .wrap { width: 100%; }
.tl-mom__trust {
  position: relative;
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 760px; margin: 0 auto;
  border-radius: 24px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 24px 60px -34px rgba(0,0,0,0.7), inset 0 1px 0 rgba(255,255,255,0.05);
}
/* brand ambience BEHIND the card — not clipped, fades fully to transparent */
.tl-mom__trust::after {
  content: ""; position: absolute; inset: -20px -10px; z-index: -1; pointer-events: none;
  background: radial-gradient(60% 80% at 50% 50%, rgba(63,180,136,0.0), transparent 75%);
  filter: blur(24px);
}
.tl-mom__sig {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 18px 18px; font-size: 0.9rem; color: var(--text-2); text-align: center;
}
.tl-mom__sig + .tl-mom__sig { position: relative; }
.tl-mom__sig + .tl-mom__sig::before {
  content: ""; position: absolute; left: 0; top: 22%; bottom: 22%; width: 1px;
  background: linear-gradient(transparent, rgba(255,255,255,0.10), transparent);
}
.tl-mom__sig svg { width: 17px; height: 17px; color: var(--green); flex: none; }
@media (max-width: 680px) {
  .tl-mom__trust { grid-template-columns: 1fr; max-width: 360px; }
  .tl-mom__sig + .tl-mom__sig::before { left: 18%; right: 18%; top: 0; bottom: auto; width: auto; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.10), transparent); }
  .tl-mom__sig { justify-content: flex-start; }
}

.tl-mom__cta {
  position: relative; text-align: center; max-width: 640px; margin-inline: auto;
}
.tl-mom__glow {
  position: absolute; left: 50%; top: 50%; width: 880px; height: 520px;
  transform: translate(-50%, -50%); z-index: 0; pointer-events: none;
  background:
    radial-gradient(42% 50% at 36% 40%, rgba(63,180,136,0.36), transparent 72%),
    radial-gradient(46% 54% at 66% 60%, rgba(240,127,94,0.34), transparent 74%);
  filter: blur(48px);
  animation: mom-drift 11s ease-in-out infinite;
}
@keyframes mom-drift {
  0%,100% { transform: translate(-50%,-50%) scale(1); opacity: 0.95; }
  50%     { transform: translate(-48%,-52%) scale(1.10); opacity: 1; }
}
/* breathing coral orb — REMOVED per user request (CTA background pulse) */
.tl-mom__orb { display: none; }
.tl-mom__eyebrow {
  display: inline-block; margin-bottom: 16px;
  font-family: 'Space Mono', monospace; font-size: 0.72rem;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--coral);
}
.tl-mom__cta > *:not(.tl-mom__glow):not(.tl-mom__orb) { position: relative; z-index: 1; }
.tl-mom__cta h2 {
  font-family: 'Bricolage Grotesque', 'Manrope', sans-serif;
  font-weight: 800; letter-spacing: -0.025em; line-height: 1.05;
  font-size: clamp(2rem, 4.4vw, 3.2rem); color: var(--text);
  font-size: var(--t-h2-lg);
}
.tl-mom__cta p { margin: 18px auto 0; max-width: 480px; color: var(--text-2); font-size: clamp(1rem, 1.6vw, 1.15rem); line-height: 1.55; }
.tl-mom__actions { display: flex; align-items: center; justify-content: center; gap: 22px; flex-wrap: wrap; margin-top: 36px; }
.tl-mom__actions .btn--primary { position: relative; }
.tl-mom__actions .btn--primary::after {
  content: ""; position: absolute; inset: -2px; border-radius: inherit; z-index: -1;
  background: var(--coral); filter: blur(16px); opacity: 0.35;
  animation: mom-cta-glow 3.6s ease-in-out infinite; will-change: opacity, transform;
}
@keyframes mom-cta-glow {
  0%,100% { opacity: 0.3; transform: scale(1); }
  50%     { opacity: 0.6; transform: scale(1.06); }
}
@media (prefers-reduced-motion: reduce) {
  .tl-mom__glow, .tl-mom__orb, .tl-mom__actions .btn--primary::after { animation: none; }
}
.tl-mom__soft { color: var(--text-2); font-size: 0.95rem; font-weight: 500; text-decoration: none; border-bottom: 1px solid transparent; transition: color 0.25s, border-color 0.25s; }
.tl-mom__soft:hover { color: var(--text); border-bottom-color: var(--green); }
@media (max-width: 820px) {
  .tl-momentum { min-height: 0; padding-block: clamp(72px, 12vh, 120px); }
}
/* gentle proximity snap: section is exactly one viewport, content centered */
@media (min-width: 821px) and (prefers-reduced-motion: no-preference) {
  html { scroll-snap-type: y proximity; }
  .tl-momentum { scroll-snap-align: center; }
}
/* ===== end tl-momentum ===== */

/* CTA enters as one calm unit — no staggered sonar here, deliberate stillness */
.tl-mom__cta [data-reveal] { transition-delay: 0s !important; }
.tl-mom__eyebrow[data-reveal], .tl-mom__cta h2[data-reveal], .tl-mom__cta p[data-reveal], .tl-mom__actions[data-reveal] {
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(.22,.61,.36,1);
}

/* gentle dwell on the demo CTA so users don't blow past it */


/* directional CTA arrows */
.tl-arr-down { transform: rotate(90deg); }
.tl-cta-down:hover .tl-arr-down { transform: rotate(90deg) translateX(4px); }
.tl-cta-right { display: inline-flex; align-items: center; gap: 8px; }
.tl-cta-right svg { width: 15px; height: 15px; transition: transform 0.3s var(--ease); }
.tl-cta-right:hover svg { transform: translateX(4px); }
/* features slides in from the right when reached via "Erst ansehen" */
/* horizontal pan transition CTA → Features */
.tl-pan-out { animation: tl-pan-out 0.72s cubic-bezier(.5,0,.2,1) forwards; }
.tl-pan-in  { animation: tl-pan-in  0.72s cubic-bezier(.5,0,.2,1) forwards; position: relative; z-index: 5; }
@keyframes tl-pan-out { 0% { transform: translateX(0); opacity: 1; } 100% { transform: translateX(-22%); opacity: 0; } }
@keyframes tl-pan-in  { 0% { transform: translateX(100%); } 100% { transform: translateX(0); } }

/* features enters horizontally on scroll too */
#features { overflow: hidden; }
#features > .wrap {
  will-change: transform, opacity;
  opacity: 0;
  transform: translateX(100%);
}
#features.tl-feat-enter > .wrap { animation: tl-feat-enter 0.72s cubic-bezier(.5,0,.2,1) forwards; }
@keyframes tl-feat-enter {
  0% { opacity: 0.6; transform: translateX(100%); }
  100% { opacity: 1; transform: translateX(0); }
}
#features.tl-feat-leave > .wrap { animation: tl-feat-leave 0.5s cubic-bezier(.5,0,.2,1) forwards; }
@keyframes tl-feat-leave {
  0% { opacity: 1; transform: translateX(0); }
  100% { opacity: 0; transform: translateX(100%); }
}
@media (prefers-reduced-motion: reduce) {
  #features > .wrap { opacity: 1; transform: none; }
  #features.tl-feat-enter > .wrap, #features.tl-feat-leave > .wrap { animation: none; }
}

@media (min-width: 821px) and (prefers-reduced-motion: no-preference) {
  #features { scroll-snap-align: start; scroll-margin-top: 0; }
}

/* ===== FEATURES — asymmetric bento with rhythm ===== */
.feat-bento {
  display: grid; gap: 16px; margin-top: 56px;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(150px, auto);
}
.feat-bento .fcard {
  position: relative; overflow: hidden;
  border-radius: var(--r-lg); padding: 26px;
  background:
    linear-gradient(165deg, var(--surface), var(--surface-2)) padding-box,
    linear-gradient(150deg, rgba(255,255,255,0.10), rgba(255,255,255,0.03)) border-box;
  border: 1px solid transparent;
  display: flex; flex-direction: column;
  transition: transform 0.35s var(--ease), box-shadow 0.35s, background 0.35s, border-color 0.35s;
}
.feat-bento .fcard::after {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 2px;
  background: linear-gradient(90deg, var(--green), var(--coral));
  transform: scaleX(0); transform-origin: left; transition: transform 0.5s cubic-bezier(.22,.61,.36,1);
}
.feat-bento .fcard:hover { transform: translateY(-6px); border-color: rgba(255,255,255,0.18); box-shadow: 0 28px 60px -34px rgba(0,0,0,0.8); }
.feat-bento .fcard:hover::after { transform: scaleX(1); }
.feat-bento .f-ic {
  width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center;
  background: var(--green-14); border: 1px solid var(--green-22); color: var(--green);
  margin-bottom: 18px; transition: transform 0.4s var(--ease);
}
.feat-bento .fcard:hover .f-ic { transform: translateY(-2px) scale(1.08); }
.feat-bento .f-ic svg { width: 22px; height: 22px; }
.feat-bento .fcard h3 { font-size: 1.18rem; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 9px; }
.feat-bento .fcard p { color: var(--text-2); font-size: 0.95rem; line-height: 1.55; }

/* sizing rhythm */
.feat-bento .f-hero  { grid-column: span 6; grid-row: auto; }
.feat-bento .f-third { grid-column: span 2; }

/* "Andere vs Wir" tiny hook label */
.feat-bento .f-vs {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'Space Mono', monospace;
  font-size: 0.66rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted);
  padding: 4px 9px; border-radius: 999px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 14px;
  align-self: flex-start;
}
.feat-bento .f-vs b { color: var(--text-2); font-weight: 600; }
.feat-bento .f-vs em { font-style: normal; opacity: 0.85; }

/* hero card: 2-column internal layout (copy left + A/B visual right) */
.feat-bento .f-hero {
  background:
    radial-gradient(120% 90% at 0% 0%, rgba(63,180,136,0.12), transparent 55%),
    radial-gradient(110% 110% at 100% 100%, rgba(240,127,94,0.10), transparent 60%),
    linear-gradient(165deg, var(--surface), var(--surface-2)) padding-box,
    linear-gradient(150deg, var(--green-40), rgba(255,255,255,0.04) 50%, var(--coral-30)) border-box;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 36px;
  align-items: center;
  padding: 32px 34px;
}
.feat-bento .f-hero .f-hero__copy { display: flex; flex-direction: column; }
.feat-bento .f-hero h3 { font-size: 1.6rem; }
.feat-bento .f-hero p { font-size: 1.0rem; max-width: 100%; }
.feat-bento .f-livestat {
  margin-top: 22px; padding-top: 0; display: flex; gap: 10px; flex-wrap: wrap;
}
.feat-bento .f-hero__visual { display: block; min-width: 0; }
.feat-bento .f-chip {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 13px; border-radius: 999px;
  background: rgba(63,180,136,0.10); border: 1px solid rgba(63,180,136,0.25);
  font-size: 0.78rem; color: var(--text);
}
.feat-bento .f-chip i {
  width: 6px; height: 6px; border-radius: 50%; background: var(--green);
  box-shadow: 0 0 6px var(--green); animation: m-pulse 1.6s ease-in-out infinite;
}
.feat-bento .f-chip.coral { background: rgba(240,127,94,0.10); border-color: rgba(240,127,94,0.3); }
.feat-bento .f-chip.coral i { background: var(--coral); box-shadow: 0 0 6px var(--coral); }

/* A/B mock — KI card visual */
.ab-mock {
  background: linear-gradient(180deg, rgba(14,20,26,0.78), rgba(10,14,18,0.82));
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 18px 18px 16px;
  box-shadow: 0 22px 50px -28px rgba(0,0,0,0.6);
}
.ab-mock__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.ab-mock__title { font-family: 'Space Mono', monospace; font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.ab-mock__live { display: inline-flex; align-items: center; gap: 5px; font-family: 'Space Mono', monospace; font-size: 0.62rem; letter-spacing: 0.1em; color: var(--green); }
.ab-mock__live i { width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 6px var(--green); animation: m-pulse 1.6s ease-in-out infinite; }
.ab-mock__row { display: grid; grid-template-columns: 16px 1fr 92px; align-items: center; gap: 10px; margin-bottom: 7px; }
.ab-mock__lbl { font-family: 'Space Mono', monospace; font-size: 0.78rem; color: var(--text-2); }
.ab-mock__bar { display: block; height: 8px; border-radius: 6px; background: rgba(255,255,255,0.06); overflow: hidden; }
.ab-mock__bar i { display: block; height: 100%; border-radius: 6px; transition: width 0.6s ease; }
.ab-mock__val { font-family: 'Space Mono', monospace; font-size: 0.78rem; color: var(--text-2); text-align: right; }
.ab-mock__row--win .ab-mock__val { color: var(--text); font-weight: 600; }
.ab-mock__row--win .ab-mock__val em { font-style: normal; color: var(--green); font-size: 0.7rem; margin-left: 4px; font-weight: 700; }
.ab-mock__foot { margin-top: 12px; padding-top: 12px; border-top: 1px solid rgba(255,255,255,0.06); }
.ab-mock__meta { font-family: 'Space Mono', monospace; font-size: 0.62rem; letter-spacing: 0.06em; color: var(--muted); }

/* Connector mock — Workflow card visual */
.conn-mock {
  margin-top: auto; padding-top: 18px;
  display: flex; flex-direction: column; gap: 10px;
}
.conn-mock__row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.conn-mock__src {
  font-family: 'Space Mono', monospace; font-size: 0.72rem;
  padding: 5px 10px; border-radius: 6px;
  background: rgba(63,180,136,0.1); color: var(--green);
  border: 1px solid rgba(63,180,136,0.22);
}
.conn-mock__arrow { color: var(--muted); font-size: 0.9rem; }
.conn-mock__chips { display: flex; gap: 6px; flex-wrap: wrap; }
.conn-chip {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 8px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08);
  font-family: 'Space Mono', monospace; font-size: 0.66rem; font-weight: 700;
  color: var(--text-2);
}
.conn-mock__status {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'Space Mono', monospace; font-size: 0.66rem;
  letter-spacing: 0.06em; color: var(--muted);
}
.conn-mock__status i { width: 5px; height: 5px; border-radius: 50%; background: var(--green); box-shadow: 0 0 5px var(--green); animation: m-pulse 1.6s ease-in-out infinite; }

/* Brand mock — Branding card visual */
.brand-mock {
  margin-top: auto; padding-top: 18px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}
.brand-mini {
  position: relative;
  border-radius: 10px; padding: 11px 11px 12px;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  display: flex; flex-direction: column; gap: 7px;
}
.brand-mini__bar { position: absolute; top: 0; left: 0; right: 0; height: 4px; }
.brand-mini--green .brand-mini__bar { background: var(--green); }
.brand-mini--coral .brand-mini__bar { background: var(--coral); }
.brand-mini__logo {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 6px;
  font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 0.74rem;
  color: #fff;
}
.brand-mini--green .brand-mini__logo { background: var(--green); }
.brand-mini--coral .brand-mini__logo { background: var(--coral); }
.brand-mini__lines { display: flex; flex-direction: column; gap: 4px; margin-top: 2px; }
.brand-mini__lines i { display: block; height: 4px; border-radius: 4px; background: rgba(255,255,255,0.1); }
.brand-mini__lines i:nth-child(1) { width: 80%; }
.brand-mini__lines i:nth-child(2) { width: 62%; }
.brand-mini__lines i:nth-child(3) { width: 70%; background: rgba(255,255,255,0.06); }
.brand-mini__btn {
  align-self: flex-start;
  font-family: 'Space Mono', monospace; font-size: 0.6rem;
  padding: 4px 8px; border-radius: 5px;
  color: #fff;
}
.brand-mini--green .brand-mini__btn { background: var(--green); }
.brand-mini--coral .brand-mini__btn { background: var(--coral); }

/* NPS mock — Feedback card visual */
.nps-mock {
  margin-top: auto; padding-top: 18px;
  display: grid; grid-template-columns: 70px 1fr; gap: 12px; align-items: center;
}
.nps-mock__score {
  background: linear-gradient(135deg, rgba(63,180,136,0.16), rgba(63,180,136,0.04));
  border: 1px solid rgba(63,180,136,0.28);
  border-radius: 10px;
  padding: 10px 8px;
  text-align: center;
}
.nps-mock__val { display: block; font-family: 'Bricolage Grotesque', sans-serif; font-size: 1.5rem; font-weight: 800; color: var(--green); line-height: 1; }
.nps-mock__lbl { display: block; font-family: 'Space Mono', monospace; font-size: 0.56rem; letter-spacing: 0.1em; color: var(--text-2); margin-top: 3px; line-height: 1.2; }
.nps-mock__lbl em { font-style: normal; color: var(--muted); font-size: 0.5rem; }
.nps-mock__quote { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.nps-mock__stars { color: var(--coral); font-size: 0.78rem; letter-spacing: 0.04em; }
.nps-mock__txt { font-size: 0.78rem; color: var(--text); line-height: 1.4; }
.nps-mock__cta { font-family: 'Space Mono', monospace; font-size: 0.66rem; letter-spacing: 0.04em; color: var(--coral); cursor: pointer; }

@media (max-width: 900px) {
  .feat-bento { grid-template-columns: repeat(2, 1fr); }
  .feat-bento .f-hero  { grid-column: span 2; grid-template-columns: 1fr; gap: 22px; }
  .feat-bento .f-third { grid-column: span 1; }
}
@media (max-width: 560px) {
  .feat-bento { grid-template-columns: 1fr; }
  .feat-bento .f-hero, .feat-bento .f-third { grid-column: span 1; }
}
@media (prefers-reduced-motion: reduce) { .feat-bento .f-chip i, .ab-mock__live i, .conn-mock__status i { animation: none; } }

/* ===== TRUST / DSGVO — schmaler Strip ===== */
.tl-trust-strip { padding-block: var(--sec-y-sm); position: relative; overflow: hidden; }
.tl-trust-strip::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(55% 70% at 50% 50%, rgba(63,180,136,0.05), transparent 72%);
  filter: blur(32px);
}
.tl-trust-strip .wrap { position: relative; z-index: 1; }
.tl-trust-strip__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 1100px; margin-inline: auto;
}
.tl-trust-strip__head { text-align: center; max-width: 720px; margin-inline: auto; }
.tl-trust-strip__eyebrow {
  display: inline-block; margin-bottom: 12px;
  font-family: 'Space Mono', monospace; font-size: 0.72rem;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--coral);
}
.tl-trust-strip__title {
  font-family: 'Bricolage Grotesque', 'Manrope', sans-serif;
  font-weight: 700; letter-spacing: -0.02em; line-height: 1.15;
  font-size: clamp(1.4rem, 2.6vw, 1.9rem); color: var(--text);
}
.tl-trust-strip__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  overflow: hidden;
}
.tl-trust-strip__item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 18px 18px;
  background: linear-gradient(180deg, rgba(20,28,36,0.4), rgba(14,20,26,0.3));
}
.tl-trust-strip__item svg {
  width: 22px; height: 22px; flex: none;
  color: var(--green); margin-top: 2px;
}
.tl-trust-strip__item b {
  display: block; font-size: 0.9rem; font-weight: 600; color: var(--text); margin-bottom: 3px;
}
.tl-trust-strip__item span {
  display: block; font-size: 0.78rem; color: var(--muted); line-height: 1.4;
}
@media (max-width: 900px) {
  .tl-trust-strip__items { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .tl-trust-strip__items { grid-template-columns: 1fr; }
}

/* ===== SOCIAL PROOF — Full-bleed featured quote ===== */
.tl-proof-feature { padding-block: var(--sec-y-md); position: relative; overflow: hidden; }
.tl-proof-feature::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(52% 70% at 22% 50%, rgba(63,180,136,0.10), transparent 72%),
    radial-gradient(48% 65% at 80% 55%, rgba(240,127,94,0.10), transparent 74%);
  filter: blur(32px);
}
.tl-proof-feature .wrap { position: relative; z-index: 1; }
.tl-proof__container {
  position: relative;
  max-width: 820px; margin-inline: auto;
  padding: 56px 48px 48px;
  text-align: center;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(20,28,36,0.55), rgba(14,20,26,0.4));
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
}
.tl-proof__glow {
  position: absolute; left: 50%; top: 50%; width: 720px; height: 360px;
  transform: translate(-50%, -50%); z-index: 0; pointer-events: none;
  background:
    radial-gradient(46% 56% at 32% 38%, rgba(63,180,136,0.16), transparent 72%),
    radial-gradient(50% 60% at 70% 60%, rgba(240,127,94,0.16), transparent 74%);
  filter: blur(46px);
}
.tl-proof__container > *:not(.tl-proof__glow) { position: relative; z-index: 1; }
.tl-proof__eyebrow {
  display: inline-block; margin-bottom: 22px;
  font-family: 'Space Mono', monospace; font-size: 0.72rem;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--coral);
}
.tl-proof__stars { display: flex; justify-content: center; gap: 4px; margin-bottom: 24px; }
.tl-proof__stars svg { width: 18px; height: 18px; color: var(--coral); fill: var(--coral); }
.tl-proof__quote {
  font-family: 'Bricolage Grotesque', 'Manrope', sans-serif;
  font-weight: 600; letter-spacing: -0.015em; line-height: 1.28;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  color: var(--text);
  margin: 0 0 30px;
  text-wrap: pretty;
}
.tl-proof__who { display: inline-flex; align-items: center; gap: 14px; }
.tl-proof__av {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(63,180,136,0.5), rgba(240,127,94,0.5));
  border: 1px solid rgba(255,255,255,0.12);
}
.tl-proof__attr { text-align: left; }
.tl-proof__attr b { display: block; font-size: 0.95rem; font-weight: 600; color: var(--text); }
.tl-proof__attr em { display: block; font-style: normal; font-family: 'Space Mono', monospace; font-size: 0.66rem; letter-spacing: 0.06em; color: var(--muted); margin-top: 3px; }
.tl-proof__others {
  display: flex; justify-content: center; gap: 8px; flex-wrap: wrap;
  margin-top: 32px; padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.tl-proof__chip {
  font-family: 'Space Mono', monospace; font-size: 0.7rem;
  padding: 6px 12px; border-radius: 999px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  color: var(--muted);
}
@media (max-width: 640px) {
  .tl-proof__container { padding: 40px 24px 32px; }
  .tl-proof__who { flex-direction: column; gap: 10px; }
  .tl-proof__attr { text-align: center; }
}
/* ===== end features bento ===== */

/* S-01 audit fix: icon prefix in solution step labels (replaces 01-04 numbering) */
.tl-solution .step .num { gap: 9px; }
.tl-solution .step svg.num-ic,
.tl-solution .step .num > svg { width: 16px; height: 16px; color: var(--green); flex: none; }
.tl-solution .step .num-ic use { width: 100%; height: 100%; }
/* Restore step number prefix (01-04) alongside the icon */
.tl-solution .step .num-no {
  font-family: 'Space Mono', monospace;
  font-size: 0.72rem; font-weight: 700;
  color: var(--coral);
  letter-spacing: 0.08em;
  padding-right: 4px;
}

/* Viewport graphic crossfade — each .gfx fades in with a soft background bloom on activation */
.tl-solution .viewport { overflow: hidden; }
.tl-solution .gfx {
  position: absolute; inset: 0;
  opacity: 0;
  transform: scale(0.985);
  transition: opacity 0.55s cubic-bezier(.22,.61,.36,1), transform 0.6s cubic-bezier(.22,.61,.36,1);
  pointer-events: none;
}
.tl-solution .gfx.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}
/* Soft brand-color bloom that fades in behind the active step graphic */
.tl-solution .viewport::after {
  content: ""; position: absolute; inset: -10%; z-index: -1;
  background:
    radial-gradient(45% 55% at 28% 30%, rgba(63,180,136,0.22), transparent 70%),
    radial-gradient(40% 50% at 78% 80%, rgba(240,127,94,0.16), transparent 70%);
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(.22,.61,.36,1);
  pointer-events: none;
}
.tl-solution .viewport[data-active="0"]::after { opacity: 0.85; }
.tl-solution .viewport[data-active="1"]::after { opacity: 0.85; filter: hue-rotate(-12deg); }
.tl-solution .viewport[data-active="2"]::after { opacity: 0.95; filter: hue-rotate(10deg); }
.tl-solution .viewport[data-active="3"]::after { opacity: 0.95; filter: hue-rotate(28deg); }

/* ===== Phase A Conv-Killers (UX-Audit) ===== */

/* T-1 · early DACH trust strip (sits right after hero) */
.trust-strip {
  border-block: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(63,180,136,0.04), rgba(8,11,16,0));
  position: relative; z-index: 2;
}
.trust-strip .wrap {
  display: flex; align-items: center; justify-content: center;
  gap: clamp(20px, 4vw, 56px); flex-wrap: wrap;
  padding-block: 18px;
}
.trust-strip__item {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.86rem; color: var(--text-2); letter-spacing: 0.005em;
}
.trust-strip__item svg { width: 16px; height: 16px; color: var(--green); flex: none; }
@media (max-width: 640px) {
  .trust-strip .wrap { gap: 16px; padding-block: 14px; }
  .trust-strip__item { font-size: 0.78rem; }
}

/* H-3 · hero secondary CTA as ghost text-link (Single-CTA hierarchy) */
.hero__cta-link {
  display: inline-flex; align-items: center; gap: 6px;
  align-self: center;
  padding: 16px 8px;
  color: var(--text-2);
  font-weight: 500; font-size: 0.96rem;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.hero__cta-link:hover {
  color: var(--text);
  border-bottom-color: var(--green);
}
.hero__cta-link svg {
  width: 14px; height: 14px;
  transition: transform 0.25s ease;
}
.hero__cta-link:hover svg { transform: translateY(2px); }

/* D-3 · anxiety-reducer chips under demo submit */
.demo-anxiety {
  display: flex; flex-wrap: wrap; gap: 8px 14px;
  justify-content: center; margin-top: 14px;
}
.demo-anxiety__item {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--text-2); font-size: 0.78rem; font-weight: 500;
}
.demo-anxiety__item svg { width: 13px; height: 13px; color: var(--green); flex: none; }
.demo-anxiety__item:nth-child(3) svg { color: var(--coral); }

/* D-2 · Calendly hint line */
.demo-cal-hint {
  margin-top: 12px; text-align: center;
  font-size: 0.74rem; color: var(--muted); line-height: 1.5;
  max-width: 36ch; margin-left: auto; margin-right: auto;
}


/* Pool-Landing cross-link banner (top-of-page back to main onepager) */
.cross-back {
  display: block; position: relative; z-index: 101;
  padding: 9px 24px; text-align: center;
  background: rgba(63,180,136,0.10);
  color: var(--green); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.02em;
  text-decoration: none;
  border-bottom: 1px solid rgba(63,180,136,0.18);
  transition: background 0.2s ease;
}
.cross-back:hover { background: rgba(63,180,136,0.16); }

/* Pool-Landing: lower nav since cross-back pushes everything down */
body[data-page="pool"] .nav { top: 38px; }


/* Hero avatar image-slots — display as the existing .ava circles */
image-slot.ava { display: block; }
image-slot.op-card__ava { display: block; }
