/* Nachlassgestalten prototype v2 — dark purple, scroll-story */
html {
  scroll-padding-top: 7rem;
}
:root {
  --bg: #0c0614;
  --bg-mid: #12081f;
  --surface: #1a0f2e;
  --surface-2: #241538;
  --line: #3d2a5c;
  --text: #f4edff;
  --text-soft: #b9a3d4;
  --primary: #a78bfa;
  --primary-deep: #7c3aed;
  --accent: #e9d5ff;
  --glow: rgba(167, 139, 250, 0.35);
  /* Hero “loss” figure — vivid red-rose, tuned for dark purple UI */
  --loss: #ff5c6c;
  --loss-glow: rgba(255, 92, 108, 0.42);
  --max: 1120px;
  --header-h: 80px;
  /* Hero (dunkel) → helles Band: ein gemeinsamer Verlauf für Bridge / optionale Ramp */
  --v2-gradient-hero-to-light: linear-gradient(
    180deg,
    var(--bg) 0%,
    #0e0818 9%,
    #130d22 20%,
    #1a102c 33%,
    #221336 44%,
    #2a1844 54%,
    #362153 63%,
    #4a3168 72%,
    #6a4d85 80%,
    #9a85b0 87%,
    #cdc2de 93%,
    #ebe4f7 97%,
    #faf8ff 100%
  );
  /* Helles Band / #faf8ff → Page-Basis (z. B. Bridge vor Scrolly) */
  --v2-gradient-light-to-dark: linear-gradient(
    180deg,
    #faf8ff 0%,
    #f3ebfa 9%,
    #e7def4 20%,
    #d8ccea 32%,
    #b8a6d2 45%,
    #8870a0 58%,
    #5a4a78 70%,
    #382952 80%,
    #221536 88%,
    #140d22 95%,
    #0c0614 100%
  );
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body.theme-v2 {
  margin: 0;
  font-family: "SF Pro Display", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background: radial-gradient(1200px 800px at 20% -10%, #2d1b4e 0%, transparent 55%),
    radial-gradient(900px 600px at 100% 20%, #1e1040 0%, transparent 50%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-mid) 45%, #0a0510 100%);
  color: var(--text);
  min-height: 100vh;
}

body.theme-v2 a {
  color: inherit;
  text-decoration: none;
}

body.theme-v2 .container {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
}

/* —— Browser block overlay —— */
.browser-block {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: #050208;
  color: var(--text);
  text-align: center;
}
.browser-block.is-visible {
  display: flex;
}
.browser-block__inner {
  max-width: 28rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1.75rem;
  background: var(--surface);
}
.browser-block__inner h1 {
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
}
.browser-block__inner p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* —— Trust banner (one line, minimal height) —— */
.v2-trust-banner {
  background: linear-gradient(90deg, #2a1848 0%, #3d2570 48%, #2a1848 100%);
  border-bottom: 1px solid rgba(167, 139, 250, 0.4);
  color: #f0e8ff;
  padding: 0.4rem 0;
  text-align: center;
}
.v2-trust-banner__text {
  margin: 0;
  font-size: clamp(0.68rem, 2.1vw, 0.8125rem);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.02em;
}
@media (min-width: 1100px) {
  .v2-trust-banner__text {
    white-space: nowrap;
  }
}

/* —— Header —— */
.v2-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(61, 42, 92, 0.6);
  background: rgba(12, 6, 20, 0.78);
  backdrop-filter: blur(12px);
}
.v2-header__inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  padding-top: 0.55rem;
  padding-bottom: 0.55rem;
  min-height: var(--header-h);
  box-sizing: border-box;
}
.v2-home-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  transform: none;
  width: 2.95rem;
  height: 2.95rem;
  border-radius: 0.5rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  text-decoration: none;
  flex-shrink: 0;
}
.v2-home-link svg {
  width: 1.45rem;
  height: 1.45rem;
  display: block;
}
.v2-home-link:hover {
  color: var(--accent);
  border-color: rgba(167, 139, 250, 0.45);
  background: rgba(167, 139, 250, 0.12);
}
.v2-home-link:focus-visible {
  outline: 2px solid rgba(124, 58, 237, 0.6);
  outline-offset: 2px;
}
.v2-help-link {
  grid-column: 3;
  display: inline-flex;
  align-items: center;
  align-self: center;
  justify-self: center;
  transform: none;
  gap: 0.42rem;
  height: 2.95rem;
  padding: 0 0.7rem;
  border-radius: 0.5rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
}
.v2-help-link svg {
  width: 1.1rem;
  height: 1.1rem;
  display: block;
  flex-shrink: 0;
}
.v2-help-link span {
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1;
}
.v2-help-link--icon {
  justify-content: center;
  align-items: center;
  width: 2.95rem;
  height: 2.95rem;
  padding: 0;
  gap: 0;
}
.v2-help-link--icon svg {
  width: 1.45rem;
  height: 1.45rem;
}
.v2-help-link:hover {
  color: var(--accent);
  border-color: rgba(167, 139, 250, 0.45);
  background: rgba(167, 139, 250, 0.12);
}
.v2-help-link:focus-visible {
  outline: 2px solid rgba(124, 58, 237, 0.6);
  outline-offset: 2px;
}
/* Erstes Grid-Item (Pillar-Nav) darf schrumpfen — sonst frisst min-content fast die ganze Zeile */
.v2-header__inner > .v2-pillar-nav {
  grid-column: 2;
  min-width: 0;
  max-width: 100%;
}
.v2-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-decoration: none;
  color: var(--text);
  flex-shrink: 0;
  line-height: 1.2;
  padding-top: 0.2rem;
}
.v2-brand:hover {
  color: var(--accent);
}
.v2-brand img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}
/* min-width: 0 verhindert Grid-„min-content“-Ballon: innere Spalten bleiben teilbar */
.v2-pillar-nav {
  justify-self: stretch;
  align-self: center;
  width: 100%;
  max-width: none;
  min-width: 0;
}
.v2-pillar-nav__row {
  display: grid;
  /* Text 3× gleicher Anteil; Operatoren mit echtem fr-Anteil (nicht max-content ≈ 1 Zeichen) */
  grid-template-columns: minmax(0, 3fr) minmax(2.75rem, 0.75fr) minmax(0, 3fr) minmax(2.75rem, 0.75fr) minmax(0, 3fr);
  align-items: center;
  width: 100%;
  min-width: 0;
  column-gap: clamp(0.15rem, 0.8vw, 0.45rem);
}
.v2-pillar-nav__col {
  min-width: 0;
  text-align: center;
}
.v2-pillar-nav__col .v2-pillar-nav__sub {
  text-align: center;
}
.v2-pillar-nav__between {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: stretch;
  align-self: stretch;
  padding-inline: clamp(0.2rem, 1vw, 0.5rem);
}
.v2-pillar-nav__sep {
  margin: 0;
  padding: 0;
  font-size: clamp(1.65rem, 3.8vw, 2.35rem);
  font-weight: 200;
  line-height: 1;
  color: var(--text-soft);
  opacity: 0.48;
  user-select: none;
  pointer-events: none;
}
@media (max-width: 36rem) {
  .v2-pillar-nav__row {
    grid-template-columns: minmax(0, 3fr) minmax(2rem, 0.85fr) minmax(0, 3fr) minmax(2rem, 0.85fr) minmax(0, 3fr);
    column-gap: 0.1rem;
  }
  .v2-pillar-nav__between {
    padding-inline: 0.1rem;
  }
  .v2-pillar-nav__sep {
    font-size: clamp(1.35rem, 6.5vw, 1.65rem);
    opacity: 0.4;
  }
}
.v2-pillar-nav__title {
  display: block;
  margin: 0 0 0.32rem;
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--text);
  text-decoration: none;
  overflow-wrap: break-word;
}
.v2-pillar-nav__title:hover {
  color: var(--accent);
}
.v2-pillar-nav__title.is-current {
  color: var(--accent);
}
.v2-pillar-nav__sub {
  margin: 0;
  padding: 0;
  list-style: none;
}
.v2-pillar-nav__sub li {
  margin: 0;
}
.v2-pillar-nav__sub a {
  font-size: 1rem;
  line-height: 1.42;
  color: var(--text-soft);
  text-decoration: none;
  display: inline-block;
  padding: 0.08rem 0;
}
.v2-pillar-nav__sub a:hover {
  color: var(--accent);
}

.v2-pillar-page {
  padding: clamp(2rem, 5vw, 3.5rem) 0 clamp(2.5rem, 5vw, 4rem);
}
.v2-pillar-page__h1 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.45rem, 2.8vw, 2rem);
  letter-spacing: -0.02em;
  color: var(--text);
}
.v2-pillar-page__lead {
  margin: 0 0 clamp(1.75rem, 3vw, 2.35rem);
  max-width: 62ch;
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--text-soft);
}
.v2-pillar-page__section {
  margin: 0 0 clamp(1.5rem, 2.8vw, 2rem);
  padding-bottom: clamp(1.25rem, 2.5vw, 1.75rem);
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 7rem;
}
.v2-pillar-page__section:last-of-type {
  border-bottom: none;
}
.v2-pillar-page__section h2 {
  margin: 0 0 0.55rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent);
}
.v2-pillar-page__section p {
  margin: 0;
  max-width: 65ch;
  line-height: 1.62;
  color: var(--text-soft);
}
.v2-pillar-page__back {
  margin: clamp(1.5rem, 3vw, 2rem) 0 0;
}
.v2-pillar-page__back a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--primary);
  text-decoration: none;
}
.v2-pillar-page__back a:hover {
  color: var(--accent);
}
.v2-pillar-page__back--footer-adj {
  margin-top: clamp(2.25rem, 5vw, 3.5rem);
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}

.v2-legal-doc {
  max-width: 62ch;
}
.v2-legal-doc__h2 {
  margin: 1.35rem 0 0.55rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.35;
}
.v2-legal-doc__h2:first-of-type {
  margin-top: 0.35rem;
}
.v2-legal-doc__address,
.v2-legal-doc p {
  margin: 0 0 1rem;
  line-height: 1.62;
  color: var(--text-soft);
  font-size: 0.98rem;
}
.v2-legal-doc__address {
  font-style: normal;
}
.v2-legal-doc a {
  color: var(--accent);
}
.v2-legal-doc a:hover {
  text-decoration: underline;
}
.v2-legal-doc__sep {
  margin: 1.35rem 0;
  border: 0;
  border-top: 1px solid var(--border, rgba(0, 0, 0, 0.12));
}
.v2-legal-doc ul {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
  line-height: 1.62;
  color: var(--text-soft);
  font-size: 0.98rem;
}
.v2-legal-doc li {
  margin-bottom: 0.35rem;
}

/* —— Vermögen erhalten / Preserve wealth: Orbit-Hero —— */
.v2-vermoegen-hero {
  padding-bottom: clamp(0.25rem, 1.5vw, 0.75rem);
  --sat-box-width: clamp(12.5rem, 23vw, 14.5rem);
  --sat-box-height: clamp(3.2rem, 7vw, 4rem);
  --sat-offset-x: clamp(0.15rem, 1.5vw, 0.85rem);
  --sat-offset-y: clamp(0.2rem, 1.2vw, 0.65rem);
}
.v2-vermoegen-hero__heading {
  margin: 0 0 clamp(0.85rem, 2.2vw, 1.3rem);
  text-align: center;
}
.v2-vermoegen-hero__subheads {
  display: grid;
  grid-template-columns: var(--sat-box-width) minmax(0, 1fr) var(--sat-box-width);
  align-items: end;
  max-width: min(100%, 52rem);
  margin: 0 auto clamp(0.45rem, 1.2vw, 0.8rem);
  padding: 0 clamp(0.5rem, 2vw, 1rem);
  color: var(--text-soft);
}
.v2-vermoegen-hero__subhead {
  margin: 0;
  font-size: clamp(1.02rem, 1.95vw, 1.15rem);
  font-weight: 600;
  letter-spacing: 0.01em;
}
.v2-vermoegen-hero__subhead--left {
  justify-self: start;
  text-align: center;
  margin-left: var(--sat-offset-x);
}
.v2-vermoegen-hero__subhead--center {
  justify-self: center;
  text-align: center;
}
.v2-vermoegen-hero__subhead--right {
  justify-self: end;
  text-align: center;
  margin-right: var(--sat-offset-x);
}
.v2-vermoegen-hero__sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
.v2-vermoegen-hero__orbit {
  position: relative;
  margin: 0 auto;
  max-width: min(100%, 52rem);
}
.v2-vermoegen-hero__orbit-inner {
  position: relative;
  width: 100%;
  min-height: clamp(220px, 36vw, 320px);
}
.v2-vermoegen-hero__wires {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.v2-vermoegen-hero__wires-svg {
  display: block;
  width: 100%;
  height: 100%;
}
.v2-vermoegen-hero__wire-q {
  position: absolute;
  display: block;
  width: 50%;
  height: 50%;
}
.v2-vermoegen-hero__wire-q--tl {
  left: 0;
  top: 0;
}
.v2-vermoegen-hero__wire-q--tr {
  right: 0;
  top: 0;
}
.v2-vermoegen-hero__wire-q--bl {
  left: 0;
  bottom: 0;
}
.v2-vermoegen-hero__wire-q--br {
  right: 0;
  bottom: 0;
}
.v2-vermoegen-hero__wire-path {
  stroke: rgba(196, 181, 253, 0.42);
  stroke-width: 1.35;
  vector-effect: non-scaling-stroke;
}
.v2-vermoegen-hero__orbit-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  grid-template-rows: auto auto auto;
  grid-template-areas:
    "sat-tl . sat-tr"
    ". hub ."
    "sat-bl . sat-br";
  align-items: center;
  justify-items: center;
  gap: clamp(0.35rem, 2vw, 1rem);
  min-height: inherit;
  padding: clamp(0.65rem, 2.8vw, 1.35rem) clamp(0.5rem, 2vw, 1rem);
}
.v2-vermoegen-hero__sat {
  margin: 0;
  width: var(--sat-box-width);
  max-width: var(--sat-box-width);
  min-height: var(--sat-box-height);
  padding: 0.5rem 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(0.78rem, 1.65vw, 0.95rem);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.01em;
  text-align: center;
  color: rgba(233, 213, 255, 0.92);
  background: rgba(6, 3, 14, 0.62);
  border: 1px solid rgba(124, 58, 237, 0.32);
  border-radius: 0.65rem;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04) inset;
}
.v2-vermoegen-hero__sat--tl {
  grid-area: sat-tl;
  justify-self: start;
  align-self: start;
  margin-top: var(--sat-offset-y);
  margin-left: var(--sat-offset-x);
}
.v2-vermoegen-hero__sat--tr {
  grid-area: sat-tr;
  justify-self: end;
  align-self: start;
  margin-top: var(--sat-offset-y);
  margin-right: var(--sat-offset-x);
}
.v2-vermoegen-hero__sat--bl {
  grid-area: sat-bl;
  justify-self: start;
  align-self: end;
  margin-bottom: var(--sat-offset-y);
  margin-left: var(--sat-offset-x);
}
.v2-vermoegen-hero__sat--br {
  grid-area: sat-br;
  justify-self: end;
  align-self: end;
  margin-bottom: var(--sat-offset-y);
  margin-right: var(--sat-offset-x);
}
.v2-vermoegen-hero__hub {
  grid-area: hub;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.v2-vermoegen-hero__one.v2-bars-viz__cap-num {
  display: block;
  font-size: clamp(3.25rem, 11vw, 5.25rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
  transform: translateY(-0.2rem);
}
.v2-vermoegen-hero__outtro {
  margin: clamp(1.5rem, 4vw, 2.35rem) 0 0;
  padding-top: 0;
  border-top: 0;
  max-width: none;
  width: 100%;
  font-size: clamp(1.02rem, 2.1vw, 1.18rem);
  font-weight: 500;
  line-height: 1.55;
  text-align: center;
  color: var(--text);
}
.v2-slc-steps__list {
  display: grid;
  gap: clamp(0.8rem, 2vw, 1.15rem);
}
.v2-slc-steps__icon {
  display: block;
  object-fit: contain;
  background: transparent;
}
.v2-slc-steps__icon--inline {
  width: 72px;
  height: auto;
  margin: 0;
}
.v2-slc-steps__item-main {
  display: contents;
}
.v2-slc-steps__item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  column-gap: clamp(0.55rem, 1.2vw, 0.85rem);
  align-items: center;
  margin: 0;
  padding: clamp(0.8rem, 2vw, 1rem);
  border: 1px solid rgba(167, 139, 250, 0.42);
  border-radius: 0.7rem;
  background: #22113d;
  box-shadow: none;
}
.v2-slc-steps__item p {
  margin: 0;
  color: #ffffff !important;
  max-width: none !important;
  width: 100%;
  font-size: clamp(0.98rem, 1.65vw, 1.05rem);
  line-height: 1.62;
}
.v2-slc-steps__item-title {
  margin: 0 0 0.35rem;
  color: #d9c9ff;
  font-size: clamp(1rem, 1.7vw, 1.12rem);
  font-weight: 700;
  line-height: 1.28;
}
.v2-slc-steps__item > .v2-slc-steps__item-main > .v2-slc-steps__icon--inline {
  grid-column: 1;
  grid-row: 1 / span 3;
  align-self: center;
  justify-self: start;
}
.v2-slc-steps__item > .v2-slc-steps__item-main > .v2-slc-steps__item-title {
  grid-column: 2;
}
.v2-slc-steps__item > .v2-slc-steps__item-main > p {
  grid-column: 2;
}
.v2-slc-steps #slc-steps-heading {
  color: #8b5cf6 !important;
}
.v2-slc-steps .v2-slc-steps__quote {
  grid-column: 2;
  margin-top: 0.5rem !important;
  font-weight: 700;
  color: #b794ff !important;
  text-shadow: 0 0 12px rgba(167, 139, 250, 0.28);
  text-align: right;
}
@media (max-width: 540px) {
  .v2-slc-steps__item {
    grid-template-columns: 56px minmax(0, 1fr);
  }
  .v2-slc-steps__icon--inline {
    width: 56px;
  }
  .v2-vermoegen-hero__subheads {
    grid-template-columns: auto auto auto;
    gap: 0.32rem;
    justify-content: center;
    margin-bottom: 0.55rem;
    padding: 0;
  }
  .v2-vermoegen-hero__subhead--left,
  .v2-vermoegen-hero__subhead--center,
  .v2-vermoegen-hero__subhead--right {
    justify-self: center;
    white-space: nowrap;
  }
  .v2-vermoegen-hero__wires {
    display: none;
  }
  .v2-vermoegen-hero__orbit-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-rows: auto auto;
    grid-template-areas:
      "sat-tl sat-tr"
      "sat-bl sat-br";
    justify-items: stretch;
    gap: 0.55rem;
    padding: 1rem 0.35rem;
  }
  .v2-vermoegen-hero__sat--tl,
  .v2-vermoegen-hero__sat--tr,
  .v2-vermoegen-hero__sat--bl,
  .v2-vermoegen-hero__sat--br {
    justify-self: stretch;
    align-self: stretch;
    margin: 0;
    max-width: none;
  }
  .v2-vermoegen-hero__hub {
    display: none;
  }
}

