/* Startseite v2 — seitenspezifisch (Hero-Buehne). Shared liegt in design-system.css */

.hero{min-height:100svh;display:flex;flex-direction:column;padding:0 var(--pad);position:relative;z-index:0;overflow:hidden}
/* Die Faser laeuft als Band quer durch den Hero, hinter Copy und Buehne */
.hero-faser{top:36%;height:220px}

/* ── Der Film: ein Anruf wird Marge ──────────────────────────────────
   Ohne .cine (kein JS / reduced-motion): Szenen stehen ruhig untereinander.
   Mit .cine: Sticky-Buehne, Scroll schaltet Szenen, die Faser gewinnt Kraft. */
.film{position:relative}
.film-stage{position:relative;display:flex;flex-direction:column}
.film .scene{display:flex;flex-direction:column;align-items:center;justify-content:center;gap:14px;
  text-align:center;padding:70px var(--pad)}
.f-kicker{font-family:"JetBrains Mono",monospace;font-size:10.5px;letter-spacing:.24em;color:var(--bordeaux)}
.f-h{font-weight:300;font-size:clamp(44px,6vw,96px);line-height:1.03;letter-spacing:-.02em;max-width:16ch}
.f-sub{font-weight:500;font-size:clamp(15px,1.4vw,19px);color:var(--ink-3);max-width:46ch}
.film-faser{top:44%;height:170px;opacity:.18;transition:opacity 1.1s var(--ease),height 1.1s var(--ease),top 1.1s var(--ease)}
.film-track{display:none}
/* Szenen-Requisiten */
.f-clock{font-family:"JetBrains Mono",monospace;font-weight:500;font-size:clamp(64px,9vw,124px);
  letter-spacing:.06em;line-height:1;color:var(--ink)}
.f-ring{width:10px;height:10px;border-radius:50%;background:var(--coral);position:relative;margin-top:6px}
.f-ring::before,.f-ring::after{content:"";position:absolute;inset:-16px;border:1.5px solid var(--coral);
  border-radius:50%;opacity:0}
/* Susannes Portraet: tritt aus dem Dunkel, von der Faser warm beleuchtet */
.f-port{width:200px;height:200px;border-radius:50%;position:relative;margin:4px 0 10px;
  box-shadow:0 34px 90px -34px rgba(0,0,0,.85),0 0 0 1px rgba(244,220,174,.22)}
.f-port img{width:100%;height:100%;object-fit:cover;display:block;border-radius:50%}
/* grosser Kreis: Chip an die Kreisbahn ruecken (Box-Ecke laege im Leeren) */
.f-port .ai-tag{right:16px;bottom:10px;font-size:9px;padding:4px 7px}
.f-port::after{content:"";position:absolute;inset:0;border-radius:50%;
  background:linear-gradient(205deg,rgba(20,10,15,.5),transparent 42%,transparent 62%,rgba(197,111,110,.28))}
.f-doc{display:flex;flex-direction:column;gap:10px;margin-top:8px}
.f-doc span{font-family:"JetBrains Mono",monospace;font-size:11.5px;letter-spacing:.14em;color:var(--ink-3);
  border-left:2px solid var(--coral);padding-left:12px;text-align:left}

.cine .film{height:560svh}
.cine .film-stage{position:sticky;top:0;height:100svh;overflow:hidden;display:block}
.cine .film .scene{position:absolute;inset:0;opacity:0;transform:translateY(26px);pointer-events:none;
  visibility:hidden;transition:opacity .8s var(--ease),transform .8s var(--ease),visibility 0s .8s}
/* Runde 5 (User: "Probegespraech starten laesst sich nicht oeffnen"):
   pointer-events:none schuetzt die unsichtbaren Stapel-Szenen — die AKTIVE
   Szene muss ihre Klickbarkeit aber zurueckbekommen, sonst sind Visitenkarte
   und Links im ganzen Film tot (galt auch fuer Desktop!). */
.cine .film .scene.on{opacity:1;transform:none;visibility:visible;transition-delay:0s;pointer-events:auto}
/* Runde 8 (User: "Links auf der Susanne-Kartenseite funktionieren nicht"):
   die Track-Sentinels liegen NACH der sticky .film-stage im DOM und ohne
   z-index gewinnt der spaetere Positioned-Block — die Folie lag also ueber
   dem ganzen Film und schluckte JEDEN Klick (Visitenkarte, Probegespraech-
   CTA, Mail-Link). Das ist NICHT der Runde-5-Bug (der sass auf .scene) —
   hier war eine zweite Ebene darueber. Die <i> sind reine Intersection-
   Observer-Marken (aria-hidden, leer) und brauchen nie Pointer-Input. */
.cine .film-track{display:block;position:absolute;inset:0;pointer-events:none}
.cine .film-track i{position:absolute;left:0;right:0;height:20%}
.cine .film-track i:nth-child(1){top:0}
.cine .film-track i:nth-child(2){top:20%}
.cine .film-track i:nth-child(3){top:40%}
.cine .film-track i:nth-child(4){top:60%}
.cine .film-track i:nth-child(5){top:80%}

