/* ============================================================
   SMART-MENTOR — Startseite (home.css)
   Layout- und Bildsprache nach dem Referenzentwurf.
   Baut auf style.css auf: Tokens, Schriften, Buttons, Nav,
   Formulare und Motion werden von dort übernommen; hier stehen
   nur die Bausteine, die diese Variante zusätzlich braucht.
   ============================================================ */

:root {
  --vb-cream:   #F6F2EA;   /* wärmer als --paper, wie im Entwurf */
  --vb-cream-2: #FFFFFF;
  --vb-line:    #E6DFD2;
  --vb-gold-grad: linear-gradient(100deg, #7B5820 0%, #C99B4A 42%, #E8A93C 72%, #F2C25C 100%);
}

.vb-cream { background: var(--vb-cream); color: var(--tx-on-paper); }
.vb-ink   { background: var(--ink-900);  color: var(--tx-on-dark); }

/* style.css richtet seine Textfarben an .section--paper aus. Die Variante nutzt
   eine eigene Flächenklasse, also müssen die hellen Rollen hier wiederholt
   werden — sonst erbt Fließtext die Farbwerte für dunkle Flächen. */
.vb-cream .lede,
.vb-cream .body-txt   { color: var(--tx-on-paper-mid); }
.vb-cream .fine       { color: var(--tx-on-paper-low); }
.vb-cream .eyebrow,
.vb-cream .accent,
.vb-cream .link-arrow { color: var(--gold-700); }

/* Zentrierter Sektionskopf im Stil des Entwurfs */
/* in rem, nicht ch: ch bezieht sich auf die Container-Schrift, nicht auf die H2 */
.vb-head { text-align: center; max-width: 38rem; margin-inline: auto; }
.vb-head .eyebrow { justify-content: center; }
.vb-head .lede { margin-inline: auto; }

.vb-eyebrow {
  display: block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 1.1rem;
}
.vb-cream .vb-eyebrow { color: var(--gold-700); }

/* Ikonen aus dem generierten Set */
.ic {
  width: 1.75rem;
  height: 1.75rem;
  fill: currentColor;
  flex: none;
}
.ic--lg { width: 2.25rem; height: 2.25rem; }
.ic--sm { width: 1.25rem; height: 1.25rem; }


/* ── Hero ──────────────────────────────────────────────── */

.vb-hero {
  position: relative;
  background: var(--ink-900);
  padding-top: calc(var(--nav-h) + clamp(2.5rem, 5vw, 4.5rem));
  padding-bottom: clamp(3rem, 6vw, 5rem);
  overflow: hidden;
  isolation: isolate;
}

/* Bild als Ebene hinter dem Text, ohne Kante: zwei Masken (horizontal und
   vertikal) lösen es zu allen Seiten in den schwarzen Grund auf. Die warme
   Farbe kommt aus dem Motiv selbst, nicht aus einem zusätzlichen Verlauf. */
.vb-hero__media {
  position: absolute;
  z-index: -1;
  top: 0; right: 0; bottom: 0;
  width: min(66%, 900px);
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, #000 34%, #000 100%),
    linear-gradient(180deg, transparent 0%, #000 12%, #000 78%, transparent 100%);
  mask-image:
    linear-gradient(90deg, transparent 0%, rgba(0,0,0,.35) 26%, #000 48%, #000 100%),
    linear-gradient(180deg, transparent 0%, #000 12%, #000 78%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
}
.vb-hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 12%;
}
/* Restwärme, damit der Verlauf zum Text hin nicht kalt abbricht */
.vb-hero::before {
  content: '';
  position: absolute;
  z-index: -2;
  right: 10%; top: -10%;
  width: 70vw; aspect-ratio: 1;
  background: radial-gradient(circle at center,
              rgba(232,120,32,.22) 0%, rgba(201,120,44,.08) 40%, rgba(201,120,44,0) 68%);
  pointer-events: none;
}

.vb-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 56%) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
  min-height: min(72vh, 760px);
}

.vb-hero h1 { margin-bottom: 1.25rem; }
.vb-hero .lede { max-width: 46ch; margin-top: 0; }

/* Drei Kennzahlen-Karten */
.vb-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: .75rem;
  margin: 2rem 0 2.25rem;
  max-width: 620px;
}
.vb-stat {
  border: 1px solid var(--line-dark-strong);
  border-radius: var(--r-md);
  background: rgba(10,10,11,.62);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 1rem 1.05rem;
}
.vb-stat__top { display: flex; align-items: center; gap: .55rem; margin-bottom: .5rem; }
.vb-stat__top svg { color: var(--gold-500); }
.vb-stat__k {
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -.02em;
  line-height: 1;
}
.vb-stat__l {
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--tx-on-dark-mid);
  display: block;
  margin-bottom: .35rem;
}
.vb-stat p { font-size: .82rem; line-height: 1.45; color: var(--tx-on-dark-low); }


/* ── Problem: Kopf links, Karten rechts ────────────────── */

/* Kopf über den Karten statt daneben: vier Karten nebeneinander brauchen die
   volle Breite, sonst laufen die Überschriften auf drei Zeilen. */
.vb-split { display: grid; gap: clamp(2rem, 4vw, 3.25rem); }
.vb-split__head { max-width: 40ch; }
.vb-split__head .lede { max-width: 62ch; }

