/* ==========================================================================
   ESTATESUITE — REDESIGN 2026 · "LICHT" (White Mode)
   Airy white SaaS · Cobalt accent · 3 dark spotlight sections
   Clash Display · Switzer · JetBrains Mono
   Inspiriert von ClickUp & LearningSuite
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* Light surfaces */
  --bg: #ffffff;
  --bg-2: #f3f6fc;          /* subtle cool tint section */
  --card: #ffffff;
  --card-2: #f6f8fd;        /* inset within cards */
  --paper: #ffffff;
  --paper-2: #f6f8fd;

  --text-l: #0e1322;
  --muted-l: #59617a;
  --faint-l: #98a1b6;
  --line-l: rgba(14, 19, 34, 0.10);
  --line-l-soft: rgba(14, 19, 34, 0.055);

  --shadow-sm: 0 1px 2px rgba(14, 19, 34, 0.04), 0 6px 16px -10px rgba(14, 19, 34, 0.14);
  --shadow-md: 0 2px 4px rgba(14, 19, 34, 0.04), 0 18px 40px -22px rgba(14, 19, 34, 0.20);
  --shadow-lg: 0 30px 70px -34px rgba(14, 19, 34, 0.28);
  --shadow-blue: 0 24px 60px -28px rgba(46, 107, 255, 0.40);

  /* Dark surfaces (Spotlight-Sektionen) */
  --ink: #070a12;
  --ink-2: #0d1220;
  --ink-3: #131a2c;
  --text-d: #eef1f8;
  --muted-d: #97a2b8;
  --faint-d: #5a6378;
  --line-d: rgba(143, 165, 215, 0.16);
  --line-d-soft: rgba(143, 165, 215, 0.09);

  /* Accent */
  --blue: #2e6bff;
  --blue-bright: #6f97ff;    /* helle Akzente auf Dunkel */
  --blue-ink: #1f4fd0;       /* Akzenttext auf Weiß */
  --blue-dim: rgba(46, 107, 255, 0.55);
  --blue-soft: #eaf0ff;      /* Akzent-Tint-Fläche */
  --ok: #16a872;
  --ok-bright: #5fd9a2;
  --warn: #c98a1f;
  --bad: #d2554f;

  --font-display: 'Plus Jakarta Sans', 'Avenir Next', sans-serif;
  --font-body: 'Switzer', 'Helvetica Neue', sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', monospace;

  --container: 1240px;
  --pad: clamp(20px, 4vw, 48px);
  --sec: clamp(88px, 11vw, 150px);
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 18px;
  --r-xl: 26px;
  --ease: cubic-bezier(0.65, 0.05, 0, 1);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-l);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* film grain — sehr dezent auf Weiß */
body::after {
  content: '';
  position: fixed;
  inset: -50%;
  z-index: 95;
  pointer-events: none;
  opacity: 0.02;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul, ol { list-style: none; }
s-wrap { display: inline-block; position: relative; }

::selection { background: var(--blue); color: #fff; }
:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; border-radius: 2px; }

.container { max-width: var(--container); margin-inline: auto; padding-inline: var(--pad); }
.mono { font-family: var(--font-mono); letter-spacing: 0.08em; }

/* stabile Ziffern bei Count-/Toggle-Animationen */
.stat__value, .hud__value, .plan__amount, .hcard__deal-value,
.dash__kpi strong, .opv__kpi strong, .hcard__price { font-variant-numeric: tabular-nums; }

/* ---------- Shared section scaffolding ---------- */
.section { padding-block: var(--sec); position: relative; }
.section--ink { background: var(--ink); color: var(--text-d); }
.section--paper { background: var(--bg); color: var(--text-l); }
.section--tint { background: var(--bg-2); }

/* blueprint grid texture on dark sections */
.section--ink::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(var(--line-d-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-d-soft) 1px, transparent 1px);
  background-size: 88px 88px;
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, #000 0%, transparent 78%);
          mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, #000 0%, transparent 78%);
}
.section--ink > * { position: relative; }

.section__head { max-width: 880px; margin-bottom: clamp(44px, 6vw, 84px); }
.section__head--center { margin-inline: auto; text-align: center; }
.section__head--row {
  max-width: none;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.section__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 4.2vw, 3.3rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.section__sub {
  margin-top: 22px;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--muted-l);
  max-width: 56ch;
}
.section__sub--dark { color: var(--muted-d); }
.section__sub a { color: var(--blue); border-bottom: 1px solid currentColor; }
.section__head--center .section__sub { margin-inline: auto; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--blue-ink);
  margin-bottom: 24px;
}
.eyebrow__line { width: 42px; height: 1px; background: var(--blue-ink); transform-origin: left; }
.eyebrow--dark { color: var(--blue-bright); }
.eyebrow--dark .eyebrow__line { background: var(--blue-bright); }
.eyebrow--center { justify-content: center; }

/* word-split reveal scaffolding — padding-bottom schafft Platz für Unterlängen (g, ß, j),
   negative margin hält den Zeilenabstand identisch */
[data-split] .w-mask {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  padding-bottom: 0.2em;
  margin-bottom: -0.2em;
}
[data-split] .w { display: inline-block; will-change: transform; }

.live-dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--ok);
  margin-right: 8px;
  box-shadow: 0 0 0 0 rgba(22, 168, 114, 0.5);
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(22, 168, 114, 0.4); }
  70% { box-shadow: 0 0 0 9px rgba(22, 168, 114, 0); }
  100% { box-shadow: 0 0 0 0 rgba(22, 168, 114, 0); }
}
.section--ink .live-dot, .hcard .live-dot {
  background: var(--ok-bright);
  box-shadow: 0 0 0 0 rgba(95, 217, 162, 0.5);
  animation: pulseD 2.2s infinite;
}
@keyframes pulseD {
  0% { box-shadow: 0 0 0 0 rgba(95, 217, 162, 0.45); }
  70% { box-shadow: 0 0 0 9px rgba(95, 217, 162, 0); }
  100% { box-shadow: 0 0 0 0 rgba(95, 217, 162, 0); }
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 99px;
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease),
              border-color 0.4s var(--ease), background-color 0.4s var(--ease),
              color 0.4s var(--ease);
  will-change: transform;
}
.btn__label, .btn__arrow { position: relative; z-index: 1; }
.btn__arrow { transition: transform 0.4s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(5px); }

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.16);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.45s var(--ease);
}
.btn:hover::before { transform: scaleY(1); }

.btn--primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 8px 26px -8px rgba(46, 107, 255, 0.55);
}
.btn--primary:hover { box-shadow: 0 16px 40px -10px rgba(46, 107, 255, 0.6); transform: translateY(-1px); }

/* Ghost = hell (Standard); auf dunklen Sektionen umgeschaltet */
.btn--ghost {
  border: 1px solid var(--line-l);
  color: var(--text-l);
  background: var(--card);
}
.btn--ghost::before { background: var(--blue-soft); }
.btn--ghost:hover { border-color: var(--blue-dim); }
.section--ink .btn--ghost {
  border-color: var(--line-d);
  color: var(--text-d);
  background: transparent;
}
.section--ink .btn--ghost::before { background: rgba(46, 107, 255, 0.16); }