.v2-overview__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.v2-overview__item {
  margin: 0 0 clamp(1.25rem, 2.5vw, 1.6rem);
}
.v2-overview__item:last-child {
  margin-bottom: 0;
}
.v2-overview__link {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
}
.v2-overview__link:hover {
  color: var(--primary);
}
.v2-overview__desc {
  margin: 0.35rem 0 0;
  max-width: 65ch;
  line-height: 1.55;
  color: var(--text-soft);
}
.v2-overview--landing {
  max-width: none;
}
.v2-overview__kicker {
  margin: 0 0 0.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
}
.v2-overview--landing .v2-pillar-page__h1 {
  max-width: none;
  margin-bottom: 1.1rem;
}
.v2-overview--landing .v2-overview__desc,
.v2-overview--landing .v2-pillar-page__lead {
  max-width: none;
}
.v2-overview__story {
  display: grid;
  gap: 0.75rem;
  margin: 0 0 1.35rem;
}
.v2-overview__story > .v2-overview__desc {
  margin: 0 0 0.75rem;
}
.v2-overview__story > .v2-overview__desc:last-of-type {
  margin-bottom: 0;
}
.v2-overview-hero--lead {
  margin: 0 0 1rem;
}
html[lang="en"] .v2-overview-hero--lead {
  margin-bottom: 1.35rem;
}
@media (min-width: 980px) {
  .v2-overview-hero--lead {
    float: right;
    width: min(42%, 25.5rem);
    margin: 0 0 1rem 2.4rem;
  }
  html[lang="en"] .v2-overview-hero--lead {
    margin: 0 0 1.35rem 2.4rem;
  }
}
.v2-overview--landing .v2-overview__section-title {
  clear: both;
}
.v2-overview__story .v2-overview__desc {
  margin-top: 0;
}
.v2-overview__quote {
  margin: 1.1rem 0 1.2rem;
  padding: 0.85rem 1rem;
  border-left: 3px solid var(--primary);
  border-radius: 0.35rem;
  background: rgba(167, 139, 250, 0.08);
  color: var(--text);
  font-weight: 500;
  line-height: 1.55;
}
.v2-overview__section-title {
  margin: 3.25rem 0 0.9rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}
.v2-overview__cards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 0.8rem;
}
.v2-overview__card {
  margin: 0;
}
.v2-overview__card-link {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  background: linear-gradient(165deg, rgba(36, 21, 56, 0.96) 0%, rgba(26, 15, 46, 0.98) 100%);
  box-shadow:
    0 8px 18px rgba(0, 0, 0, 0.22),
    0 1px 0 rgba(255, 255, 255, 0.05) inset;
  transform: translateY(0);
  transition:
    transform 160ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
  text-decoration: none;
}
.v2-overview__card-link .v2-overview__desc {
  margin-top: 0.45rem;
}
.v2-overview__card-titleline {
  display: block;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--accent);
  line-height: 1.35;
}
.v2-overview__card-link:hover {
  border-color: rgba(167, 139, 250, 0.6);
  background: linear-gradient(165deg, rgba(51, 30, 80, 0.97) 0%, rgba(33, 19, 56, 0.99) 100%);
  box-shadow:
    0 16px 30px rgba(0, 0, 0, 0.32),
    0 0 0 1px rgba(167, 139, 250, 0.22);
  transform: translateY(-3px);
}
.v2-overview__card-link:focus-visible {
  border-color: rgba(167, 139, 250, 0.7);
  outline: 2px solid rgba(124, 58, 237, 0.55);
  outline-offset: 2px;
  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(167, 139, 250, 0.24);
  transform: translateY(-2px);
}
.v2-overview__closing {
  margin-top: 1.2rem;
}

/* —— Übersicht / Overview: Hero mit laufenden Modell-Zählern —— */
.v2-overview-hero-wrap {
  display: grid;
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: start;
  margin-bottom: clamp(1rem, 2.5vw, 1.65rem);
}
@media (min-width: 900px) {
  .v2-overview-hero-wrap {
    grid-template-columns: minmax(0, 1fr) minmax(17.5rem, 24rem);
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: center;
  }
}
.v2-overview-hero-copy .v2-overview__kicker {
  margin-bottom: 0.5rem;
}
.v2-overview-hero-copy .v2-pillar-page__h1 {
  margin-top: 0;
}
.v2-overview-hero {
  margin: 0;
}
.v2-overview-hero__sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
.v2-overview-hero__panel {
  position: relative;
  border-radius: 1rem;
  border: 1px solid rgba(167, 139, 250, 0.35);
  background: linear-gradient(
    155deg,
    rgba(36, 21, 56, 0.96) 0%,
    rgba(26, 15, 46, 0.98) 45%,
    rgba(14, 8, 28, 0.99) 100%
  );
  box-shadow:
    0 0 0 1px rgba(124, 58, 237, 0.12),
    0 24px 56px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  padding: clamp(1rem, 2.8vw, 1.45rem);
  overflow: hidden;
}
.v2-overview-hero__panel::before {
  content: "";
  position: absolute;
  inset: -40% -20% auto;
  height: 70%;
  background: radial-gradient(ellipse at 50% 0%, rgba(167, 139, 250, 0.22) 0%, transparent 62%);
  pointer-events: none;
}
.v2-overview-hero__eyebrow {
  position: relative;
  margin: 0 0 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}
.v2-overview-hero__stats {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}
.v2-overview-hero__stat {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  row-gap: 0.28rem;
  min-width: 0;
  padding: 0.65rem 0.75rem;
  border-radius: 0.65rem;
  background: rgba(12, 6, 20, 0.45);
  border: 1px solid rgba(61, 42, 92, 0.55);
}
.v2-overview-hero__value {
  grid-column: 1;
  grid-row: 2;
  text-align: right;
  font-size: clamp(1.08rem, 2.8vw, 1.45rem);
  font-weight: 700;
  line-height: 1.15;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  color: var(--text);
}
.v2-overview-hero__stat--currency .v2-overview-hero__value {
  color: var(--loss);
  text-shadow: 0 0 24px var(--loss-glow);
}
.v2-overview-hero__label {
  grid-column: 1;
  grid-row: 1;
  font-size: 0.74rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--text-soft);
}
.v2-overview-hero__rate {
  grid-column: 1;
  grid-row: 3;
  margin: 0;
  text-align: right;
  font-size: 0.68rem;
  line-height: 1.35;
  color: rgba(185, 163, 212, 0.82);
}
.v2-overview-hero__note {
  position: relative;
  margin: 0.85rem 0 0;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(61, 42, 92, 0.65);
  font-size: 0.72rem;
  line-height: 1.45;
  color: rgba(185, 163, 212, 0.88);
}

.v2-nav {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.v2-nav a {
  font-size: 0.86rem;
  color: var(--text-soft);
  padding: 0.35rem 0.5rem;
  border-radius: 0.4rem;
}
.v2-nav a:hover {
  color: var(--text);
  background: rgba(167, 139, 250, 0.12);
}
.v2-nav .v2-nav__pill {
  border: 1px solid var(--line);
  background: var(--surface);
}
.v2-nav .v2-nav__pill--active {
  border-color: var(--primary-deep);
  color: var(--accent);
}
.v2-nav .v2-nav__cta {
  font-weight: 600;
  color: #1a0a2e;
  background: linear-gradient(135deg, var(--primary) 0%, #c4b5fd 100%);
  padding: 0.45rem 0.75rem;
  border-radius: 0.5rem;
}
.v2-nav .v2-nav__cta:hover {
  filter: brightness(1.06);
  color: #1a0a2e;
}

/* Language: one trigger, expandable list (scales to many locales) */
.v2-lang-wrap {
  grid-column: 4;
  position: relative;
  flex-shrink: 0;
  justify-self: end;
  align-self: center;
}
.v2-lang {
  position: relative;
}
.v2-lang__summary {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  cursor: pointer;
  list-style: none;
  font-size: 0.86rem;
  font-weight: 600;
  padding: 0.45rem 0.65rem;
  border-radius: 0.5rem;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  user-select: none;
}
.v2-lang__summary::-webkit-details-marker {
  display: none;
}
.v2-lang__summary::after {
  content: "";
  display: block;
  width: 0.4rem;
  height: 0.4rem;
  border-right: 2px solid var(--text-soft);
  border-bottom: 2px solid var(--text-soft);
  transform: rotate(45deg);
  margin-top: -0.2rem;
  transition: transform 0.2s ease, margin 0.2s ease;
}
@media (prefers-reduced-motion: reduce) {
  .v2-lang__summary::after {
    transition: none;
  }
}
.v2-lang[open] .v2-lang__summary {
  border-color: var(--primary-deep);
  color: var(--accent);
}
.v2-lang[open] .v2-lang__summary::after {
  transform: rotate(-135deg);
  margin-top: 0.12rem;
}
.v2-lang__list {
  position: absolute;
  right: 0;
  top: calc(100% + 0.35rem);
  margin: 0;
  padding: 0.35rem;
  list-style: none;
  min-width: 12.5rem;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 0.65rem;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.5);
  z-index: 60;
}
.v2-lang__list li {
  margin: 0;
}
.v2-lang__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 0.55rem 0.65rem;
  border-radius: 0.45rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  box-sizing: border-box;
}
.v2-lang__link:hover {
  background: rgba(167, 139, 250, 0.14);
  color: var(--text);
}
.v2-lang__link.is-current {
  color: var(--accent);
  background: rgba(167, 139, 250, 0.1);
}
.v2-lang__meta {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text-soft);
}
.v2-lang__link.is-current .v2-lang__meta {
  color: var(--primary);
}

/* —— Hero —— */
.v2-hero {
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 2rem;
  position: relative;
  overflow: hidden;
}
.v2-hero::before {
  content: "";
  position: absolute;
  inset: -20% 40% 40% -30%;
  background: radial-gradient(circle, var(--glow) 0%, transparent 65%);
  pointer-events: none;
  opacity: 0.5;
}
.v2-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: center;
}
.v2-eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
}
.v2-hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4.5vw, 3.15rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}
.v2-hero__lead {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.6;
  color: var(--text-soft);
  max-width: 52ch;
}
.v2-cta-row {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.v2-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-radius: 0.65rem;
  padding: 0.78rem 1.15rem;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
@media (prefers-reduced-motion: reduce) {
  .v2-btn {
    transition: none;
  }
}
.v2-btn--primary {
  background: linear-gradient(135deg, var(--primary-deep) 0%, var(--primary) 100%);
  color: #0c0614;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08), 0 12px 40px rgba(124, 58, 237, 0.35);
}
.v2-btn--primary:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}
.v2-btn--ghost {
  border-color: var(--line);
  background: rgba(26, 15, 46, 0.6);
  color: var(--text);
}
.v2-btn--ghost:hover {
  border-color: var(--primary-deep);
  background: rgba(36, 21, 56, 0.85);
}
.v2-hero__visual {
  border-radius: 1.1rem;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, var(--surface-2) 0%, var(--surface) 100%);
  padding: 0.65rem;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}
.v2-hero__visual img {
  display: block;
  width: 100%;
  border-radius: 0.75rem;
}