.vb-cards-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: .9rem;
}
.vb-cards-4 .vb-card { padding: 1.5rem 1.15rem; }
.vb-cards-4 .vb-card h3 { text-wrap: balance; }
.vb-card {
  background: var(--vb-cream-2);
  border: 1px solid var(--vb-line);
  border-radius: var(--r-lg);
  padding: 1.5rem 1.25rem;
  text-align: center;
  box-shadow: 0 1px 2px rgba(30,22,10,.04), 0 10px 26px rgba(30,22,10,.05);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
}
.vb-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold-300);
  box-shadow: 0 2px 4px rgba(30,22,10,.05), 0 18px 40px rgba(30,22,10,.09);
}
.vb-card__ic {
  display: grid;
  place-items: center;
  margin: 0 auto 1rem;
  color: var(--gold-600);
}
.vb-card h3 {
  font-size: .98rem;
  font-weight: 600;
  letter-spacing: -.012em;
  margin-bottom: .5rem;
}
.vb-card p { font-size: .855rem; line-height: 1.55; color: var(--tx-on-paper-mid); }


/* Zentrierte Notiz unter den drei Schritten */
.mech-note--center {
  margin-inline: auto;
  justify-content: center;
  text-align: center;
  max-width: 60ch;
}

/* Fünf Menüpunkte plus Login und CTA brauchen mehr als 900px */
@media (max-width: 1100px) {
  .nav__links { display: none; }
  .nav__actions .btn--ghost { display: none; }
  .nav__burger { display: grid; }
  .nav__inner { justify-content: space-between; gap: 1rem; }
}

/* ── Glut und Funkenflug — immer hinter der Schrift ───────
   embers-v4.js legt eine feste Ebene hinter alles und je eine Ebene in jede
   helle Sektion [data-embers]. Dunkle Sektionen sind durchsichtig (der body
   trägt das Schwarz), helle Sektionen legen ihren Inhalt über die eigene
   Ebene. So liegt kein Funke je über Text. */
body { background: var(--ink-900); }
.embers { pointer-events: none; }
.embers--fixed { position: fixed; inset: 0; z-index: 0; }
.embers--section { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; }

main, .footer, .nav { position: relative; z-index: 1; }
/* dunkle Sektionen lassen die feste Ebene durch */
.vb-hero, .vb-ink, .vb-pain, .vb-coach, .vb-final, .footer { background: transparent; }
.vb-hero::before { z-index: -1; }
.vb-step, .vb-pain__item { background-color: var(--ink-850); }
.vb-cmp__card:not(.vb-cmp__card--gold) { background-color: #16110F; }
/* helle Sektionen: eigene Ebene hinter dem Inhalt */
[data-embers] { position: relative; }
[data-embers] > .wrap { position: relative; z-index: 2; }

/* ── Weiche Übergänge zwischen dunklen und hellen Sektionen ─────────────
   Statt einer harten Kante läuft der schwarze Grund über ~160px in die
   Cremefläche aus. Die Bänder liegen über der Glut, unter dem Inhalt. */
.vb-fade-top::before,
.vb-fade-bottom::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: clamp(96px, 12vw, 180px);
  z-index: 1;
  pointer-events: none;
}
.vb-fade-top::before {
  top: 0;
  background: linear-gradient(180deg, var(--ink-900) 0%, rgba(10,10,11,.55) 35%, rgba(10,10,11,0) 100%);
}
.vb-fade-bottom::after {
  bottom: 0;
  background: linear-gradient(0deg, var(--ink-900) 0%, rgba(10,10,11,.55) 35%, rgba(10,10,11,0) 100%);
}
/* der Goldbanner-Abschnitt hängt an den Kacheln, die Kante zur nächsten
   dunklen Sektion braucht unten mehr Luft */
.vb-cream--banner { padding-bottom: clamp(6rem, 12vw, 10rem) !important; }

/* ── Coach statt Dashboard ─────────────────────────────── */
.vb-coach { border-top: 1px solid var(--line-dark); }
.vb-coach__grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
.vb-coach__list { list-style: none; padding: 0; margin: 0; display: grid; }
.vb-coach__list li {
  display: grid;
  grid-template-columns: 5.5rem minmax(0,1fr);
  gap: .25rem 1.25rem;
  padding-block: 1.35rem;
  border-top: 1px solid var(--line-dark);
}
.vb-coach__list li:last-child { border-bottom: 1px solid var(--line-dark); }
.vb-coach__n {
  grid-row: 1 / span 2;
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 1.35rem;
  line-height: 1.2;
  color: var(--gold-300);
}
.vb-coach__list h3 { font-size: 1.05rem; letter-spacing: -.014em; }
.vb-coach__list p { font-size: .92rem; line-height: 1.55; color: var(--tx-on-dark-mid); }

/* ── Schmerzpunkte: fünf Szenen, dunkel, ohne Beschönigung ── */