.btn--outline {
  border: 1px solid rgba(14, 19, 34, 0.20);
  color: var(--text-l);
}
.btn--outline::before { background: var(--text-l); }
.btn--outline:hover { color: #fff; border-color: var(--text-l); }

.btn--lg { padding: 18px 30px; font-size: 16px; }
.btn--sm { padding: 11px 18px; font-size: 13.5px; }

/* ==========================================================================
   PRELOADER  (dunkel → wischt auf helle Seite)
   ========================================================================== */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
}
.preloader__inner { width: min(420px, 78vw); }
.preloader__mark {
  width: 58px; height: 58px;
  border: 1px solid var(--blue);
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 30px;
  box-shadow: 0 0 34px -6px rgba(46, 107, 255, 0.5), inset 0 0 18px -8px rgba(46, 107, 255, 0.6);
}
.preloader__mono { font-family: var(--font-mono); font-size: 18px; color: var(--blue-bright); letter-spacing: 0.1em; }
.preloader__line { height: 1px; background: rgba(143, 165, 215, 0.15); overflow: hidden; }
.preloader__line-fill {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--blue-bright));
  transform: scaleX(0);
  transform-origin: left;
}
.preloader__meta {
  display: flex;
  justify-content: space-between;
  margin-top: 14px;
  font-size: 10.5px;
  color: var(--faint-d);
  letter-spacing: 0.18em;
}
.preloader__count { color: var(--blue-bright); }

/* ==========================================================================
   CURSOR + PROGRESS
   ========================================================================== */
.cursor { display: none; }
@media (pointer: fine) {
  .cursor {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 150;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s;
  }
  .cursor.is-visible { opacity: 1; }
  .cursor__dot, .cursor__ring {
    position: absolute;
    top: 0; left: 0;
    border-radius: 50%;
    transform: translate(-50%, -50%);
  }
  .cursor__dot { width: 6px; height: 6px; background: var(--blue); }
  .cursor__ring {
    width: 36px; height: 36px;
    border: 1px solid rgba(46, 107, 255, 0.4);
    transition: width 0.3s var(--ease), height 0.3s var(--ease), border-color 0.3s;
  }
  .cursor.is-active .cursor__ring { width: 58px; height: 58px; border-color: var(--blue); }
}

.progress { position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 140; pointer-events: none; }
.progress__bar {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--blue-bright));
  transform: scaleX(0);
  transform-origin: left;
}

/* ==========================================================================
   NAV
   ========================================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 120;
  transition: background-color 0.5s var(--ease), border-color 0.5s var(--ease),
              backdrop-filter 0.5s var(--ease), transform 0.5s var(--ease),
              box-shadow 0.5s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(255, 255, 255, 0.82);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  backdrop-filter: blur(18px) saturate(1.4);
  border-bottom-color: var(--line-l);
  box-shadow: 0 6px 24px -18px rgba(14, 19, 34, 0.4);
}
.nav.is-hidden { transform: translateY(-100%); }
.nav__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding: 15px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.nav__brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 34px; height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--blue);
  border-radius: 9px;
  color: var(--blue);
  font-size: 12.5px;
  letter-spacing: 0.1em;
  background: var(--blue-soft);
}
.brand-mark--lg { width: 64px; height: 64px; font-size: 21px; border-radius: 16px; }
.section--ink .brand-mark {
  color: var(--blue-bright);
  background: transparent;
  box-shadow: inset 0 0 14px -6px rgba(46, 107, 255, 0.7);
}
.brand-word {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.015em;
  color: var(--text-l);
}
.brand-word em { font-style: normal; color: var(--blue); }
.section--ink .brand-word { color: var(--text-d); }
.section--ink .brand-word em { color: var(--blue-bright); }

/* EstateSuite-Bildmarke in Nav/Footer/Rechtsseiten */
.brand-logo { height: 26px; width: auto; display: block; }
.footer .brand-logo { filter: brightness(0) invert(1); } /* helles Logo auf dunklem Footer */

.nav__links { display: flex; gap: 4px; }
.nav__link {
  position: relative;
  padding: 9px 15px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted-l);
  transition: color 0.3s;
}
.nav__link::after {
  content: '';
  position: absolute;
  left: 15px; right: 15px; bottom: 4px;
  height: 1px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease);
}
.nav__link:hover { color: var(--text-l); }
.nav__link:hover::after { transform: scaleX(1); transform-origin: left; }

.nav__actions { display: flex; align-items: center; gap: 18px; }
.nav__login { font-size: 14px; font-weight: 500; color: var(--muted-l); transition: color 0.3s; }
.nav__login:hover { color: var(--text-l); }

.nav__burger { display: none; position: relative; width: 40px; height: 40px; }
.nav__burger span {
  position: absolute;
  left: 9px; right: 9px;
  height: 1.5px;
  background: var(--text-l);
  transition: transform 0.4s var(--ease), top 0.4s var(--ease);
}
.nav__burger span:nth-child(1) { top: 16px; }
.nav__burger span:nth-child(2) { top: 23px; }
.nav__burger.is-open span:nth-child(1) { top: 19.5px; transform: rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { top: 19.5px; transform: rotate(-45deg); }

/* ---------- Mobile menu ---------- */
.mmenu {
  position: fixed;
  inset: 0;
  z-index: 110;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 110px 30px 44px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s var(--ease), visibility 0.5s;
}
.mmenu.is-open { opacity: 1; visibility: visible; }
.mmenu__links { display: flex; flex-direction: column; }
.mmenu__link {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 16px 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.8rem, 7vw, 2.4rem);
  color: var(--text-l);
  border-bottom: 1px solid var(--line-l-soft);
  transform: translateY(26px);
  opacity: 0;
  transition: transform 0.6s var(--ease), opacity 0.6s var(--ease);
}
.mmenu.is-open .mmenu__link { transform: none; opacity: 1; }
.mmenu.is-open .mmenu__link:nth-child(1) { transition-delay: 0.06s; }
.mmenu.is-open .mmenu__link:nth-child(2) { transition-delay: 0.12s; }
.mmenu.is-open .mmenu__link:nth-child(3) { transition-delay: 0.18s; }
.mmenu.is-open .mmenu__link:nth-child(4) { transition-delay: 0.24s; }
.mmenu.is-open .mmenu__link:nth-child(5) { transition-delay: 0.3s; }
.mmenu__idx { font-size: 12px; color: var(--blue); }
.mmenu__cta { margin-top: 40px; }
.mmenu__foot { margin-top: auto; font-size: 10.5px; color: var(--faint-l); letter-spacing: 0.16em; }

/* ==========================================================================
   HERO  (hell)
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(ellipse 90% 70% at 50% -10%, var(--blue-soft), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #f4f7fd 100%);
  overflow: hidden;
}
.hero__scene { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__grid-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(46, 107, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46, 107, 255, 0.06) 1px, transparent 1px);
  background-size: 88px 88px;
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 42%, #000, transparent 75%);
          mask-image: radial-gradient(ellipse 80% 60% at 50% 42%, #000, transparent 75%);
}
.hero__vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 120% 90% at 50% -20%, rgba(46, 107, 255, 0.10), transparent 55%),
    linear-gradient(180deg, transparent 60%, #ffffff 98%);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: clamp(120px, 16vh, 180px);
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
}
.hero__eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--blue-ink);
  margin-bottom: 28px;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.05rem, 3.9vw, 3.7rem);
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: var(--text-l);
}
.hero__line { display: block; overflow: hidden; padding-bottom: 0.22em; margin-bottom: -0.22em; }
.hero__line-inner { display: inline-block; will-change: transform; }
.hero__line--accent .hero__line-inner { color: var(--blue); }

.hero__sub {
  margin-top: 28px;
  max-width: 480px;
  font-size: clamp(1rem, 1.4vw, 1.13rem);
  color: var(--muted-l);
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.hero__note { margin-top: 22px; font-size: 10.5px; letter-spacing: 0.18em; color: var(--faint-l); }

/* ---------- Hero-Produktbühne (helle Glas-Karten) ---------- */
.hero__stage {
  position: relative;
  height: clamp(380px, 38vw, 500px);
  z-index: 2;
}
.hcard {
  position: absolute;
  background: rgba(255, 255, 255, 0.86);
  -webkit-backdrop-filter: blur(10px) saturate(1.3);
  backdrop-filter: blur(10px) saturate(1.3);
  border: 1px solid var(--line-l);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  will-change: transform;
}