/* —— Hero: impact / stats —— */
.v2-hero--impact {
  padding-bottom: clamp(2rem, 5vw, 3rem);
}
.v2-hero--impact .v2-hero__impact-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
  gap: clamp(1.75rem, 4vw, 2.75rem);
  align-items: start;
}
/* Shape/gestalten hero (DE+EN): graphic before text */
#notwendigkeit.v2-hero--impact .v2-hero__impact-grid,
#necessity.v2-hero--impact .v2-hero__impact-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 1fr);
}
#notwendigkeit.v2-hero--impact .v2-hero__impact-viz,
#necessity.v2-hero--impact .v2-hero__impact-viz {
  order: 1;
}
#notwendigkeit.v2-hero--impact .v2-hero__impact-copy,
#necessity.v2-hero--impact .v2-hero__impact-copy {
  order: 2;
}
.v2-hero--impact .v2-hero__lead {
  max-width: 48ch;
}
.v2-hero--impact .v2-hero__impact-copy .v2-hero__lead + .v2-hero__lead {
  margin-top: 0.95rem;
}
.v2-hero--impact .v2-hero__impact-copy .v2-hero__lead + .v2-hero__method {
  margin-top: 3rem;
}
.v2-hero--data .v2-hero__impact-copy .v2-hero__lead + .v2-hero__method {
  margin-top: 2.5rem;
}
/* Problem hero (DE+EN): enforce text first, then visualization */
#problem.v2-hero--impact .v2-hero__impact-grid {
  grid-template-areas:
    "copy"
    "viz";
}
#problem.v2-hero--impact .v2-hero__impact-copy {
  grid-area: copy;
}
#problem.v2-hero--impact .v2-hero__impact-viz {
  grid-area: viz;
}
.v2-hero__method {
  margin-top: 1rem;
  border-radius: 0.65rem;
  border: 1px solid rgba(61, 42, 92, 0.85);
  background: rgba(18, 8, 31, 0.55);
  padding: 0;
  overflow: hidden;
}
.v2-hero__method summary {
  cursor: pointer;
  list-style: none;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--accent);
  padding: 0.65rem 0.85rem;
  user-select: none;
}
.v2-hero__method summary::-webkit-details-marker {
  display: none;
}
.v2-hero__method-body {
  padding: 0 0.85rem 0.85rem;
  border-top: 1px solid rgba(61, 42, 92, 0.65);
}
.v2-hero__method-body p {
  margin: 0.65rem 0 0;
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--text-soft);
}
.v2-hero__method-body .v2-hero__method-list {
  margin: 0.5rem 0 0;
  padding-left: 1.25rem;
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--text-soft);
}
.v2-hero__method-body .v2-hero__method-list > li {
  margin-top: 0.35rem;
}
.v2-hero__method-body .v2-hero__method-list > li:first-child {
  margin-top: 0;
}
.v2-hero__method-body .v2-hero__method-list--nested {
  margin: 0.35rem 0 0;
  padding-left: 1.1rem;
}
.v2-hero__impact-viz {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.v2-hero__stat-splash {
  position: relative;
  border-radius: 1rem;
  padding: 1.15rem 1.25rem 1.25rem;
  border: 1px solid rgba(167, 139, 250, 0.45);
  background: linear-gradient(145deg, rgba(45, 27, 78, 0.95) 0%, rgba(26, 15, 46, 0.98) 55%, rgba(18, 8, 31, 0.99) 100%);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  overflow: hidden;
}
.v2-hero__stat-splash::before {
  content: "";
  position: absolute;
  inset: -40% -20% auto auto;
  width: 70%;
  height: 80%;
  background: radial-gradient(circle, rgba(167, 139, 250, 0.22) 0%, transparent 68%);
  pointer-events: none;
}
.v2-hero__stat-splash-label {
  position: relative;
  margin: 0 0 0.35rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-soft);
}
.v2-hero__stat-splash .nowrap {
  white-space: nowrap;
}
.v2-hero__stat-splash-row {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.65rem 1rem;
}
.v2-hero__stat-splash-value {
  position: relative;
  margin: 0;
  flex: 1 1 auto;
  min-width: 0;
  font-size: clamp(2.6rem, 7vw, 3.75rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--text);
  text-shadow: 0 0 40px rgba(167, 139, 250, 0.25);
}
.v2-hero__stat-splash-value-num {
  display: inline-block;
  min-width: 3.25ch;
  font-variant-numeric: tabular-nums;
  text-align: right;
}
.v2-hero__approx {
  display: inline-block;
  margin-right: 0.06em;
  font-size: 0.55em;
  font-weight: 700;
  opacity: 0.88;
  vertical-align: 0.35em;
  letter-spacing: 0;
}
.v2-hero__stat-splash-unit {
  font-weight: 700;
  font-size: 0.55em;
  opacity: 0.92;
}
.v2-hero__stat-splash-deduct-amt {
  flex: 0 0 auto;
  margin: 0 0 0.12em auto;
  font-size: clamp(1.1rem, 3.2vw, 1.45rem);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  line-height: 1;
  white-space: nowrap;
  color: var(--loss);
  text-shadow: 0 0 22px var(--loss-glow);
  padding: 0.35em 0.65em;
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 120, 135, 0.52);
  background: linear-gradient(
    145deg,
    rgba(214, 61, 82, 0.34) 0%,
    rgba(90, 22, 48, 0.7) 55%,
    rgba(45, 12, 28, 0.88) 100%
  );
  box-shadow: 0 0 26px rgba(214, 61, 82, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.07);
}
.v2-hero__stat-splash-deduct-num {
  display: inline-block;
  min-width: 7.5ch;
}
.v2-hero__outflow-intro {
  margin: 0;
  width: 100%;
  max-width: none;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text);
}
.v2-hero__outflow-intro-sub {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.9em;
  line-height: 1.45;
  color: var(--text-soft);
}
.v2-hero__outflow-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.v2-hero__outflow-list > li {
  --bar: 50;
}
.v2-hero__outflow-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.35rem;
}
.v2-hero__outflow-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}
.v2-hero__outflow-amt {
  font-size: 0.95rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--accent);
  white-space: nowrap;
}
.v2-hero__outflow-track {
  height: 7px;
  border-radius: 999px;
  background: rgba(61, 42, 92, 0.65);
  overflow: hidden;
}
.v2-hero__outflow-fill {
  display: block;
  height: 100%;
  width: calc(var(--bar) * 1%);
  max-width: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary-deep) 0%, var(--primary) 100%);
  box-shadow: 0 0 14px rgba(167, 139, 250, 0.35);
  transform-origin: left center;
  transform: scaleX(0);
  opacity: 0.65;
}
.v2-hero__outflow-list > li:nth-child(1) .v2-hero__outflow-fill {
  background: linear-gradient(90deg, #6d28d9 0%, #a78bfa 100%);
}
.v2-hero__outflow-list > li:nth-child(2) .v2-hero__outflow-fill {
  background: linear-gradient(90deg, #5b21b6 0%, #c4b5fd 100%);
}
.v2-hero__outflow-list > li:nth-child(3) .v2-hero__outflow-fill {
  background: linear-gradient(90deg, #4c1d95 0%, #ddd6fe 100%);
}
.v2-hero__outflow-list > li:nth-child(4) .v2-hero__outflow-fill {
  background: linear-gradient(90deg, #7c3aed 0%, #e9d5ff 100%);
}
.v2-hero__outflow-list > li:nth-child(5) .v2-hero__outflow-fill {
  background: linear-gradient(90deg, #3b0764 0%, #a78bfa 100%);
}
@media (prefers-reduced-motion: no-preference) {
  .v2-hero.v2-reveal.is-in .v2-hero__outflow-list > li .v2-hero__outflow-fill {
    animation: v2-bars-rise-x 0.82s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }
  .v2-hero.v2-reveal.is-in .v2-hero__outflow-list > li:nth-child(1) .v2-hero__outflow-fill {
    animation-delay: 0.18s;
  }
  .v2-hero.v2-reveal.is-in .v2-hero__outflow-list > li:nth-child(2) .v2-hero__outflow-fill {
    animation-delay: 0.3s;
  }
  .v2-hero.v2-reveal.is-in .v2-hero__outflow-list > li:nth-child(3) .v2-hero__outflow-fill {
    animation-delay: 0.42s;
  }
  .v2-hero.v2-reveal.is-in .v2-hero__outflow-list > li:nth-child(4) .v2-hero__outflow-fill {
    animation-delay: 0.54s;
  }
  .v2-hero.v2-reveal.is-in .v2-hero__outflow-list > li:nth-child(5) .v2-hero__outflow-fill {
    animation-delay: 0.66s;
  }
}
@media (prefers-reduced-motion: reduce) {
  .v2-hero__outflow-fill {
    transform: scaleX(1);
    opacity: 1;
    animation: none !important;
  }
}
.v2-hero__outflow-hint {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.76rem;
  line-height: 1.45;
  color: var(--text-soft);
}
.v2-hero__outflow-sum {
  margin: 0.25rem 0 0;
  padding: 0.75rem 0.85rem;
  border-radius: 0.65rem;
  border: 1px dashed rgba(167, 139, 250, 0.35);
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--text-soft);
}
.v2-hero__outflow-sum strong {
  color: var(--accent);
  font-weight: 600;
}

@media (max-width: 900px) {
  .v2-hero--impact .v2-hero__impact-grid {
    grid-template-columns: 1fr;
  }
}

/* Anker #problem: Hero unter fester Kopfzeile sichtbar */
#problem.v2-hero {
  scroll-margin-top: 7rem;
}

@media (min-width: 901px) {
  #problem.v2-hero--impact .v2-hero__impact-grid {
    /* Problem hero: text left, viz right */
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
    grid-template-areas: "copy viz";
    gap: clamp(1.75rem, 4vw, 2.75rem);
    align-items: start;
  }
}

/* —— Hero „Daten verwalten“: Grafik links, Text rechts (DOM: Viz → Copy) —— */
.v2-hero--data .v2-hero__data-viz {
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: clamp(0.55rem, 2vw, 1rem);
}
.v2-hero--data .v2-hero__data-viz-inner {
  min-height: inherit;
  border-radius: 1rem;
  border: 1px dashed rgba(167, 139, 250, 0.42);
  background: linear-gradient(
    155deg,
    rgba(45, 27, 78, 0.72) 0%,
    rgba(18, 8, 31, 0.9) 50%,
    rgba(12, 6, 22, 0.92) 100%
  );
  box-shadow: 0 18px 56px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 3vw, 1.75rem);
}
.v2-hero--data .v2-hero__data-viz-placeholder {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(221, 214, 254, 0.75);
  text-align: center;
  line-height: 1.5;
  max-width: 24ch;
}
.v2-hero--data .v2-hero__data-viz-placeholder-sub {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: none;
  color: var(--text-soft);
}

/* —— Daten-Hero: Balken + Trendlinie (Feldstudie) —— */
.v2-hero--data .v2-hero__data-viz-inner--bridge {
  position: relative;
  overflow: hidden;
  padding: clamp(0.95rem, 2.4vw, 1.45rem);
  border-radius: clamp(1.1rem, 2.2vw, 1.35rem);
  border: 1px solid rgba(196, 181, 253, 0.48);
  background: radial-gradient(110% 90% at 50% -10%, rgba(167, 139, 250, 0.28) 0%, transparent 45%),
    radial-gradient(80% 60% at 100% 50%, rgba(59, 7, 100, 0.45) 0%, transparent 50%),
    linear-gradient(168deg, rgba(10, 5, 20, 0.99) 0%, rgba(14, 7, 28, 0.995) 100%);
  box-shadow: 0 0 0 1px rgba(124, 58, 237, 0.18), 0 28px 88px rgba(0, 0, 0, 0.52), inset 0 1px 0 rgba(255, 255, 255, 0.07);
  display: flex;
  flex-direction: column;
  gap: clamp(0.65rem, 1.8vw, 0.95rem);
  min-height: clamp(14rem, 42vh, 30rem);
  isolation: isolate;
}
.v2-hero--data .v2-hero__data-viz-inner--bridge::before {
  content: "";
  position: absolute;
  inset: -35%;
  background: conic-gradient(from 200deg, transparent, rgba(167, 139, 250, 0.08), transparent 35%);
  animation: v2-bars-aurora 22s linear infinite;
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}
@media (prefers-reduced-motion: reduce) {
  .v2-hero--data .v2-hero__data-viz-inner--bridge::before {
    animation: none;
    opacity: 0.28;
  }
}
@keyframes v2-bars-aurora {
  to {
    transform: rotate(360deg);
  }
}

.v2-bars-viz {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.42rem;
}
.v2-hero--data .v2-hero__data-viz-insight.v2-hero__outflow-sum {
  margin: 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.v2-bars-viz__cap {
  position: relative;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
}
.v2-bars-viz__cap-story {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(0.2rem, 1.8vw, 0.65rem);
}
.v2-bars-viz__cap-cluster {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: clamp(0.25rem, 1.2vw, 0.45rem);
}
.v2-bars-viz__cap-num {
  flex: 0 0 auto;
  font-size: clamp(1.65rem, 5.2vw, 2.65rem);
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #faf5ff;
  text-shadow: 0 0 28px rgba(167, 139, 250, 0.42);
}
.v2-bars-viz__cap-num--hot {
  background: linear-gradient(115deg, #fef3c7 0%, #fbbf24 45%, #f59e0b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 18px rgba(251, 191, 36, 0.5));
}
/* 254 in "Daten verwalten": eye-catching, but non-gold. */
.v2-hero--data .v2-bars-viz__cap-num--hot {
  background: linear-gradient(115deg, #ddd6fe 0%, #a78bfa 52%, #8b5cf6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 18px rgba(167, 139, 250, 0.45));
}
.v2-bars-viz__cap-lines {
  flex: 0 1 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.04em;
  line-height: 1.06;
}
.v2-bars-viz__cap-line {
  font-size: clamp(0.62rem, 1.45vw, 0.78rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(233, 213, 255, 0.9);
  text-align: left;
  white-space: nowrap;
}
.v2-bars-viz__cap-morph {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.05rem;
  opacity: 0.92;
}
.v2-bars-viz__cap-morph-svg {
  display: block;
  width: clamp(1.75rem, 5.5vw, 2.4rem);
  height: auto;
}
.v2-bars-viz__cap-foot {
  display: block;
  text-align: center;
  font-size: clamp(0.62rem, 1.25vw, 0.72rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(196, 181, 253, 0.78);
  line-height: 1.35;
  padding-top: 0.08rem;
}
@media (max-width: 340px) {
  .v2-bars-viz__cap-story {
    flex-direction: column;
    gap: 0.35rem;
  }
  .v2-bars-viz__cap-morph-svg {
    transform: rotate(90deg);
  }
}
.v2-bars-viz__cap-sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.v2-bars-viz__chart {
  position: relative;
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 0.45rem 0.25rem 0.25rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(124, 58, 237, 0.28);
  background: rgba(6, 3, 14, 0.45);
}
.v2-bars-viz__nova {
  position: absolute;
  inset: -15%;
  background: radial-gradient(circle at 50% 45%, rgba(254, 243, 199, 0.45) 0%, rgba(167, 139, 250, 0.2) 28%, transparent 58%);
  opacity: 0;
  transform: scale(0.35);
  pointer-events: none;
  z-index: 2;
}
@media (prefers-reduced-motion: no-preference) {
  .v2-hero.v2-reveal.is-in .v2-bars-viz__nova {
    animation: v2-bars-nova-burst 1.05s cubic-bezier(0.22, 1, 0.36, 1) 0.12s forwards;
  }
}
@keyframes v2-bars-nova-burst {
  0% {
    opacity: 0;
    transform: scale(0.25);
  }
  40% {
    opacity: 0.95;
  }
  100% {
    opacity: 0;
    transform: scale(1.35);
  }
}

.v2-bars-viz__combo {
  display: flex;
  flex-direction: column;
  gap: clamp(0.45rem, 1.5vw, 0.7rem);
  width: 100%;
  padding-bottom: 0.1rem;
}
.v2-bars-viz__combo-bars {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 3.4vw, 1.85rem);
  padding-bottom: clamp(0.45rem, 1.6vw, 0.85rem);
}
.v2-bars-viz__combo-row {
  --r: 0;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.v2-bars-viz__combo-row--metric .v2-bars-viz__combo-hd {
  gap: 0;
}
.v2-bars-viz__combo-title--metric {
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.06em;
}
.v2-bars-viz__combo-title--literal {
  text-transform: none;
  letter-spacing: 0.04em;
  font-size: clamp(0.58rem, 1.12vw, 0.74rem);
  line-height: 1.3;
}
.v2-bars-viz__combo-title__lowx {
  text-transform: none;
  font-weight: 800;
}
.v2-bars-viz__combo-hd {
  display: flex;
  flex-direction: column;
  gap: 0.08rem;
}
.v2-bars-viz__combo-title {
  font-size: clamp(0.68rem, 1.35vw, 0.8rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(250, 245, 255, 0.95);
  line-height: 1.25;
}
.v2-bars-viz__combo-note {
  font-size: clamp(0.58rem, 1.15vw, 0.68rem);
  font-weight: 600;
  color: rgba(196, 181, 253, 0.78);
  line-height: 1.35;
}
.v2-bars-viz__combo-track {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: clamp(18px, 2.6vw, 24px);
  min-height: clamp(18px, 2.6vw, 24px);
  padding: 3px;
  border-radius: 999px;
  background: rgba(61, 42, 92, 0.55);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}
.v2-bars-viz__seg {
  --p: 0;
  --a: 0;
  flex: 0 0 auto;
  width: calc(var(--p) * 1%);
  min-width: 3px;
  height: 100%;
  border-radius: 2px;
  transform-origin: left center;
  transform: scaleX(0);
  background: linear-gradient(
    180deg,
    hsl(calc(265 + var(--a) * 11), 62%, 52%) 0%,
    hsl(calc(265 + var(--a) * 11), 54%, 34%) 100%
  );
  box-shadow: inset -1px 0 0 rgba(0, 0, 0, 0.28);
}
.v2-bars-viz__seg:last-child {
  box-shadow: none;
}
@media (prefers-reduced-motion: no-preference) {
  .v2-hero.v2-reveal.is-in .v2-bars-viz__seg {
    animation: v2-bars-rise-x 0.82s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: calc(0.18s + var(--r) * 0.12s + var(--a) * 0.038s);
  }
}
@keyframes v2-bars-rise-x {
  from {
    transform: scaleX(0);
    opacity: 0.65;
  }
  to {
    transform: scaleX(1);
    opacity: 1;
  }
}

.v2-bars-viz__legend {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 0.35rem 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.v2-bars-viz__legend li {
  display: flex;
  align-items: center;
  gap: 0.32rem;
  font-size: clamp(0.58rem, 1.2vw, 0.68rem);
  font-weight: 600;
  color: rgba(221, 214, 254, 0.88);
  line-height: 1.25;
  max-width: 16rem;
}
.v2-bars-viz__sw {
  flex-shrink: 0;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 2px;
  background: linear-gradient(
    180deg,
    hsl(calc(265 + var(--a) * 11), 62%, 52%) 0%,
    hsl(calc(265 + var(--a) * 11), 54%, 34%) 100%
  );
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.25);
}

@media (prefers-reduced-motion: reduce) {
  .v2-bars-viz__seg {
    transform: scaleX(1);
    animation: none !important;
  }
  .v2-bars-viz__nova {
    opacity: 0 !important;
    animation: none !important;
  }
}

/* —— Static theme ramps: schmale feste Gradienten zwischen dunklem Layout und hellem Band —— */
.v2-theme-ramp {
  display: block;
  height: clamp(20px, 2.8vw, 34px);
  flex-shrink: 0;
  pointer-events: none;
}
/* Hero / Page-Basis → Oberkante helles Band (#faf8ff); optional schmale Ramp */
.v2-theme-ramp--to-light {
  background: var(--v2-gradient-hero-to-light);
}

/* —— Bridge: Farbverlauf + zentrierter Kurztext (weiß, gut lesbar auf Mitteltönen) —— */
.v2-hero-bridge {
  background: var(--v2-gradient-hero-to-light);
  min-height: clamp(9.5rem, 28vw, 15.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.35rem, 3.2vw, 2.15rem) 0;
}
.v2-hero-bridge .container {
  width: 100%;
}
.v2-hero-bridge__text,
.v2-section-bridge__text {
  margin: 0 auto;
  max-width: 68ch;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  font-size: clamp(1.22rem, 1.55vw, 1.32rem);
  line-height: 1.68;
  font-weight: 500;
  color: #fff;
  text-align: center;
  letter-spacing: -0.01em;
  text-shadow: 0 1px 22px rgba(12, 6, 20, 0.55), 0 0 1px rgba(12, 6, 20, 0.35);
}

/* —— Section-Bridge: hell → dunkel vor z. B. Scrolly —— */
.v2-section-bridge {
  background: var(--v2-gradient-light-to-dark);
  min-height: clamp(8.5rem, 24vw, 14rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.35rem, 3.2vw, 2.15rem) 0;
}
.v2-section-bridge .container {
  width: 100%;
}

/* Nach Kette / dunklem Block: gleiche Bridge-Struktur wie oben, aber ohne Aufhellen (#faf8ff) */
.v2-section-bridge--dark {
  background: linear-gradient(
    180deg,
    rgba(14, 8, 26, 0.98) 0%,
    rgba(12, 6, 20, 0.96) 50%,
    var(--bg) 100%
  );
  border-top: 1px solid rgba(61, 42, 92, 0.4);
}

.v2-section-bridge__actions {
  margin-top: clamp(1.25rem, 2.5vw, 1.75rem);
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  row-gap: 0.55rem;
}
.v2-section-bridge__actions .v2-btn {
  max-width: min(100%, 40rem);
  width: min(100%, 40rem);
  text-align: center;
  white-space: normal;
  line-height: 1.4;
}
.v2-section-bridge__actions .v2-btn--primary {
  position: relative;
  font-weight: 700;
  letter-spacing: 0.01em;
  border: 1px solid rgba(196, 181, 253, 0.52);
  box-shadow:
    0 10px 22px rgba(8, 4, 14, 0.32),
    0 0 0 1px rgba(167, 139, 250, 0.2) inset;
  transition:
    transform 160ms ease,
    box-shadow 180ms ease,
    filter 180ms ease;
}
.v2-section-bridge__actions .v2-btn--primary::after {
  content: "→";
  margin-left: 0.5rem;
  font-weight: 700;
  opacity: 0.9;
}
.v2-section-bridge__actions .v2-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 16px 28px rgba(8, 4, 14, 0.42),
    0 0 0 1px rgba(167, 139, 250, 0.28) inset;
  filter: brightness(1.05);
}
.v2-section-bridge__actions .v2-btn--primary:focus-visible {
  transform: translateY(-1px);
  box-shadow:
    0 14px 24px rgba(8, 4, 14, 0.4),
    0 0 0 1px rgba(167, 139, 250, 0.32) inset;
}
.v2-btn--cta-highlight {
  border-color: rgba(196, 181, 253, 0.72);
  background: linear-gradient(135deg, var(--primary-deep) 0%, var(--primary) 100%);
  color: var(--text);
  box-shadow:
    0 0 0 1px rgba(196, 181, 253, 0.24),
    0 0 22px rgba(167, 139, 250, 0.22);
}
.v2-btn--cta-highlight:hover {
  transform: none;
  border-color: rgba(196, 181, 253, 0.86);
  background: linear-gradient(135deg, var(--primary-deep) 0%, var(--primary) 100%);
  color: var(--text);
  box-shadow:
    0 0 0 1px rgba(196, 181, 253, 0.3),
    0 0 26px rgba(167, 139, 250, 0.3);
}
.v2-btn--cta-highlight:focus-visible {
  transform: none;
  outline: 2px solid rgba(124, 58, 237, 0.55);
  outline-offset: 2px;
  box-shadow:
    0 0 0 1px rgba(196, 181, 253, 0.32),
    0 0 28px rgba(167, 139, 250, 0.34);
}
.v2-btn--launch-soon {
  position: relative;
  cursor: not-allowed;
}
.v2-btn--launch-soon::after {
  content: none;
}
.v2-btn--launch-soon::before {
  content: attr(data-launch-note);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 0.45rem);
  transform: translateX(-50%);
  width: max-content;
  max-width: min(92vw, 24rem);
  padding: 0.45rem 0.6rem;
  border-radius: 0.45rem;
  border: 1px solid rgba(196, 181, 253, 0.55);
  background: rgba(24, 13, 41, 0.96);
  color: #efe8ff;
  font-size: 0.78rem;
  line-height: 1.35;
  text-align: center;
  box-shadow: 0 10px 24px rgba(8, 4, 14, 0.36);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 120ms ease;
  z-index: 4;
}
.v2-btn--launch-soon:hover::before,
.v2-btn--launch-soon:focus-visible::before {
  opacity: 1;
  visibility: visible;
}

/* Unterkante helles Band → wieder Page-Basis (schmale Ramp, optional) */
.v2-theme-ramp--to-dark {
  background: var(--v2-gradient-light-to-dark);
}

/* —— Kette: Tier 0/1/2 + L-Pfeil in einer Zeile mit der Box —— */
.v2-chain {
  /* Gleicher horizontaler Abstand zwischen linker Box-Kante 01 → 02 → 03 (Pfeil+Gap werden abgezogen) */
  --v2-chain-line-gap: clamp(0.6rem, 1.8vw, 1rem);
  --v2-chain-flow-w: clamp(2.75rem, 9vw, 4.25rem);
  --v2-chain-box-step: clamp(4rem, 10.5vw, 6.25rem);
  /* Maske: senkrecht runter, dann nach rechts mit Spitze */
  --v2-chain-flow-l: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 52 58'%3E%3Cpath d='M14 6 L14 38 L36 38' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M36 32 L46 38 L36 44 Z' fill='%23fff'/%3E%3C/svg%3E");
  position: relative;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  border-top: 1px solid rgba(124, 58, 237, 0.22);
  border-bottom: 1px solid rgba(61, 42, 92, 0.5);
  background:
    radial-gradient(ellipse 90% 70% at 18% 20%, rgba(124, 58, 237, 0.11) 0%, transparent 58%),
    radial-gradient(ellipse 70% 55% at 92% 85%, rgba(167, 139, 250, 0.07) 0%, transparent 50%),
    linear-gradient(165deg, rgba(22, 12, 38, 0.72) 0%, rgba(12, 6, 20, 0.5) 45%, rgba(14, 8, 26, 0.62) 100%);
  overflow: hidden;
}
/* Innerhalb des normalen .container (wie alle Infobereiche); schmale Spalte links in dieser Spalte ausrichten */
.v2-chain__inner {
  width: 100%;
  max-width: min(calc(52rem * 1.1 * 0.7 * 0.9 * 0.9 * 1.5 * 1.05), 100%);
  /* Ketten-Spalte / Boxen 01–04: Basis × 1,5 × 1,05 (+5 % gegenüber 1,5×), nie breiter als der Container */
  --v2-chain-box-w: min(calc(52rem * 1.1 * 0.7 * 0.9 * 0.9 * 1.5 * 1.05), 100%);
  margin-left: 0;
  margin-right: auto;
  text-align: left;
}
/* Dieselbe Breite für Titel und alle Boxen (nicht max-width:100% im Flex-Inhalt — der wäre nach padding schmaler als Box 01) */
.v2-chain__title,
.v2-chain__step {
  box-sizing: border-box;
  width: var(--v2-chain-box-w);
}
.v2-chain__title {
  margin: 0 0 clamp(1.25rem, 3vw, 1.85rem);
  padding-right: 0;
  font-size: clamp(1.2rem, 2.1vw, 1.65rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.25;
  color: #fff;
  text-align: left;
  text-shadow: 0 1px 20px rgba(12, 6, 20, 0.55);
}
.v2-chain__track {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  counter-reset: v2-chain;
  gap: clamp(1rem, 2.5vw, 1.5rem);
}
.v2-chain__row {
  margin: 0;
  padding: 0;
}
/* Eine Zeile: flex-Spacer (statt padding-left) + Pfeil + Box — so ist der Flex-Inhalt volle Breite wie bei Zeile 01 und alle Boxen gleich breit */
.v2-chain__row--line {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: var(--v2-chain-line-gap);
  box-sizing: border-box;
  margin-left: 0;
  width: 100%;
  max-width: 100%;
}
.v2-chain__row--line::before {
  content: "";
  flex: 0 0 auto;
  width: 0;
  align-self: stretch;
}
.v2-chain__row--tier1::before {
  width: max(
    0rem,
    calc(var(--v2-chain-box-step) - var(--v2-chain-flow-w) - var(--v2-chain-line-gap))
  );
}
.v2-chain__row--tier2::before {
  width: max(
    0rem,
    calc(2 * var(--v2-chain-box-step) - var(--v2-chain-flow-w) - var(--v2-chain-line-gap))
  );
}
.v2-chain__row--tier3::before {
  width: max(
    0rem,
    calc(3 * var(--v2-chain-box-step) - var(--v2-chain-flow-w) - var(--v2-chain-line-gap))
  );
}
.v2-chain__row--line .v2-chain__step {
  flex: 0 0 auto;
  min-width: 0;
  margin-left: 0;
}
.v2-chain__step {
  position: relative;
  margin: 0;
  padding: 0.5rem 0.35rem 0.5rem clamp(2.85rem, 6vw, 3.6rem);
  font-size: clamp(1.06rem, 1.95vw, 1.24rem);
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: -0.015em;
  text-shadow: 0 1px 16px rgba(12, 6, 20, 0.48);
  border-radius: 0 0.65rem 0.65rem 0;
  border-left: 3px solid rgba(167, 139, 250, 0.42);
}
.v2-chain__step--tier0 {
  margin-left: 0;
}
.v2-chain__step::before {
  counter-increment: v2-chain;
  content: counter(v2-chain, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0.48em;
  width: 1.85rem;
  text-align: center;
  font-size: 0.68em;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.92);
  opacity: 1;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 1px 12px rgba(12, 6, 20, 0.45);
}
/* Flow: links in derselben Zeile wie die Box (flex-Zeile) */
.v2-chain__flow {
  flex-shrink: 0;
  width: var(--v2-chain-flow-w);
  height: clamp(2.35rem, 5.5vw, 3.15rem);
  margin: 0;
  margin-top: 0.42em;
  background-color: rgba(167, 139, 250, 0.68);
  -webkit-mask: var(--v2-chain-flow-l) center / contain no-repeat;
  mask: var(--v2-chain-flow-l) center / contain no-repeat;
}
@media (min-width: 40rem) {
  .v2-chain__step {
    padding-right: clamp(0.5rem, 2vw, 1.25rem);
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0%, transparent 42%);
  }
}

/* —— Scroll story (sticky pin + triggers) —— */
.v2-scrolly {
  position: relative;
}
.v2-scrolly__sticky {
  position: sticky;
  top: var(--header-h);
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  padding: 1.5rem 0 2rem;
}
.v2-scrolly__inner {
  width: 100%;
}
.v2-scrolly__title {
  margin: 0 0 1.25rem;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  letter-spacing: -0.02em;
}
.v2-scrolly__title span {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text-soft);
  letter-spacing: 0;
  line-height: 1.45;
}
.v2-scrolly__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
}
.v2-scrolly__media {
  position: relative;
  border-radius: 1rem;
  border: 1px solid var(--line);
  background: var(--surface);
  aspect-ratio: 4/3;
  overflow: hidden;
}
.v2-scrolly__media > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.55s ease, transform 0.7s ease;
}
@media (prefers-reduced-motion: reduce) {
  .v2-scrolly__media > img {
    transition: none;
    transform: none;
  }
}
.v2-scrolly__media > img.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}
.v2-scrolly__media--icon-fit > img {
  object-fit: contain;
  object-position: center;
  /* Weniger Rand → Icon nutzt mehr Fläche der Box → wirkt schärfer auf dem Schirm */
  padding: clamp(0.35rem, 1.8vw, 1.35rem);
  background: radial-gradient(circle at 50% 40%, rgba(167, 139, 250, 0.12) 0%, transparent 62%);
  image-rendering: auto;
  image-rendering: high-quality;
}
.v2-scrolly__steps {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.v2-scrolly__step {
  border-radius: 0.85rem;
  border: 1px solid transparent;
  padding: 1rem 1.1rem;
  background: rgba(26, 15, 46, 0.45);
  opacity: 0.35;
  transform: translateX(8px);
  transition: opacity 0.45s ease, transform 0.45s ease, border-color 0.35s ease,
    background 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .v2-scrolly__step {
    transition: none;
    transform: none;
  }
}
.v2-scrolly__step.is-active {
  opacity: 1;
  transform: translateX(0);
  border-color: rgba(167, 139, 250, 0.45);
  background: rgba(36, 21, 56, 0.92);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.35);
}
.v2-scrolly__step h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
  color: var(--accent);
}
.v2-scrolly__step p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-soft);
}
.v2-scrolly--approaches .v2-scrolly__step p + p {
  margin-top: 0.35rem;
}
.v2-approach-badge {
  display: inline-block;
  padding: 0.18rem 0.5rem 0.2rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.2;
}
.v2-approach-badge--red {
  color: #fecaca;
  background: rgba(127, 29, 29, 0.72);
  border: 1px solid rgba(248, 113, 113, 0.55);
}
.v2-approach-badge--yellow {
  color: #fef3c7;
  background: rgba(120, 53, 15, 0.72);
  border: 1px solid rgba(251, 191, 36, 0.55);
}
.v2-scrolly__media--approaches {
  position: static;
  display: grid;
  grid-template-columns: auto minmax(20rem, 34rem) auto;
  gap: clamp(0.8rem, 2.2vw, 1.35rem);
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  border-radius: 0;
  aspect-ratio: auto;
  overflow: visible;
  padding: 0;
}
.v2-approaches-layout__icons {
  display: grid;
  height: clamp(13rem, 28vh, 16rem);
  gap: clamp(0.45rem, 1.1vw, 0.7rem);
  align-content: stretch;
}
.v2-approaches-layout__icons--left,
.v2-approaches-layout__icons--right {
  grid-template-rows: repeat(3, 1fr);
}
.v2-approaches-layout__icon {
  width: clamp(3rem, 5.2vw, 3.8rem);
  height: 100%;
  border-radius: 0.75rem;
  border: 1px solid rgba(167, 139, 250, 0.28);
  background: rgba(255, 255, 255, 0.04);
  display: grid;
  place-items: center;
  opacity: 0.45;
  transform: scale(0.96);
  cursor: pointer;
  transition: opacity 0.35s ease, transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.v2-approaches-layout__icon:focus-visible {
  outline: 2px solid rgba(196, 181, 253, 0.92);
  outline-offset: 2px;
}
.v2-approaches-layout__icon img {
  width: 76%;
  height: 76%;
  object-fit: contain;
}
.v2-approaches-layout__icon.is-active {
  opacity: 1;
  transform: scale(1);
  border-color: rgba(196, 181, 253, 0.72);
  box-shadow: 0 0 0 1px rgba(196, 181, 253, 0.4), 0 12px 28px rgba(0, 0, 0, 0.28);
}
.v2-approaches-layout__panel {
  width: 100%;
  min-height: clamp(13rem, 28vh, 16rem);
  border-radius: 0.95rem;
  border: 1px solid rgba(167, 139, 250, 0.4);
  background: rgba(36, 21, 56, 0.92);
  padding: clamp(0.85rem, 1.7vw, 1.1rem);
}
.v2-scrolly--approaches .v2-scrolly__sticky {
  min-height: auto;
  align-items: flex-start;
  padding: clamp(1rem, 2.2vw, 1.5rem) 0 clamp(1.8rem, 3.8vw, 2.5rem);
}
.v2-scrolly--approaches .v2-scrolly__title {
  margin-bottom: clamp(3rem, 6.5vw, 4.4rem) !important;
}
.v2-scrolly--approaches .v2-scrolly__trigger {
  height: 24vh;
}
.v2-scrolly--approaches .v2-scrolly__flow-hint {
  position: absolute;
  left: 50%;
  width: 1rem;
  height: 1rem;
  color: rgba(230, 219, 255, 0.94);
  pointer-events: none;
  user-select: none;
  opacity: 0.95;
  transition: transform 180ms ease, opacity 180ms ease;
  z-index: 3;
}
.v2-scrolly--approaches .v2-scrolly__flow-hint::before,
.v2-scrolly--approaches .v2-scrolly__flow-hint::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0.66rem;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transform-origin: right center;
}
.v2-scrolly--approaches .v2-scrolly__flow-hint::before {
  transform: translate(-50%, -50%) rotate(50deg);
}
.v2-scrolly--approaches .v2-scrolly__flow-hint::after {
  transform: translate(-50%, -50%) rotate(-50deg);
}
.v2-scrolly--approaches .v2-scrolly__flow-hint--down {
  bottom: 0.35rem;
  transform: translateX(-50%) rotate(90deg) scaleX(2.45);
  animation: v2ScrollyHintDown 900ms ease-in-out infinite alternate;
}
.v2-scrolly--approaches .v2-scrolly__flow-hint--up {
  top: clamp(3.8rem, 9vw, 5.8rem);
  transform: translateX(-50%) rotate(-90deg) scaleX(2.45);
  animation: v2ScrollyHintUp 900ms ease-in-out infinite alternate;
}
.v2-scrolly--approaches .v2-scrolly__flow-hint.is-hidden {
  opacity: 0;
}
@keyframes v2ScrollyHintDown {
  from {
    transform: translateX(-50%) translateY(-15%) rotate(90deg) scaleX(2.45);
  }
  to {
    transform: translateX(-50%) translateY(15%) rotate(90deg) scaleX(2.45);
  }
}
@keyframes v2ScrollyHintUp {
  from {
    transform: translateX(-50%) translateY(15%) rotate(-90deg) scaleX(2.45);
  }
  to {
    transform: translateX(-50%) translateY(-15%) rotate(-90deg) scaleX(2.45);
  }
}
.v2-approaches-layout__panel-step {
  display: none;
}
.v2-approaches-layout__panel-step.is-active {
  display: block;
}
.v2-approaches-layout__panel-step h3 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  color: var(--accent);
}
.v2-approaches-layout__panel-step p {
  margin: 0;
  color: #ffffff;
  line-height: 1.55;
}
.v2-approaches-layout__panel-step p + p {
  margin-top: 0.55rem;
}
.v2-scrolly__trigger {
  height: 100vh;
  pointer-events: none;
}

