/* HENOS · Startseite (index.html), Stand 25.09.2026
 * ------------------------------------------------------------
 * Nur die Bausteine, die es nur auf der Startseite gibt:
 *   1. Hero-Chat mit mehreren Beispielen (Reiter unter dem Chat)
 *   2. „So funktioniert Henos" als Sticky-Scroll: links die Szene, rechts
 *      die Schritte. Unter 960 px steht jede Szene über ihrem Schritt.
 *   3. Sicherheit (vier Punkte) und ein kompakter Preisblock
 * Alles andere kommt aus landing.css / app-section.css.
 * Steuerung: assets/startseite.js
 */

/* =====================================================================
 * 1 · Hero
 * =================================================================== */
.lv-hero h1 { letter-spacing: -0.02em; }
.lv-hero-points {
  list-style: none; margin: 0 0 26px; padding: 0;
  display: grid; gap: 10px;
}
.lv-hero-points li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: var(--text-lg); line-height: 1.45; color: var(--c-text);
}
.lv-hero-points .ico {
  flex: none; margin-top: 2px; width: 20px; height: 20px; padding: 3px;
  border-radius: var(--radius-circle);
  background: var(--c-green-soft); color: var(--c-green-deep);
}

/* Der Chat bekommt eine feste Mindesthöhe (setzt das Skript nach dem
   Ausmessen aller Beispiele), damit der Hero beim Wechsel nicht springt. */
.lv-chat.is-scripted .ld-chat-body { overflow: hidden; }
/* Was noch nicht dran ist, belegt keinen Platz — sonst scrollte folgen() an
   unsichtbaren Nachrichten vorbei ins Leere. */
.lv-chat.is-scripted .ld-msg:not(.is-on),
.lv-chat.is-scripted .ld-chat-note:not(.is-on),
.lv-chat.is-scripted .ld-srcs:not(.is-on) { display: none; }
.lv-chat.is-wechsel .ld-chat-body > * { transition: opacity .35s ease; opacity: 0 !important; }

/* Reiter unter dem Chat: welches Beispiel läuft, und wie weit */
.lv-chat-tabs {
  display: flex; gap: var(--space-2); align-items: center; flex-wrap: wrap;
  margin-top: 14px;
}
.lv-chat-tab {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; gap: 6px;
  font: inherit; font-size: var(--text-sm); font-weight: 600;
  color: var(--c-text-muted); background: var(--c-surface);
  border: 1px solid var(--c-track); border-radius: var(--radius-pill);
  padding: 7px 14px; cursor: pointer;
}
.lv-chat-tab .ico { font-size: var(--text-md); }
.lv-chat-tab[aria-pressed="true"] { color: var(--c-navy-deep); border-color: var(--c-navy); }
/* Fortschritt des laufenden Beispiels als Unterstrich — wie bei Stories:
   man sieht, dass noch etwas kommt, und ungefähr wann. */
.lv-chat-tab i {
  position: absolute; left: 0; bottom: 0; height: 2px; width: 100%;
  background: var(--c-green); transform-origin: left; transform: scaleX(0);
}
.lv-chat-tab[aria-pressed="true"] i { transform: scaleX(var(--p, 0)); }
.lv-chat-pause {
  margin-left: auto; width: 32px; height: 32px; border-radius: var(--radius-circle);
  border: 1px solid var(--c-track); background: var(--c-surface); color: var(--c-navy);
  display: inline-flex; align-items: center; justify-content: center; cursor: pointer;
  font-size: var(--text-xs); font-weight: 700;
}
.lv-chat-pause:focus-visible, .lv-chat-tab:focus-visible { outline: 2px solid var(--c-focus); outline-offset: 2px; }

@media (max-width: 480px) {
  .lv-chat-tabs { gap: 6px; flex-wrap: nowrap; }
  .lv-chat-tab { padding: 6px 10px; font-size: var(--text-xs); }
  .lv-chat-tab .ico { display: none; }
}
/* Die Abschnitte in der neuen Reihenfolge stoßen direkt aneinander; der
   Abstand, den landing.css / app-section.css davor setzen, gilt der alten. */