.hcard--object {
  top: 4%;
  left: 0;
  width: min(330px, 76%);
  z-index: 1;
  overflow: hidden;
  rotate: -1.4deg;
}
.hcard__img {
  position: relative;
  height: 118px;
  background:
    linear-gradient(180deg, var(--blue-soft), #ffffff 75%);
  border-bottom: 1px solid var(--line-l-soft);
  display: flex;
  align-items: flex-end;
}
.hcard__img svg { width: 100%; height: 96px; }
.hsvg { stroke: var(--blue); stroke-width: 1.6; }
.hsvg--dim { stroke: rgba(46, 107, 255, 0.45); stroke-width: 1.2; }
.hsvg--base { stroke: rgba(14, 19, 34, 0.18); stroke-width: 1; }
.hcard__img-chip {
  position: absolute;
  top: 10px; left: 12px;
  font-size: 8px;
  letter-spacing: 0.16em;
  color: var(--muted-l);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--line-l);
  border-radius: 6px;
  padding: 4px 9px;
}
.hcard__body { padding: 15px 18px 17px; }
.hcard__titlerow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.hcard__titlerow strong { font-size: 14.5px; font-weight: 600; }
.hcard__specs { margin-top: 7px; font-size: 9px; letter-spacing: 0.16em; color: var(--faint-l); }
.hcard__foot {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 13px;
  padding-top: 12px;
  border-top: 1px solid var(--line-l-soft);
}
.hcard__price { font-family: var(--font-display); font-weight: 600; font-size: 21px; }
.hcard__yield { font-size: 9px; letter-spacing: 0.14em; color: var(--ok); }

.hcard--lead {
  top: 0;
  right: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  width: min(300px, 72%);
  padding: 13px 16px;
  rotate: 1deg;
}
.hcard__lead-avatar {
  width: 36px; height: 36px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 10px;
  font-size: 11px;
  color: var(--blue);
  background: var(--blue-soft);
  border: 1px solid rgba(46, 107, 255, 0.3);
}
.hcard__lead-info { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.hcard__lead-title { font-size: 8.5px; letter-spacing: 0.18em; color: var(--blue-ink); }
.hcard__lead-name { font-size: 13px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hcard__lead-time { margin-left: auto; font-size: 8.5px; color: var(--faint-l); letter-spacing: 0.12em; }

.hcard--deal {
  bottom: 7%;
  left: 7%;
  z-index: 2;
  width: 240px;
  padding: 16px 18px;
  rotate: 0.8deg;
}
.hcard__deal-label { font-size: 8.5px; letter-spacing: 0.18em; color: var(--faint-l); }
.hcard__deal-value {
  margin-top: 6px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 25px;
  line-height: 1;
  color: var(--text-l);
}
.hcard__spark {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 40px;
  margin-top: 13px;
}
.hcard__spark span {
  flex: 1;
  height: var(--h);
  background: rgba(46, 107, 255, 0.22);
  border-radius: 3px 3px 0 0;
}
.hcard__spark .is-hot { background: linear-gradient(180deg, var(--blue-bright), var(--blue)); }

.hcard--sign {
  bottom: 0;
  right: 5%;
  z-index: 2;
  padding: 11px 16px;
  font-size: 9px;
  letter-spacing: 0.16em;
  color: var(--ok);
  border-color: rgba(22, 168, 114, 0.3);
  background: rgba(255, 255, 255, 0.9);
  rotate: -1deg;
}

.hero__hud {
  position: relative;
  z-index: 2;
  width: 100%;
  margin-top: auto;
  padding-top: 26px;
  padding-bottom: 34px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.hero__hud::before {
  content: '';
  position: absolute;
  top: 0;
  left: var(--pad); right: var(--pad);
  height: 1px;
  background: var(--line-l);
}
.hud__chip { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 5px; }
.hud__label { font-size: 9.5px; letter-spacing: 0.2em; color: var(--faint-l); }
.hud__value {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  color: var(--text-l);
  line-height: 1;
}
.hud__delta { font-size: 10px; color: var(--ok); letter-spacing: 0.12em; }

.hero__scroll {
  position: absolute;
  right: clamp(20px, 4vw, 48px);
  bottom: 140px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  font-size: 9.5px;
  letter-spacing: 0.3em;
  color: var(--faint-l);
  writing-mode: vertical-rl;
}
.hero__scroll-line { width: 1px; height: 64px; background: var(--line-l); position: relative; overflow: hidden; }
.hero__scroll-line::after {
  content: '';
  position: absolute;
  left: 0; top: -40%;
  width: 100%; height: 40%;
  background: var(--blue);
  animation: scrollHint 2.2s var(--ease) infinite;
}
@keyframes scrollHint { 0% { top: -40%; } 100% { top: 110%; } }

/* ==========================================================================
   MARQUEE
   ========================================================================== */
.marquee {
  background: var(--bg);
  border-top: 1px solid var(--line-l-soft);
  border-bottom: 1px solid var(--line-l-soft);
  padding: 22px 0;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.marquee__row { position: relative; overflow: hidden; }
/* Verlauf-Kanten links/rechts, damit Items sauber ein-/ausblenden */
.marquee__row::before, .marquee__row::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: clamp(40px, 8vw, 96px);
  z-index: 2;
  pointer-events: none;
}
.marquee__row::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
.marquee__row::after { right: 0; background: linear-gradient(270deg, var(--bg), transparent); }
.marquee__track { display: flex; width: max-content; align-items: center; animation: marquee 40s linear infinite; }
.marquee__row--ltr .marquee__track { animation-direction: reverse; }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee__group { display: flex; align-items: center; flex-shrink: 0; }
.marquee__item { font-size: 11.5px; letter-spacing: 0.2em; color: var(--faint-l); white-space: nowrap; }
.marquee__sep { color: var(--blue); font-size: 8px; margin: 0 34px; }
/* Partner-Logos */
.marquee__logo {
  display: inline-flex;
  align-items: center;
  margin: 0 clamp(28px, 4vw, 48px);
  opacity: 0.6;
  filter: grayscale(1);
  transition: opacity 0.3s, filter 0.3s;
}
.marquee__logo:hover { opacity: 1; filter: none; }
.marquee__logo img { height: 26px; width: auto; display: block; }
.marquee__logo--text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.01em;
  color: var(--muted-l);
  filter: none;
  opacity: 0.55;
  white-space: nowrap;
}
/* helle/weiße Partner-Logos auf hellem Marquee dunkel rendern */
.marquee__logo--invert { filter: brightness(0); opacity: 0.5; }
.marquee__logo--invert:hover { filter: brightness(0); opacity: 0.82; }

/* ==========================================================================
   STATS
   ========================================================================== */
.stats { background: var(--bg-2); padding: clamp(56px, 8vw, 100px) 0; }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 36px; }
.stat { border-left: 1px solid var(--line-l); padding-left: 26px; }
.stat__value {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.4rem, 4.4vw, 3.6rem);
  line-height: 1;
  color: var(--text-l);
  letter-spacing: -0.02em;
}
.stat__unit { color: var(--blue); }
.stat__label { margin-top: 12px; font-size: 14px; color: var(--muted-l); max-width: 22ch; }
.stat--center { border: 0; padding: 0; text-align: center; }
.stat--center .stat__label { max-width: none; }
.section--ink .stat__value { color: var(--text-d); }
.section--ink .stat__unit { color: var(--blue-bright); }
.section--ink .stat__label { color: var(--muted-d); }
.section--ink .stat { border-left-color: var(--line-d); }

