/* ============================================================
   SOLOKI v2.0 — Dark Intelligence Design System
   Autor: Claudian · 21.06.2026
   ============================================================ */

/* ── TOKENS ── */
:root {
  --sv2-bg:        #080B12;
  --sv2-bg2:       #0E1220;
  --sv2-bg3:       #131825;
  --sv2-indigo:    #6C8EFF;
  --sv2-amber:     #E8A94A;
  --sv2-text:      #F2EEE8;
  --sv2-muted:     #9D9A91;
  --sv2-glass:     rgba(255,255,255,0.05);
  --sv2-glass-b:   rgba(255,255,255,0.08);
  --sv2-font-disp: 'Cormorant Garamond', Georgia, serif;
  --sv2-font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
  --sv2-ease:      cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── RESET ── */
#soloki-v2, #soloki-v2 * { box-sizing: border-box; }
#soloki-v2 { font-family: var(--sv2-font-body); color: var(--sv2-text); background: var(--sv2-bg); }

.sv2-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}

.sv2-section {
  padding: clamp(80px, 12vw, 140px) 0;
}

.sv2-label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sv2-indigo);
  margin-bottom: 16px;
  font-weight: 600;
}

.sv2-h2 {
  font-family: var(--sv2-font-disp);
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 400;
  line-height: 1.08;
  margin: 0 0 48px;
  color: var(--sv2-text);
}

/* ── REVEAL ANIMATIONS ── */
.sv2-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--sv2-ease), transform 0.8s var(--sv2-ease);
}
.sv2-reveal--delay1 { transition-delay: 0.12s; }
.sv2-reveal--delay2 { transition-delay: 0.24s; }
.sv2-reveal--delay3 { transition-delay: 0.36s; }
.sv2-reveal--delay4 { transition-delay: 0.48s; }
.sv2-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── BUTTONS ── */
.sv2-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  min-height: 52px;
  border-radius: 10px;
  font-family: var(--sv2-font-body);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: transform .2s var(--sv2-ease), box-shadow .25s var(--sv2-ease),
              background-color .2s ease, border-color .2s ease, color .2s ease;
  cursor: pointer;
  border: none;
  will-change: transform;
}
.sv2-btn--primary {
  background: var(--sv2-indigo);
  color: #fff;
  box-shadow: 0 6px 20px -6px rgba(108,142,255,0.5);
}
.sv2-btn--primary:hover {
  background: #84a3ff;
  transform: translateY(-2px);
  box-shadow: 0 12px 36px -8px rgba(108,142,255,0.6);
}
.sv2-btn--ghost {
  background: transparent;
  color: var(--sv2-text);
  border: 1px solid rgba(255,255,255,0.18);
}
.sv2-btn--ghost:hover {
  border-color: rgba(108,142,255,0.55);
  background: rgba(108,142,255,0.06);
  transform: translateY(-2px);
}
/* Press-Feedback (skill: scale-feedback) */
.sv2-btn:active { transform: translateY(0) scale(0.975); transition-duration: .08s; }
/* Tastatur-Fokus sichtbar (skill: focus-states, CRITICAL) */
.sv2-btn:focus-visible {
  outline: 2px solid var(--sv2-amber);
  outline-offset: 3px;
}
.sv2-btn--full { width: 100%; justify-content: center; }
.sv2-btn--pulse {
  animation: sv2-pulse 2.5s ease-in-out infinite;
}
@keyframes sv2-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(108,142,255,0.5); }
  50%       { box-shadow: 0 0 0 14px rgba(108,142,255,0); }
}

/* ═══════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════ */
.sv2-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--sv2-bg);
}

.sv2-hero__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
/* Fenster-Hintergrund (Video mit aufsteigendem Dampf bzw. Poster-Bild):
   sichtbar, aber dezent ins Dark-Design getönt */
.sv2-hero__video,
.sv2-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  opacity: 0.92;
  filter: brightness(0.66) saturate(0.92) contrast(1.02);
}
/* Poster-Standbild bekommt sanften Ken-Burns-Zoom (Video bewegt sich selbst) */
.sv2-hero__img {
  transform: scale(1.04);
  animation: sv2HeroZoom 26s ease-in-out infinite alternate;
}
@keyframes sv2HeroZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.12); }
}
.sv2-hero__overlay {
  position: absolute;
  inset: 0;
  /* unten + links abdunkeln (Text-Lesbarkeit), oben/rechts Fenster sichtbar lassen */
  background:
    linear-gradient(180deg, rgba(8,11,18,0.28) 0%, rgba(8,11,18,0.48) 48%, rgba(8,11,18,0.93) 100%),
    linear-gradient(90deg, rgba(8,11,18,0.62) 0%, rgba(8,11,18,0.15) 55%, rgba(8,11,18,0) 80%);
}

.sv2-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.sv2-hero__content {
  position: relative;
  z-index: 2;
  padding-top: 100px;
  padding-bottom: 80px;
}

.sv2-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sv2-amber);
  margin-bottom: 28px;
  font-weight: 600;
  padding: 8px 16px;
  border: 1px solid rgba(232,169,74,0.30);
  border-radius: 999px;
  background: rgba(232,169,74,0.08);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.sv2-hero__eyebrow:before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--sv2-amber);
  box-shadow: 0 0 10px 1px rgba(232,169,74,0.8);
}