.fx + * + .ld-voices-wrap, .fx ~ .ld-voices-wrap, .lv-sec + .ha-wrap { margin-top: 0; }

/* Ohne JavaScript gibt es nur das erste Beispiel — die Reiter wären tot. */
.lv-chat-tabs { display: none; }
.lv-chat.is-scripted + .lv-chat-tabs { display: flex; }

/* =====================================================================
 * 2 · So funktioniert Henos (Sticky-Scroll)
 * =================================================================== */
.fx { padding: var(--space-10) var(--space-5) var(--space-9); background: var(--c-surface); }
.fx-inner { max-width: 1120px; margin: 0 auto; }
.fx-head { max-width: 680px; margin-bottom: var(--space-9); }
.fx-head h2 { font-size: var(--text-7xl); line-height: 1.1; margin: 10px 0 14px; color: var(--c-navy-deep); letter-spacing: -0.02em; }
.fx-head p { font-size: var(--text-xl); line-height: 1.55; color: var(--c-text-muted); margin: 0; }

.fx-grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(0, 1fr); gap: 64px; }

/* Links: die Bühne. Klebt mittig im Fenster, solange rechts gescrollt wird. */
.fx-visual { position: relative; }
.fx-sticky { position: sticky; top: max(24px, calc(50vh - 290px)); }
.fx-frame {
  position: relative; height: 540px;
  background: var(--c-bg); border: 1px solid var(--c-track);
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.fx-chrome {
  display: flex; align-items: center; gap: 6px;
  padding: 11px 14px; background: var(--c-surface); border-bottom: 1px solid var(--c-track);
}
.fx-chrome i { width: 9px; height: 9px; border-radius: 50%; background: var(--c-track); }
.fx-url {
  margin-left: 10px; font-size: var(--text-xs); color: var(--c-text-muted);
  background: var(--c-bg); border-radius: var(--radius-sm); padding: 3px 10px;
}
.fx-url b { color: var(--c-navy-deep); font-weight: 600; }

/* Fortschritt links neben der Bühne: sechs Punkte, der aktive wird zur Linie */
.fx-rail { display: flex; gap: 6px; margin-top: 18px; }
.fx-rail span {
  height: 4px; flex: 1; border-radius: var(--radius-pill); background: var(--c-track);
  transition: background .3s ease;
}
.fx-rail span.is-done { background: rgba(var(--c-green-rgb), .45); }
.fx-rail span.is-on { background: var(--c-green); }

/* Szenen liegen übereinander; die aktive blendet ein */
.fx-scene {
  position: absolute; inset: 44px 0 0 0; padding: 22px 24px;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .45s ease, transform .45s ease, visibility 0s linear .45s;
}
.fx-scene.is-on {
  opacity: 1; visibility: visible; transform: none;
  transition: opacity .45s ease, transform .45s ease, visibility 0s;
}

/* Rechts: die Schritte. Jeder ist so hoch, dass die Szene Zeit zum Spielen
   hat, bevor der nächste übernimmt. */
.fx-steps { list-style: none; margin: 0; padding: 0; }
.fx-step {
  min-height: 78vh; display: flex; flex-direction: column; justify-content: center;
  padding: var(--space-7) 0; opacity: .38; transition: opacity .4s ease;
}
.fx-step:first-child { min-height: 60vh; justify-content: flex-start; padding-top: 110px; }
.fx-step:last-child { min-height: 70vh; }
.fx-step.is-on { opacity: 1; }
.fx-kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: var(--text-xs); font-weight: 700; letter-spacing: var(--track-label);
  text-transform: uppercase; color: var(--c-green-deep); margin-bottom: 14px;
}
.fx-kicker b {
  width: 28px; height: 28px; border-radius: var(--radius-circle);
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--c-navy-deep); color: var(--c-surface); font-size: var(--text-xs); letter-spacing: 0;
}
.fx-step h3 { font-size: var(--text-5xl); line-height: 1.15; margin: 0 0 14px; color: var(--c-navy-deep); letter-spacing: -0.015em; }
.fx-step p { font-size: var(--text-lg); line-height: 1.65; color: var(--c-text); margin: 0 0 18px; max-width: 460px; }
.fx-step ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.fx-step li {
  display: flex; gap: 10px; font-size: var(--text-base); line-height: 1.5; color: var(--c-text-muted);
}
.fx-step li .ico { flex: none; margin-top: 3px; color: var(--c-green-deep); }
.fx-step-media { display: none; }