/* ==========================================================================
   PROBLEM / LÖSUNG
   ========================================================================== */
.problem__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: clamp(20px, 3vw, 44px);
  align-items: center;
}
.problem__card {
  background: var(--card);
  border: 1px solid var(--line-l);
  border-radius: var(--r-lg);
  padding: clamp(28px, 3.4vw, 44px);
  box-shadow: var(--shadow-sm);
}
.problem__card--old { transform: rotate(-1.4deg); }
.problem__card--new {
  transform: rotate(1deg);
  border-color: rgba(46, 107, 255, 0.4);
  box-shadow: var(--shadow-blue);
}
.problem__tag { font-size: 10.5px; letter-spacing: 0.18em; color: var(--faint-l); margin-bottom: 22px; }
.problem__tag--new { color: var(--blue); }
.problem__list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 0;
  border-top: 1px solid var(--line-l-soft);
  font-size: clamp(0.98rem, 1.3vw, 1.08rem);
}
.problem__list--old li { color: var(--muted-l); }
.problem__list--new li { font-weight: 500; }
.problem__x { color: var(--bad); font-size: 13px; }
.problem__check { color: var(--blue); font-weight: 700; font-size: 14px; }
s-wrap::after {
  content: '';
  position: absolute;
  left: -2px; right: -2px;
  top: 54%;
  height: 1.5px;
  background: var(--bad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.7s var(--ease);
}
.is-struck s-wrap::after { transform: scaleX(1); }
.problem__arrow {
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  color: var(--blue);
  text-align: center;
}

/* ==========================================================================
   FEATURES
   ========================================================================== */
.feature {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
  padding-block: clamp(60px, 8vw, 110px);
  border-top: 1px solid var(--line-l-soft);
}
.feature:first-of-type { border-top: 0; padding-top: 0; }
.feature--flip .feature__text { order: 2; }
.feature--flip .feature__visual { order: 1; }

.feature__idx { font-size: 12px; letter-spacing: 0.2em; color: var(--blue); margin-bottom: 18px; }
.feature__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.55rem, 2.6vw, 2.2rem);
  letter-spacing: -0.018em;
  line-height: 1.14;
}
.feature__desc { margin-top: 18px; font-size: 16.5px; color: var(--muted-l); max-width: 46ch; }
.feature__list { margin-top: 26px; }
.feature__list li {
  position: relative;
  padding: 11px 0 11px 28px;
  border-top: 1px solid var(--line-l-soft);
  font-size: 15px;
  font-weight: 500;
}
.feature__list li::before {
  content: '+';
  position: absolute;
  left: 2px;
  font-family: var(--font-mono);
  color: var(--blue);
}

/* ---------- Mock panels (helle App-UI) ---------- */
.feature__visual { perspective: 1200px; }
.panel {
  background: var(--card);
  border: 1px solid var(--line-l);
  border-radius: var(--r-lg);
  padding: clamp(20px, 2.4vw, 30px);
  color: var(--text-l);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  will-change: transform;
  transition: box-shadow 0.45s var(--ease), border-color 0.45s var(--ease);
}
.feature__visual .panel:hover { border-color: rgba(46, 107, 255, 0.28); box-shadow: var(--shadow-lg); }
.panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 90% 50% at 50% -10%, var(--blue-soft), transparent 60%);
  pointer-events: none;
}
.panel > * { position: relative; }
.panel__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}
.panel__title { font-size: 10.5px; letter-spacing: 0.2em; color: var(--faint-l); }
.panel__live { font-size: 9.5px; letter-spacing: 0.16em; color: var(--ok); }
.panel__toggle { font-size: 9.5px; display: flex; gap: 2px; border: 1px solid var(--line-l); border-radius: 6px; overflow: hidden; }
.panel__toggle span { padding: 5px 10px; color: var(--faint-l); }
.panel__toggle .is-on { background: var(--blue-soft); color: var(--blue); }
.panel__foot {
  display: flex;
  justify-content: space-between;
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid var(--line-l-soft);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--faint-l);
}
.panel__foot-val { color: var(--blue); }

/* CRM funnel */
.funnel { display: flex; flex-direction: column; gap: 16px; }
.funnel__row { display: grid; grid-template-columns: 128px 1fr 52px; gap: 14px; align-items: center; }
.funnel__label { font-size: 13px; color: var(--muted-l); }
.funnel__bar { height: 10px; background: rgba(14, 19, 34, 0.05); border-radius: 99px; overflow: hidden; }
.funnel__fill {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--blue), var(--blue-bright));
}
.funnel__fill--hot { background: linear-gradient(90deg, var(--blue), var(--ok)); }
.funnel__num { font-size: 11.5px; color: var(--text-l); text-align: right; }

/* Tenants */
.tenant {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 0;
  border-top: 1px solid var(--line-l-soft);
}
.tenant:first-of-type { border-top: 0; }
.tenant__avatar {
  width: 40px; height: 40px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--av);
  background: color-mix(in srgb, var(--av) 14%, transparent);
  border: 1px solid color-mix(in srgb, var(--av) 32%, transparent);
}
.tenant__info { display: flex; flex-direction: column; gap: 2px; min-width: 0; flex: 1; }
.tenant__info strong { font-size: 14px; font-weight: 600; }
.tenant__host { font-size: 10px; color: var(--faint-l); letter-spacing: 0.04em; }
.tenant__stats { font-size: 9.5px; color: var(--muted-l); letter-spacing: 0.1em; white-space: nowrap; }