.sv2-hero__h1 {
  font-family: var(--sv2-font-disp);
  font-size: clamp(52px, 8vw, 108px);
  font-weight: 300;
  line-height: 0.98;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  text-shadow: 0 2px 40px rgba(0,0,0,0.5);
}
.sv2-hero__line {
  display: block;
  color: #F6F2EB;
  text-shadow: 0 2px 30px rgba(0,0,0,0.65), 0 1px 4px rgba(0,0,0,0.55);
}
.sv2-hero__line--accent {
  color: var(--sv2-indigo);
  font-style: italic;
  text-shadow: 0 2px 30px rgba(8,11,18,0.55);
}

.sv2-hero__sub {
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.7;
  color: rgba(242,238,232,0.82);
  margin: 0 0 40px;
  max-width: 540px;
  text-shadow: 0 1px 20px rgba(0,0,0,0.4);
}

.sv2-hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.sv2-hero__trust {
  font-size: 12px;
  color: var(--sv2-muted);
  letter-spacing: 0.5px;
}

.sv2-hero__scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.sv2-hero__scroll-hint span {
  display: block;
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--sv2-indigo));
  animation: sv2-scroll-line 2s ease-in-out infinite;
}
@keyframes sv2-scroll-line {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 0; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* ═══════════════════════════════════════════════════════
   GLASSMORPHISM KARTEN
═══════════════════════════════════════════════════════ */
.sv2-pillars { background: var(--sv2-bg2); position: relative; overflow: hidden; }
.sv2-pillars > .sv2-container { position: relative; z-index: 1; }

/* ── Leuchtende Formen driften im Hintergrund (Kreis · Dreieck · Quadrat) ── */
.sv2-pillars__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.sv2-pshape { position: absolute; display: block; will-change: transform; }
.sv2-pshape--indigo { color: var(--sv2-indigo); filter: drop-shadow(0 0 16px rgba(108,142,255,0.5)); opacity: 0.18; }
.sv2-pshape--amber  { color: var(--sv2-amber);  filter: drop-shadow(0 0 16px rgba(232,169,74,0.5));  opacity: 0.18; }
.sv2-pshape--1 { width: 320px; height: 320px; top: -60px; left: -80px; opacity: .12; animation: sv2Drift1 34s ease-in-out infinite; }
.sv2-pshape--2 { width: 240px; height: 240px; bottom: -55px; right: -55px; opacity: .13; animation: sv2Drift2 39s ease-in-out infinite; }
.sv2-pshape--3 { width: 170px; height: 170px; top: 14%; right: 7%;  animation: sv2Drift3 30s ease-in-out infinite; }
.sv2-pshape--4 { width: 120px; height: 120px; bottom: 9%; left: 5%; animation: sv2Drift2 33s ease-in-out infinite -8s; }
.sv2-pshape--5 { width: 150px; height: 150px; top: -34px; right: 27%; animation: sv2Drift1 37s ease-in-out infinite -14s; }
.sv2-pshape--6 { width: 105px; height: 105px; top: 55%; left: 15%;  animation: sv2Drift3 28s ease-in-out infinite -6s; }
@keyframes sv2Drift1 { 0%,100% { transform: translate(0,0) rotate(0deg); }   50% { transform: translate(38px,28px) rotate(16deg); } }
@keyframes sv2Drift2 { 0%,100% { transform: translate(0,0) rotate(0deg); }   50% { transform: translate(-44px,-26px) rotate(-14deg); } }
@keyframes sv2Drift3 { 0%,100% { transform: translate(0,0) rotate(0deg); }   50% { transform: translate(26px,-34px) rotate(12deg); } }

.sv2-pillars__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.sv2-glass-card {
  background: var(--sv2-glass);
  border: 1px solid var(--sv2-glass-b);
  border-radius: 16px;
  padding: 40px 32px;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  transition: border-color 0.3s ease, transform 0.3s var(--sv2-ease),
              box-shadow 0.3s ease, background-color 0.3s ease;
}
.sv2-glass-card:hover {
  border-color: rgba(108,142,255,0.35);
  background: rgba(255,255,255,0.07);
  transform: translateY(-5px);
  box-shadow: 0 18px 50px rgba(0,0,0,0.45), 0 0 36px rgba(108,142,255,0.10);
}
.sv2-glass-card__icon {
  width: 68px;
  height: 68px;
  margin-bottom: 22px;
}
.sv2-glass-card__icon svg { width: 100%; height: 100%; overflow: visible; }

/* ── Säulen-Grundformen: leuchtend + eigen-animiert ──────
   Kreis (Lokal) pulsiert · Dreieck (Persönlich) rotiert · Quadrat (Sicher) atmet
   (wiederbelebt aus dem alten Design, jetzt glühend in Markenfarben) */
.sv2-shape { transform-origin: center; }
.sv2-shape--circle {
  animation: sv2ShapePulse 5s ease-in-out infinite;
  filter: drop-shadow(0 0 5px rgba(108,142,255,.75)) drop-shadow(0 0 14px rgba(108,142,255,.40));
}
.sv2-shape--triangle {
  animation: sv2ShapeRotate 38s linear infinite;
  filter: drop-shadow(0 0 5px rgba(232,169,74,.75)) drop-shadow(0 0 14px rgba(232,169,74,.40));
}
.sv2-shape--square {
  animation: sv2ShapeBreathe 7s ease-in-out infinite;
  filter: drop-shadow(0 0 5px rgba(108,142,255,.75)) drop-shadow(0 0 14px rgba(108,142,255,.40));
}
@keyframes sv2ShapePulse  { 0%,100% { transform: scale(1); } 50% { transform: scale(1.09); } }
@keyframes sv2ShapeRotate { from { transform: rotate(0); } to { transform: rotate(360deg); } }
@keyframes sv2ShapeBreathe { 0%,100% { transform: rotate(-3deg) scale(1); } 50% { transform: rotate(3deg) scale(1.06); } }
.sv2-glass-card:hover .sv2-shape {
  animation-play-state: paused;
  transform: rotate(12deg) scale(1.15);
  transition: transform .5s cubic-bezier(.22,1,.36,1);
}
@media (prefers-reduced-motion: reduce) {
  .sv2-shape { animation: none !important; }
}
.sv2-glass-card h3 {
  font-family: var(--sv2-font-disp);
  font-size: 26px;
  font-weight: 500;
  margin: 0 0 12px;
  color: var(--sv2-text);
}
.sv2-glass-card p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(242,238,232,0.65);
  margin: 0;
}