/* Abschluss: die Pointe nach sechs Schritten */
.fx-outro {
  margin-top: var(--space-9); padding: 44px 48px;
  background: var(--c-navy-deep); border-radius: var(--radius-xl); color: var(--c-surface);
  display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center;
}
.fx-outro h2 { font-size: var(--text-7xl); line-height: 1.1; margin: 0 0 10px; color: var(--c-surface); letter-spacing: -0.02em; }
.fx-outro h2 em { color: var(--heading-accent-dark); font-style: normal; }
.fx-outro p { margin: 0; font-size: var(--text-lg); line-height: 1.55; color: rgba(var(--c-white-rgb), .78); max-width: 560px; }
.fx-outro .ld-cta-meta { color: rgba(var(--c-white-rgb), .7); margin-top: 10px; text-align: left; }
.fx-outro .ld-cta-meta strong { color: var(--c-surface); }

@media (max-width: 959px) {
  .fx { padding: var(--space-9) var(--space-4); }
  .fx-head { margin-bottom: var(--space-7); }
  .fx-head h2, .fx-outro h2 { font-size: var(--text-5xl); }
  .fx-grid { display: block; }
  .fx-visual { display: none; }
  .fx-step, .fx-step:first-child, .fx-step:last-child {
    min-height: 0; opacity: 1; padding: 0 0 var(--space-9);
  }
  .fx-step-media { display: block; margin-bottom: 22px; }
  .fx-step-media .fx-frame { height: 440px; }
  .fx-step h3 { font-size: var(--text-4xl); }
  .fx-outro { grid-template-columns: 1fr; padding: 32px 24px; margin-top: 0; }
}
/* Ohne JavaScript: die Bühne zeigt Szene 1, alle Schritte voll sichtbar. */
.fx:not(.is-js) .fx-step { opacity: 1; }
.fx:not(.is-js) .fx-scene:first-child { opacity: 1; visibility: visible; transform: none; }

/* ---- Bausteine innerhalb der Szenen ---------------------------------- */
.sc-title { font-size: var(--text-xl); font-weight: 700; color: var(--c-navy-deep); margin: 0 0 4px; }
.sc-sub { font-size: var(--text-sm); color: var(--c-text-muted); margin: 0 0 16px; }
.sc-card {
  background: var(--c-surface); border: 1px solid var(--c-track);
  border-radius: var(--radius-lg); padding: 12px 14px;
}
.sc-row {
  display: flex; align-items: center; gap: 12px;
  padding: 8px 12px; background: var(--c-surface);
  border: 1px solid var(--c-track); border-radius: var(--radius-md);
  font-size: var(--text-md); color: var(--c-text);
}
.sc-row + .sc-row { margin-top: 7px; }
.sc-row b { font-weight: 600; color: var(--c-navy-deep); }
.sc-row small { display: block; font-size: var(--text-xs); color: var(--c-text-muted); margin-top: 1px; }
.sc-row .sc-end { margin-left: auto; font-size: var(--text-sm); font-weight: 600; color: var(--c-navy-deep); white-space: nowrap; }
.sc-ico {
  flex: none; width: 32px; height: 32px; border-radius: var(--radius-md);
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--c-surface-soft); color: var(--c-navy); font-size: var(--text-lg);
}
.sc-tick {
  flex: none; width: 22px; height: 22px; border-radius: var(--radius-circle);
  border: 1.6px solid var(--c-app-rand-stark);
  display: inline-flex; align-items: center; justify-content: center;
  color: transparent; font-size: var(--text-xs);
}
.sc-tick.is-done { background: var(--c-green); border-color: var(--c-green); color: var(--c-surface); }
.sc-tag {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: var(--text-2xs); font-weight: 700; letter-spacing: var(--track-tag); text-transform: uppercase;
  padding: 3px 8px; border-radius: var(--radius-pill);
  background: var(--c-surface-soft); color: var(--c-text-muted);
}
.sc-tag.is-green { background: var(--c-green-soft); color: var(--c-green-deep); }
.sc-tag.is-amber { background: var(--c-amber-soft); color: var(--c-amber-deep); }
.sc-tag.is-red { background: var(--c-red-soft); color: var(--c-red-deep); }
.sc-label {
  font-size: var(--text-2xs); font-weight: 700; letter-spacing: var(--track-label);
  text-transform: uppercase; color: var(--c-text-muted); margin: 14px 0 8px;
}
.sc-bar { height: 8px; background: var(--c-track); border-radius: var(--radius-pill); overflow: hidden; }
.sc-bar i { display: block; height: 100%; width: var(--von, 0%); background: var(--c-green); border-radius: inherit; }