/* Onboarding steps (im Feature-Panel) */
.steps { display: flex; flex-direction: column; }
.step {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-top: 1px solid var(--line-l-soft);
  font-size: 14px;
  font-weight: 500;
}
.step:first-child { border-top: 0; }
.step__dot {
  width: 24px; height: 24px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line-l);
  font-size: 11px;
}
.step--done .step__dot { background: rgba(22, 168, 114, 0.12); border-color: rgba(22, 168, 114, 0.4); color: var(--ok); }
.step--active { color: var(--blue); }
.step--active .step__dot { border-color: var(--blue); animation: stepPulse 2s infinite; }
@keyframes stepPulse {
  0% { box-shadow: 0 0 0 0 rgba(46, 107, 255, 0.4); }
  70% { box-shadow: 0 0 0 8px rgba(46, 107, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(46, 107, 255, 0); }
}
.step--pending { color: var(--faint-l); }
.step__sig { margin-left: auto; width: 110px; }
.step__sig-path {
  stroke: var(--blue);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 240;
  stroke-dashoffset: 240;
}
.is-inview .step__sig-path { animation: sigDraw 2.4s var(--ease) 0.5s forwards; }
@keyframes sigDraw { to { stroke-dashoffset: 0; } }

/* Calc */
.calc__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.calc__cell {
  background: var(--card-2);
  border: 1px solid var(--line-l-soft);
  border-radius: 10px;
  padding: 13px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.calc__cell--hot { border-color: rgba(46, 107, 255, 0.45); background: var(--blue-soft); }
.calc__cell--hot .calc__val { color: var(--blue-ink); }
.calc__label { font-size: 9px; letter-spacing: 0.16em; color: var(--faint-l); }
.calc__val { font-family: var(--font-display); font-weight: 500; font-size: 19px; line-height: 1; }
.calc__chart {
  display: flex;
  align-items: flex-end;
  gap: 9px;
  height: 92px;
  margin-top: 16px;
}
.calc__bar {
  flex: 1;
  height: 0;
  background: rgba(46, 107, 255, 0.18);
  border-radius: 5px 5px 0 0;
}
.calc__bar--hot { background: linear-gradient(180deg, var(--blue-bright), var(--blue)); }

/* Network tree */
.tree { display: flex; flex-direction: column; gap: 14px; }
.tree__node {
  background: var(--card-2);
  border: 1px solid var(--line-l-soft);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.tree__node strong { font-weight: 600; }
.tree__node .mono { font-size: 9px; color: var(--faint-l); letter-spacing: 0.14em; white-space: nowrap; }
.tree__node--root {
  border-color: rgba(46, 107, 255, 0.5);
  background: var(--blue-soft);
  box-shadow: 0 8px 26px -12px rgba(46, 107, 255, 0.4);
  margin-inline: 12%;
}
.tree__branch { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.tree__col { display: flex; flex-direction: column; gap: 10px; }
.tree__leafs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-left: 16px;
  padding-left: 12px;
  border-left: 1px dashed var(--line-l);
}
.tree__node--leaf { font-size: 12px; padding: 8px 12px; }

/* ==========================================================================
   AUDIENCE
   ========================================================================== */
.audience { background: var(--bg-2); }
.audience__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.acard {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 280px;
  padding: 34px 30px;
  background: var(--card);
  border: 1px solid var(--line-l);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.acard::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 0%), var(--blue-soft), transparent 65%);
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}
.acard:hover { transform: translateY(-7px); border-color: rgba(46, 107, 255, 0.4); box-shadow: var(--shadow-md); }
.acard:hover::before { opacity: 1; }
.acard > * { position: relative; }
.acard__idx {
  position: absolute;
  top: -6px; right: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 58px;
  color: rgba(46, 107, 255, 0.10);
  letter-spacing: 0;
}
.acard__tag { font-size: 9.5px; letter-spacing: 0.2em; color: var(--blue-ink); margin-bottom: 18px; }
.acard__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.3rem, 1.8vw, 1.55rem);
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin-bottom: 14px;
}
.acard__desc { font-size: 14.5px; color: var(--muted-l); margin-bottom: 30px; }
.acard__more {
  margin-top: auto;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  display: inline-flex;
  gap: 8px;
}
.acard__more span { transition: transform 0.4s var(--ease); }
.acard:hover .acard__more span { transform: translateX(6px); }

/* ==========================================================================
   PLATFORM / DASHBOARD  (DUNKEL — Spotlight)
   ========================================================================== */
.dash-wrap { position: relative; max-width: 1020px; margin-inline: auto; perspective: 1400px; }
.dash {
  background: var(--ink-2);
  border: 1px solid var(--line-d);
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 80px 140px -60px rgba(0, 0, 0, 0.8),
    0 0 80px -30px rgba(46, 107, 255, 0.25);
  will-change: transform;
}
.dash__chrome {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 13px 18px;
  border-bottom: 1px solid var(--line-d-soft);
}
.dash__dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255, 255, 255, 0.12); }
.dash__url {
  margin-left: 12px;
  font-size: 10.5px;
  color: var(--muted-d);
  background: rgba(255, 255, 255, 0.05);
  padding: 5px 14px;
  border-radius: 6px;
  letter-spacing: 0.05em;
}
.dash__body { display: grid; grid-template-columns: 178px 1fr; }
.dash__side { border-right: 1px solid var(--line-d-soft); padding: 18px 0; }
.dash__brand {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--blue-bright);
  padding: 0 22px;
  margin-bottom: 16px;
  letter-spacing: 0.12em;
}
.dash__item {
  display: block;
  width: 100%;
  text-align: left;
  font-size: 13px;
  color: var(--muted-d);
  padding: 8px 22px;
  border-left: 2px solid transparent;
  transition: color 0.3s, background-color 0.3s, border-color 0.3s;
}
button.dash__item:hover { color: var(--text-d); }
.dash__item--on {
  color: var(--text-d);
  border-left-color: var(--blue);
  background: linear-gradient(90deg, rgba(46, 107, 255, 0.12), transparent);
}
.dash__item--dim { opacity: 0.4; }
.dash__main { padding: 20px; min-height: 296px; }