/* Reduced motion: show full story without scroll trick */
@media (prefers-reduced-motion: reduce) {
  .v2-scrolly__sticky {
    position: relative;
    top: auto;
    min-height: 0;
  }
  .v2-scrolly__trigger {
    display: none;
    height: 0;
  }
  .v2-scrolly__media > img {
    position: relative;
    opacity: 1 !important;
    height: auto;
    aspect-ratio: 4/3;
  }
  .v2-scrolly__media {
    aspect-ratio: auto;
    min-height: 0;
  }
  .v2-scrolly__media > img:not(:first-of-type) {
    display: none;
  }
  .v2-scrolly__step {
    opacity: 1;
  }
  .v2-scrolly__step:not(:first-of-type) {
    margin-top: 0.5rem;
  }
}

/* —— Critical rails: oben links / unten rechts (im .container), Mitte = Scroll-Messages —— */
.v2-critical-rails {
  position: relative;
  padding: clamp(1rem, 2.4vw, 1.65rem) 0 0;
  border-top: 1px solid rgba(61, 42, 92, 0.35);
  background: var(--bg);
}
.v2-critical-rails__sticky > h2 {
  margin: 0 0 clamp(0.45rem, 1.15vw, 0.72rem);
  font-size: clamp(1.2rem, 2.1vw, 1.65rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
  flex: 0 0 auto;
}
/* Daten verwalten: heading should read like a classic section headline. */
#warum-kritisch-heading-dv {
  font-size: clamp(1.45rem, 2.8vw, 2rem);
  line-height: 1.25;
}
.v2-critical-rails__sticky {
  position: sticky;
  top: var(--header-h);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  min-height: calc(100vh - var(--header-h));
  box-sizing: border-box;
  padding: clamp(0.25rem, 0.85vw, 0.5rem) 0 clamp(0.4rem, 1.2vw, 0.72rem);
}
/* ~30 % weniger vertikaler Zug als bei flex:1 nur auf dem Frame: Rest wächst unten unsichtbar */
.v2-critical-rails__sticky::after {
  content: "";
  flex: 0.3 1 0;
  min-height: 0;
  pointer-events: none;
  visibility: hidden;
}
.v2-critical-rails__frame {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(14rem, 2.1fr) minmax(0, 1fr);
  grid-template-rows: auto 1fr auto;
  column-gap: clamp(0.8rem, 2.4vw, 1.8rem);
  /* ~70 % des zuletzt „großen“ row-gap (0.22 / 0.65vw / 0.42) */
  row-gap: clamp(0.15rem, 0.46vw, 0.29rem);
  width: 100%;
  flex: 0.7 1 auto;
  min-height: clamp(6rem, 18.2vh, 10.5rem);
  box-sizing: border-box;
}
.v2-critical-rails__frag {
  margin: 0;
  font-size: clamp(1.36rem, 2.34vw, 1.8rem);
  font-weight: 600;
  line-height: 1.38;
  letter-spacing: -0.02em;
  color: var(--text);
}
.v2-critical-rails__frag--left {
  grid-column: 1;
  grid-row: 1;
  align-self: start;
  justify-self: start;
  text-align: left;
  max-width: min(30ch, 100%);
}
.v2-critical-rails__frag--right {
  grid-column: 3;
  grid-row: 3;
  align-self: end;
  justify-self: end;
  text-align: right;
  max-width: min(30ch, 100%);
}
.v2-critical-rails__center {
  grid-column: 2;
  grid-row: 1 / -1;
  position: relative;
  align-self: stretch;
  justify-self: stretch;
  width: 100%;
  /* ~70 % des vorherigen center min-height (9 / 22vh / 15.5) */
  min-height: clamp(6.35rem, 15.5vh, 11rem);
  box-sizing: border-box;
}
.v2-critical-rails__scroll-hint {
  position: absolute;
  left: 50%;
  width: 1rem;
  height: 1rem;
  transform-origin: center;
  font-size: clamp(1.18rem, 2vw, 1.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.04em;
  color: rgba(230, 219, 255, 0.96);
  text-shadow: 0 0 20px rgba(167, 139, 250, 0.45);
  pointer-events: none;
  user-select: none;
  opacity: 0.96;
  transition: transform 180ms ease, opacity 180ms ease;
}
.v2-critical-rails__scroll-hint::before,
.v2-critical-rails__scroll-hint::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0.66rem;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transform-origin: right center;
}
.v2-critical-rails__scroll-hint::before {
  transform: translate(-50%, -50%) rotate(50deg);
}
.v2-critical-rails__scroll-hint::after {
  transform: translate(-50%, -50%) rotate(-50deg);
}
.v2-critical-rails__scroll-hint--down {
  bottom: 0.25rem;
  transform: translateX(-50%) rotate(90deg) scaleX(2.45);
  animation: v2CriticalHintDown 900ms ease-in-out infinite alternate;
}
.v2-critical-rails__scroll-hint--up {
  top: 0.25rem;
  transform: translateX(-50%) rotate(-90deg) scaleX(2.45);
  animation: v2CriticalHintUp 900ms ease-in-out infinite alternate;
}
.v2-critical-rails__scroll-hint.is-hidden {
  opacity: 0;
}
@keyframes v2CriticalHintDown {
  from {
    transform: translateX(-50%) translateY(-15%) rotate(90deg) scaleX(2.45);
  }
  to {
    transform: translateX(-50%) translateY(15%) rotate(90deg) scaleX(2.45);
  }
}
@keyframes v2CriticalHintUp {
  from {
    transform: translateX(-50%) translateY(15%) rotate(-90deg) scaleX(2.45);
  }
  to {
    transform: translateX(-50%) translateY(-15%) rotate(-90deg) scaleX(2.45);
  }
}
.v2-critical-rails__msg {
  position: absolute;
  inset: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* ~70 % des älteren vertikalen Message-Paddings */
  padding: clamp(0.25rem, 0.84vw, 0.53rem) 0;
  box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}