/* Einblenden, sobald die Szene spielt (.is-play) — jedes Element mit --d */
.is-play .sc-in { animation: scIn .45s ease both; animation-delay: var(--d, 0s); }
.sc-in { opacity: 0; }
@keyframes scIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* Szene 1 · Checkliste */
.is-play .sc-bar i { animation: scBar 1.1s cubic-bezier(.2,.7,.2,1) both; animation-delay: 1.9s; }
@keyframes scBar { from { width: var(--von); } to { width: var(--bis); } }
.sc-check-open .sc-tick { transition: all .3s ease; }
.is-play .sc-check-open .sc-tick { animation: scTick .35s ease forwards; animation-delay: var(--dt, 1.6s); }
@keyframes scTick { to { background: var(--c-green); border-color: var(--c-green); color: var(--c-surface); } }
.sc-found {
  display: block; font-size: var(--text-xs); color: var(--c-green-deep); font-weight: 600;
  opacity: 0; max-height: 0; overflow: hidden;
}
.is-play .sc-found { animation: scFound .4s ease forwards; animation-delay: var(--dt, 1.6s); }
@keyframes scFound { to { opacity: 1; max-height: 20px; } }
.sc-cta {
  display: inline-flex; align-items: center; gap: 6px; margin-left: auto;
  font-size: var(--text-xs); font-weight: 700; color: var(--c-navy);
  border: 1px solid var(--c-app-rand-stark); border-radius: var(--radius-pill); padding: 4px 10px;
}
.sc-count { font-variant-numeric: tabular-nums; }

/* Szene 2 · Scannen & Hochladen */
.sc-upload { display: grid; grid-template-columns: 150px 1fr; gap: 16px; }
.sc-phone {
  background: var(--c-navy-deep); border-radius: 22px; padding: 10px; height: 290px; position: relative;
}
.sc-vf {
  position: relative; height: 100%; border-radius: 14px; overflow: hidden;
  background: #1B2550; display: flex; align-items: center; justify-content: center;
}
.sc-paper {
  width: 76%; height: 74%; background: var(--c-surface); border-radius: 4px; padding: 10px 8px;
  transform: rotate(-3deg); box-shadow: 0 6px 18px rgba(0,0,0,.35);
}
.sc-paper b { display: block; font-size: 8px; letter-spacing: .08em; color: var(--c-navy); margin-bottom: 6px; }
.sc-paper i { display: block; height: 4px; border-radius: 2px; background: var(--c-track); margin-bottom: 5px; }
.sc-vf:after {
  content: ""; position: absolute; left: 8%; right: 8%; height: 2px; top: 12%;
  background: var(--c-green-bright); box-shadow: 0 0 12px var(--c-green-bright);
  opacity: 0;
}
.is-play .sc-vf:after { animation: scScan 1.4s ease-in-out 2 both; animation-delay: .4s; }
@keyframes scScan { 0% { top: 12%; opacity: 1; } 50% { top: 86%; opacity: 1; } 100% { top: 12%; opacity: 1; } }
.sc-shutter {
  position: absolute; left: 50%; bottom: 18px; width: 34px; height: 34px; margin-left: -17px;
  border-radius: 50%; border: 3px solid var(--c-surface); background: rgba(255,255,255,.25);
}
.sc-files .sc-row { position: relative; overflow: hidden; }
.sc-status { display: grid; }
.sc-state, .sc-done { grid-area: 1 / 1; font-size: var(--text-xs); }
.sc-state { color: var(--c-text-muted); }
.sc-done { color: var(--c-green-deep); font-weight: 600; opacity: 0; }
.is-play .sc-files .sc-state { animation: scOut .25s ease forwards; animation-delay: var(--dd); }
.is-play .sc-files .sc-done { animation: scOn .25s ease forwards; animation-delay: var(--dd); }
@keyframes scOut { to { opacity: 0; } }
@keyframes scOn { to { opacity: 1; } }
.sc-files .sc-row:after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(100deg, transparent 20%, rgba(var(--c-green-rgb), .18) 50%, transparent 80%);
  transform: translateX(-101%);
}
.is-play .sc-files .sc-row:after { animation: scSweep .8s ease-in-out 2; animation-delay: var(--ds, 0s); }
@keyframes scSweep { to { transform: translateX(101%); } }
.sc-drop {
  border: 1.6px dashed var(--c-app-rand-stark); border-radius: var(--radius-md);
  padding: 12px; text-align: center; font-size: var(--text-sm); color: var(--c-text-muted); margin-bottom: 10px;
}