/* Umschaltbare Ansichten (Produkt-Tour) */
.dash__view { display: none; }
.dash__view.is-active { display: block; animation: viewIn 0.5s var(--ease); }
@keyframes viewIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}
.dash__viewhead {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  padding: 2px 2px 14px;
  font-size: 9px;
  letter-spacing: 0.16em;
  color: var(--faint-d);
}
.dash__viewhint { color: var(--ok-bright); }
.dash__lead {
  display: grid;
  grid-template-columns: 34px 1fr auto auto;
  gap: 13px;
  align-items: center;
  padding: 10px 4px;
  border-top: 1px solid var(--line-d-soft);
}
.dash__lead-av {
  width: 30px; height: 30px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  font-size: 9.5px;
  color: var(--blue-bright);
  background: rgba(46, 107, 255, 0.12);
  border: 1px solid rgba(46, 107, 255, 0.35);
}
.dash__lead strong { font-size: 13px; font-weight: 600; }
.dash__lead .mono { font-size: 8.5px; color: var(--faint-d); letter-spacing: 0.12em; }
.dash__kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.dash__kpi {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-d-soft);
  border-radius: 10px;
  padding: 12px 14px;
}
.dash__kpi span { font-size: 8.5px; letter-spacing: 0.16em; color: var(--faint-d); }
.dash__kpi strong {
  display: block;
  margin-top: 5px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 21px;
  line-height: 1;
  color: var(--text-d);
}
.dash__kpi--hot { border-color: rgba(46, 107, 255, 0.45); }
.dash__kpi--hot strong { color: var(--blue-bright); }
.dash__chart {
  margin-top: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line-d-soft);
  border-radius: 10px;
  padding: 14px 14px 0;
}
.dash__chart svg { width: 100%; height: 110px; }
.dash__chart-label { font-size: 8.5px; letter-spacing: 0.16em; color: var(--faint-d); margin-bottom: 6px; }
.dash__chart-area { fill: rgba(46, 107, 255, 0.13); }
.dash__chart-line { stroke: var(--blue-bright); stroke-width: 2; }
.dash__rows { margin-top: 12px; }
.dash__row {
  display: grid;
  grid-template-columns: 92px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 11px 4px;
  border-top: 1px solid var(--line-d-soft);
}
.dash__row:first-child { border-top: 0; }
.dash__row strong { font-size: 13.5px; font-weight: 600; color: var(--text-d); }
.dash__row .mono { font-size: 9.5px; color: var(--faint-d); letter-spacing: 0.1em; }
.pill {
  font-size: 9px;
  letter-spacing: 0.12em;
  padding: 4px 11px;
  border-radius: 99px;
  font-family: var(--font-mono);
}
.pill--ok { background: rgba(22, 168, 114, 0.13); color: var(--ok); }
.pill--warn { background: rgba(201, 138, 31, 0.14); color: var(--warn); }
.section--ink .pill--ok { background: rgba(95, 217, 162, 0.14); color: var(--ok-bright); }
.section--ink .pill--warn { background: rgba(232, 179, 90, 0.14); color: #e8b35a; }
.pill--soon {
  background: transparent;
  border: 1px solid var(--line-d);
  color: var(--faint-d);
  font-size: 8px;
  padding: 2px 7px;
  margin-left: 6px;
  vertical-align: middle;
}

.dash__float {
  position: absolute;
  z-index: 2;
  background: rgba(13, 18, 32, 0.92);
  border: 1px solid var(--line-d);
  border-radius: 10px;
  padding: 11px 16px;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  color: var(--text-d);
  box-shadow: 0 18px 44px -16px rgba(0, 0, 0, 0.7), 0 0 26px -10px rgba(46, 107, 255, 0.4);
  white-space: nowrap;
}
.dash__float--1 { top: -22px; left: -36px; }
.dash__float--2 { top: 32%; right: -54px; }
.dash__float--3 { bottom: 16%; left: -62px; }
.dash__float--4 { bottom: -22px; right: 8%; }

/* ==========================================================================
   QUOTES  (hell)
   ========================================================================== */
.quotes__nav { display: none; gap: 10px; flex-shrink: 0; }
.quotes__btn {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line-l);
  color: var(--text-l);
  font-size: 17px;
  transition: background-color 0.35s, border-color 0.35s, color 0.35s, transform 0.35s var(--ease);
}
.quotes__btn:hover { background: var(--blue); border-color: var(--blue); color: #fff; transform: scale(1.06); }

/* Desktop: sauberes 3er-Raster im Container (kein Rand-Abschnitt mehr) */
.quotes__rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.quotes__rail::-webkit-scrollbar { display: none; }
.quote {
  background: var(--card);
  border: 1px solid var(--line-l);
  border-radius: var(--r-lg);
  padding: clamp(28px, 3vw, 40px);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.4s, box-shadow 0.4s, transform 0.4s var(--ease);
}
.quote:hover { border-color: rgba(46, 107, 255, 0.35); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.quote__metric { font-size: 10.5px; letter-spacing: 0.18em; color: var(--blue-ink); }
.quote__text {
  margin: 20px 0 30px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.18rem, 1.8vw, 1.55rem);
  line-height: 1.32;
  letter-spacing: -0.01em;
}
.quote__who { display: flex; align-items: center; gap: 15px; font-size: 13.5px; color: var(--muted-l); }
.quote__who strong { color: var(--text-l); font-size: 14.5px; }
.quote__avatar {
  width: 46px; height: 46px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(46, 107, 255, 0.35);
  color: var(--blue);
  font-size: 12.5px;
  background: var(--blue-soft);
}

/* ==========================================================================
   ONBOARDING  (Redesign — Stepper + lebende Vorschau)
   ========================================================================== */
.onboarding { background: var(--bg-2); }
.onboard__summary {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  padding: 16px 22px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
}
.onboard__summary-time {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  color: var(--blue-ink);
  letter-spacing: -0.02em;
  line-height: 1;
}
.onboard__summary-label { font-size: 9px; letter-spacing: 0.16em; color: var(--faint-l); }
.onboard {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
}
.ostep__main { display: block; min-width: 0; }
.ostep__desc { display: block; }
.onboard__steps { position: relative; padding-left: 6px; }
.onboard__rail {
  position: absolute;
  left: 26px; top: 26px; bottom: 26px;
  width: 2px;
  background: var(--line-l);
  overflow: hidden;
  border-radius: 2px;
}
.onboard__rail-fill {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--blue), var(--blue-bright));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.6s var(--ease);
}
.ostep {
  position: relative;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 20px;
  width: 100%;
  text-align: left;
  padding: 16px 0;
  align-items: start;
}
.ostep__dot {
  position: relative;
  z-index: 1;
  width: 42px; height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--card);
  border: 1px solid var(--line-l);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--faint-l);
  transition: all 0.4s var(--ease);
}
.ostep__head { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.ostep__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  letter-spacing: -0.01em;
  color: var(--text-l);
  transition: color 0.3s;
}
.ostep__time {
  font-size: 9.5px;
  letter-spacing: 0.14em;
  color: var(--muted-l);
  background: var(--card);
  border: 1px solid var(--line-l);
  border-radius: 99px;
  padding: 4px 10px;
}
.ostep__desc {
  margin-top: 8px;
  font-size: 14.5px;
  color: var(--muted-l);
  max-width: 38ch;
  opacity: 0.6;
  transition: opacity 0.4s;
}
.ostep.is-active .ostep__dot {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  box-shadow: 0 8px 20px -6px rgba(46, 107, 255, 0.6);
}
.ostep.is-active .ostep__time { color: var(--blue-ink); border-color: rgba(46, 107, 255, 0.3); background: var(--blue-soft); }
.ostep.is-active .ostep__desc { opacity: 1; }
.ostep.is-done .ostep__dot { background: var(--blue-soft); border-color: rgba(46, 107, 255, 0.4); color: var(--blue); }
.onboard__cta { margin-top: 22px; margin-left: 62px; }

/* Vorschau-Karte */
.onboard__preview {
  position: relative;
  border-radius: var(--r-xl);
  background: var(--card);
  border: 1px solid var(--line-l);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.opv__chrome {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 13px 18px;
  border-bottom: 1px solid var(--line-l-soft);
  background: var(--card-2);
}
.opv__dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(14, 19, 34, 0.12); }
.opv__url {
  margin-left: 12px;
  font-size: 10px;
  color: var(--muted-l);
  background: var(--card);
  border: 1px solid var(--line-l-soft);
  padding: 5px 12px;
  border-radius: 6px;
  letter-spacing: 0.04em;
}
.opv__stage { position: relative; min-height: 320px; padding: clamp(22px, 2.6vw, 32px); }
.opv {
  display: none;
  animation: viewIn 0.5s var(--ease);
}
.opv.is-active { display: block; }
.opv__label { font-size: 9px; letter-spacing: 0.18em; color: var(--blue-ink); margin-bottom: 18px; }

/* preview: form */
.opv__field { margin-bottom: 14px; }
.opv__field span { display: block; font-size: 9px; letter-spacing: 0.16em; color: var(--faint-l); margin-bottom: 7px; }
.opv__input {
  display: flex;
  align-items: center;
  height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line-l);
  border-radius: 10px;
  background: var(--card-2);
  font-size: 13.5px;
  color: var(--text-l);
}
.opv__input--focus { border-color: var(--blue); box-shadow: 0 0 0 3px var(--blue-soft); }
.opv__caret { width: 1px; height: 16px; background: var(--blue); margin-left: 1px; animation: caret 1.1s steps(1) infinite; }
@keyframes caret { 50% { opacity: 0; } }
.opv__btn {
  margin-top: 20px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--blue);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
}

/* preview: branding */
.opv__swatches { display: flex; gap: 10px; margin-bottom: 22px; }
.opv__swatch {
  width: 40px; height: 40px;
  border-radius: 10px;
  border: 2px solid transparent;
  cursor: default;
}
.opv__swatch.is-sel { border-color: var(--text-l); box-shadow: 0 0 0 3px var(--card), 0 0 0 4px var(--line-l); }
.opv__brandcard {
  border: 1px solid var(--line-l);
  border-radius: 12px;
  padding: 18px;
  background: var(--card-2);
}
.opv__brandrow { display: flex; align-items: center; gap: 12px; }
.opv__logo {
  width: 38px; height: 38px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-size: 13px;
  color: #fff;
  background: var(--brand, var(--blue));
  transition: background-color 0.4s;
}
.opv__brandname { font-family: var(--font-display); font-weight: 600; font-size: 16px; }
.opv__subdomain { margin-top: 16px; font-size: 11px; color: var(--muted-l); }
.opv__subdomain b { color: var(--brand, var(--blue)); transition: color 0.4s; }