/* ── Der Bogen: Creme -> Nacht -> Morgenroete -> Creme ──
   Zwei Vollflaechen-Layer hinter allem; nur ihre Opacity wandert. */
.cine .film-stage::before,.cine .film-stage::after{content:"";position:absolute;inset:0;z-index:-2;
  opacity:0;transition:opacity 1.2s var(--ease)}
.cine .film-stage::before{background:linear-gradient(180deg,#1A0C16,#0E070D 70%)}          /* Nacht: Plum-Ink, kein Braun */
.cine .film-stage::after{background:linear-gradient(180deg,#FBF2DC,var(--paper) 70%)}       /* Morgen: klares Licht */
.cine .film-stage.sc1::before,.cine .film-stage.sc2::before,.cine .film-stage.sc3::before,
.cine .film-stage.sc4::before{opacity:1}
.cine .film-stage.sc5::after{opacity:1}
/* Nacht-Szenen: Licht-Typo, Coral-Akzente, Susannes Faser ist DAS Licht */
.cine .s1 .f-h,.cine .s2 .f-h,.cine .s3 .f-h,.cine .s4 .f-h{color:var(--paper)}
.cine .s1 .accent,.cine .s2 .accent,.cine .s3 .accent,.cine .s4 .accent{color:var(--champagne)}
.cine .s1 .f-kicker,.cine .s2 .f-kicker,.cine .s3 .f-kicker,.cine .s4 .f-kicker{color:var(--on-dark-dim)}
.cine .s2 .f-sub,.cine .s3 .f-sub,.cine .s4 .f-sub{color:var(--on-dark-dim)}
.cine .s4 .f-sub a{color:var(--champagne);border-bottom:1px solid rgba(244,220,174,.4)}
.cine .f-clock{color:var(--champagne)}
.cine .f-doc span{color:rgba(244,220,174,.75);border-left-color:var(--coral)}
.cine .f-ring::before{animation:f-ring 3.4s ease-out infinite}
.cine .f-ring::after{animation:f-ring 3.4s ease-out 1.7s infinite}
@keyframes f-ring{0%{transform:scale(.5);opacity:.5}70%{opacity:.14}100%{transform:scale(1.9);opacity:0}}
/* Die Faser als Heldenmotiv: kaum da -> das Licht der Nacht -> Morgenglut */
.cine .film-stage.sc1 .film-faser{opacity:.22;height:120px}
.cine .film-stage.sc2 .film-faser{opacity:.85;height:190px}
.cine .film-stage.sc3 .film-faser{opacity:.5;height:160px}
.cine .film-stage.sc4 .film-faser{opacity:.75;height:200px}
.cine .film-stage.sc5 .film-faser{opacity:.95;height:250px;top:40%}

.f-alt{opacity:.85}


/* ── Die zweite Buehne: das Dokument-Panel (helles Pendant zur Telefon-Buehne) ── */
.doc-wrap{margin:6px 0 40px}
.doc-stage{position:relative;background:#FDFAF2;border:1px solid var(--rule);border-radius:18px;
  width:min(560px,100%);padding:26px 30px 30px;  /* 92vw ragte ueber die Raender (Runde 6) */
  box-shadow:0 40px 90px -40px rgba(26,14,20,.5),0 0 0 1px rgba(255,255,255,.6) inset}
/* zwei ruhende Blaetter dahinter: der Stapel, aus dem Ordnung wird */
.doc-stage::before,.doc-stage::after{content:"";position:absolute;inset:0;border-radius:18px;z-index:-1;
  background:var(--paper-2);border:1px solid var(--rule)}
.doc-stage::before{transform:rotate(-2.2deg) translate(-10px,8px);opacity:.7}
.doc-stage::after{transform:rotate(1.6deg) translate(12px,14px);opacity:.45}
.ds-top{display:flex;align-items:center;gap:12px;border-bottom:1.5px solid var(--ink);padding-bottom:14px;margin-bottom:10px}
.ds-top svg{width:30px;height:30px;flex:none}
.ds-no{font-family:"JetBrains Mono",monospace;font-size:12px;letter-spacing:.14em;font-weight:500}
.ds-status{margin-left:auto;font-family:"JetBrains Mono",monospace;font-size:9.5px;letter-spacing:.12em;color:var(--bordeaux)}
.ds-meta{font-family:"JetBrains Mono",monospace;font-size:9.5px;letter-spacing:.1em;color:var(--ink-3);margin-bottom:16px}
.ds-pos{display:flex;align-items:baseline;gap:12px;padding:10px 0;font-size:14.5px;color:var(--ink-2)}
.ds-pos .t{font-weight:600}
.ds-pos i{flex:1;border-bottom:1.5px dotted var(--rule)}
.ds-pos .v{font-family:"JetBrains Mono",monospace;font-size:13.5px}
.ds-total{display:flex;align-items:baseline;justify-content:space-between;border-top:1.5px solid var(--ink);
  margin-top:8px;padding-top:14px}
.ds-total span{font-family:"JetBrains Mono",monospace;font-size:10px;letter-spacing:.14em;color:var(--ink-3)}
.ds-total b{font-weight:300;font-size:30px;letter-spacing:-.01em}
/* Stempel raeumt die GESAMT-NETTO-Zeile (Muster von /ki-implementierung/, pages.css) */
.ds-stamp{position:absolute;right:186px;bottom:56px;font-family:"JetBrains Mono",monospace;font-size:12px;
  letter-spacing:.14em;color:var(--bordeaux);border:2.5px solid var(--bordeaux);border-radius:8px;
  padding:8px 14px;transform:rotate(-7deg);opacity:.9;background:rgba(253,250,242,.85)}
.ds-cap{font-family:"JetBrains Mono",monospace;font-size:10px;letter-spacing:.1em;color:var(--ink-3);margin-top:26px}
/* schmal: KEIN Ueberlappen mehr (Audit 17.08.: Stempel verdeckte den Betrag
   der letzten Position) — Stempel rueckt unter die GESAMT-NETTO-Zeile */
@media (max-width:600px){.ds-stamp{position:static;display:inline-block;margin-top:14px;transform:rotate(-4deg)}}
/* Choreografie: Positionen schreiben sich, Summe erscheint, Stempel klackt — einmalig beim Reveal */
.js .doc-stage .ds-pos,.js .doc-stage .ds-total,.js .doc-stage .ds-stamp{opacity:0}
.js .reveal.in .ds-pos{animation:ds-in .6s var(--ease) forwards}
.js .reveal.in .p1{animation-delay:.4s}
.js .reveal.in .p2{animation-delay:1.1s}
.js .reveal.in .p3{animation-delay:1.8s}
.js .reveal.in .ds-total{animation:ds-in .6s var(--ease) 2.6s forwards}
.js .reveal.in .ds-stamp{animation:ds-stamp .5s var(--ease) 3.4s forwards}
@keyframes ds-in{from{opacity:0;transform:translateY(8px)}to{opacity:1;transform:none}}
@keyframes ds-stamp{from{opacity:0;transform:rotate(-7deg) scale(1.7)}to{opacity:.9;transform:rotate(-7deg) scale(1)}}
@media (prefers-reduced-motion:reduce){
  .js .doc-stage .ds-pos,.js .doc-stage .ds-total,.js .doc-stage .ds-stamp{opacity:1;animation:none}
  .js .reveal.in .ds-stamp{opacity:.9}
}
.tiles.two{grid-template-columns:1fr 1fr}
@media (max-width:900px){.tiles.two{grid-template-columns:1fr}}

/* Nachtbilanz */
.f-bilanz{display:flex;gap:18px;margin:14px 0 10px;flex-wrap:wrap;justify-content:center}
.f-bilanz span{display:flex;flex-direction:column;gap:2px;min-width:150px;padding:16px 20px;border-radius:14px;
  background:rgba(255,255,255,.55);border:1px solid var(--rule);font-size:13px;color:var(--ink-2)}
.f-bilanz b{font-weight:300;font-size:38px;color:var(--ink);line-height:1.1}
/* Debug-Anker fuer Review-Screenshots (#szeneN): nur den Film zeigen */
.film-debug .film{height:100svh}
.film-debug main>*:not(.film),.film-debug .site-footer{display:none}

@media (prefers-reduced-motion:reduce){
  .cine .f-ring::before,.cine .f-ring::after{animation:none}
  .film-faser{transition:none}
  .cine .film-stage::before,.cine .film-stage::after{transition:none}
}
.hero-inner{flex:1;display:grid;grid-template-columns:minmax(0,1fr) minmax(0,1fr);gap:54px;align-items:center;
  max-width:var(--wrap);margin:0 auto;width:100%;padding-top:96px}
.hero-copy h1{margin:20px 0 14px}
.hero-copy .lede{margin-bottom:12px}
.hero-copy .sub{font-size:15px;line-height:1.65;color:var(--ink-3);max-width:48ch;margin-bottom:24px}
.hero-ctas{display:flex;gap:14px;flex-wrap:wrap;margin-bottom:26px}
.proofline{display:flex;flex-wrap:wrap;border-top:1px solid var(--rule);max-width:520px}
.proofline span{font-family:"JetBrains Mono",monospace;font-size:10.5px;letter-spacing:.08em;color:var(--ink-3);padding:12px 18px 0 0}
.proofline b{color:var(--wine)}

.stage{position:relative}
.stage .phone{margin-left:auto}
.stage .cap{font-family:"JetBrains Mono",monospace;font-size:10px;letter-spacing:.1em;color:var(--ink-3);
  text-align:right;max-width:470px;margin:12px 0 0 auto}

/* Hotline-Zeile im Panel: bis zur Freischaltung gegated (.soon) */
.ph-hotline{display:flex;align-items:center;gap:12px;margin-top:14px;padding:12px 14px;border-radius:12px;
  background:rgba(244,220,174,.07);border:1px dashed rgba(244,220,174,.28)}
.ph-hotline .ico{font-size:16px}
.ph-hotline .t b{display:block;font-size:13px;color:var(--paper)}
.ph-hotline .t span{font-family:"JetBrains Mono",monospace;font-size:9.5px;letter-spacing:.1em;color:var(--on-dark-dim)}
.ph-hotline.live{border-style:solid;border-color:rgba(197,111,110,.45);background:rgba(197,111,110,.16);
  transition:background .25s var(--ease),border-color .25s var(--ease)}
.ph-hotline.live:hover{background:rgba(197,111,110,.28);border-color:rgba(197,111,110,.7)}
.ph-hotline.live .t span{color:var(--champagne)}

/* Aufgezeichnete Beispiel-Anrufe (Startseiten-Kurzform) */
.calls{display:flex;flex-direction:column;gap:10px;max-width:470px;margin:18px 0 0 auto}
.call{display:flex;align-items:center;gap:12px;background:rgba(255,255,255,.5);border:1px solid var(--rule);
  border-radius:14px;padding:10px 14px}
.call .p{width:34px;height:34px;border-radius:50%;background:var(--ink);color:var(--paper);flex:none;
  display:flex;align-items:center;justify-content:center;font-size:12px}
.call .t{flex:1;min-width:0}
.call .t b{display:block;font-size:13.5px}
.call .t span{font-family:"JetBrains Mono",monospace;font-size:10px;letter-spacing:.08em;color:var(--ink-3)}
.call audio{width:170px;height:32px}
.call .len{font-family:"JetBrains Mono",monospace;font-size:10.5px;color:var(--ink-3)}

@media (max-width:1080px){
  .hero-inner{grid-template-columns:1fr;gap:34px;padding-top:90px}
  .stage .phone{margin:0 auto}
  .stage .cap{margin:12px auto 0;text-align:center}
}

/* ── V4b: Die Visitenkarte als Beweis-Objekt (statt Riesen-Nummer) ──
   Nachbau der echten Lousmont-Karte (85x55, Lockup, Coral-Regel) —
   schwebt im Dunkel, warm angeleuchtet, komplett klickbar (tel:). */
.vkarte{position:relative;display:block;width:min(430px,88vw);aspect-ratio:85/55;
  background:var(--paper);border-radius:10px;padding:7.5% 8% 7%;text-align:left;
  margin:30px 0 26px;transform:rotate(-1.6deg);
  box-shadow:0 50px 110px -40px rgba(0,0,0,.9),0 0 0 1px rgba(244,220,174,.14),
    0 24px 60px -28px rgba(232,185,132,.28);
  transition:transform .35s var(--ease),box-shadow .35s var(--ease)}
.vkarte:hover{transform:rotate(-.4deg) translateY(-4px);
  box-shadow:0 60px 130px -44px rgba(0,0,0,.92),0 0 0 1px rgba(244,220,174,.22),
    0 30px 70px -28px rgba(232,185,132,.4)}
.vk-kopf{display:flex;align-items:center;gap:10px}
.vk-kopf svg{width:34px;height:34px;flex:none}
.vk-marke b{display:block;font-family:"Manrope";font-weight:800;font-size:13px;letter-spacing:.22em;color:var(--ink)}
.vk-marke i{display:block;font-style:normal;font-family:"Manrope";font-weight:500;font-size:8.5px;letter-spacing:.3em;color:var(--ink-2)}
.vk-rule{display:block;height:3px;width:100%;background:var(--coral);border-radius:2px;margin:6.5% 0 7%}
.vk-name{display:block;font-family:"Manrope";font-weight:300;font-size:clamp(22px,2.4vw,30px);letter-spacing:-.01em;color:var(--ink)}
.vk-rolle{display:block;font-family:"Manrope";font-weight:500;font-size:12.5px;color:var(--ink-2);margin-top:3px}
.vk-kontakt{position:absolute;right:8%;bottom:9%;text-align:right}
.vk-nr{display:block;font-family:"JetBrains Mono",monospace;font-weight:500;font-size:clamp(14px,1.5vw,17px);color:var(--ink)}
.vk-web{display:block;font-family:"Manrope";font-weight:600;font-size:11px;color:var(--bordeaux);margin-top:4px}
/* Conversion statt "auf Anfrage" (User-Feedback Runde 2): die eine Aktion der
   Karte als kleiner Wein-Chip — die Karte selbst ist der Link */
.vk-cta{display:inline-block;background:var(--wine);color:var(--champagne);font-family:"Manrope",sans-serif;
  font-weight:700;font-size:12.5px;padding:8px 13px;border-radius:9px;white-space:nowrap}
.vkarte:hover .vk-cta{background:var(--ink)}
@media (prefers-reduced-motion:reduce){.vkarte,.vkarte:hover{transition:none;transform:rotate(-1.6deg)}}

/* ── Akt II: KI-Implementierung spricht selbst — Faktenzeile wie im Hero, eigene Bildunterschrift ── */
.blk .proofline{max-width:720px;margin:0 0 34px}
/* ── Runde 6 (User): Akt II kuendigt sich im SCROLLVERHALTEN an wie der
   Film — Sticky-Buehne, 2 Szenen (These -> Dokument-Buehne), gleiche
   Blend-Sprache wie .film. Ohne JS/reduced-motion: ruhiger Fluss. ── */
.akt2-film{position:relative}
.akt2-stage{position:relative;display:flex;flex-direction:column;gap:40px}
.a2scene{display:flex;flex-direction:column;justify-content:center;align-items:flex-start}
.a2scene .desc{margin-bottom:24px}
.a2scene .proofline{margin-bottom:0}
.akt2-track{display:none}
.akt2-rest{padding-top:34px}

.cine .akt2-film{height:220svh}
.cine .akt2-stage{position:sticky;top:0;height:100svh;overflow:hidden;display:block}
.cine .a2scene{position:absolute;inset:0;opacity:0;transform:translateY(26px);pointer-events:none;
  padding:84px var(--pad) 40px;max-width:var(--wrap);margin:0 auto;
  visibility:hidden;transition:opacity .8s var(--ease),transform .8s var(--ease),visibility 0s linear .8s}
.cine .a2scene.on{opacity:1;transform:none;visibility:visible;transition-delay:0s;pointer-events:auto}
/* Gleiche Falle wie bei .film-track (Runde 8) — hier haengt der Ghost-CTA
   "So arbeiten wir" drunter. */
.cine .akt2-track{display:block;position:absolute;inset:0;pointer-events:none}
.cine .akt2-track i{position:absolute;left:0;right:0;height:50%}
.cine .akt2-track i:nth-child(1){top:0}
.cine .akt2-track i:nth-child(2){top:50%}
.cine .akt2-rest{padding-top:0}

@media (max-width:900px){
  /* Runde 5: die 3px-Zaesur war mobil zu leise fuer einen Aktwechsel —
     die Faser wird zum breiten Gluehen (dieselbe Sprache wie im Film),
     der Akt-Auftakt bekommt leicht getoenten Grund */
  .faser-rule.zaesur{height:46px;max-width:none;border-radius:0;
    filter:blur(16px);opacity:.75}
  #ki.blk{padding-top:0;background:linear-gradient(180deg,var(--paper-2),var(--paper) 55%)}
  .cine .a2scene{padding-top:96px}
}
@media (prefers-reduced-motion:reduce){
  .cine .a2scene{position:static;opacity:1;transform:none;visibility:visible;pointer-events:auto;transition:none}
  .cine .akt2-film{height:auto}
}
/* Kurze Screens (iPhone SE 667): Szene 2 muss samt Dokument passen */
@media (max-width:900px) and (max-height:700px){
  .cine .a2scene{padding-top:70px;padding-bottom:24px}
  .a2s2 .doc-stage{padding:18px 22px 22px}
  .a2s2 .ds-pos{padding:7px 0;font-size:13.5px}
  .a2s2 .ds-total b{font-size:26px}
  .a2s2 .doc-cap{margin-top:10px}
}

/* Debug-Anker #akt2s1/#akt2s2 (Muster film-debug) */
.akt2-debug .akt2-film{height:100svh}
.akt2-debug main>*:not(#ki),.akt2-debug .site-footer,.akt2-debug .akt2-rest{display:none}
.doc-cap{font-family:"JetBrains Mono",monospace;font-size:10px;letter-spacing:.1em;color:var(--ink-3);margin-top:16px}

/* V4b-Korrektur: echte 85:55-Proportion, Layout wie die gedruckte Karte */
.vkarte{display:flex;flex-direction:column;width:min(470px,90vw);aspect-ratio:85/55;
  padding:22px 26px 20px;overflow:hidden}
.vk-kopf svg{width:30px;height:30px}
.vk-marke b{font-size:12px}
.vk-marke i{font-size:8px}
.vk-rule{margin:14px 0 0}
.vk-unten{display:flex;align-items:flex-end;justify-content:space-between;margin-top:auto;gap:16px}
.vk-name{font-size:clamp(22px,2.3vw,28px)}
.vk-rolle{font-size:12px;margin-top:2px}
.vk-kontakt{position:static;text-align:right;flex:none}
.vk-nr{font-size:clamp(13px,1.4vw,16px)}

/* V4b-Feedback-Runde: gerade Karte, lebendiger, hellere Nacht */
/* 1) Karte gerade + Ueberreich-Moment (steigt auf, wenn die Szene beginnt) */
.vkarte{transform:none}
.vkarte:hover{transform:translateY(-4px)}
.cine .s4 .vkarte{opacity:0;transform:translateY(46px);transition:opacity .9s var(--ease) .25s,transform .9s var(--ease) .25s}
.cine .s4.on .vkarte{opacity:1;transform:none}
.cine .s4.on .vkarte:hover{transform:translateY(-4px)}
/* 2) Susannes Portraet auf der Karte (Mitarbeiterkarte) */
.vk-foto{position:absolute;top:18px;right:22px;width:52px;height:52px;border-radius:50%;
  box-shadow:0 0 0 2px var(--coral),0 6px 16px -8px rgba(138,56,72,.55)}
.vk-foto img{width:100%;height:100%;object-fit:cover;display:block;border-radius:50%}
/* 3) Die Nacht heller: Abend mit Licht statt Keller */
.cine .film-stage::before{background:linear-gradient(180deg,#2B1723,#190D15 75%)}
.cine .film-stage.sc1 .film-faser{opacity:.34;height:140px}
.cine .film-stage.sc2 .film-faser{opacity:.9;height:200px}
.cine .film-stage.sc3 .film-faser{opacity:.62;height:170px}
.cine .film-stage.sc4 .film-faser{opacity:.8;height:210px}
@media (prefers-reduced-motion:reduce){
  .cine .s4 .vkarte{opacity:1;transform:none;transition:none}
}

/* V4b: Erster Screen — stabil und vollstaendig sichtbar
   1) Feste Dialog-Hoehe -> kein Layout-Shift der linken Copy mehr
   2) Buehne kompakter -> Panel + Beispiel-Player passen in den Fold */
.hero-inner{padding-top:84px;gap:40px}
.hero .phone{max-width:440px;padding:18px 20px 14px}
.hero .ph-top{margin-bottom:12px}
.hero .caller{padding:10px 12px;margin-bottom:12px}
.hero .script{min-height:0;overflow:hidden}
.hero .line{font-size:12.5px;padding:8px 12px;border-radius:11px}
.hero .ph-result{margin-top:12px}
.hero .ph-hotline{margin-top:10px;padding:9px 12px}
.hero .ph-switch{margin-top:12px;padding-top:12px}
.hero .sw{padding:7px 0;font-size:12px}
.hero .calls{margin-top:10px}
.hero .call{padding:9px 13px}
.hero .stage .cap{margin-top:8px}
.hero-copy .sub{margin-bottom:20px}
.hero-ctas{margin-bottom:20px}

/* V4b: Rest-Wackler + Smartphone-Lesbarkeit
   a) Chip-Zeile feste Hoehe -> Panelhoehe konstant ueber beide Dialoge
   b) Typing-Slot reserviert Platz (visibility statt display) -> schiebt nie
   c) Dialogfenster fasst den laengsten Dialog komplett (Desktop + Mobil) */
.hero .script{height:328px}
.hero .ph-result{flex-wrap:nowrap;height:26px;overflow:hidden;align-items:center}
.hero .typing{display:inline-flex;visibility:hidden}
.hero .typing.on{visibility:visible}
@media (max-width:720px){
  .hero .script{height:372px}
  /* 390px-Audit: 2 Chip-Zeilen + Gap brauchen ~64px — bei 56px wurde die
     zweite Zeile vom overflow:hidden beschnitten */
  .hero .ph-result{flex-wrap:wrap;height:64px;align-content:flex-start}
}

/* V4b: Erster Screen passt in ~730px-Fenster —
   Beispiel-Anruf-Player links unter die Fakten (rechts traegt nur noch das Panel),
   Panel-Chrome kompakter, Dialogfenster neu kalibriert */
.hero-inner{padding-top:68px;gap:44px}
.hero .phone{padding:16px 18px 12px}
.hero .ph-top{margin-bottom:10px}
.hero .caller{padding:8px 12px;margin-bottom:10px}
.hero .script{gap:6px;height:296px}
.hero .line{font-size:12px;line-height:1.45;padding:7px 11px}
.hero .typing{padding:8px 14px}
.hero .ph-hotline{margin-top:8px;padding:8px 12px}
.hero .ph-switch{margin-top:10px;padding-top:10px}
.hero .sw{padding:6px 0}
@media (max-width:720px){.hero .script{height:344px}}
.hero-copy .calls{margin:14px 0 0;max-width:470px}
.hero-copy .call{padding:8px 12px}
.hero-copy .cap{font-family:"JetBrains Mono",monospace;font-size:9.5px;letter-spacing:.1em;color:var(--ink-3);margin-top:8px}

/* V4b: Szene 4 entzerrt — Uhrzeit klebte an der Oberkante, weil der Stack
   fast die volle Szenenhoehe fuellte. Titel + Karte kompakter -> Luft oben. */
.cine .s4 .f-h{font-size:clamp(40px,4.6vw,70px)}
.vkarte{width:min(410px,88vw);padding:20px 24px 18px}
.vk-name{font-size:clamp(20px,2.1vw,25px)}
.vk-foto{width:48px;height:48px;top:16px;right:20px}

/* Handy-Runde 3 (User: "Karteninhalt rechts abgeschnitten"): unter 560px
   passen Name/Rolle + Chip nicht nebeneinander — overflow:hidden schnitt
   rechts ab. Mobil: Karte laesst die starre 85:55-Proportion los und
   stapelt. MUSS in der Kaskade NACH allen .vk-*-Basisregeln stehen! */
@media (max-width:560px){
  .vkarte{aspect-ratio:auto;padding:18px 20px 16px}
  .vk-rolle{white-space:nowrap}
  .vk-unten{flex-direction:column;align-items:flex-start;gap:12px;margin-top:16px}
  .vk-unten>span:first-child{text-align:left}
  .vk-kontakt{display:flex;align-items:center;justify-content:space-between;width:100%;text-align:left}
  .vk-web{margin-top:0}
  .vk-cta{font-size:11.5px;padding:8px 12px}
}


/* ── Handy-Review 17.08. (User-Feedback, echtes Geraet) ─────────────────
   a) Eyebrow "klebte" an der Kopfzeilen-Trennlinie -> mehr Luft nach oben
   b) "Seite 2" (Anruf-Panel) war laenger als der Display: Panel-Chrome weg
      (.ph-top/.ph-switch sind aria-hidden-Dekoration), Abstaende enger —
      das angedeutete Smartphone verschenkte wertvollen Platz
   c) Film-Szenen: Platz fuer die fixe Kopfzeile + Aufwaerts-Bias gegen die
      Boden-Leere, Requisiten eine Stufe kompakter
   d) nach dem Film: Sektionsabstaende mobil gestrafft (design-system) */
@media (max-width:900px){
  /* Runde 4: 118px war zu viel Luft ueber dem Eyebrow UND drueckte den
     Demo-Call unter die Kante — Rhythmus insgesamt straffen, damit
     Screen 1 bis zum Player inkl. Kennzeichnung passt (auch 740er-Android) */
  .hero-inner{padding-top:92px;gap:24px}
  .hero-copy h1{margin:12px 0 10px}
  .hero-copy .lede{margin-bottom:8px}
  .hero-copy .sub{margin-bottom:14px}
  .hero-ctas{margin-bottom:14px;gap:10px}
  .proofline span{padding-top:9px}
  .hero-copy .calls{margin-top:10px}
}
@media (max-width:720px){
  .hero .ph-top,.hero .ph-switch{display:none}
  .hero .phone{max-width:none;padding:12px 12px 10px}
  .hero .caller{margin-bottom:8px;padding:8px 10px}
  .hero .stage .cap{margin-top:10px}
  /* Runde 5: das Dialogfenster reservierte 344px fuer den laengsten Dialog —
     kleinere Schrift senkt den Bedarf, Panel + Saeulen-Links passen wieder
     zusammen auf Screen 2 (Hoehe fuer Dialog 2 per virtueller Uhr verifiziert) */
  .hero .line{font-size:11.5px;line-height:1.45;padding:6px 10px}
  .hero .script{gap:5px;height:312px}
  .hero .ph-result{height:60px;gap:6px}
  .hero .ph-hotline{margin-top:8px;padding:8px 10px}
  /* Film: Kopfzeile ist fix (ca. 64px) — Szeneninhalt darunter beginnen,
     unten staerker polstern -> Inhalt rueckt hoch, Leere wird kleiner */
  .film .scene{padding:84px var(--pad) 110px}
  /* Handy-Runde 3 (Android): die URL-Leiste veraendert die sichtbare Hoehe —
     zentrierter Inhalt "atmet" mit. Im Cine-Modus mobil deshalb OBEN
     verankern: die Oberkante steht fest, nur unten variiert der Freiraum. */
  .cine .film .scene{justify-content:flex-start;padding-top:104px}
  .f-clock{font-size:clamp(48px,15vw,72px)}
  .f-port{width:140px;height:140px}
  .f-bilanz{gap:10px}
  .f-bilanz span{min-width:104px;padding:12px 12px}
  .f-bilanz b{font-size:28px}
  .cine .s4 .f-h{font-size:clamp(34px,9vw,48px)}
}

/* V4b: Grosse Desktop-Monitore (ab ~1440p) — Buehne wirkt sonst verloren */
@media (min-width:1800px) and (min-height:1000px){
  .hero-inner{gap:64px}
  .hero .phone{max-width:500px;padding:20px 22px 16px}
  .hero .script{height:348px}
  .hero .line{font-size:13.5px;line-height:1.5;padding:9px 13px}
  .hero .caller{padding:10px 14px}
  .hero .ph-hotline{padding:10px 14px}
}

/* V4b: Faser zurueck zum V0.1-Live-Rezept — "weiches Meer mit Stroemung",
   KEIN Horizont: Glockenkurven-Masken (9 Stops, kein Plateau) statt 30/70-Kante,
   Hero-Feld wieder gross (72% Hoehe), Original-Gradienten 95deg/85deg. */
.faser .band{
  -webkit-mask-image:linear-gradient(180deg,transparent 0%,rgba(0,0,0,.04) 8%,rgba(0,0,0,.20) 20%,rgba(0,0,0,.55) 35%,#000 50%,rgba(0,0,0,.55) 65%,rgba(0,0,0,.20) 80%,rgba(0,0,0,.04) 92%,transparent 100%);
  mask-image:linear-gradient(180deg,transparent 0%,rgba(0,0,0,.04) 8%,rgba(0,0,0,.20) 20%,rgba(0,0,0,.55) 35%,#000 50%,rgba(0,0,0,.55) 65%,rgba(0,0,0,.20) 80%,rgba(0,0,0,.04) 92%,transparent 100%)}
.faser .halo{
  -webkit-mask-image:linear-gradient(180deg,transparent 0%,rgba(0,0,0,.05) 12%,rgba(0,0,0,.25) 28%,rgba(0,0,0,.75) 50%,rgba(0,0,0,.30) 72%,rgba(0,0,0,.06) 88%,transparent 100%);
  mask-image:linear-gradient(180deg,transparent 0%,rgba(0,0,0,.05) 12%,rgba(0,0,0,.25) 28%,rgba(0,0,0,.75) 50%,rgba(0,0,0,.30) 72%,rgba(0,0,0,.06) 88%,transparent 100%)}
.hero-faser{top:0;height:100%}
.hero-faser .band{top:30%;bottom:4%;opacity:.85;background:linear-gradient(95deg,
  #1A0E14 0%,#4A1828 10%,#5A2030 18%,#8A3848 28%,#C56F6E 40%,#E8B984 52%,
  #F4DCAE 60%,#E8B984 68%,#C56F6E 78%,#8A3848 86%,#5A2030 92%,#1A0E14 100%);
  background-size:300% 100%}
.hero-faser .halo{top:38%;bottom:2%;opacity:.65;transform:none;background:linear-gradient(85deg,
  rgba(26,14,20,.50) 0%,rgba(90,32,48,.60) 14%,rgba(138,56,72,.65) 28%,
  rgba(197,111,110,.68) 44%,rgba(232,185,132,.68) 60%,rgba(244,220,174,.50) 72%,
  rgba(197,111,110,.50) 84%,rgba(90,32,48,.50) 94%,rgba(26,14,20,.50) 100%);
  background-size:300% 100%}

/* V4b: Nahtloser Loop — Verschiebung exakt EINE Kachel (300%-Kachel: -150%-Punkte),
   Pixel-Tempo wie das alte 0->-200/32s-Rezept (4cw/32s = 3cw/24s). Kein Sprung mehr. */
@keyframes hero-flow{from{background-position:0% 50%}to{background-position:-150% 50%}}
@keyframes hero-halo-flow{from{background-position:-150% 50%}to{background-position:0% 50%}}
.hero-faser .band{animation:hero-flow 24s linear infinite}
.hero-faser .halo{animation:hero-halo-flow 43s linear infinite}
@media (prefers-reduced-motion:reduce){.hero-faser .band,.hero-faser .halo{animation:none}}

/* V4b: Immer-lesbar-Garantie OHNE den Strang anzutasten —
   gleiche Glockenform, aber Scheitel im Hero auf .62/.50 gekappt:
   Amber/Coral-Phasen unveraendert, Wein-Phase wird rosé statt satt.
   Worst Case gemessen (Peak x Wein): ink-2 5.2:1, Ghost-Button ~9:1. */
.hero-faser .band{
  -webkit-mask-image:linear-gradient(180deg,transparent 0%,rgba(0,0,0,.03) 8%,rgba(0,0,0,.14) 20%,rgba(0,0,0,.38) 35%,rgba(0,0,0,.62) 50%,rgba(0,0,0,.38) 65%,rgba(0,0,0,.14) 80%,rgba(0,0,0,.03) 92%,transparent 100%);
  mask-image:linear-gradient(180deg,transparent 0%,rgba(0,0,0,.03) 8%,rgba(0,0,0,.14) 20%,rgba(0,0,0,.38) 35%,rgba(0,0,0,.62) 50%,rgba(0,0,0,.38) 65%,rgba(0,0,0,.14) 80%,rgba(0,0,0,.03) 92%,transparent 100%)}
.hero-faser .halo{
  -webkit-mask-image:linear-gradient(180deg,transparent 0%,rgba(0,0,0,.04) 12%,rgba(0,0,0,.18) 28%,rgba(0,0,0,.50) 50%,rgba(0,0,0,.22) 72%,rgba(0,0,0,.05) 88%,transparent 100%);
  mask-image:linear-gradient(180deg,transparent 0%,rgba(0,0,0,.04) 12%,rgba(0,0,0,.18) 28%,rgba(0,0,0,.50) 50%,rgba(0,0,0,.22) 72%,rgba(0,0,0,.05) 88%,transparent 100%)}
.hero .btn-ghost{background:rgba(246,241,229,.6)}

/* V4b: Szene 4 — Abschlusszeile einzeilig (kein Waisenwort-Umbruch) */
.s4 .f-sub{max-width:72ch}

/* Review-Fixes: gedimmter Film-Kicker (statt Inline-Style); Beispiel-Anruf als Link */
.f-kicker.dim{opacity:.6}
/* Matrix-Audit: auf dunklen Szenen lag der Feinprint bei ~4.0:1 — anheben */
.cine .scene .f-kicker.dim{opacity:.85}
.hero-copy a.call{text-decoration:none;color:inherit}