/* Szene 3 · Vorsorge-Dokumente erstellen */
.sc-frage { font-size: var(--text-lg); font-weight: 600; color: var(--c-navy-deep); margin: 16px 0 10px; }
.sc-radio {
  flex: none; width: 18px; height: 18px; border-radius: var(--radius-circle);
  border: 1.6px solid var(--c-app-rand-stark); background: var(--c-surface);
}
.is-play .sc-pick { animation: scIn .45s ease both, scPick .3s ease forwards; animation-delay: var(--d, 0s), .7s; }
.is-play .sc-pick .sc-radio { animation: scRadio .3s ease forwards; animation-delay: .7s; }
@keyframes scPick { to { border-color: var(--c-green); background: var(--c-green-soft); } }
@keyframes scRadio { to { border: 5px solid var(--c-green); } }
.sc-invite .sc-field span { max-width: 100%; }

/* Die Generator-Links unter Schritt 3 */
.fx-step ul.fx-doc-links { display: flex; flex-wrap: wrap; gap: 8px; }
.fx-doc-links li { display: block; }
.fx-doc-links a {
  display: inline-flex; font-size: var(--text-sm); font-weight: 600; color: var(--c-navy);
  background: var(--c-surface); border: 1px solid var(--c-app-rand-stark);
  border-radius: var(--radius-pill); padding: 6px 12px; text-decoration: none;
}
.fx-doc-links a:hover { border-color: var(--c-navy); }

/* Szene 4 · Abos */
.sc-sum { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 14px; }
.sc-sum .sc-card b { display: block; font-size: var(--text-5xl); color: var(--c-navy-deep); font-variant-numeric: tabular-nums; letter-spacing: -0.02em; }
.sc-sum .sc-card span { font-size: var(--text-xs); color: var(--c-text-muted); }

/* Szene 5 · Companion */
.sc-doc {
  display: flex; gap: 12px; align-items: center; margin-bottom: 14px;
}
.sc-pages { position: relative; width: 46px; height: 58px; flex: none; }
.sc-pages i {
  position: absolute; inset: 0; background: var(--c-surface); border: 1px solid var(--c-app-rand-stark);
  border-radius: 4px;
}
.sc-pages i:nth-child(1) { transform: translate(6px, -6px); }
.sc-pages i:nth-child(2) { transform: translate(3px, -3px); }
.sc-pages i:nth-child(3) {
  background-image: repeating-linear-gradient(var(--c-track) 0 3px, transparent 3px 8px);
  background-size: 70% 100%; background-repeat: no-repeat; background-position: 7px 8px;
}
.sc-readbar { display: block; height: 4px; background: var(--c-track); border-radius: 2px; overflow: hidden; margin-top: 6px; width: 180px; }
.sc-readbar i { display: block; height: 100%; width: 0; background: var(--c-green); }
.is-play .sc-readbar i { animation: scRead 1.6s ease-out forwards; animation-delay: .5s; }
@keyframes scRead { to { width: 100%; } }
.sc-q {
  margin-left: auto; max-width: 82%; background: var(--c-navy); color: var(--c-surface);
  border-radius: var(--radius-lg); border-bottom-right-radius: 5px; padding: 10px 14px;
  font-size: var(--text-md); line-height: 1.5; width: fit-content;
}
.sc-a {
  margin-top: 12px; background: var(--c-green-soft); border: 1px solid var(--c-green);
  border-radius: var(--radius-lg); border-bottom-left-radius: 5px; padding: 12px 14px;
  font-size: var(--text-md); line-height: 1.55; color: var(--c-text); max-width: 92%;
}
.sc-a strong { color: var(--c-green-deep); }
.sc-a .ld-srcs { margin-top: 10px; }