/* preview: team */
.opv__teamrow {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 12px 0;
  border-top: 1px solid var(--line-l-soft);
}
.opv__teamrow:first-of-type { border-top: 0; }
.opv__avatar {
  width: 34px; height: 34px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 9px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: #fff;
}
.opv__teaminfo { flex: 1; }
.opv__teaminfo strong { display: block; font-size: 13.5px; font-weight: 600; }
.opv__teaminfo span { font-size: 10px; color: var(--faint-l); letter-spacing: 0.1em; }
.opv__teamstatus { font-size: 9px; letter-spacing: 0.12em; }

/* preview: launch (mini dashboard) */
.opv__kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 14px; }
.opv__kpi {
  background: var(--card-2);
  border: 1px solid var(--line-l-soft);
  border-radius: 10px;
  padding: 12px 13px;
}
.opv__kpi span { font-size: 8px; letter-spacing: 0.14em; color: var(--faint-l); }
.opv__kpi strong { display: block; margin-top: 5px; font-family: var(--font-display); font-weight: 600; font-size: 19px; }
.opv__bars { display: flex; align-items: flex-end; gap: 8px; height: 78px; padding: 14px; background: var(--card-2); border: 1px solid var(--line-l-soft); border-radius: 10px; }
.opv__bars span { flex: 1; height: var(--h); background: rgba(46, 107, 255, 0.25); border-radius: 4px 4px 0 0; }
.opv__bars .is-hot { background: linear-gradient(180deg, var(--blue-bright), var(--blue)); }

/* ==========================================================================
   PRIVACY  (DUNKEL — Spotlight)
   ========================================================================== */
.privacy__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(50px, 7vw, 100px);
  align-items: center;
}
.privacy__list { margin-top: 34px; }
.privacy__list li {
  position: relative;
  padding: 12px 0 12px 30px;
  border-top: 1px solid var(--line-d-soft);
  font-size: 15px;
  color: var(--text-d);
}
.privacy__list li::before {
  content: '✓';
  position: absolute;
  left: 2px;
  color: var(--blue-bright);
  font-family: var(--font-mono);
  font-size: 13px;
}
.privacy__visual { display: flex; flex-direction: column; align-items: center; }
.vault {
  position: relative;
  width: min(400px, 78vw);
  aspect-ratio: 1;
}
.vault__ring {
  position: absolute;
  inset: 0;
  border: 1px dashed rgba(46, 107, 255, 0.35);
  border-radius: 50%;
  animation: spin 40s linear infinite;
}
.vault__ring::before {
  content: '';
  position: absolute;
  inset: 34px;
  border: 1px solid var(--line-d);
  border-radius: 50%;
}
.vault__ring::after {
  content: '';
  position: absolute;
  top: -5px; left: 50%;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--blue-bright);
  box-shadow: 0 0 16px 2px rgba(46, 107, 255, 0.8);
}
@keyframes spin { to { transform: rotate(360deg); } }
.vault__core {
  position: absolute;
  inset: 23%;
  background: var(--ink-2);
  border: 1px solid var(--line-d);
  border-radius: 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  text-align: center;
  padding: 18px;
  box-shadow: 0 0 60px -16px rgba(46, 107, 255, 0.4);
}
.vault__flag { font-size: 32px; }
.vault__title { font-family: var(--font-display); font-weight: 600; font-size: 19px; }
.vault__sub { font-size: 9px; letter-spacing: 0.2em; color: var(--faint-d); }
.vault__status { font-size: 9px; letter-spacing: 0.16em; color: var(--ok-bright); margin-top: 6px; }
.privacy__badges { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 30px; }
.badge {
  border: 1px solid var(--line-d);
  border-radius: 99px;
  padding: 9px 18px;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--muted-d);
}

/* ==========================================================================
   PRICING  (Redesign — kompakt, zwei Karten)
   ========================================================================== */
.pricing__toggle {
  display: flex;
  justify-content: center;
  gap: 4px;
  width: max-content;
  margin: 26px auto 0;
  background: var(--card-2);
  border: 1px solid var(--line-l);
  border-radius: 99px;
  padding: 5px;
}
.pricing__period {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 99px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted-l);
  transition: background-color 0.35s var(--ease), color 0.35s;
}
.pricing__period.is-on { background: var(--blue); color: #fff; }
.pricing__period.is-on .pricing__save { color: #fff; }
.pricing__save { font-size: 10px; color: var(--blue); }

.plans {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 20px;
  align-items: stretch;
}
.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--line-l);
  border-radius: var(--r-xl);
  padding: clamp(26px, 2.8vw, 38px);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.plan--pro {
  border-color: rgba(46, 107, 255, 0.45);
  box-shadow: var(--shadow-blue);
}
.plan--pro::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 80% 50% at 80% -10%, var(--blue-soft), transparent 60%);
}
.plan > * { position: relative; }
.plan__flag {
  position: absolute;
  top: 0; right: 0;
  background: var(--blue);
  color: #fff;
  font-size: 9px;
  letter-spacing: 0.16em;
  padding: 7px 16px;
  border-radius: 0 var(--r-xl) 0 12px;
}
.plan__head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 18px; }
.plan__tag { font-size: 10px; letter-spacing: 0.2em; color: var(--blue-ink); margin-bottom: 8px; }
.plan--ent .plan__tag { color: var(--muted-l); }
.plan__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  letter-spacing: -0.015em;
}
.plan__price { display: flex; align-items: baseline; gap: 4px; }
.plan__amount {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.8rem, 4.6vw, 4rem);
  line-height: 0.95;
  letter-spacing: -0.035em;
}
.plan__amount--text { font-size: clamp(1.8rem, 2.8vw, 2.5rem); }
.plan__cur { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.3rem, 2vw, 1.7rem); }
.plan__per { font-size: 10px; letter-spacing: 0.14em; color: var(--muted-l); margin-left: 8px; align-self: center; }
.plan__hint { margin-top: 8px; font-size: 11px; color: var(--ok); letter-spacing: 0.02em; min-height: 16px; transition: color 0.3s; }
.plan__hint--neutral { color: var(--muted-l); }
.plan__divider { height: 1px; background: var(--line-l-soft); margin: 22px 0; }
.plan__list { flex: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 2px 24px; }
.plan--ent .plan__list { grid-template-columns: 1fr; }
.plan__list li {
  position: relative;
  padding: 8px 0 8px 26px;
  font-size: 14px;
}
.plan__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--blue);
}
.plan__cta { width: 100%; margin-top: 26px; }
.plan__trial { margin-top: 14px; text-align: center; font-size: 9.5px; letter-spacing: 0.14em; color: var(--faint-l); }

.pricing__note {
  text-align: center;
  margin-top: 36px;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  color: var(--muted-l);
}

/* ==========================================================================
   INTEGRATIONS / ORBIT  (hell)
   ========================================================================== */