/* ═══════════════════════════════════════════════════════
   EIN TAG MIT SOLOKI — Sticky Scroll + Bildwechsel
═══════════════════════════════════════════════════════ */
.sv2-day {
  position: relative;
  background: var(--sv2-bg);
  overflow: hidden;
}

.sv2-day__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.sv2-day__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.sv2-day__bg-img.active { opacity: 0.25; }
.sv2-day__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8,11,18,0.97) 45%, rgba(8,11,18,0.5) 100%);
}

.sv2-day__content {
  position: relative;
  z-index: 1;
}

.sv2-day__timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 600px;
}

.sv2-day__entry {
  display: flex;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  cursor: pointer;
  transition: opacity 0.3s;
}
.sv2-day__entry:last-child { border-bottom: none; }
.sv2-day__entry:hover { opacity: 0.9; }

.sv2-day__time {
  font-family: var(--sv2-font-disp);
  font-size: 28px;
  font-weight: 600;
  color: var(--sv2-amber);
  min-width: 80px;
  flex-shrink: 0;
  padding-top: 2px;
}

.sv2-day__action {
  font-size: 13px;
  color: var(--sv2-muted);
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.sv2-day__quote {
  font-family: var(--sv2-font-disp);
  font-size: 20px;
  line-height: 1.55;
  color: var(--sv2-text);
  font-style: italic;
  margin: 0;
}

/* ═══════════════════════════════════════════════════════
   TESTIMONIAL
═══════════════════════════════════════════════════════ */
.sv2-testimonial {
  background: var(--sv2-bg3);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.sv2-testimonial__inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  padding-top: 40px;
}
.sv2-testimonial__quote-mark {
  width: 48px;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.4;
}
.sv2-testimonial__text {
  font-family: var(--sv2-font-disp);
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.4;
  color: var(--sv2-text);
  margin: 0 0 28px;
}
.sv2-testimonial__author {
  display: block;
  font-family: var(--sv2-font-body);
  font-size: 14px;
  font-style: normal;
  letter-spacing: 0.5px;
  color: var(--sv2-amber);
}

/* ═══════════════════════════════════════════════════════
   PRICING
═══════════════════════════════════════════════════════ */
.sv2-pricing { background: var(--sv2-bg); }
.sv2-pricing__card {
  max-width: 460px;
  margin: 48px auto 0;
  padding: 48px 40px;
  border-radius: 20px;
  background: linear-gradient(165deg, rgba(108,142,255,0.10), rgba(255,255,255,0.03));
  border: 1px solid var(--sv2-glass-b);
  box-shadow: 0 30px 80px -30px rgba(0,0,0,0.6);
  position: relative;
  text-align: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 0.35s var(--sv2-ease), box-shadow 0.35s ease, border-color 0.35s ease;
}
.sv2-pricing__card:hover {
  transform: translateY(-6px);
  border-color: rgba(108,142,255,0.35);
  box-shadow: 0 40px 90px -28px rgba(0,0,0,0.7), 0 0 50px rgba(108,142,255,0.10);
}
/* dezenter Leucht-Rand oben (premium accent) */
.sv2-pricing__card::before {
  content: "";
  position: absolute; left: 50%; top: 0; transform: translateX(-50%);
  width: 60%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(108,142,255,0.6), transparent);
}
.sv2-pricing__badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--sv2-amber);
  background: rgba(232,169,74,0.10);
  border: 1px solid rgba(232,169,74,0.25);
  border-radius: 999px;
  padding: 7px 18px;
  margin-bottom: 24px;
}
.sv2-pricing__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin-bottom: 8px;
}
.sv2-pricing__amount {
  font-family: var(--sv2-font-disp);
  font-size: clamp(48px, 7vw, 68px);
  font-weight: 500;
  color: var(--sv2-text);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.sv2-pricing__per { font-size: 16px; color: var(--sv2-muted); }
.sv2-pricing__setup {
  font-size: 14px;
  color: var(--sv2-muted);
  margin: 0 0 28px;
}
.sv2-pricing__features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  text-align: left;
}
.sv2-pricing__features li {
  position: relative;
  padding: 12px 0 12px 32px;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(242,238,232,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.sv2-pricing__features li:last-child { border-bottom: 0; }
.sv2-pricing__features li:before {
  content: "";
  position: absolute;
  left: 4px; top: 18px;
  width: 14px; height: 8px;
  border-left: 2px solid var(--sv2-indigo);
  border-bottom: 2px solid var(--sv2-indigo);
  transform: rotate(-45deg);
}

/* ═══════════════════════════════════════════════════════
   HERO-SUB — Mechanismus-Betonung
═══════════════════════════════════════════════════════ */
.sv2-hero__sub strong { color: #fff; font-weight: 600; }

/* ═══════════════════════════════════════════════════════
   HUB — „Soloki im Zentrum" (dockt an alle Werkzeuge an)
═══════════════════════════════════════════════════════ */
.sv2-hub { background: var(--sv2-bg2); text-align: center; }
.sv2-hub__intro {
  max-width: 600px; margin: 18px auto 0;
  font-size: clamp(16px, 2vw, 19px); line-height: 1.7;
  color: rgba(242,238,232,0.78);
}
.sv2-hub__stage {
  position: relative;
  width: min(660px, 94vw);
  aspect-ratio: 1 / 1;
  margin: 56px auto 0;
}
.sv2-hub__lines { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.sv2-hub__line {
  stroke: rgba(108,142,255,0.30);
  stroke-width: 1.5;
  stroke-dasharray: 5 7;
  animation: sv2HubFlow 3.2s linear infinite;
}
@keyframes sv2HubFlow { to { stroke-dashoffset: -24; } }
.sv2-hub__core {
  position: absolute; left: 50%; top: 50%;
  width: 22%; aspect-ratio: 1; transform: translate(-50%,-50%);
  border-radius: 50%; z-index: 3; overflow: visible;
  display: flex; align-items: center; justify-content: center;
  background: radial-gradient(circle at 50% 45%, rgba(108,142,255,0.22), transparent 70%);
}
/* glühende KI-Energie-Kugel (OpenArt-Video), per screen-blend in die Szene gemischt */
.sv2-hub__core-video {
  position: absolute; left: 50%; top: 50%;
  width: 215%; height: 215%; transform: translate(-50%,-50%);
  object-fit: contain; pointer-events: none; z-index: 0;
  -webkit-mask: radial-gradient(circle, #000 58%, transparent 76%);
          mask: radial-gradient(circle, #000 58%, transparent 76%);
  transition: transform .3s ease;
}
.sv2-hub__core span {
  position: relative; z-index: 2;
  font-family: var(--sv2-font-disp);
  font-size: clamp(15px, 2.6vw, 22px); font-weight: 600; color: #fff;
  letter-spacing: .3px;
  text-shadow: 0 0 3px #080B12, 0 0 7px #080B12, 0 0 14px rgba(8,11,18,0.95), 0 2px 4px #000, 0 0 26px rgba(108,142,255,0.55);
}
/* Puls trifft Kern -> Orb dehnt sich kurz minimal (Ecken bleiben stabil) */
.sv2-hub__core--flash .sv2-hub__core-video { transform: translate(-50%,-50%) scale(1.04); }
.sv2-hub__core::before {
  content: ""; position: absolute; inset: 2%; border-radius: 50%; z-index: 1;
  border: 1px solid rgba(108,142,255,0.22);
  animation: sv2HubPulse 4s ease-in-out infinite;
}
@keyframes sv2HubPulse { 0%,100% { transform: scale(1); opacity: .85; } 50% { transform: scale(1.12); opacity: .4; } }
.sv2-hub__node {
  position: absolute; transform: translate(-50%,-50%);
  display: flex; flex-direction: column; align-items: center; gap: 9px;
  z-index: 2; width: 92px; will-change: transform;
}
.sv2-hub__node--1 { left: 50%;   top: 10.8%; }
.sv2-hub__node--2 { left: 77.7%; top: 22.3%; }
.sv2-hub__node--3 { left: 89.2%; top: 50%; }
.sv2-hub__node--4 { left: 77.7%; top: 77.7%; }
.sv2-hub__node--5 { left: 50%;   top: 89.2%; }
.sv2-hub__node--6 { left: 22.3%; top: 77.7%; }
.sv2-hub__node--7 { left: 10.8%; top: 50%; }
.sv2-hub__node--8 { left: 22.3%; top: 22.3%; }
.sv2-hub__dot {
  width: 60px; height: 60px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.05); border: 1px solid var(--sv2-glass-b);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  color: var(--sv2-indigo); box-shadow: 0 8px 24px -10px rgba(0,0,0,0.6);
  transition: transform .3s var(--sv2-ease), border-color .3s ease, box-shadow .3s ease;
}
.sv2-hub__dot svg { width: 26px; height: 26px; }
.sv2-hub__node--2 .sv2-hub__dot,
.sv2-hub__node--4 .sv2-hub__dot,
.sv2-hub__node--6 .sv2-hub__dot,
.sv2-hub__node--8 .sv2-hub__dot { color: var(--sv2-amber); }
.sv2-hub__node:hover .sv2-hub__dot {
  border-color: rgba(108,142,255,0.6);
  box-shadow: 0 12px 30px -8px rgba(0,0,0,0.7), 0 0 26px rgba(108,142,255,0.28);
}
/* Soloki „pingt" ein Modul -> Knoten leuchtet kurz auf */
.sv2-hub__node.is-pinged .sv2-hub__dot {
  border-color: rgba(108,142,255,0.85);
  box-shadow: 0 0 30px rgba(108,142,255,0.55);
}
.sv2-hub__node--2.is-pinged .sv2-hub__dot,
.sv2-hub__node--4.is-pinged .sv2-hub__dot,
.sv2-hub__node--6.is-pinged .sv2-hub__dot,
.sv2-hub__node--8.is-pinged .sv2-hub__dot {
  border-color: rgba(232,169,74,0.85);
  box-shadow: 0 0 30px rgba(232,169,74,0.55);
}
.sv2-hub__name {
  font-size: 13px; font-weight: 500; white-space: nowrap;
  color: rgba(242,238,232,0.82); letter-spacing: .2px;
}
/* Wandernde Daten-Pulse */
.sv2-hub__pulse {
  fill: #B8C9FF;
  filter: drop-shadow(0 0 5px rgba(108,142,255,0.95));
  pointer-events: none;
}
/* Aktive Linie (Hover) */
.sv2-hub__line.is-active {
  stroke: rgba(108,142,255,0.85) !important;
  stroke-width: 2.2;
  animation-duration: 1.2s;
}
/* Kern reagiert bei eintreffendem Puls + Hover-Cursor */
.sv2-hub__core { transition: background .25s ease; cursor: default; }
.sv2-hub__core--flash {
  background: radial-gradient(circle at 50% 40%, rgba(108,142,255,0.85), rgba(108,142,255,0.18) 60%, transparent 74%);
}
.sv2-hub__core--flash::before {
  border-color: rgba(108,142,255,0.95);
  box-shadow: 0 0 52px rgba(108,142,255,0.8), inset 0 0 30px rgba(108,142,255,0.5);
}
.sv2-hub__node { cursor: pointer; }
/* Hover-Fähigkeits-Caption */
.sv2-hub__cap {
  min-height: 2.6em; max-width: 480px; margin: 30px auto 0;
  font-size: 15px; line-height: 1.5; color: var(--sv2-muted);
  transition: color .3s ease;
}
.sv2-hub__cap.is-on { color: var(--sv2-indigo); }
.sv2-hub__more { margin: 12px auto 0; font-size: 14px; color: var(--sv2-muted); font-style: italic; }
@media (max-width: 600px) {
  .sv2-hub__node { width: 74px; }
  .sv2-hub__dot { width: 50px; height: 50px; border-radius: 14px; }
  .sv2-hub__dot svg { width: 22px; height: 22px; }
  .sv2-hub__name { font-size: 11px; }
}

/* ═══════════════════════════════════════════════════════
   VON SATZ ZU ERLEDIGT — Soloki handelt
═══════════════════════════════════════════════════════ */
.sv2-do { background: var(--sv2-bg); text-align: center; }
.sv2-do__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px; margin-top: 48px;
}
.sv2-do__card {
  background: var(--sv2-glass); border: 1px solid var(--sv2-glass-b);
  border-radius: 16px; padding: 32px 30px; text-align: left;
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
}
.sv2-do__who {
  display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: .8px;
  text-transform: uppercase; color: var(--sv2-muted); margin-bottom: 8px;
}
.sv2-do__who--ai { color: var(--sv2-indigo); }
.sv2-do__you {
  font-family: var(--sv2-font-disp); font-size: 22px; line-height: 1.4;
  font-style: italic; color: var(--sv2-text); margin: 0 0 24px;
}
.sv2-do__you .sv2-do__who { display: block; font-family: var(--sv2-font-body); font-style: normal; }
.sv2-do__resp { border-top: 1px solid var(--sv2-glass-b); padding-top: 18px; }
.sv2-do__list { list-style: none; margin: 8px 0 0; padding: 0; }
.sv2-do__check {
  position: relative; padding: 9px 0 9px 34px;
  font-size: 15px; color: rgba(242,238,232,0.88);
  opacity: 0; transform: translateX(-10px);
  transition: opacity .5s var(--sv2-ease), transform .5s var(--sv2-ease);
}
.sv2-do__check::before {
  content: ""; position: absolute; left: 6px; top: 13px;
  width: 13px; height: 7px;
  border-left: 2px solid var(--sv2-indigo); border-bottom: 2px solid var(--sv2-indigo);
  transform: rotate(-45deg);
}
.sv2-do__card.is-visible .sv2-do__check {
  opacity: 1; transform: none;
  transition-delay: calc(var(--i) * 0.5s + 0.25s);
}
.sv2-do__note { margin: 32px auto 0; font-size: 14px; color: var(--sv2-muted); }

/* ═══════════════════════════════════════════════════════
   TAGESABLAUF — Aktion + Zeitersparnis
═══════════════════════════════════════════════════════ */
.sv2-day__done {
  display: inline-block; margin-top: 12px;
  font-size: 12px; font-weight: 600; letter-spacing: .3px;
  color: #8ED9A8;
  background: rgba(110,210,150,0.10); border: 1px solid rgba(110,210,150,0.22);
  border-radius: 999px; padding: 4px 12px;
}
.sv2-day__total {
  margin: 44px 0 0; padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-family: var(--sv2-font-disp); font-size: clamp(20px, 3vw, 28px);
  color: var(--sv2-text);
}
.sv2-day__total strong { color: var(--sv2-amber); font-weight: 600; }

/* ═══════════════════════════════════════════════════════
   UNTERSEITEN (v2-Sub) — Sub-Hero, Steps, Regel, ROI, CTA
═══════════════════════════════════════════════════════ */
.sv2-subhero {
  position: relative; overflow: hidden;
  min-height: 64vh; display: flex; align-items: center;
  padding: 150px 0 70px; background: var(--sv2-bg);
}
.sv2-subhero__media { position: absolute; inset: 0; z-index: 0; }
.sv2-subhero__media .sv2-hero__video {
  width: 100%; height: 100%; object-fit: cover; object-position: center 35%;
  opacity: .9; filter: brightness(.58) saturate(.9);
}
.sv2-subhero__overlay { position: absolute; inset: 0; background:
  linear-gradient(180deg, rgba(8,11,18,.42) 0%, rgba(8,11,18,.6) 55%, rgba(8,11,18,.97) 100%),
  linear-gradient(90deg, rgba(8,11,18,.62) 0%, rgba(8,11,18,.15) 55%, transparent 80%); }
.sv2-subhero__content { position: relative; z-index: 2; }
.sv2-subhero__h1 {
  font-family: var(--sv2-font-disp); font-weight: 300;
  font-size: clamp(38px, 5.6vw, 72px); line-height: 1.04; color: #F6F2EB;
  margin: 14px 0 22px; text-shadow: 0 2px 30px rgba(0,0,0,.6);
}
.sv2-subhero__sub { font-size: clamp(16px,2vw,20px); line-height: 1.7; color: rgba(242,238,232,.85); max-width: 620px; margin: 0 0 32px; }
.sv2-subhero__sub strong { color: #fff; font-weight: 600; }

.sv2-steps-sec { background: var(--sv2-bg2); }
.sv2-steps { list-style: none; margin: 48px 0 0; padding: 0; max-width: 760px; position: relative; }
.sv2-steps::before { content: ""; position: absolute; left: 27px; top: 16px; bottom: 16px; width: 2px;
  background: linear-gradient(180deg, rgba(108,142,255,.5), rgba(232,169,74,.4)); }
.sv2-step { position: relative; display: flex; gap: 24px; align-items: flex-start; padding: 15px 0; }
.sv2-step__num {
  flex: 0 0 56px; width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--sv2-font-disp); font-size: 20px; color: var(--sv2-indigo);
  background: var(--sv2-bg2); border: 1.5px solid rgba(108,142,255,.4);
  box-shadow: 0 0 18px rgba(108,142,255,.2); position: relative; z-index: 1;
}
.sv2-step__body { padding-top: 7px; }
.sv2-step__body h3 { font-family: var(--sv2-font-body); font-size: clamp(17px,2.2vw,21px); font-weight: 600; color: var(--sv2-text); margin: 0 0 6px; line-height: 1.35; }
.sv2-step__when { font-size: 13px; letter-spacing: .5px; color: var(--sv2-amber); font-weight: 600; }

.sv2-rule-sec { background: var(--sv2-bg); }
.sv2-rule {
  display: flex; gap: 24px; align-items: center; max-width: 820px; margin: 0 auto; padding: 34px 38px;
  border-radius: 18px; background: linear-gradient(135deg, rgba(232,169,74,.10), rgba(255,255,255,.02));
  border: 1px solid rgba(232,169,74,.30);
}
.sv2-rule__icon { flex: 0 0 auto; color: var(--sv2-amber); filter: drop-shadow(0 0 10px rgba(232,169,74,.4)); }
.sv2-rule__icon svg { width: 52px; height: 52px; }
.sv2-rule__text h3 { font-family: var(--sv2-font-disp); font-size: clamp(20px,2.6vw,28px); font-weight: 500; color: var(--sv2-text); margin: 0 0 8px; }
.sv2-rule__text p { font-size: 15px; line-height: 1.6; color: rgba(242,238,232,.78); margin: 0; }

.sv2-roi-sec { background: var(--sv2-bg2); text-align: center; }
.sv2-roi__intro { max-width: 620px; margin: 16px auto 0; font-size: clamp(16px,2vw,19px); line-height: 1.7; color: rgba(242,238,232,.8); }
.sv2-roi__intro strong { color: var(--sv2-text); }
.sv2-roi { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; max-width: 860px; margin: 44px auto 0; text-align: left; }
.sv2-roi__controls, .sv2-roi__result { border: 1px solid var(--sv2-glass-b); border-radius: 16px; padding: 32px; -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); }
.sv2-roi__controls { background: var(--sv2-glass); }
.sv2-roi__field { margin-bottom: 28px; }
.sv2-roi__field:last-child { margin-bottom: 0; }
.sv2-roi__field label { display: flex; justify-content: space-between; align-items: baseline; font-size: 14px; color: rgba(242,238,232,.8); margin-bottom: 12px; }
.sv2-roi__field output { font-family: var(--sv2-font-disp); font-size: 22px; color: var(--sv2-indigo); font-variant-numeric: tabular-nums; }
.sv2-roi input[type=range] { width: 100%; accent-color: var(--sv2-indigo); height: 5px; cursor: pointer; }
.sv2-roi__result { display: flex; flex-direction: column; justify-content: center; text-align: center; background: linear-gradient(165deg, rgba(108,142,255,.12), rgba(255,255,255,.03)); }
.sv2-roi__rlabel { font-size: 14px; color: rgba(242,238,232,.7); margin: 0 0 8px; }
.sv2-roi__amount { font-family: var(--sv2-font-disp); font-size: clamp(46px,8vw,72px); font-weight: 500; color: #F6F2EB; line-height: 1; margin: 0 0 14px; font-variant-numeric: tabular-nums; text-shadow: 0 0 30px rgba(108,142,255,.3); }
.sv2-roi__vs { font-size: 15px; color: rgba(242,238,232,.8); margin: 0; }
.sv2-roi__vs strong { color: var(--sv2-amber); }
.sv2-roi__note { max-width: 640px; margin: 30px auto 0; font-size: 14px; line-height: 1.6; color: var(--sv2-muted); }

.sv2-cta-sec { background: var(--sv2-bg); }
.sv2-cta { max-width: 720px; margin: 0 auto; text-align: center; }
.sv2-cta__lead { font-size: clamp(16px,2vw,19px); line-height: 1.75; color: rgba(242,238,232,.82); margin: 16px 0 32px; }
.sv2-cta__sub { font-size: 14px; color: var(--sv2-muted); margin-top: 22px; }

@media (max-width: 720px) { .sv2-roi { grid-template-columns: 1fr; } }

/* ── Prosa / Lead-Text ── */
.sv2-prose { max-width: 720px; margin: 24px auto 0; }
.sv2-prose p { font-size: clamp(16px,2vw,18px); line-height: 1.8; color: rgba(242,238,232,.82); margin: 0 0 18px; }
.sv2-prose p strong { color: var(--sv2-text); }
.sv2-prose--center { text-align: center; }

/* ── Branchen-Module ── */
.sv2-modules { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 18px; margin-top: 40px; }
.sv2-module { background: var(--sv2-glass); border: 1px solid var(--sv2-glass-b); border-radius: 14px; padding: 24px 26px; transition: border-color .3s ease, transform .3s var(--sv2-ease); }
.sv2-module:hover { border-color: rgba(108,142,255,.3); transform: translateY(-3px); }
.sv2-module h3 { font-family: var(--sv2-font-disp); font-size: 21px; font-weight: 500; color: var(--sv2-text); margin: 0 0 8px; }
.sv2-module p { font-size: 14px; line-height: 1.6; color: rgba(242,238,232,.72); margin: 0; }
.sv2-module__badge { display: inline-block; font-size: 11px; letter-spacing: .5px; color: var(--sv2-amber); margin-top: 10px; }

/* ── Listen (was nicht enthalten / so arbeiten wir) ── */
.sv2-list { list-style: none; padding: 0; margin: 28px auto 0; max-width: 720px; }
.sv2-list li { position: relative; padding: 12px 0 12px 34px; font-size: 16px; line-height: 1.6; color: rgba(242,238,232,.84); border-bottom: 1px solid rgba(255,255,255,.06); }
.sv2-list li:last-child { border-bottom: 0; }
.sv2-list li strong { color: var(--sv2-text); }
.sv2-list--check li::before { content: ""; position: absolute; left: 5px; top: 18px; width: 13px; height: 7px; border-left: 2px solid var(--sv2-indigo); border-bottom: 2px solid var(--sv2-indigo); transform: rotate(-45deg); }
.sv2-list--x li::before { content: "\00d7"; position: absolute; left: 7px; top: 9px; color: var(--sv2-muted); font-size: 19px; }

/* ── FAQ-Akkordeon ── */
.sv2-faq { max-width: 760px; margin: 40px auto 0; }
.sv2-faq__item { border-bottom: 1px solid rgba(255,255,255,.08); }
.sv2-faq__item > summary { list-style: none; cursor: pointer; padding: 22px 40px 22px 0; position: relative; font-family: var(--sv2-font-body); font-size: clamp(16px,2vw,19px); font-weight: 600; color: var(--sv2-text); }
.sv2-faq__item > summary::-webkit-details-marker { display: none; }
.sv2-faq__item > summary::after { content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%); font-size: 26px; font-weight: 300; color: var(--sv2-indigo); }
.sv2-faq__item[open] > summary::after { content: "\2212"; }
.sv2-faq__a { padding: 0 40px 24px 0; font-size: 16px; line-height: 1.7; color: rgba(242,238,232,.78); }

/* ── Manifest-Quote ── */
.sv2-manifest { max-width: 760px; margin: 0 auto; text-align: center; padding: 52px 40px; border-radius: 20px; background: linear-gradient(135deg, rgba(232,169,74,.08), rgba(255,255,255,.02)); border: 1px solid rgba(232,169,74,.22); }
.sv2-manifest p { font-family: var(--sv2-font-disp); font-size: clamp(24px,3.6vw,40px); font-style: italic; line-height: 1.35; color: #F6F2EB; margin: 0; }

/* ── Stats-Reihe ── */
.sv2-stats { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; margin: 48px 0 0; }
.sv2-stat { text-align: center; padding: 0 6px; }
.sv2-stat__num { font-family: var(--sv2-font-disp); font-size: clamp(22px,3vw,32px); font-weight: 500; color: var(--sv2-indigo); display: block; margin-bottom: 8px; }
.sv2-stat__label { font-size: 13px; line-height: 1.45; color: rgba(242,238,232,.7); }
@media (max-width: 760px) { .sv2-stats { grid-template-columns: repeat(2,1fr); gap: 30px 16px; } }

/* ── Kontakt-Block ── */
.sv2-contact { max-width: 620px; margin: 44px auto 0; text-align: center; padding: 36px; border-radius: 18px; background: var(--sv2-glass); border: 1px solid var(--sv2-glass-b); }
.sv2-contact h3 { font-family: var(--sv2-font-disp); font-size: 24px; color: var(--sv2-text); margin: 0 0 10px; }
.sv2-contact p { font-size: 15px; line-height: 1.7; color: rgba(242,238,232,.8); margin: 0 0 4px; }
.sv2-contact a { color: var(--sv2-indigo); text-decoration: none; }
.sv2-contact a:hover { color: var(--sv2-amber); }
.sv2-contact__big { font-size: 19px; font-weight: 600; margin-top: 14px; }

/* ═══════════════════════════════════════════════════════
   RECHTSTEXTE (Impressum / Datenschutz) — Dark-Skin
═══════════════════════════════════════════════════════ */
.sv2-legal-sec { background: var(--sv2-bg); padding-top: 140px; }
.sv2-legal-sec .sv2-container { max-width: 820px; }
.sv2-legal__back { display: inline-block; color: var(--sv2-indigo); text-decoration: none; font-size: 14px; margin-bottom: 22px; }
.sv2-legal__back:hover { color: var(--sv2-amber); }
.sv2-legal__title { font-family: var(--sv2-font-disp); font-size: clamp(34px,5vw,56px); font-weight: 300; color: #F6F2EB; margin: 0 0 34px; }
.sv2-legal__body { font-size: 16px; line-height: 1.75; }
/* Divi-Module entwölken */
.sv2-legal__body .et_pb_section,
.sv2-legal__body .et_pb_row,
.sv2-legal__body .et_pb_column,
.sv2-legal__body .et_pb_module,
.sv2-legal__body .et-l {
  background: transparent !important; padding: 0 !important; margin: 0 !important;
  width: 100% !important; max-width: none !important; box-shadow: none !important;
}
.sv2-legal__body .et_pb_text { margin-bottom: 0 !important; }
.sv2-legal__body h1, .sv2-legal__body h2, .sv2-legal__body h3, .sv2-legal__body h4 {
  font-family: var(--sv2-font-disp); color: #F2EEE8 !important; font-weight: 500; line-height: 1.25; margin: 30px 0 12px;
}
.sv2-legal__body h2 { font-size: clamp(20px,2.6vw,26px); }
.sv2-legal__body h3 { font-size: 20px; }
.sv2-legal__body p, .sv2-legal__body li, .sv2-legal__body td, .sv2-legal__body span {
  color: rgba(242,238,232,.82) !important;
}
.sv2-legal__body strong, .sv2-legal__body b { color: var(--sv2-text) !important; }
.sv2-legal__body a { color: var(--sv2-indigo) !important; }
.sv2-legal__body a:hover { color: var(--sv2-amber) !important; }
.sv2-legal__body ul, .sv2-legal__body ol { padding-left: 24px; margin: 10px 0; }
.sv2-legal__body li { margin: 5px 0; }
.sv2-legal__body .soloki-back { display: none !important; }

/* ═══════════════════════════════════════════════════════
   ACCESSIBILITY — Reduced Motion (skill: reduced-motion, CRITICAL)
   Bewegungsempfindliche Nutzer: Animationen aus, Inhalte sofort sichtbar
═══════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  .sv2-reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .sv2-shape, .sv2-btn--pulse { animation: none !important; }
  .sv2-hero__img { animation: none !important; transform: scale(1.04) !important; }
  .sv2-particles { display: none !important; }
  .sv2-hub__line, .sv2-hub__core::before { animation: none !important; }
  .sv2-do__check { opacity: 1 !important; transform: none !important; }
  .sv2-pshape { animation: none !important; }
  #main-header, .sv2-btn, .sv2-glass-card, .sv2-pricing__card { transition: none !important; }
  .sv2-glass-card:hover, .sv2-pricing__card:hover, .sv2-btn:hover { transform: none !important; }
  .sv2-hero__scroll-hint { display: none !important; }
}