/* Szene 6 · Fristen */
.sc-push {
  display: flex; gap: 12px; align-items: flex-start;
  background: rgba(var(--c-white-rgb), .96); border: 1px solid var(--c-track);
  border-radius: var(--radius-lg); padding: 12px 14px; box-shadow: var(--shadow);
  margin-bottom: 16px;
}
.is-play .sc-push { animation: scPush .6s cubic-bezier(.2,.8,.2,1.2) both; animation-delay: .4s; }
@keyframes scPush { from { opacity: 0; transform: translateY(-24px) scale(.97); } to { opacity: 1; transform: none; } }
.sc-push .sc-ico { background: var(--c-green); color: var(--c-navy-deep); }
.sc-push b { display: block; font-size: var(--text-md); color: var(--c-navy-deep); }
.sc-push span { font-size: var(--text-sm); color: var(--c-text-muted); line-height: 1.45; }
.sc-push time { margin-left: auto; font-size: var(--text-2xs); color: var(--c-text-muted); white-space: nowrap; }
.sc-date {
  flex: none; width: 44px; text-align: center; border-radius: var(--radius-md);
  border: 1px solid var(--c-track); overflow: hidden; background: var(--c-surface);
}
.sc-date b { display: block; font-size: var(--text-2xl); color: var(--c-navy-deep); line-height: 1.3; }
.sc-date span { display: block; font-size: var(--text-2xs); font-weight: 700; text-transform: uppercase; background: var(--c-surface-soft); color: var(--c-text-muted); padding: 1px 0; }

/* Szene 7 · Teilen */
.sc-person .sc-av {
  flex: none; width: 34px; height: 34px; border-radius: var(--radius-circle);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: var(--text-xs); font-weight: 700; background: var(--c-navy); color: var(--c-surface);
}
.sc-person .sc-av.is-green { background: var(--c-green); color: var(--c-navy-deep); }
.sc-person .sc-av.is-soft { background: var(--c-surface-soft); color: var(--c-navy); }
.sc-role {
  margin-left: auto; font-size: var(--text-xs); font-weight: 600; color: var(--c-navy);
  border: 1px solid var(--c-app-rand-stark); border-radius: var(--radius-pill); padding: 4px 10px; white-space: nowrap;
}
.sc-invite { display: flex; gap: 8px; margin-top: 14px; }
.sc-invite .sc-field {
  flex: 1; border: 1px solid var(--c-app-rand-stark); border-radius: var(--radius-md);
  padding: 9px 12px; font-size: var(--text-md); color: var(--c-text); background: var(--c-surface);
  overflow: hidden; white-space: nowrap;
}
.sc-invite .sc-field span { display: inline-block; overflow: hidden; vertical-align: bottom; width: 0; }
.is-play .sc-invite .sc-field span { animation: scType 1.2s steps(22) forwards; animation-delay: .6s; }
@keyframes scType { to { width: 22ch; } }
.sc-btn {
  display: inline-flex; align-items: center; border-radius: var(--radius-md);
  padding: 9px 14px; font-size: var(--text-md); font-weight: 600;
  background: var(--c-green); color: var(--c-navy-deep); white-space: nowrap;
}
.sc-toast {
  margin-top: 12px; display: flex; gap: 8px; align-items: center;
  font-size: var(--text-sm); font-weight: 600; color: var(--c-green-deep);
}