.integrations { overflow: hidden; background: var(--bg-2); }
.orbit {
  --os: min(620px, 92vw);
  position: relative;
  width: var(--os);
  height: var(--os);
  margin: clamp(10px, 4vw, 40px) auto 0;
}
.orbit__core {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 2;
}
.orbit__core::before {
  content: '';
  position: absolute;
  inset: -46px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46, 107, 255, 0.16), transparent 70%);
  z-index: -1;
}
.orbit__core-label { font-size: 9.5px; letter-spacing: 0.26em; color: var(--muted-l); }
.orbit__ring {
  position: absolute;
  border: 1px dashed rgba(46, 107, 255, 0.25);
  border-radius: 50%;
}
.orbit__ring--1 { inset: calc(var(--os) * 0.21); animation: spin 52s linear infinite; }
.orbit__ring--2 { inset: calc(var(--os) * 0.035); animation: spin 84s linear infinite reverse; }
.orbit__node {
  position: absolute;
  top: 50%; left: 50%;
}
.orbit__ring--1 .orbit__node { transform: rotate(var(--deg)) translateX(calc(var(--os) * 0.29)) rotate(calc(-1 * var(--deg))); }
.orbit__ring--2 .orbit__node { transform: rotate(var(--deg)) translateX(calc(var(--os) * 0.465)) rotate(calc(-1 * var(--deg))); }
.orbit__chip {
  display: inline-block;
  transform: translate(-50%, -50%);
  background: var(--card);
  border: 1px solid var(--line-l);
  border-radius: 8px;
  padding: 9px 15px;
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--text-l);
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
  animation: chipCounter1 52s linear infinite;
}
.orbit__ring--2 .orbit__chip { animation: chipCounter2 84s linear infinite; }
/* Gegenrotation muss translate(-50%,-50%) enthalten, sonst kippt der Chip */
@keyframes chipCounter1 {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(-360deg); }
}
@keyframes chipCounter2 {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}
.integrations__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 720px;
  margin: clamp(40px, 6vw, 70px) auto 0;
}

/* ==========================================================================
   FAQ  (hell)
   ========================================================================== */
.faq__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}
.faq__head { position: sticky; top: 130px; }
.faq__item { border-bottom: 1px solid var(--line-l); }
.faq__q {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 25px 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  letter-spacing: -0.01em;
  transition: color 0.3s;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q:hover { color: var(--blue); }
.faq__icon { position: relative; width: 26px; height: 26px; flex-shrink: 0; }
.faq__icon::before, .faq__icon::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 15px; height: 1.5px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform 0.45s var(--ease);
}
.faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq__item[open] .faq__icon::after { transform: translate(-50%, -50%) rotate(0deg); }
.faq__item[open] .faq__q { color: var(--blue); }
.faq__a { overflow: hidden; }
.faq__a p { padding-bottom: 26px; font-size: 15.5px; color: var(--muted-l); max-width: 58ch; }

/* ==========================================================================
   FINAL CTA  (DUNKEL — Spotlight)
   ========================================================================== */
.cta { overflow: hidden; text-align: center; }
.cta__glow {
  position: absolute;
  left: 50%;
  bottom: -340px;
  width: 900px;
  height: 700px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(46, 107, 255, 0.28), transparent 65%);
  pointer-events: none;
}
.cta__inner { position: relative; }
.cta__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4.4vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -0.022em;
  max-width: 26ch;
  margin-inline: auto;
  text-wrap: balance;
}
.cta__sub { margin: 26px auto 44px; font-size: 17px; color: var(--muted-d); }
.cta__btns { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.cta__badges { margin-top: 54px; font-size: 10.5px; letter-spacing: 0.22em; color: var(--faint-d); }

/* ==========================================================================
   FOOTER  (DUNKEL)
   ========================================================================== */
.footer { background: var(--ink); border-top: 1px solid var(--line-d-soft); color: var(--text-d); }
.footer .brand-mark { color: var(--blue-bright); background: transparent; box-shadow: inset 0 0 14px -6px rgba(46, 107, 255, 0.7); }
.footer .brand-word { color: var(--text-d); }
.footer .brand-word em { color: var(--blue-bright); }
.footer__top {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: clamp(40px, 6vw, 90px);
  padding: clamp(56px, 7vw, 90px) 0 clamp(40px, 5vw, 64px);
}
.footer__claim { margin-top: 20px; font-size: 15px; color: var(--muted-d); max-width: 30ch; }
.footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.footer__head { font-size: 10px; letter-spacing: 0.22em; color: var(--faint-d); margin-bottom: 20px; }
.footer__col a {
  display: block;
  padding: 7px 0;
  font-size: 14.5px;
  color: var(--muted-d);
  transition: color 0.3s, transform 0.3s var(--ease);
}
.footer__col a:hover { color: var(--text-d); transform: translateX(4px); }
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 26px 0;
  border-top: 1px solid var(--line-d-soft);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--faint-d);
}
.footer__up { transition: color 0.3s; }
.footer__up:hover { color: var(--text-d); }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1100px) {
  .dash__float--1 { left: 10px; }
  .dash__float--2 { right: 10px; }
  .dash__float--3 { left: 14px; }
}

@media (max-width: 1024px) {
  .hero__content { grid-template-columns: 1fr; gap: 56px; padding-top: clamp(110px, 14vh, 150px); }
  .hero__stage { height: clamp(360px, 60vw, 460px); max-width: 560px; }
  .feature { grid-template-columns: 1fr; gap: 44px; }
  .feature--flip .feature__text { order: 1; }
  .feature--flip .feature__visual { order: 2; }
  .audience__grid { grid-template-columns: 1fr; }
  .acard { min-height: 0; }
  .privacy__grid { grid-template-columns: 1fr; }
  .faq__grid { grid-template-columns: 1fr; gap: 30px; }
  .faq__head { position: static; }
  .onboard { grid-template-columns: 1fr; gap: 48px; }
  .onboard__cta { margin-left: 62px; }
  .plans { grid-template-columns: 1fr; max-width: 600px; margin-inline: auto; }
  .plan__list { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .nav__links, .nav__login { display: none; }
  .nav__burger { display: block; }
  .nav__actions .btn { display: none; }
  .section__head--row { flex-direction: column; align-items: flex-start; }
  .problem__grid { grid-template-columns: 1fr; }
  .problem__arrow { transform: rotate(90deg); }
  .problem__card--old, .problem__card--new { transform: none; }
  .footer__top { grid-template-columns: 1fr; }
  /* Quotes: auf Mobile horizontal scrollbar mit Pfeilen */
  .quotes__nav { display: flex; }
  .quotes__rail {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    margin-inline: calc(-1 * var(--pad));
    padding-inline: var(--pad);
    gap: 16px;
  }
  .quote { flex: 0 0 84%; scroll-snap-align: start; }
  .onboard__summary { align-self: flex-start; align-items: flex-start; }
}

@media (max-width: 700px) {
  .stats__grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .hero__hud { grid-template-columns: 1fr 1fr; gap: 18px; }
  .hero__scroll { display: none; }
  .hero__stage { height: 450px; }
  .hcard--object { top: 15%; width: min(280px, 70%); }
  .hcard--lead { width: min(260px, 80%); }
  .hcard--deal { left: auto; right: 0; bottom: 9%; width: 190px; }
  .hcard--sign { left: 0; right: auto; bottom: 0; }
  .dash__body { grid-template-columns: 1fr; }
  .dash__side { display: none; }
  .dash__kpis { grid-template-columns: 1fr 1fr; }
  .dash__float { display: none; }
  .plan__list { grid-template-columns: 1fr; }
  .opv__kpis { grid-template-columns: repeat(3, 1fr); }
  .integrations__stats { grid-template-columns: 1fr; gap: 36px; }
  .orbit__chip { padding: 7px 10px; font-size: 8.5px; }
  .footer__cols { grid-template-columns: 1fr 1fr; }
  .footer__bottom { justify-content: center; text-align: center; }
}

/* ==========================================================================
   REDUCED MOTION
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
  }
  .marquee__track { animation: none; transform: none; }
  .vault__ring, .orbit__ring, .orbit__chip { animation: none; }
  .hero__scroll-line::after { animation: none; }
}