.v2-critical-rails__msg.is-active {
  opacity: 1;
  visibility: visible;
}
.v2-critical-rails__msg-num {
  display: block;
  margin-bottom: 0.39rem;
  text-align: center;
  font-size: clamp(0.72rem, 1.1vw, 0.82rem);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.16em;
  color: var(--primary);
}
.v2-critical-rails__msg-body {
  display: block;
  max-width: 46ch;
  font-size: clamp(0.98rem, 1.35vw, 1.08rem);
  line-height: 1.62;
  font-weight: 500;
  text-align: center;
  color: var(--text-soft);
}
.v2-critical-rails__trigger {
  height: clamp(34vh, 42vh, 360px);
  pointer-events: none;
}
@media (max-width: 820px) {
  .v2-critical-rails__sticky::after {
    display: none;
  }
  .v2-critical-rails__frame {
    flex: 1 1 auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    min-height: 0;
  }
  .v2-critical-rails__frag--left {
    grid-column: 1;
    grid-row: 1;
  }
  .v2-critical-rails__center {
    grid-column: 1;
    grid-row: 2;
    min-height: clamp(9rem, 28vh, 15rem);
  }
  .v2-critical-rails__scroll-hint {
    left: 50%;
    font-size: 1.05rem;
  }
  .v2-critical-rails__frag--right {
    grid-column: 1;
    grid-row: 3;
    justify-self: end;
    text-align: right;
  }
}
@media (prefers-reduced-motion: reduce) {
  .v2-critical-rails__sticky {
    position: relative;
    top: auto;
    padding-bottom: 0;
  }
  .v2-critical-rails__sticky::after {
    display: none;
  }
  .v2-critical-rails__frame {
    flex: 1 1 auto;
    min-height: 0;
  }
  .v2-critical-rails__center {
    position: relative;
    min-height: 0;
  }
  .v2-critical-rails__msg {
    position: relative;
    inset: auto;
    opacity: 1 !important;
    visibility: visible !important;
    margin-bottom: 1.35rem;
  }
  .v2-critical-rails__msg:last-child {
    margin-bottom: 0;
  }
  .v2-critical-rails__scroll-hint {
    display: none;
  }
  .v2-critical-rails__trigger {
    display: none;
    height: 0;
    min-height: 0;
  }
}