/* =====================================================================
 * 3 · Sicherheit und Preise
 * =================================================================== */
.lv-sec { padding: var(--space-10) var(--space-5); background: var(--c-navy-deep); color: var(--c-surface); }
.lv-sec-inner { max-width: 1120px; margin: 0 auto; }
.lv-sec h2 { font-size: var(--text-6xl); line-height: 1.12; margin: 10px 0 12px; color: var(--c-surface); letter-spacing: -0.02em; }
.lv-sec h2 em { color: var(--heading-accent-dark); font-style: normal; }
.lv-sec .ld-eyebrow { color: var(--c-green-bright); }
.lv-sec-lead { font-size: var(--text-lg); line-height: 1.6; color: rgba(var(--c-white-rgb), .75); max-width: 620px; margin: 0 0 40px; }
.lv-sec-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.lv-sec-item {
  padding: 22px; border-radius: var(--radius-lg);
  background: rgba(var(--c-white-rgb), .05); border: 1px solid rgba(var(--c-white-rgb), .1);
}
.lv-sec-item .ico { font-size: var(--text-4xl); color: var(--c-green-bright); margin-bottom: 14px; }
.lv-sec-item h3 { font-size: var(--text-xl); margin: 0 0 8px; color: var(--c-surface); }
.lv-sec-item p { font-size: var(--text-base); line-height: 1.6; margin: 0; color: rgba(var(--c-white-rgb), .72); }
@media (max-width: 959px) { .lv-sec-grid { grid-template-columns: 1fr 1fr; } .lv-sec h2 { font-size: var(--text-5xl); } }
@media (max-width: 560px) { .lv-sec-grid { grid-template-columns: 1fr; } }

.lv-price { padding: var(--space-10) var(--space-5); }
.lv-price-inner { max-width: 1000px; margin: 0 auto; }
.lv-price-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 8px; }
.lv-plan {
  background: var(--c-surface); border: 1px solid var(--c-track); border-radius: var(--radius-xl);
  padding: 28px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
}
.lv-plan.is-main { border: 2px solid var(--c-green); box-shadow: var(--shadow); }
.lv-plan-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.lv-plan h3 { font-size: var(--text-2xl); margin: 0; color: var(--c-navy-deep); }
.lv-plan-price { margin: 14px 0 4px; font-size: var(--text-8xl); font-weight: 700; color: var(--c-navy-deep); letter-spacing: -0.03em; line-height: 1; }
.lv-plan-price small { font-size: var(--text-lg); font-weight: 500; color: var(--c-text-muted); letter-spacing: 0; }
.lv-plan-alt { font-size: var(--text-sm); color: var(--c-text-muted); margin: 0 0 18px; }
.lv-plan ul { list-style: none; margin: 0 0 22px; padding: 0; display: grid; gap: 9px; }
.lv-plan li { display: flex; gap: 10px; font-size: var(--text-base); line-height: 1.5; }
.lv-plan li .ico { flex: none; margin-top: 3px; color: var(--c-green-deep); }
.lv-plan .ld-cta, .lv-plan .ld-cta-alt { margin-top: auto; text-align: center; justify-content: center; }
.lv-price-note { font-size: var(--text-sm); color: var(--c-text-muted); margin: 18px 0 0; line-height: 1.6; }
@media (max-width: 760px) { .lv-price-grid { grid-template-columns: 1fr; } }


@media (prefers-reduced-motion: reduce) {
  .fx-scene, .fx-step { transition: none; }
  .sc-in { opacity: 1; }
  .is-play .sc-in, .is-play .sc-push, .is-play .sc-vf:after,
  .is-play .sc-files .sc-row:after { animation: none; }
  .sc-found { opacity: 1; max-height: 20px; }
  .sc-bar i { width: var(--bis); }
  .sc-readbar i { width: 100%; }
  .sc-invite .sc-field span { width: auto; }
  .sc-check-open .sc-tick { background: var(--c-green); border-color: var(--c-green); color: var(--c-surface); }
  .sc-files .sc-state { opacity: 0; } .sc-files .sc-done { opacity: 1; }
}