.vb-pain { border-top: 1px solid var(--line-dark); }
.vb-pain__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0,1fr));
  gap: .9rem;
  margin-top: clamp(2.25rem, 4vw, 3.25rem);
}
.vb-pain__item {
  border: 1px solid var(--line-dark);
  border-radius: var(--r-lg);
  background: var(--ink-850);
  padding: clamp(1.35rem, 2vw, 1.75rem) clamp(1.15rem, 1.8vw, 1.5rem);
  display: grid;
  gap: .55rem;
  align-content: start;
}
.vb-pain__n {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 1.7rem;
  line-height: 1;
  color: var(--gold-600);
  margin-bottom: .35rem;
}
.vb-pain__item h3 {
  font-size: 1.08rem;
  line-height: 1.25;
  letter-spacing: -.016em;
  color: var(--tx-on-dark);
}
.vb-pain__item p { font-size: .9rem; line-height: 1.55; color: var(--tx-on-dark-mid); }
.vb-pain__close {
  margin: clamp(2rem, 3.5vw, 2.75rem) auto 0;
  max-width: 54ch;
  text-align: center;
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.5;
  color: var(--gold-300);
  text-wrap: balance;
}


/* ── Ohne / Mit: Umschalter und Vergleichskarten ───────── */

.vb-toggle {
  display: inline-flex;
  margin: clamp(2rem, 3.5vw, 2.75rem) auto 0;
  padding: .3rem;
  border: 1px solid var(--vb-line);
  border-radius: var(--r-full);
  background: var(--vb-cream-2);
  box-shadow: var(--sh-1);
  position: relative;
  left: 50%;
  translate: -50% 0;
}
.vb-toggle__btn {
  border: 0;
  background: transparent;
  border-radius: var(--r-full);
  padding: .7rem 1.4rem;
  min-height: 44px;
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: -.006em;
  color: var(--tx-on-paper-mid);
  cursor: pointer;
  transition: background-color .2s var(--ease), color .2s var(--ease);
}
.vb-toggle__btn:hover { color: var(--tx-on-paper); }
.vb-toggle__short { display: none; }
.vb-toggle__btn.is-active { background: var(--ink-900); color: var(--tx-on-dark); }
#vergleich.is-mit .vb-toggle__btn.is-active { background: var(--amber); color: var(--ink-900); }

.vb-panel { margin-top: 1.25rem; animation: vb-panel-in .5s var(--ease) both; }
@keyframes vb-panel-in { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .vb-panel { animation: none; } }
.vb-panel__caption {
  text-align: center;
  font-size: .9rem;
  color: var(--tx-on-paper-low);
  margin-bottom: 1.5rem;
}