/* —— Standard band —— */
.v2-band {
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
}
.v2-band--tight {
  border-top: 1px solid rgba(61, 42, 92, 0.5);
  border-bottom: 1px solid rgba(61, 42, 92, 0.5);
  background: rgba(18, 8, 31, 0.55);
}
/* Light band: inverted section on warm lavender (e.g. legal framework block) */
.v2-band--light {
  border-top: 1px solid rgba(124, 58, 237, 0.2);
  border-bottom: 1px solid rgba(124, 58, 237, 0.14);
  background: linear-gradient(168deg, #faf8ff 0%, #f2e9fb 42%, #e9dff6 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}
.v2-band--light h2 {
  color: #1a0f2e;
}
.v2-band--light > .container > p {
  color: #4b3d66;
}
/* Erstes <p> im hellen Band = Einleitung (nicht h2+p: dazwischen liegt oft Whitespace-Text im DOM) */
.v2-band--light > .container > p:first-of-type {
  max-width: none;
  width: 100%;
}
.v2-band--light .v2-card {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(124, 58, 237, 0.22);
  box-shadow: 0 10px 36px rgba(45, 27, 78, 0.07);
}
.v2-band--light .v2-card h3 {
  color: #2d1b4e;
}
.v2-band--light .v2-card p,
.v2-band--light .v2-erbrecht__facts .v2-card p {
  color: #534668;
}
.v2-band--light .v2-card strong {
  color: #241538;
}
.v2-band--light .v2-erbrecht__callout {
  background: rgba(124, 58, 237, 0.09);
  border-color: rgba(124, 58, 237, 0.28);
  box-shadow: 0 8px 28px rgba(91, 33, 182, 0.06);
}
.v2-band--light .v2-erbrecht__callout h3 {
  color: #5b21b6;
}
.v2-band--light .v2-erbrecht__callout p {
  color: #534668;
}
.v2-band--light .v2-erbrecht__disclaimer {
  color: #6b5f82;
}
/* Drei-Spalten-Faktenband: Vermögensübertragung ohne bewusste Planung */
.v2-band.v2-legacy-transfer {
  text-align: center;
}
.v2-legacy-transfer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.35rem;
  margin-top: 1.35rem;
}
@media (min-width: 52rem) {
  .v2-legacy-transfer__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.35rem 1.5rem;
    align-items: start;
  }
}
.v2-legacy-transfer__block h3 {
  margin: 0 0 0.55rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--accent);
}
.v2-legacy-transfer__block ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.v2-legacy-transfer__block li {
  position: relative;
  padding-left: 0;
  margin: 0 0 0.42rem;
  font-size: 0.95rem;
  line-height: 1.52;
  color: var(--text-soft);
}
.v2-legacy-transfer__block li:last-child {
  margin-bottom: 0;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.45;
  color: var(--accent);
}
.v2-legacy-transfer__block li strong {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.96);
}
.v2-legacy-transfer__block li:last-child strong {
  font-weight: inherit;
  color: inherit;
}
.v2-legacy-transfer__block li::before {
  content: none;
}
.v2-band.v2-legacy-transfer .v2-legacy-transfer__footnote {
  margin: calc(1lh + clamp(1.35rem, 2.8vw, 1.85rem)) 0 0;
  max-width: none;
  font-size: 1.05rem;
  line-height: 1.58;
  color: var(--text-soft);
}

/* Konzept: horizontales Scrollen (Ebene 1 / Ebene 2 inkl. Digitalisierung) */
.v2-concept-scroll {
  margin-top: 0.85rem;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(91, 33, 182, 0.45) transparent;
  outline: none;
}
.v2-concept-scroll:focus-visible {
  box-shadow: 0 0 0 2px rgba(124, 58, 237, 0.45);
  border-radius: 0.5rem;
}
.v2-concept-scroll::-webkit-scrollbar {
  height: 7px;
}
.v2-concept-scroll::-webkit-scrollbar-thumb {
  background: rgba(91, 33, 182, 0.4);
  border-radius: 999px;
}
.v2-concept-scroll::-webkit-scrollbar-track {
  background: transparent;
}
/* Helles Band: linke/rechte Kante des horizontalen Scrolls weich ausblenden (mehr „da geht’s weiter“) */
.v2-band--light .v2-concept-scroll {
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 9%,
    #000 91%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 9%,
    #000 91%,
    transparent 100%
  );
  mask-size: 100% 100%;
  -webkit-mask-size: 100% 100%;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
}
.v2-concept-level2 .v2-concept-scroll {
  margin-top: 1.05rem;
}
.v2-concept-scroll__strip {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 1rem;
  width: max-content;
  padding: 0.2rem 0 0.65rem;
}
.v2-concept-barrier {
  flex: 0 0 auto;
  width: min(20.5rem, 82vw);
  max-width: 22rem;
  margin: 0;
  padding: 0.5rem 1.05rem 1.08rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(61, 42, 92, 0.65);
  background: rgba(26, 15, 46, 0.55);
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
/* Ebene-Nummern in den Kacheln (z. B. # 1.1, # 2.3) */
[data-concept-level-panel] .v2-concept-barrier {
  position: relative;
}
[data-concept-level-panel] .v2-concept-barrier::after {
  content: "# " attr(data-counter);
  position: absolute;
  right: 1.05rem;
  top: 0.55rem;
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #a78bfa;
  opacity: 0.95;
  pointer-events: none;
}
/* 1fr | auto | 1fr: Label centered, icon on left */
.v2-concept-barrier__head {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  column-gap: 0.65rem;
  margin: 0 0 0.55rem;
  flex-shrink: 0;
}
.v2-concept-barrier__head .v2-concept-barrier__label {
  grid-column: 2;
  justify-self: center;
  position: relative;
  z-index: 2;
  margin: 0;
  max-width: 100%;
  text-align: center;
  line-height: 1.22;
  text-wrap: balance;
}
/* Quadratische Quellen (z. B. 1024²): Basis ca. +20 % ggü. früher 56px */
.v2-concept-barrier__logo {
  grid-column: 1;
  justify-self: start;
  position: relative;
  z-index: 1;
  transform: translateX(-0.3rem);
  display: block;
  width: 68px;
  height: 68px;
  min-width: 68px;
  min-height: 68px;
  margin: 0;
  object-fit: contain;
  object-position: center;
  image-rendering: auto;
  image-rendering: high-quality;
}
/* 3:2-Barrier-Illustrationen (1536×1024): gleiche Höhe wie Quadrat, Breite 1,5× → gleiche visuelle „Größe“ */
.v2-concept-barrier__logo--landscape {
  width: 102px;
  min-width: 102px;
}
.v2-concept-barrier__quote {
  margin: 0 0 0.4rem;
  font-size: 0.98rem;
  font-style: italic;
  line-height: 1.45;
  color: var(--accent);
}
.v2-concept-barrier__quote:last-child {
  margin: 0;
  margin-top: auto;
  padding-top: 0.85rem;
  text-align: right;
  align-self: stretch;
}
.v2-concept-barrier__label {
  margin: 0 0 0.55rem;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.94);
}
.v2-concept-barrier ul {
  margin: 0;
  padding: 0;
  list-style: none;
  flex: 0 1 auto;
}
.v2-concept-barrier li {
  position: relative;
  margin: 0 0 0.4rem;
  padding-left: 0.85rem;
  font-size: 0.9rem;
  line-height: 1.52;
  color: var(--text-soft);
}
.v2-concept-barrier li:last-child {
  margin-bottom: 0;
}
.v2-concept-barrier li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.75;
}
.v2-concept-digital__part + .v2-concept-digital__part {
  margin-top: clamp(1.65rem, 3.2vw, 2.2rem);
  padding-top: clamp(1.4rem, 2.8vw, 1.85rem);
  border-top: 1px solid rgba(61, 42, 92, 0.55);
}
.v2-concept-digital__tag {
  margin: 0 0 0.65rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
}
.v2-concept-digital__part p:not(.v2-concept-digital__tag):not(.v2-concept-digital__emphasis) {
  margin: 0 0 0.85rem;
  max-width: 68ch;
  line-height: 1.62;
  color: var(--text-soft);
}
.v2-concept-digital__emphasis {
  margin: 0.35rem 0 0;
  max-width: 68ch;
  font-size: 1.02rem;
  line-height: 1.58;
  color: rgba(255, 255, 255, 0.93);
}

/* „Digitalisierung“ — dunkles Purple-Band (z. B. Daten verwalten / Vermögen erhalten) */
.v2-concept-digital--purple.v2-band {
  border-top: 1px solid rgba(61, 42, 92, 0.55);
  border-bottom: 1px solid rgba(61, 42, 92, 0.5);
  background: linear-gradient(168deg, #1e1233 0%, #150c24 38%, #0c0614 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.v2-concept-digital--purple .container > h2 {
  color: var(--text);
}
.v2-concept-digital--purple .v2-concept-digital__tag {
  color: var(--primary);
}
.v2-concept-digital--purple .v2-concept-digital__part p:not(.v2-concept-digital__tag):not(.v2-concept-digital__emphasis) {
  color: var(--text-soft);
}
.v2-concept-digital--purple .v2-concept-digital__emphasis {
  color: rgba(255, 255, 255, 0.94);
}
.v2-concept-digital--purple .v2-concept-digital__emphasis strong {
  color: var(--accent);
}
/* Digital Dual: Register — Tabs und Inhalt in derselben Spalte (2-Spalten-Layout) */
.v2-digital-dual__register {
  margin-top: clamp(0.45rem, 1.2vw, 0.65rem);
  display: flex;
  flex-direction: column;
  gap: clamp(0.65rem, 1.5vw, 0.95rem);
}
.v2-digital-dual__tabrow,
.v2-digital-dual__panelrow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  column-gap: clamp(1rem, 2.5vw, 1.75rem);
  align-items: start;
}
.v2-digital-dual__tabrow {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.v2-digital-dual__panelrow {
  row-gap: 0;
}
.v2-digital-dual__panel[data-digital-panel="problem"] {
  grid-column: 1;
}
.v2-digital-dual__panel[data-digital-panel="solution"] {
  grid-column: 2;
}
.v2-digital-dual__panel {
  min-width: 0;
}
.v2-digital-dual__panel .v2-concept-digital__part,
.v2-digital-dual__panel .v2-concept-digital__part p:not(.v2-concept-digital__emphasis),
.v2-digital-dual__panel .v2-concept-digital__emphasis {
  max-width: none;
}
.v2-digital-dual__tab {
  width: 100%;
  margin: 0;
  padding: 0.65rem 0.5rem 0.78rem;
  font: inherit;
  font-size: clamp(0.68rem, 1.35vw, 0.76rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.35;
  text-align: center;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.46);
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  border-radius: 0.45rem 0.45rem 0 0;
  transition: color 0.16s ease, border-color 0.16s ease, background 0.16s ease;
}
.v2-digital-dual__tab:hover {
  color: rgba(255, 255, 255, 0.78);
}
.v2-digital-dual__tab:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}
.v2-digital-dual__tab[aria-selected="true"] {
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
  border-bottom-color: var(--primary);
}
.v2-digital-dual__tab[aria-selected="false"] {
  color: rgba(255, 255, 255, 0.5);
}
@media (max-width: 640px) {
  .v2-digital-dual__panelrow {
    grid-template-columns: minmax(0, 1fr);
  }
  .v2-digital-dual__panel[data-digital-panel="problem"],
  .v2-digital-dual__panel[data-digital-panel="solution"] {
    grid-column: 1;
  }
}

/* Digital Dual: gemeinsames Outtro (volle Breite, unter Register + Spalten) */
.v2-concept-digital--purple .v2-concept-digital__shared-outtro {
  margin-top: clamp(1.2rem, 2.6vw, 1.75rem);
  padding-top: clamp(1rem, 2.1vw, 1.4rem);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  width: 100%;
  max-width: none;
  text-align: center;
}
.v2-concept-digital--purple .v2-concept-digital__shared-outtro-lead {
  margin: 0 auto;
  max-width: min(100%, 72ch);
  font-size: clamp(0.98rem, 1.48vw, 1.08rem);
  line-height: 1.62;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}
/* Barrier-Outtro: eine Zeile, volle nutzbare Breite im Container */
.v2-concept-digital--purple .v2-concept-digital__shared-outtro--barrier .v2-concept-digital__shared-outtro-lead {
  max-width: none;
  width: 100%;
}
/* Optional: Kicker noch im lila Band (z. B. andere Seiten) */
.v2-concept-digital--purple .v2-concept-digital__shared-outtro-kicker {
  margin: 0.55rem 0 0;
  font-size: clamp(1.34rem, 2.35vw, 2.02rem);
  line-height: 1.22;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--accent);
}
.v2-concept-digital--purple .v2-concept-digital__shared-outtro--result .v2-concept-digital__shared-outtro-lead {
  max-width: min(100%, 68ch);
}

/* Bridge: kurzer Kicker-Titel — deutlich über Standard-Bridge-Text */
.v2-section-bridge__text.v2-section-bridge__text--kicker {
  font-size: clamp(2.13rem, 3.7vw, 2.76rem);
  letter-spacing: -0.025em;
  line-height: 1.28;
  font-weight: 600;
}
.v2-section-bridge__text.v2-section-bridge__text--kicker strong {
  font-weight: 700;
}

.v2-concept-digital--purple.v2-reveal {
  opacity: 1;
  transform: none;
}

.v2-band h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
}
.v2-band.v2-legacy-transfer h2 {
  margin: 0 0 0.35rem;
  max-width: none;
  font-size: clamp(1.2rem, 2.2vw, 1.68rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.28;
  color: var(--text);
}
.v2-band p {
  margin: 0;
  max-width: 62ch;
  color: var(--text-soft);
  line-height: 1.6;
}
.v2-band.v2-concept-level2 > .container > .v2-concept-level2__lead {
  margin: 0 0 1.15rem;
  max-width: 65ch;
  font-size: 1.02rem;
  line-height: 1.62;
  color: var(--text-soft);
}
.v2-band.v2-concept-level2 > .container > .v2-concept-level2__outro {
  margin: clamp(1.35rem, 2.8vw, 1.9rem) 0 0;
  padding-top: clamp(1.15rem, 2.2vw, 1.5rem);
  border-top: 1px solid rgba(61, 42, 92, 0.55);
  max-width: 68ch;
  font-size: 0.98rem;
  line-height: 1.62;
  color: rgba(255, 255, 255, 0.88);
}

/* Bridge + Konzept (Ebene 1–2, Digitalisierung) auf hellem Band */
.v2-inaction-bridge.v2-band--light {
  padding-bottom: clamp(1.65rem, 3.8vw, 2.25rem);
}
.v2-inaction-bridge__lead {
  margin: 0;
  max-width: 62ch;
  font-size: 1.05rem;
  line-height: 1.65;
  color: #4b3d66;
}
.v2-inaction-bridge.v2-band--light + .v2-band--light,
.v2-band--light.v2-concept-level1 + .v2-band--light.v2-concept-level2 {
  border-top: none;
}

/* Konzept-Dual: zwei Ebenen im selben Band, Umschalter unten */
.v2-concept-dual__panel[hidden] {
  display: none !important;
}
.v2-concept-dual__toggle-wrap {
  margin-top: clamp(1.35rem, 2.8vw, 1.85rem);
  position: relative;
  width: 100%;
  min-height: 2.9rem;
  display: flex;
  justify-content: center;
}
.v2-concept-dual .v2-concept-dual__toggle {
  max-width: min(100%, 40rem);
  text-align: center;
  white-space: normal;
  line-height: 1.42;
  padding-inline: clamp(1rem, 3vw, 1.35rem);
}
.v2-concept-dual .v2-concept-dual__toggle-label {
  display: block;
}
.v2-concept-dual [data-show-on-intent="later"][hidden] {
  display: none !important;
}
.v2-concept-dual.has-intent-later .v2-concept-dual__side-cta {
  position: static;
  transform: none;
  max-width: min(100%, 24rem);
  width: min(100%, 24rem);
  white-space: normal;
  text-align: center;
  line-height: 1.35;
}
.v2-concept-dual.has-intent-later .v2-concept-dual__side-cta--left {
  order: 1;
  justify-self: start;
}
.v2-concept-dual.has-intent-later .v2-concept-dual__side-cta--right {
  order: 3;
  justify-self: end;
}
.v2-concept-dual.has-intent-later .v2-concept-dual__toggle {
  order: 2;
}
.v2-concept-dual.has-intent-later .v2-concept-dual__toggle-wrap {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  column-gap: clamp(0.7rem, 2vw, 1.2rem);
}
@media (max-width: 880px) {
  .v2-concept-dual.has-intent-later .v2-concept-dual__toggle-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.55rem;
  }
  .v2-concept-dual.has-intent-later .v2-concept-dual__side-cta {
    width: min(100%, 40rem);
  }
  .v2-concept-dual.has-intent-later .v2-concept-dual__side-cta--left,
  .v2-concept-dual.has-intent-later .v2-concept-dual__side-cta--right {
    justify-self: center;
  }
}

/* Theme-Ramp → helles Band (Inaction-Intro, Ebene 1/2): ohne doppelte Oberkante */
.v2-theme-ramp--to-light + .v2-inaction-bridge.v2-band--light,
.v2-theme-ramp--to-light + .v2-band--light.v2-concept-level1,
.v2-theme-ramp--to-light + .v2-band--light.v2-concept-level2 {
  border-top: none;
}
.v2-band--light.v2-concept-level1:has(+ .v2-section-bridge:not(.v2-section-bridge--dark)),
.v2-band--light.v2-concept-level2:has(+ .v2-section-bridge:not(.v2-section-bridge--dark)) {
  border-bottom: none;
}
.v2-section-bridge:not(.v2-section-bridge--dark) + .v2-concept-digital.v2-concept-digital--purple {
  border-top: none;
}
.v2-concept-digital--purple + .v2-section-bridge--dark {
  border-top: none;
}
.v2-band--light .v2-concept-barrier {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(124, 58, 237, 0.22);
  box-shadow: 0 6px 22px rgba(45, 27, 78, 0.06);
}
.v2-band--light .v2-concept-barrier__quote {
  color: #6d28d9;
}
.v2-band--light .v2-concept-barrier__label {
  color: #1a0f2e;
}
.v2-band--light .v2-concept-barrier li {
  color: #534668;
}
.v2-band--light .v2-concept-digital__part + .v2-concept-digital__part {
  border-top-color: rgba(124, 58, 237, 0.22);
}
.v2-band--light .v2-concept-digital__part p:not(.v2-concept-digital__tag):not(.v2-concept-digital__emphasis) {
  color: #534668;
}
.v2-band--light .v2-concept-digital__emphasis {
  color: #241538;
}
.v2-band--light .v2-concept-digital__tag {
  color: #5b21b6;
}
.v2-band--light.v2-concept-level2 > .container > .v2-concept-level2__lead {
  color: #534668;
}
.v2-band--light.v2-concept-level2 > .container > .v2-concept-level2__outro {
  color: #4b3d66;
  border-top-color: rgba(124, 58, 237, 0.22);
}
.v2-cards {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.v2-card {
  border-radius: 0.9rem;
  border: 1px solid var(--line);
  padding: 1.1rem;
  background: var(--surface);
}
.v2-card__head {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.45rem;
}
.v2-card__head img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  object-position: center;
  image-rendering: auto;
  image-rendering: high-quality;
}
/* Erbrecht-Prinzipkarten: einheitliche quadratische Icon-Fläche (alle Assets 1:1, gleiche CSS-Box). */
.v2-band--light .v2-erbrecht__facts .v2-card__head img,
.v2-erbrecht__facts .v2-card__head img {
  width: 3rem;
  height: 3rem;
  min-width: 3rem;
  min-height: 3rem;
  max-width: 3rem;
  max-height: 3rem;
  aspect-ratio: 1;
  flex-shrink: 0;
  object-fit: contain;
  object-position: center;
}
.v2-card h3 {
  margin: 0;
  font-size: 1rem;
}
.v2-card p {
  margin: 0;
  font-size: 0.94rem;
}

.v2-erbrecht__toolbar {
  margin-top: 1.35rem;
  display: flex;
  justify-content: center;
  width: 100%;
}
.v2-erbrecht__flags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
}
.v2-band--light .v2-erbrecht__flags {
  perspective: 640px;
}
.v2-erbrecht__flag {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.12rem;
  min-width: 3.1rem;
  padding: 0.38rem 0.45rem 0.32rem;
  border-radius: 0.55rem;
  border: 1px solid rgba(124, 58, 237, 0.28);
  background: rgba(255, 255, 255, 0.75);
  color: #2d1b4e;
  font: inherit;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.v2-erbrecht__flag::before {
  content: "";
  width: 1.35rem;
  height: 1rem;
  border-radius: 0.12rem;
  border: 1px solid rgba(0, 0, 0, 0.16);
  box-shadow: inset 0 0 0 0.5px rgba(255, 255, 255, 0.35);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.v2-erbrecht__flag[data-jurisdiction="de"]::before {
  background-image: linear-gradient(to bottom, #111 0 33.33%, #dd0000 33.33% 66.66%, #ffce00 66.66% 100%);
}
.v2-erbrecht__flag[data-jurisdiction="fr"]::before {
  background-image: linear-gradient(to right, #0055a4 0 33.33%, #ffffff 33.33% 66.66%, #ef4135 66.66% 100%);
}
.v2-erbrecht__flag[data-jurisdiction="it"]::before {
  background-image: linear-gradient(to right, #009246 0 33.33%, #ffffff 33.33% 66.66%, #ce2b37 66.66% 100%);
}
.v2-erbrecht__flag[data-jurisdiction="es"]::before {
  background-image: linear-gradient(to bottom, #aa151b 0 25%, #f1bf00 25% 75%, #aa151b 75% 100%);
}
.v2-erbrecht__flag[data-jurisdiction="uk"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 30'%3E%3Crect width='60' height='30' fill='%23012169'/%3E%3Cpath d='M0,0 L60,30 M60,0 L0,30' stroke='%23ffffff' stroke-width='6'/%3E%3Cpath d='M0,0 L60,30 M60,0 L0,30' stroke='%23C8102E' stroke-width='3.2'/%3E%3Crect x='24' width='12' height='30' fill='%23ffffff'/%3E%3Crect y='9' width='60' height='12' fill='%23ffffff'/%3E%3Crect x='26' width='8' height='30' fill='%23C8102E'/%3E%3Crect y='11' width='60' height='8' fill='%23C8102E'/%3E%3C/svg%3E");
}
.v2-erbrecht__flag[data-jurisdiction="us"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 19 10'%3E%3Crect width='19' height='10' fill='%23fff'/%3E%3Cg fill='%23B22234'%3E%3Crect y='0' width='19' height='0.77'/%3E%3Crect y='1.54' width='19' height='0.77'/%3E%3Crect y='3.08' width='19' height='0.77'/%3E%3Crect y='4.62' width='19' height='0.77'/%3E%3Crect y='6.16' width='19' height='0.77'/%3E%3Crect y='7.70' width='19' height='0.77'/%3E%3Crect y='9.24' width='19' height='0.76'/%3E%3C/g%3E%3Crect width='7.6' height='5.4' fill='%233C3B6E'/%3E%3C/svg%3E");
}
.v2-erbrecht__flag:hover {
  border-color: rgba(124, 58, 237, 0.5);
  background: rgba(255, 255, 255, 0.95);
}
.v2-erbrecht__flag.is-active {
  border-color: rgba(91, 33, 182, 0.65);
  background: rgba(124, 58, 237, 0.12);
  box-shadow: 0 0 0 1px rgba(124, 58, 237, 0.2);
}
.v2-erbrecht__flag:focus-visible {
  outline: 2px solid #7c3aed;
  outline-offset: 2px;
}
.v2-erbrecht__flag-emoji {
  display: none;
}
.v2-erbrecht__flag-code {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #534668;
}

.v2-band--light .v2-erbrecht__flag {
  transform: rotateX(2deg);
  transform-style: preserve-3d;
  transition:
    border-color 0.15s ease,
    background 0.15s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
  box-shadow:
    0 6px 16px rgba(45, 27, 78, 0.08),
    0 2px 6px rgba(45, 27, 78, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    inset 0 -1px 0 rgba(124, 58, 237, 0.06);
}
@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .v2-band--light .v2-erbrecht__flag:hover {
    transform: rotateX(0deg) translateY(-2px);
    box-shadow:
      0 10px 22px rgba(45, 27, 78, 0.11),
      0 3px 10px rgba(45, 27, 78, 0.05),
      inset 0 1px 0 rgba(255, 255, 255, 1),
      inset 0 -1px 0 rgba(124, 58, 237, 0.08);
  }
}
.v2-band--light .v2-erbrecht__flag.is-active {
  transform: rotateX(0.5deg) translateY(-1px);
  box-shadow:
    0 0 0 1px rgba(124, 58, 237, 0.28),
    0 8px 20px rgba(45, 27, 78, 0.09),
    0 2px 8px rgba(45, 27, 78, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    inset 0 -1px 0 rgba(124, 58, 237, 0.1);
}
@media (prefers-reduced-motion: reduce) {
  .v2-band--light .v2-erbrecht__flag,
  .v2-band--light .v2-erbrecht__flag:hover,
  .v2-band--light .v2-erbrecht__flag.is-active {
    transform: none;
  }
}

.v2-erbrecht__slot {
  font-weight: 600;
  color: inherit;
}
.v2-band--light .v2-erbrecht__slot {
  color: #382952;
}
/* Sternchen als Fußnotenzeichen, nicht als Hervorhebung (kein Fett). */
.v2-erbrecht__fn-star {
  font-weight: 400;
}
.v2-erbrecht__facts {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr));
  gap: 1rem;
}
.v2-erbrecht__facts .v2-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  align-items: stretch;
}
.v2-erbrecht__facts .v2-card p {
  max-width: none;
  line-height: 1.55;
  color: var(--text-soft);
}
.v2-erbrecht__card-foot {
  margin-top: auto;
  align-self: flex-start;
  padding-top: 0.8rem;
}
.v2-erbrecht__knew-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  font-size: 0.8125rem;
  line-height: 1.3;
  user-select: none;
}
.v2-band--light .v2-erbrecht__knew-label {
  color: #5c4d75;
}
.v2-erbrecht__knew-input {
  width: 1rem;
  height: 1rem;
  margin: 0;
  flex-shrink: 0;
  accent-color: #7c3aed;
  border-radius: 0.2rem;
}
.v2-erbrecht__knew-text {
  font-weight: 500;
}

/* Aktive Erbrecht-Kacheln: nur statischer Schatten — kein 3D/Hover (Transform → unscharfe Schrift). */
.v2-band--light .v2-erbrecht__facts .v2-card:not(.is-erbrecht-inactive) {
  box-shadow:
    0 12px 32px rgba(45, 27, 78, 0.1),
    0 4px 12px rgba(45, 27, 78, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.98),
    inset 0 -1px 0 rgba(124, 58, 237, 0.07);
}

.v2-erbrecht__facts .v2-card.is-erbrecht-inactive {
  pointer-events: none;
  user-select: none;
  transform: none;
  box-shadow: none;
  border-style: dashed;
}
.v2-erbrecht__facts .v2-card.is-erbrecht-inactive .v2-card__head,
.v2-erbrecht__facts .v2-card.is-erbrecht-inactive > p,
.v2-erbrecht__facts .v2-card.is-erbrecht-inactive .v2-erbrecht__card-foot {
  visibility: hidden;
}
.v2-band--light .v2-erbrecht__facts .v2-card.is-erbrecht-inactive {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(124, 58, 237, 0.28);
}

/* Haftung: bei UK und US (Common Law) Fließtext stark zurücknehmen (Überschrift unverändert).
   Hohe Spezifität + ID, damit nichts von .v2-band--light .v2-card … überschreibt. */
.v2-band--light .v2-erbrecht__facts #erbrecht-card-haftung.is-erbrecht-liability-uk-muted > p {
  opacity: 0.28;
  filter: grayscale(0.88);
  transition: opacity 0.22s ease, filter 0.22s ease;
}
.v2-band--light .v2-erbrecht__facts #erbrecht-card-haftung.is-erbrecht-liability-uk-muted > p strong,
.v2-band--light .v2-erbrecht__facts #erbrecht-card-haftung.is-erbrecht-liability-uk-muted > p .v2-erbrecht__slot {
  color: rgba(36, 21, 56, 0.42);
}
@media (prefers-reduced-motion: reduce) {
  .v2-band--light .v2-erbrecht__facts #erbrecht-card-haftung.is-erbrecht-liability-uk-muted > p {
    transition: none;
  }
}
.v2-erbrecht__callout {
  margin-top: 1.5rem;
  padding: 1rem 1.15rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(167, 139, 250, 0.35);
  background: rgba(36, 21, 56, 0.65);
}
.v2-erbrecht__callout h3 {
  margin: 0 0 0.45rem;
  font-size: 1rem;
  color: var(--accent);
}
.v2-erbrecht__callout p {
  margin: 0;
  max-width: 70ch;
  font-size: 0.94rem;
  line-height: 1.55;
  color: var(--text-soft);
}
.v2-erbrecht__callout.is-erbrecht-inactive {
  pointer-events: none;
  user-select: none;
  border-style: dashed;
}
.v2-erbrecht__callout.is-erbrecht-inactive > h3,
.v2-erbrecht__callout.is-erbrecht-inactive > p {
  visibility: hidden;
}
.v2-band--light .v2-erbrecht__callout.is-erbrecht-inactive {
  background: rgba(124, 58, 237, 0.08);
  border-color: rgba(124, 58, 237, 0.28);
}
.v2-band .v2-erbrecht__disclaimer {
  margin: 1.25rem 0 0;
  font-size: 0.82rem;
  line-height: 1.5;
  max-width: none;
  width: 100%;
  text-align: center;
}