.vb-cmp {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 1rem;
  align-items: stretch;
}
.vb-cmp__card {
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 2.4vw, 2rem);
  display: grid;
  gap: .75rem;
  align-content: start;
  /* Reihenfolge und Fußzeile ganz unten – funktioniert in jedem Browser */
  grid-template-rows: auto 1fr auto;
  background: #16110F;                       /* ohne: ausgekühlt, ein Hauch Rost */
  border: 1px solid rgba(255,255,255,.08);
  color: var(--tx-on-dark);
}
.vb-cmp__card h3 { font-size: 1.12rem; line-height: 1.25; letter-spacing: -.016em; }
.vb-cmp__card > p { font-size: .92rem; line-height: 1.55; color: var(--tx-on-dark-mid); }
.vb-cmp__card--gold {                        /* mit: satter Goldverlauf, kein Rahmen, Lichthof */
  background: linear-gradient(145deg, #F7DFA6 0%, #ECC578 46%, #E1A63C 100%);
  border: 0;
  color: #2A1B08;
  position: relative;
  isolation: isolate;
  box-shadow:
    0 0 0 1px rgba(255,228,170,.55),
    0 0 18px rgba(232,169,60,.28),
    0 0 48px rgba(232,169,60,.16),
    0 18px 40px rgba(110,70,15,.18);
  animation: vb-glow 4s ease-in-out infinite;
}
/* Glanzlicht oben links, damit die Fläche selbst zu leuchten scheint */
.vb-cmp__card--gold::before {
  content: '';
  position: absolute; inset: 0;
  z-index: -1;
  border-radius: inherit;
  background:
    radial-gradient(120% 80% at 12% 0%, rgba(255,250,235,.6) 0%, rgba(255,250,235,0) 55%),
    radial-gradient(90% 70% at 100% 100%, rgba(225,137,44,.3) 0%, rgba(225,137,44,0) 60%);
  pointer-events: none;
}
@keyframes vb-glow {
  0%, 100% { box-shadow: 0 0 0 1px rgba(255,228,170,.55), 0 0 18px rgba(232,169,60,.28), 0 0 48px rgba(232,169,60,.16), 0 18px 40px rgba(110,70,15,.18); }
  50%      { box-shadow: 0 0 0 1px rgba(255,236,190,.7), 0 0 26px rgba(232,169,60,.4), 0 0 64px rgba(232,169,60,.24), 0 18px 40px rgba(110,70,15,.18); }
}
@media (prefers-reduced-motion: reduce) { .vb-cmp__card--gold { animation: none; } }
.vb-cmp__card--gold h3 { color: #2A1B08; }
.vb-cmp__card--gold > p { color: #4A3312; }
.vb-cmp__card--gold .vb-cmp__vis { border-top-color: rgba(74,51,18,.28); color: #4A3312; }
.vb-cmp__card--gold .vb-cmp__tag--good { color: #4A3312; }
.vb-cmp__card--gold .vb-flow li { border-color: rgba(74,51,18,.3); background: rgba(255,250,235,.55); color: #4A3312; }
.vb-cmp__card--gold .vb-flow li b { color: #2A1B08; }
/* Karte ohne Absatz: der Ablauf rückt nach unten und füllt die Höhe wie die Nachbarn */
.vb-cmp__card--flow .vb-flow { gap: .55rem; }
.vb-cmp__card--flow .vb-flow li:not(.vb-flow__arrow) { padding-block: .8rem; }
.vb-cmp__card--flow .vb-flow__arrow { height: 18px; }
.vb-cmp__card--gold .vb-flow li .ic { color: #4A3312; }
.vb-cmp__card--gold .vb-flow__arrow { background: none !important; }
.vb-cmp__card--gold .vb-flow__arrow::before { background: #7B5820; }
.vb-cmp__card--gold .vb-chat__me { background: rgba(255,250,235,.65); color: #2A1B08; }
.vb-cmp__card--gold .vb-chat__coach { background: #4A3312; color: #FBF1DC; }
.vb-cmp__card--gold .vb-plates { color: #4A3312; }
/* das ganze Mit-Panel bekommt einen warmen Lichthof im Cremegrund */
#vergleich.is-mit .vb-panel--mit {
  position: relative;
}
#vergleich.is-mit .vb-panel--mit::before {
  content: '';
  position: absolute;
  inset: -8% -4%;
  z-index: -1;
  background: radial-gradient(60% 60% at 50% 45%, rgba(232,169,60,.16) 0%, rgba(232,169,60,0) 70%);
  pointer-events: none;
}
#vergleich { isolation: isolate; }
.vb-cmp__vis {
  grid-row: 2;
  align-self: start;
  min-height: 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.08);
  display: grid;
  gap: .8rem;
  color: var(--gold-300);
}
.vb-cmp__card:not(.vb-cmp__card--gold) .vb-cmp__vis { color: #C08A78; }   /* rostig, gedämpft */

.vb-cmp__tag {
  grid-row: 3;
  align-self: end;
  margin-top: 1rem;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding-left: 1rem;
  position: relative;
}
.vb-cmp__tag::before {
  content: '';
  position: absolute; left: 0; top: .42em;
  width: 7px; height: 7px; border-radius: 50%;
  background: currentColor;
}
.vb-cmp__tag--bad  { color: #D28A76; }
.vb-cmp__tag--good { color: var(--gold-300); }

@supports (grid-template-rows: subgrid) {
  .vb-cmp__card { grid-row: span 3; grid-template-rows: subgrid; }
}

/* Grafik: drei isolierte Coaches */
.vb-three { display: grid; gap: .45rem; }
.vb-three span {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: .7rem;
  border: 1px solid currentColor;
  border-radius: var(--r-sm);
  padding: .4rem .4rem .4rem .85rem;
  font-size: .82rem;
  font-weight: 500;
  line-height: 1.3;
  color: var(--tx-on-dark);
}
.vb-three img {
  width: 112px; height: 84px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0,0,0,.4);
}

/* Riesiges Zeichen (? / €) im Hintergrund der Ohne-Karte, Text liegt darüber */
.vb-cmp__card--sign { position: relative; overflow: hidden; isolation: isolate; }
.vb-cmp__card--sign::before {
  content: attr(data-sign);
  position: absolute;
  right: .02em; bottom: -.14em;
  z-index: -1;
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(14rem, 22vw, 20rem);
  line-height: 1;
  font-weight: 400;
  color: #D28A76;
  opacity: .16;
  pointer-events: none;
}

/* Grafik: offene Tabs */
.vb-tabs { list-style: none; padding: 0; margin: 0; display: grid; gap: .35rem; }
.vb-tabs li {
  font-size: .8rem;
  padding: .45rem .7rem;
  border-radius: var(--r-xs);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.07);
  color: var(--tx-on-dark-mid);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.vb-tabs__more { color: currentColor !important; background: transparent !important; text-align: center; }

/* Grafik: Kostenbalken ohne Zahlen */
.vb-bars { list-style: none; padding: 0; margin: 0; display: grid; gap: .5rem; }
.vb-bars li { display: grid; gap: .3rem; font-size: .78rem; color: var(--tx-on-dark-mid); }
.vb-bars i {
  display: block; height: 8px; width: var(--w); border-radius: var(--r-full);
  background: linear-gradient(90deg, rgba(210,138,118,.35), #D28A76);
}

/* Grafik: Hantelscheiben */
.vb-plates { width: 100%; max-width: 320px; height: auto; margin-inline: auto; color: var(--gold-300); }
/* Langhantel als Bild plus Legende, welche Scheibe wofür steht */
.vb-barbell { margin: 0; display: grid; justify-items: center; gap: .5rem; }
.vb-barbell img {
  width: 100%;
  max-width: 300px;
  height: auto;
  display: block;
  filter: drop-shadow(0 10px 18px rgba(80,50,10,.28));
}
.vb-barbell__legend {
  display: flex;
  justify-content: center;
  gap: 1.1rem;
  flex-wrap: wrap;
  padding-top: .35rem;
  border-top: 1px solid rgba(74,51,18,.18);
  width: 100%;
}
.vb-barbell__legend span {
  display: grid;
  justify-items: center;
  font-size: .78rem;
  color: #4A3312;
  line-height: 1.3;
}
.vb-barbell__legend b {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #2A1B08;
}

/* Grafik: Angaben → Plan → Rückmeldung */
.vb-flow { list-style: none; padding: 0; margin: 0; display: grid; gap: .35rem; }
.vb-flow li {
  display: flex; align-items: center; gap: .7rem;
  font-size: .78rem; color: var(--tx-on-dark-mid);
  padding: .55rem .75rem;
  border: 1px solid rgba(201,155,74,.3);
  border-radius: var(--r-xs);
  background: rgba(201,155,74,.06);
}
.vb-flow li b { display: block; color: var(--tx-on-dark); font-size: .82rem; margin-bottom: .1rem; }
.vb-flow li .ic { width: 1.6rem; height: 1.6rem; flex: none; }
.vb-flow__arrow { border: 0 !important; background: none !important; padding: 0 !important; height: 14px; position: relative; }
.vb-flow__arrow::before {
  content: ''; position: absolute; left: 50%; top: 0; height: 100%; width: 1px;
  background: var(--gold-600);
}

/* Grafik: Chatfenster im Stil eines Messengers */
.vb-wa {
  border-radius: 14px;
  overflow: hidden;
  background: #17171B;
  box-shadow: 0 10px 28px rgba(60,35,5,.3);
  font-size: .78rem;
  color: #F4F2EE;
}
.vb-wa__head {
  display: flex; align-items: center; gap: .6rem;
  padding: .55rem .8rem;
  background: #0D0D0F;
  color: #F4F2EE;
  border-bottom: 1px solid rgba(201,155,74,.35);
}
.vb-wa__head img { width: 26px; height: 36px; object-fit: contain; }
.vb-wa__head span { display: grid; line-height: 1.2; }
.vb-wa__head b { font-size: .82rem; font-weight: 600; }
.vb-wa__head i { font-style: normal; font-size: .68rem; color: var(--gold-300); }
.vb-wa__body {
  display: grid; gap: .35rem;
  padding: .7rem .6rem;
  background-color: #1D1D22;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(201,155,74,.14) 0 2px, transparent 3px),
    radial-gradient(circle at 70% 60%, rgba(201,155,74,.1) 0 1.5px, transparent 2.5px),
    radial-gradient(circle at 45% 85%, rgba(255,255,255,.04) 0 2px, transparent 3px);
  background-size: 60px 60px, 44px 44px, 52px 52px;
}
.vb-wa__date {
  justify-self: center;
  font-size: .64rem;
  padding: .2rem .55rem;
  border-radius: 6px;
  background: rgba(255,255,255,.08);
  color: #B4AFA4;
  margin-bottom: .2rem;
}
.vb-wa__msg {
  position: relative;
  max-width: 86%;
  padding: .4rem .6rem;
  border-radius: 8px;
  line-height: 1.4;
  box-shadow: 0 1px 1px rgba(0,0,0,.12);
}
.vb-wa__msg em {
  float: right;
  margin: .55em 0 0 .8em;
  font-style: normal; font-size: .6rem; line-height: 1; color: rgba(244,242,238,.55);
}
.vb-wa__msg--me { justify-self: end; background: #3A2A10; color: #FBF1DC; border-top-right-radius: 0; }
.vb-wa__msg--coach { justify-self: start; background: #2A2A31; color: #F4F2EE; border-top-left-radius: 0; }
.vb-wa__msg--me::after, .vb-wa__msg--coach::after {
  content: ''; position: absolute; top: 0; width: 0; height: 0;
  border: 6px solid transparent;
}
.vb-wa__msg--me::after { right: -6px; border-top-color: #3A2A10; border-left-color: #3A2A10; }
.vb-wa__msg--coach::after { left: -6px; border-top-color: #2A2A31; border-right-color: #2A2A31; }
.vb-wa__input {
  display: flex; align-items: center; gap: .5rem;
  padding: .45rem .55rem;
  background: #0D0D0F;
  border-top: 1px solid rgba(255,255,255,.06);
}
.vb-wa__input span {
  flex: 1;
  background: #1D1D22; color: #857F73;
  border-radius: 999px;
  padding: .4rem .8rem;
  font-size: .74rem;
}
.vb-wa__input i {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--gold-500);
  position: relative;
}
.vb-wa__input i::before {
  content: ''; position: absolute; left: 9px; top: 8px;
  width: 0; height: 0;
  border-left: 10px solid #1A1206; border-top: 6px solid transparent; border-bottom: 6px solid transparent;
}
.vb-cmp__card--gold .vb-cmp__vis:has(.vb-wa) { color: #4A3312; }

/* Grafik: Chat (alt) */
.vb-chat { display: grid; gap: .45rem; }
.vb-chat span {
  font-size: .8rem; line-height: 1.4;
  padding: .55rem .8rem;
  border-radius: 14px;
  max-width: 88%;
}
.vb-chat__me { justify-self: end; background: rgba(255,255,255,.08); color: var(--tx-on-dark); border-bottom-right-radius: 4px; }
.vb-chat__coach { justify-self: start; background: rgba(201,155,74,.16); color: var(--gold-100); border-bottom-left-radius: 4px; }


/* ── Goldbanner ────────────────────────────────────────── */

.vb-banner {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--vb-gold-grad);
  isolation: isolate;
}
.vb-banner__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .34;
  mix-blend-mode: overlay;
  z-index: -2;
}
/* Goldschleier über der Glut, damit die dunkle Schrift links lesbar bleibt.
   Die Textur bleibt rechts hinter dem Button sichtbar. */
.vb-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(94deg,
              rgba(178,124,42,.96) 0%,
              rgba(178,124,42,.88) 38%,
              rgba(178,124,42,.45) 66%,
              rgba(226,170,72,0) 88%);
  pointer-events: none;
}
.vb-banner__inner {
  display: grid;
  grid-template-columns: auto minmax(0,1fr) auto;
  gap: clamp(1.25rem, 3vw, 2.25rem);
  align-items: center;
  padding: clamp(1.5rem, 3vw, 2.25rem);
}
.vb-banner__mark { width: 46px; height: auto; filter: brightness(1.12) drop-shadow(0 0 12px rgba(255,220,150,.55)); }
.vb-banner h2 {
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.2;
  letter-spacing: -.022em;
  color: #FFFFFF;
  text-shadow: 0 1px 2px rgba(60,35,5,.35), 0 6px 22px rgba(60,35,5,.25);
  margin-bottom: .3rem;
}
.vb-banner p { font-size: .92rem; line-height: 1.5; color: rgba(255,255,255,.92); text-shadow: 0 1px 2px rgba(60,35,5,.3); max-width: 52ch; }
.vb-banner .btn--dark {
  background: #14100A;
  color: #F4F2EE;
  border-color: transparent;
}
.vb-banner .btn--dark:hover { background: #241C10; }


/* ── Drei Schritte ─────────────────────────────────────── */

.vb-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: stretch;
  gap: .75rem;
  margin-top: clamp(2.25rem, 4vw, 3.25rem);
}
/* drei Karten, dahinter ein Feuerstrom von links nach rechts */
.vb-steps--3 {
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: clamp(1.75rem, 4vw, 3.25rem);
  position: relative;
  isolation: isolate;
}
.vb-steps--3 .vb-step {
  position: relative;
  z-index: 1;
  /* leicht durchscheinend, damit der Strom durch die Karten hindurch glimmt */
  background: linear-gradient(180deg, rgba(201,155,74,.07), rgba(201,155,74,0) 55%), rgba(13,13,15,.74);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.vb-firestream {
  position: absolute;
  left: -10%;
  top: -48px;
  height: 170px;
  width: 120%;
  z-index: 0;
  pointer-events: none;
}
.vb-step {
  border: 1px solid var(--line-dark);
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(201,155,74,.07), rgba(201,155,74,0) 55%), var(--ink-850);
  padding: clamp(1.35rem, 2.4vw, 1.85rem);
}
.vb-step__top { display: flex; align-items: center; gap: .8rem; margin-bottom: 1rem; }
.vb-step__n {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  flex: none;
  border: 1px solid var(--gold-600);
  border-radius: 50%;
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 1.05rem;
  color: var(--gold-300);
  line-height: 1;
}
.vb-step__top svg { color: var(--gold-500); margin-left: auto; width: 2.75rem; height: 2.75rem; }
.vb-step h3 {
  font-size: 1.02rem;
  letter-spacing: -.014em;
  margin-bottom: .5rem;
  color: var(--gold-300);
}
.vb-step p { font-size: .89rem; line-height: 1.55; color: var(--tx-on-dark-mid); }

.vb-chev {
  display: grid;
  place-items: center;
  color: var(--gold-700);
}


/* ── Was drin ist: neun Karten, drei mal drei ─────────── */

.vb-cards-9 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: .9rem;
  margin-top: clamp(2.25rem, 4vw, 3.25rem);
}
.vb-cards-9 .vb-card { padding: 1.75rem 1.5rem; }
.vb-cards-9 .vb-card h3 { font-size: 1.02rem; }
.vb-cards-9 .vb-card p { font-size: .88rem; max-width: 34ch; margin-inline: auto; }

/* Klappkarten: vorne nur die Überschrift, beim Klick dreht sich die Karte
   und zeigt die Beschreibung. Hover/Fokus lässt sie golden aufleuchten. */
.vb-flip {
  padding: 0;
  background: none;
  border: 0;
  box-shadow: none;
  perspective: 1200px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.vb-flip:hover { transform: none; box-shadow: none; border-color: transparent; }
.vb-flip:focus-visible { outline: none; }
.vb-flip__inner {
  display: grid;
  min-height: 176px;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform .65s var(--ease), translate .22s var(--ease);
}
.vb-flip__face {
  grid-area: 1 / 1;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: .4rem;
  padding: 1.75rem 1.5rem;
  border-radius: var(--r-lg);
  background: var(--vb-cream-2);
  border: 1px solid var(--vb-line);
  box-shadow: 0 1px 2px rgba(30,22,10,.04), 0 10px 26px rgba(30,22,10,.05);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transition: box-shadow .28s var(--ease), border-color .28s var(--ease), background-color .28s var(--ease);
}
.vb-flip__front h3 { margin: 0; }
.vb-flip__hint {
  position: relative;
  width: 22px; height: 22px;
  margin-top: .35rem;
  border: 1px solid var(--gold-300);
  border-radius: 50%;
  font-size: 0;                     /* das „+" wird gezeichnet, nicht gesetzt: exakt mittig */
  color: var(--gold-600);
  opacity: .7;
  transition: opacity .2s, background-color .2s, color .2s;
}
.vb-flip__hint::before, .vb-flip__hint::after {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  width: 10px; height: 1.5px;
  background: currentColor;
  translate: -50% -50%;
}
.vb-flip__hint::after { rotate: 90deg; }
.vb-flip__back {
  transform: rotateY(180deg);
  background: linear-gradient(160deg, #FBF3E2 0%, #F3E2BC 100%);
  border-color: var(--gold-300);
}
.vb-flip__back p { margin: 0; color: #3A2A10; }
.vb-flip__back::before {
  content: '';
  width: 28px; height: 2px;
  background: var(--gold-500);
  border-radius: 2px;
  margin-bottom: .4rem;
}
.vb-flip:hover .vb-flip__inner,
.vb-flip:focus-visible .vb-flip__inner { translate: 0 -3px; }
.vb-flip:hover .vb-flip__face,
.vb-flip:focus-visible .vb-flip__face {
  border-color: var(--gold-300);
  box-shadow:
    0 0 0 1px rgba(226,198,137,.55),
    0 0 22px rgba(232,169,60,.28),
    0 0 56px rgba(232,169,60,.14),
    0 14px 34px rgba(30,22,10,.10);
}
.vb-flip:hover .vb-flip__front { background: #FFFDF8; }
.vb-flip:hover .vb-flip__hint { opacity: 1; background: var(--gold-500); color: #1A1206; }
.vb-flip.is-flipped .vb-flip__inner { transform: rotateY(180deg); }
@media (prefers-reduced-motion: reduce) {
  .vb-flip__inner { transition: none; }
}


/* ── Tagesablauf als Zeitstrahl ────────────────────────── */

.vb-track {
  margin-top: clamp(2.5rem, 4vw, 3.5rem);
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0,1fr));
  gap: 1rem;
}
.vb-track::before {                       /* durchgehende Linie hinter den Knoten */
  content: '';
  position: absolute;
  left: 8%; right: 8%;
  top: 27px;
  height: 1px;
  background: linear-gradient(90deg,
              rgba(201,155,74,0) 0%, rgba(201,155,74,.55) 12%,
              rgba(201,155,74,.55) 88%, rgba(201,155,74,0) 100%);
}
.vb-node { text-align: center; position: relative; }
.vb-node__dot {
  width: 54px; height: 54px;
  margin: 0 auto .9rem;
  display: grid; place-items: center;
  border: 1px solid var(--gold-700);
  border-radius: 50%;
  background: var(--ink-900);
  color: var(--gold-500);
  position: relative;
  z-index: 1;
  transition: border-color .22s var(--ease), color .22s var(--ease);
}
.vb-node:hover .vb-node__dot { border-color: var(--gold-300); color: var(--gold-300); }
.vb-node h3 {
  font-size: .88rem;
  letter-spacing: -.01em;
  margin-bottom: .35rem;
}
.vb-node__when {
  display: block;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: .5rem;
}
.vb-node p { font-size: .8rem; line-height: 1.45; color: var(--tx-on-dark-low); }


.vb-track--3 { grid-template-columns: repeat(3, minmax(0,1fr)); max-width: 960px; margin-inline: auto; gap: 1.5rem; }
.vb-track--3::before { left: 16%; right: 16%; }
.vb-track--3 .vb-node h3 { font-size: 1.02rem; }
.vb-track--3 .vb-node p { font-size: .88rem; max-width: 30ch; margin-inline: auto; }
.vb-track__note {                         /* dieselbe Schrift wie die Eyebrow „Deine tägliche Routine" */
  margin: clamp(1.75rem, 3vw, 2.5rem) auto 0;
  text-align: center;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-500);
}

/* ── Abschluss: vollbreites Gipfelbild, weich in die Nachbarn ── */

.vb-final {
  position: relative;
  isolation: isolate;
  padding-block: clamp(4rem, 8vw, 7rem);
  min-height: clamp(640px, 60vw, 940px);
  display: grid;
  align-items: start;
  overflow: hidden;
}
.vb-final__bg {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 62%;                          /* Figuren unten links behalten */
  /* oben und unten in den schwarzen Grund auslaufen — kein Schnitt zur Nachbarsektion */
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 16%, #000 84%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 16%, #000 84%, transparent 100%);
}
.vb-final::after {                                   /* Schatten nur, wo Text und Formular liegen */
  content: '';
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(10,10,11,.55) 0%, rgba(10,10,11,.15) 34%, rgba(10,10,11,0) 48%, rgba(10,10,11,.55) 66%, rgba(10,10,11,.72) 100%),
    linear-gradient(180deg, rgba(10,10,11,.45) 0%, rgba(10,10,11,0) 40%);
  pointer-events: none;
}
.vb-final__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 480px);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.vb-final__side { display: contents; }               /* Text links oben, Formular rechts */
.vb-final__copy { max-width: 30rem; text-shadow: 0 2px 20px rgba(0,0,0,.6); }
.vb-final h2 { margin-bottom: .9rem; }
.vb-final .lede { margin-top: 0; color: #E4DED2; }
.vb-final .card-form {
  background: rgba(14,14,16,.88);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-color: rgba(255,255,255,.16);
}


/* ── Responsive ────────────────────────────────────────── */

@media (max-width: 1080px) {
  .vb-pain__grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .vb-cmp { grid-template-columns: 1fr; }
  .vb-coach__grid { grid-template-columns: 1fr; }
  .vb-final { min-height: 0; }
  .vb-final__grid { grid-template-columns: 1fr; }
  .vb-final__bg { object-position: 28% 50%; }
  .vb-final::after { background: linear-gradient(180deg, rgba(10,10,11,.6) 0%, rgba(10,10,11,.3) 30%, rgba(10,10,11,.85) 60%, rgba(10,10,11,.95) 100%); }
  .vb-hero { padding-top: var(--nav-h); }
  .vb-hero__grid { grid-template-columns: 1fr; min-height: 0; }
  /* im Fluss: Bild oben in voller Breite, läuft nach unten in den Text aus */
  .vb-hero__media {
    position: relative;
    inset: auto;
    width: 100%;               /* liegt außerhalb von .wrap, braucht keinen Ausgleich */
    margin: 0 0 -3.5rem;
    aspect-ratio: 4 / 3;
    max-height: 520px;
    -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 55%, transparent 100%);
    mask-image: linear-gradient(180deg, #000 0%, #000 55%, transparent 100%);
    -webkit-mask-composite: initial;
    mask-composite: initial;
  }
  .vb-hero__media img { object-position: 50% 12%; }
  .vb-hero__copy { position: relative; z-index: 1; }
  .vb-track { grid-template-columns: repeat(3, minmax(0,1fr)); row-gap: 2rem; }
  .vb-track:not(.vb-track--3)::before { display: none; }
  .vb-final__grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .vb-steps { grid-template-columns: 1fr; }
  .vb-steps--3 { gap: 1rem; }
  .vb-firestream { display: none; }
  .vb-chev { transform: rotate(90deg); padding-block: .25rem; }
  .vb-banner__inner { grid-template-columns: auto minmax(0,1fr); row-gap: 1.25rem; }
  .vb-banner__inner .btn { grid-column: 1 / -1; justify-self: start; }
}

@media (max-width: 720px) {
  .vb-pain__grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .vb-toggle { display: flex; left: auto; translate: none; width: 100%; }
  .vb-toggle__btn { flex: 1; padding-inline: .6rem; font-size: .85rem; }
  /* die Panel-Unterzeile nennt den vollen Namen, der Knopf darf kurz sein */
  .vb-toggle__long { display: none; }
  .vb-toggle__short { display: inline; }
  /* auf dem Telefon braucht das Motiv Höhe, sonst bleibt nur ein Streifen übrig */
  .vb-hero__media { aspect-ratio: 1 / 1; max-height: 420px; margin-bottom: -4rem; }
  .vb-cards-4 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .vb-cards-9 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .vb-stats { grid-template-columns: 1fr; gap: .6rem; }
  .vb-stat { display: flex; align-items: center; gap: .9rem; }
  .vb-stat__top { margin-bottom: 0; }
  .vb-stat p { display: none; }
  .vb-track { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .vb-track--3 { grid-template-columns: 1fr; }
  .vb-track--3::before { display: none; }
}

@media (max-width: 430px) {
  .vb-cards-4, .vb-cards-9, .vb-track, .vb-pain__grid { grid-template-columns: 1fr; }
  .vb-card { text-align: left; display: grid; grid-template-columns: auto 1fr; gap: .25rem 1rem; }
  .vb-card__ic { margin: 0; }
  .vb-card h3, .vb-card p { grid-column: 2; }
  .vb-flip { display: block; text-align: center; }
  .vb-flip .vb-card__ic { margin: 0 auto .6rem; }
  .vb-flip h3, .vb-flip p { grid-column: auto; }
  .vb-flip__inner { min-height: 0; }
  .vb-flip__face { padding: 1.25rem 1rem; }
  .vb-node { display: grid; grid-template-columns: auto 1fr; gap: .1rem 1rem; text-align: left; }
  .vb-node__dot { margin: 0; grid-row: 1 / span 3; }
}


/* Lange Hero-Headline (ein Satz statt drei Zeilen) */
.d-1--long {
  font-size: clamp(2.1rem, 4.4vw, 3.7rem);
  line-height: 1.06;
  letter-spacing: -.034em;
  max-width: 14em;
}


/* ── Schriftgrößen angeglichen an die frühere Seite ───────
   (H1 60 · H2 36 · H3 20 · Fließtext 16 · Klein 14 · Abschluss 48/20) */
.d-2 { font-size: clamp(1.75rem, 3vw, 2.25rem); }
.vb-final h2.d-2 { font-size: clamp(2rem, 3.6vw, 3rem); }
.vb-final .lede { font-size: 1.25rem; }
.vb-pain__item h3, .vb-cmp__card h3, .vb-cards-9 .vb-card h3, .vb-track--3 .vb-node h3, .vb-flip h3 { font-size: 1.25rem; }
.vb-step h3 { font-size: 1.125rem; }
.vb-pain__item p, .vb-cmp__card > p:not(.vb-cmp__tag), .vb-step p, .vb-cards-9 .vb-card p, .vb-track--3 .vb-node p, .vb-banner p { font-size: 1rem; }
.vb-banner h2 { font-size: 1.5rem; }
.vb-stat p { font-size: .875rem; }
.mech-note { font-size: 1rem; }