/* —— Reveal on scroll (simple) —— */
.v2-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.65s ease;
}
@media (prefers-reduced-motion: reduce) {
  .v2-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.v2-reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

/* Konzept-Dual: nicht per Scroll-Reveal ausblenden (Panels + Umschalter sofort sichtbar) */
.v2-concept-dual.v2-reveal {
  opacity: 1;
  transform: none;
}

/* —— CTA strip —— */
.v2-cta-strip {
  padding: 2.25rem 0;
  background: linear-gradient(90deg, rgba(124, 58, 237, 0.2) 0%, transparent 55%),
    var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.v2-cta-strip__inner {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 1rem;
}
.v2-cta-strip--headline-align .v2-cta-strip__inner {
  align-items: flex-start;
}
.v2-cta-strip--headline-align .v2-cta-strip__inner > .v2-btn {
  margin-top: 0.2rem;
}
.v2-cta-strip__text {
  flex: 1 1 0;
  min-width: 0;
}
.v2-cta-strip__inner > .v2-btn {
  flex-shrink: 0;
}
.v2-cta-strip__inner > .v2-btn--ghost {
  border-color: rgba(196, 181, 253, 0.85);
  color: #faf7ff;
  background: linear-gradient(150deg, rgba(124, 58, 237, 0.55) 0%, rgba(91, 33, 182, 0.72) 55%, rgba(76, 29, 149, 0.78) 100%);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1), 0 10px 32px rgba(124, 58, 237, 0.42);
}
.v2-cta-strip__inner > .v2-btn--ghost:hover {
  border-color: #ddd6fe;
  color: #ffffff;
  background: linear-gradient(150deg, rgba(139, 92, 246, 0.72) 0%, rgba(109, 40, 217, 0.88) 50%, rgba(91, 33, 182, 0.92) 100%);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.14), 0 14px 40px rgba(124, 58, 237, 0.55);
  filter: brightness(1.06);
  transform: translateY(-1px);
}
.v2-cta-strip__inner > .v2-btn--ghost:focus-visible {
  outline: 2px solid rgba(196, 181, 253, 0.95);
  outline-offset: 3px;
}
@media (prefers-reduced-motion: reduce) {
  .v2-cta-strip__inner > .v2-btn--ghost:hover {
    transform: none;
  }
}
.v2-cta-strip h2 {
  max-width: 100%;
}
.v2-cta-strip p {
  margin: 0.25rem 0 0;
  color: var(--text-soft);
  font-size: 0.95rem;
  max-width: 100%;
}

/* —— Footer —— */
.v2-footer {
  padding: 2rem 0 2.5rem;
}
.v2-footer__grid {
  display: block;
}
.v2-footer__primary {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: center;
  text-align: center;
}
.v2-footer__disclaimer {
  margin: 0 auto;
  width: 100%;
}
.v2-footer__disclaimer p {
  font-size: 0.86rem;
  color: var(--text-soft);
  line-height: 1.45;
  margin: 0;
}
.v2-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.45rem;
  font-size: 0.88rem;
  color: var(--text-soft);
}
.v2-footer__legal a:hover {
  color: var(--accent);
}

/* Firefox/VM repaint mitigation:
   sticky + backdrop blur + heavy transforms can flicker in virtualized GPUs. */
@supports (-moz-appearance: none) {
  .v2-header {
    backdrop-filter: none;
    background: rgba(12, 6, 20, 0.92);
  }
  .v2-scrolly__step,
  .v2-scrolly__step.is-active,
  .v2-approaches-layout__icon,
  .v2-approaches-layout__icon.is-active,
  .v2-critical-rails__scroll-hint,
  .v2-scrolly__flow-hint {
    transition: none;
    animation: none !important;
    transform: none;
  }
}

@media (max-width: 880px) {
  .v2-header__inner {
    grid-template-columns: auto auto auto;
    grid-template-rows: auto auto;
    row-gap: 0.5rem;
    column-gap: 0.55rem;
    align-items: center;
  }
  .v2-home-link {
    grid-column: 1;
    grid-row: 1;
    width: 2.6rem;
    height: 2.6rem;
  }
  .v2-home-link svg {
    width: 1.25rem;
    height: 1.25rem;
  }
  .v2-help-link {
    grid-column: 2;
    grid-row: 1;
    width: 2.6rem;
    height: 2.6rem;
  }
  .v2-help-link--icon svg {
    width: 1.25rem;
    height: 1.25rem;
  }
  .v2-lang-wrap {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
  }
  .v2-header__inner > .v2-pillar-nav {
    grid-column: 1 / -1;
    grid-row: 2;
  }
  .v2-pillar-nav__title {
    font-size: 0.94rem;
    margin-bottom: 0.2rem;
  }
  .v2-pillar-nav__sub a {
    font-size: 0.82rem;
    line-height: 1.32;
  }
  .v2-pillar-nav__sep {
    font-size: clamp(1.15rem, 5.3vw, 1.45rem);
  }
  #notwendigkeit.v2-hero--impact .v2-hero__impact-grid,
  #necessity.v2-hero--impact .v2-hero__impact-grid {
    grid-template-columns: 1fr;
  }
  .v2-chain__inner {
    --v2-chain-box-w: 100%;
  }
  .v2-chain__title,
  .v2-chain__step {
    width: 100%;
  }
  .v2-chain__row--line {
    display: block;
  }
  .v2-chain__row--line::before,
  .v2-chain__flow {
    display: none;
  }
  .v2-cta-strip--headline-align .v2-cta-strip__inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .v2-cta-strip--headline-align .v2-cta-strip__inner > .v2-btn {
    margin-top: 0.55rem;
  }
  .v2-vermoegen-hero {
    --sat-box-width: minmax(0, 1fr);
    --sat-box-height: auto;
    --sat-offset-x: 0;
    --sat-offset-y: 0;
  }
  .v2-vermoegen-hero__subheads {
    grid-template-columns: auto auto auto;
    gap: 0.3rem;
    justify-content: center;
    margin-bottom: 0.55rem;
  }
  .v2-vermoegen-hero__subhead {
    white-space: nowrap;
    font-size: clamp(0.92rem, 2.7vw, 1rem);
  }
  .v2-vermoegen-hero__orbit-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-rows: auto auto;
    grid-template-areas:
      "sat-tl sat-tr"
      "sat-bl sat-br";
    gap: 0.55rem;
    padding: 0.9rem 0.3rem;
  }
  .v2-vermoegen-hero__sat {
    width: auto;
    max-width: none;
    min-height: 3.2rem;
    padding: 0.48rem 0.55rem;
    font-size: clamp(0.74rem, 2.25vw, 0.86rem);
    line-height: 1.3;
    margin: 0;
  }
  .v2-vermoegen-hero__sat--tl,
  .v2-vermoegen-hero__sat--tr,
  .v2-vermoegen-hero__sat--bl,
  .v2-vermoegen-hero__sat--br {
    justify-self: stretch;
    align-self: stretch;
  }
  .v2-vermoegen-hero__hub {
    display: none;
  }
  .v2-vermoegen-hero__wires {
    display: none;
  }
  .v2-hero__grid,
  .v2-scrolly__grid,
  .v2-cards {
    grid-template-columns: 1fr;
  }
  .v2-scrolly__media {
    aspect-ratio: 16/10;
    max-height: 42vh;
  }
  .v2-scrolly__media--approaches {
    grid-template-columns: 1fr;
    grid-template-areas:
      "icons-top"
      "panel"
      "icons-bottom";
    aspect-ratio: auto;
    max-height: none;
    gap: 0.65rem;
  }
  .v2-approaches-layout__icons {
    grid-auto-flow: column;
    grid-auto-columns: minmax(0, 1fr);
    justify-content: center;
    height: auto;
  }
  .v2-approaches-layout__icons--left,
  .v2-approaches-layout__icons--right {
    grid-template-rows: none;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .v2-approaches-layout__icon {
    height: clamp(2.9rem, 11vw, 3.5rem);
  }
  .v2-approaches-layout__icons--left {
    grid-area: icons-top;
    order: 1;
  }
  .v2-approaches-layout__panel {
    grid-area: panel;
    order: 2;
    min-height: 0;
  }
  .v2-approaches-layout__icons--right {
    grid-area: icons-bottom;
    order: 3;
  }
  .v2-scrolly--approaches .v2-scrolly__flow-hint--up {
    top: clamp(3.2rem, 12vw, 4.4rem);
  }
  .v2-scrolly--approaches .v2-scrolly__trigger {
    height: 30vh;
  }
  /* On mobile: shorter triggers for snappier feel */
  .v2-scrolly__trigger {
    height: 85vh;
  }
}

/* —— Newsletter dialog (native <dialog>) —— */
/* Closed <dialog> must stay out of layout: UA uses display:none, but author
   "display:flex" would override it and paint the panel after the footer. */
.v2-newsletter-dialog[open] {
  display: flex;
  align-items: center;
  justify-content: center;
}
.v2-newsletter-dialog {
  margin: 0;
  padding: 2rem 1.25rem;
  border: none;
  background: transparent;
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  box-sizing: border-box;
}
.v2-newsletter-dialog:not([open]) {
  display: none !important;
}
.v2-newsletter-dialog::backdrop {
  background: rgba(15, 10, 28, 0.55);
  backdrop-filter: blur(4px);
}
.v2-newsletter-dialog--next::backdrop {
  background: rgba(45, 35, 72, 0.28);
  backdrop-filter: blur(3px);
}
.v2-newsletter-dialog__panel {
  position: relative;
  width: min(calc(28rem * 1.1), 100%);
  padding: 1.5rem 1.4rem 1.35rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.38);
}
.v2-newsletter-dialog__close {
  position: absolute;
  top: 0.55rem;
  right: 0.45rem;
  width: 2.25rem;
  height: 2.25rem;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  color: var(--text-soft);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  border-radius: 0.35rem;
}
.v2-newsletter-dialog__close:hover {
  color: var(--accent);
  background: rgba(124, 58, 237, 0.08);
}
.v2-newsletter-dialog__title {
  margin: 0 2rem 1.1rem 0;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
}
.v2-newsletter-dialog__lead {
  margin: 0 0 1.15rem;
  font-size: 0.92rem;
  color: var(--text-soft);
  line-height: 1.55;
}
.v2-newsletter-dialog__lead p {
  margin: 0 0 0.55rem;
  font-size: inherit;
  color: inherit;
  line-height: inherit;
}
.v2-newsletter-dialog__lead p:last-child {
  margin-bottom: 0;
}
.v2-newsletter-dialog__field {
  margin-bottom: 0.85rem;
}
.v2-newsletter-dialog__field label {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-soft);
}
.v2-newsletter-dialog__field input[type="email"],
.v2-newsletter-dialog__field input[type="text"] {
  width: 100%;
  box-sizing: border-box;
  padding: 0.55rem 0.65rem;
  font-size: 0.95rem;
  border-radius: 0.45rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}
.v2-newsletter-dialog__field input[type="email"]:focus-visible,
.v2-newsletter-dialog__field input[type="text"]:focus-visible {
  outline: 2px solid rgba(124, 58, 237, 0.55);
  outline-offset: 2px;
}
.v2-newsletter-dialog__data-note {
  margin: 0 0 0.85rem;
  font-size: 0.82rem;
  color: var(--text-soft);
  line-height: 1.45;
}
.v2-newsletter-dialog__form-error {
  margin: 0.75rem 0 0;
  font-size: 0.88rem;
  line-height: 1.45;
  color: #9f1239;
}
.v2-newsletter-dialog__form-error[hidden] {
  display: none !important;
}
.v2-newsletter-dialog__remind-note {
  margin: 0.65rem 0 0;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--text-soft);
}
.v2-newsletter-dialog__field--check {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  margin-top: 1rem;
}
.v2-newsletter-dialog__field--check input[type="checkbox"] {
  width: 1.05rem;
  height: 1.05rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}
.v2-newsletter-dialog__consent-col {
  flex: 1;
  min-width: 0;
}
.v2-newsletter-dialog__privacy-panel {
  margin-top: 0.65rem;
  padding: 0.75rem 0.85rem;
  border-radius: 0.45rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}
.v2-newsletter-dialog__privacy-panel p {
  margin: 0 0 0.45rem;
  font-size: 0.82rem;
  color: var(--text-soft);
  line-height: 1.45;
}
.v2-newsletter-dialog__privacy-panel p:last-child {
  margin-bottom: 0;
}
.v2-newsletter-dialog__privacy-panel a {
  color: var(--accent);
}
.v2-newsletter-dialog__consent-label {
  font-size: 0.86rem;
  font-weight: 400;
  color: var(--text-soft);
  line-height: 1.45;
}
.v2-newsletter-dialog__consent-label a,
.v2-newsletter-dialog__privacy-link {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.12em;
}
.v2-newsletter-dialog__privacy-link {
  cursor: pointer;
  display: inline-block;
  padding: 0.12rem 0.28rem 0.1rem;
  margin: -0.12rem -0.28rem -0.1rem;
  border-radius: 0.35rem;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.v2-newsletter-dialog__privacy-link::before {
  content: "\25B6";
  display: inline-block;
  font-size: 0.62em;
  vertical-align: 0.08em;
  margin-right: 0.35em;
  text-decoration: none;
}
.v2-newsletter-dialog__privacy-link.is-open::before {
  content: "\25BC";
}
.v2-newsletter-dialog__privacy-link:hover {
  background: rgba(124, 58, 237, 0.12);
  text-decoration-thickness: 0.12em;
}
.v2-newsletter-dialog__privacy-link:focus-visible {
  outline: 2px solid rgba(124, 58, 237, 0.55);
  outline-offset: 2px;
  border-radius: 0.2rem;
}
.v2-newsletter-dialog__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: flex-end;
  margin-top: 1.15rem;
}
.v2-newsletter-dialog__actions .v2-btn--primary:disabled {
  opacity: 0.48;
  cursor: not-allowed;
}

/* Newsletter dialog: next-steps (lighter theme) */
.v2-newsletter-dialog--next .v2-newsletter-dialog__panel {
  background: linear-gradient(165deg, #fdfcff 0%, #f4f0ff 42%, #ebe4fb 100%);
  border-color: rgba(124, 58, 237, 0.22);
  box-shadow: 0 18px 48px rgba(45, 27, 78, 0.14);
}
.v2-newsletter-dialog--next .v2-newsletter-dialog__close {
  color: #5c4d78;
}
.v2-newsletter-dialog--next .v2-newsletter-dialog__close:hover {
  color: #5b21b6;
  background: rgba(124, 58, 237, 0.1);
}
.v2-newsletter-dialog__next {
  padding-right: 0.25rem;
}
.v2-newsletter-dialog__next-kicker {
  margin: 0 2rem 0.35rem 0;
  font-size: 0.95rem;
  font-style: italic;
  font-weight: 500;
  color: #6d28d9;
  letter-spacing: 0.01em;
}
.v2-newsletter-dialog__next-title {
  margin: 0 2rem 1rem 0;
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.35;
  color: #1a0f2e;
}
.v2-newsletter-dialog__next-email-block p,
.v2-newsletter-dialog__next-remind-block p {
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: #43355c;
}
.v2-newsletter-dialog__next-email-block p:last-child,
.v2-newsletter-dialog__next-remind-block p:last-child {
  margin-bottom: 0;
}
.v2-newsletter-dialog__next-remind-block {
  margin-top: 1.15rem;
  padding-top: 1.05rem;
  border-top: 1px solid rgba(124, 58, 237, 0.16);
}
.v2-newsletter-dialog__next-error {
  margin: 0.85rem 2rem 0 0;
  font-size: 0.88rem;
  line-height: 1.45;
  color: #9f1239;
}
.v2-newsletter-dialog__next-error[hidden] {
  display: none !important;
}
.v2-newsletter-dialog__next-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.25rem;
}
.v2-newsletter-dialog__next-actions .v2-btn {
  flex: 1 1 12rem;
  min-width: min(100%, 11rem);
  justify-content: center;
}
.v2-newsletter-dialog--next .v2-newsletter-dialog__next-actions .v2-btn {
  border: 1px solid rgba(124, 58, 237, 0.35);
  color: #5b21b6;
  background: rgba(255, 255, 255, 0.55);
}
.v2-newsletter-dialog--next .v2-newsletter-dialog__next-actions .v2-btn:hover {
  border-color: rgba(124, 58, 237, 0.55);
  background: rgba(255, 255, 255, 0.85);
}
.v2-newsletter-dialog--next .v2-newsletter-dialog__next-actions .v2-btn:focus-visible {
  outline: 2px solid rgba(124, 58, 237, 0.55);
  outline-offset: 2px;
}
