/* Workio Plattform — Design-System nach Vibe-Coding-Spezifikation.
   Basis-Tokens in tokens.css; hier werden die historischen Variablen-
   namen auf die neuen Tokens gemappt, damit die ganze Seite in einem
   Zug Manrope, Canvas, Radien, Schatten und Farbsystem übernimmt. */
@import url('/assets/tokens.css');
:root {
  --bg: var(--canvas);
  --card: var(--surface);
  --text: var(--ink);
  --text-secondary: var(--muted);
  --radius: var(--r-card);
  --radius-sm: var(--r-input);
  --shadow: var(--shadow-card);
  --ok: var(--green);
  --warn: var(--yellow);
  --err: var(--coral);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: var(--lh-body);
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1, h2, h3, h4 { letter-spacing: -0.02em; }
main { flex: 1; }

/* Header — sticky mit Blur, Kante erscheint erst beim Scrollen */
.nav {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1080px; margin: 0 auto; padding: 20px 24px; width: 100%;
}
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--canvas) 82%, transparent);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-control) ease;
}
.site-header.scrolled { border-bottom-color: var(--border); }
.nav .brand { font-size: 21px; font-weight: 800; letter-spacing: -0.03em; color: var(--text); text-decoration: none; }
.nav .brand span { color: var(--accent); }
.nav .links { display: flex; gap: 12px; align-items: center; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font: inherit; font-weight: 600; font-size: 15px;
  border: none; border-radius: 980px; cursor: pointer;
  padding: 10px 22px; text-decoration: none;
  /* exakte Properties statt `all`; Druck-Feedback via scale */
  transition: transform 160ms var(--ease-out), background-color 150ms ease, opacity 150ms ease;
}
.btn:active { transform: scale(0.97); }
.btn-primary { background: var(--accent); color: #fff; }
.btn-secondary { background: rgba(0,0,0,0.05); color: var(--text); }
@media (hover: hover) and (pointer: fine) {
  .btn-primary:hover { background: var(--accent-hover); }
  .btn-secondary:hover { background: rgba(0,0,0,0.09); }
}
.btn-lg { padding: 14px 32px; font-size: 17px; }
.btn-oauth {
  width: 100%; background: #fff; color: var(--text);
  border: 1px solid var(--border); box-shadow: 0 1px 2px rgba(0,0,0,0.04);
  margin-bottom: 10px; gap: 10px;
}
@media (hover: hover) and (pointer: fine) {
  .btn-oauth:hover { background: #fafafa; }
}
.divider {
  display: flex; align-items: center; gap: 12px;
  color: var(--text-secondary); font-size: 12px; margin: 14px 0 18px;
}
.divider::before, .divider::after { content: ""; flex: 1; height: 1px; background: var(--border); }
.btn[disabled] { opacity: .5; cursor: default; transform: none; }
.btn-block { width: 100%; }

/* Hero */
.hero { text-align: center; padding: 72px 24px 48px; max-width: 780px; margin: 0 auto; }
.hero h1 { font-size: clamp(34px, 6vw, 56px); font-weight: 700; letter-spacing: -0.03em; line-height: 1.08; }
.hero h1 em { font-style: normal; color: var(--accent); }
.hero p.lead { font-size: clamp(17px, 2.5vw, 21px); color: var(--text-secondary); margin: 20px auto 32px; max-width: 560px; }
.hero .cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero .note { margin-top: 14px; font-size: 13px; color: var(--text-secondary); }

/* Feature-Grid */
.features {
  max-width: 1080px; margin: 24px auto 72px; padding: 0 24px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px;
}
.feature {
  background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 26px 24px;
}
.feature .icon { font-size: 26px; margin-bottom: 12px; }
.feature h3 { font-size: 17px; font-weight: 600; margin-bottom: 6px; letter-spacing: -0.01em; }
.feature p { font-size: 14px; color: var(--text-secondary); }

/* Card / Formulare */
.sheet { max-width: 440px; margin: 48px auto; padding: 0 20px; width: 100%; }
.sheet.wide { max-width: 640px; }
.card {
  background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 32px 28px;
}
.card h1 { font-size: 26px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 6px; }
.card p.sub { color: var(--text-secondary); font-size: 15px; margin-bottom: 24px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13px; font-weight: 600; color: var(--text-secondary); margin-bottom: 6px; }
.field input {
  width: 100%; font: inherit; font-size: 16px;
  padding: 12px 14px; border: 1px solid var(--border); border-radius: var(--radius-sm);
  background: #fafafa; outline: none;
  transition: border-color 150ms ease, background-color 150ms ease;
}
.field input:focus { border-color: var(--accent); background: #fff; }
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-error {
  display: none; background: rgba(255,59,48,0.08); color: var(--err);
  border-radius: var(--radius-sm); padding: 12px 14px; font-size: 14px; margin-bottom: 16px;
}
.form-error.show { display: block; }
.card .alt { text-align: center; margin-top: 18px; font-size: 14px; color: var(--text-secondary); }
.card .alt a { color: var(--accent); text-decoration: none; font-weight: 600; }

/* Status / Portal */
.badge { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; padding: 4px 12px; border-radius: 980px; }
.badge.ok { background: rgba(52,199,89,0.12); color: #248a3d; }
.badge.warn { background: rgba(255,159,10,0.14); color: #b06a00; }
.badge.err { background: rgba(255,59,48,0.10); color: var(--err); }
.tenant-row {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 0; border-bottom: 1px solid var(--border); flex-wrap: wrap;
}
.tenant-row:last-child { border-bottom: none; }
.tenant-row .name { font-weight: 600; font-size: 16px; }
.tenant-row .meta { font-size: 13px; color: var(--text-secondary); }

/* Provisionierungs-Status */
.provision { text-align: center; padding: 8px 0; }
.provision .spinner {
  width: 44px; height: 44px; margin: 8px auto 18px; border-radius: 50%;
  border: 3px solid rgba(0,0,0,0.08); border-top-color: var(--accent);
  animation: spin 0.9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.provision h2 { font-size: 20px; font-weight: 700; letter-spacing: -0.01em; }
.provision p { color: var(--text-secondary); font-size: 14px; margin-top: 6px; }
.provision .done-icon { font-size: 44px; margin-bottom: 10px; }

/* ══ ZENTRIERTER HERO (v5, Goldsand-Inszenierung im Workio-Stil):
   Badge → Headline → Nummer-CTA → iPhone fliegt von unten ein ══ */
.hero-center {
  position: relative; overflow: hidden; text-align: center;
  padding: clamp(52px, 9vh, 92px) 24px 0;
  background:
    radial-gradient(56% 44% at 50% 0%, var(--accent-050), transparent 72%),
    linear-gradient(180deg, #FFFFFF 0%, var(--canvas) 100%);
}
.hc-content { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; }
.hc-badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 7px 15px;
  border-radius: 999px; border: 1px solid var(--border); background: var(--surface);
  font-size: 13px; font-weight: 600; color: var(--muted); letter-spacing: 0.01em;
}
.hc-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.hero-center h1 {
  font-size: clamp(38px, 4.8vw, 64px); font-weight: 800; letter-spacing: -0.04em;
  line-height: 1.04; color: var(--ink); margin-top: 20px;
}
.hero-center h1 em { font-style: normal; color: var(--accent); }
.hc-lead {
  font-size: clamp(16px, 1.7vw, 18.5px); color: var(--muted);
  max-width: 580px; margin: 18px auto 28px; line-height: 1.55;
}
.hc-cta { display: flex; gap: 10px; justify-content: center; max-width: 500px; margin: 0 auto; }
.hc-cta input {
  flex: 1; min-width: 0; padding: 13px 20px; border-radius: 999px;
  border: 1px solid var(--border); background: var(--surface);
  font: inherit; font-size: 15px; color: var(--ink);
  transition: border-color 150ms ease, box-shadow 150ms ease;
}
.hc-cta input::placeholder { color: var(--muted); }
.hc-cta input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-120); }
.hc-cta .btn { border-radius: 999px; white-space: nowrap; }
.hc-note { font-size: 13px; color: var(--muted); margin-top: 14px; }
.hc-note a { color: var(--ink); font-weight: 600; text-decoration: none; }
.hc-note a:hover { color: var(--accent); }
.hc-proof { font-size: 12.5px; color: var(--muted); opacity: 0.8; margin-top: 4px; }
@media (max-width: 560px) {
  .hc-cta { flex-direction: column; }
  .hc-cta .btn { width: 100%; }
}
/* iPhone-Buehne: fliegt von unten ein, steht dann ruhig */
.hc-phone-wrap {
  position: relative; z-index: 1; display: flex; justify-content: center;
  margin-top: clamp(36px, 6vh, 56px); padding-bottom: clamp(40px, 7vh, 72px);
}
.hc-phone { width: min(310px, 76vw); animation: hc-fly-in 950ms var(--ease-out) 200ms both; }

/* ── Vollbild-Buehne (v6): das Video fuellt den Viewport unter der Nav.
   object-fit: cover -> keine sichtbaren Videokanten, keine Maske noetig. ── */
/* ════════════════════════════════════════════════════════════════
   DAYLIGHT-REDESIGN (godaylight.com als Leitbild, Rogers finaler Style)
   Creme-Leinwand, editoriale Serif-Displays (Fraunces), warme Fotos,
   Haarlinien-Raster, riesiger Koralle-Footer.
   ════════════════════════════════════════════════════════════════ */
@font-face {
  font-family: 'Fraunces';
  src: url('/assets/fonts/fraunces-var.woff2') format('woff2-variations');
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}
:root {
  --dl-cream: #F6F1E7;
  --dl-cream-deep: #EFE7D8;
  --dl-ink: #171310;
  --dl-hairline: rgba(23, 19, 16, 0.14);
}
body { background: var(--dl-cream); }

/* ── Intro (Daylight-Original-Mechanik): orange Wellen-Flaeche mit Wordmark,
   die Flaeche MORPHT dann in die Hero-Kachel (JS-FLIP) und uebergibt dort
   ans Handy-Video ── */
.dl-intro {
  position: fixed; inset: 0; z-index: 300;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(140deg, #F0743F 0%, #E8603A 48%, #D4502C 100%);
  overflow: hidden;
  will-change: transform, opacity;
}
.dl-intro::before {
  content: ''; position: absolute; inset: -45%;
  background:
    radial-gradient(58% 46% at 28% 38%, rgba(255, 206, 158, 0.42), transparent 62%),
    radial-gradient(52% 44% at 72% 66%, rgba(120, 32, 6, 0.30), transparent 64%),
    radial-gradient(40% 34% at 55% 20%, rgba(255, 170, 110, 0.28), transparent 60%);
  animation: dl-waves 7s ease-in-out infinite alternate;
}
@keyframes dl-waves {
  from { transform: translate(-3%, -2%) rotate(-2deg) scale(1); }
  to   { transform: translate(3%, 2%) rotate(2deg) scale(1.06); }
}
.dl-intro-mark {
  position: relative;
  font-family: var(--font-sans); font-weight: 800; letter-spacing: -0.045em;
  font-size: clamp(64px, 12vw, 190px); color: #fff; line-height: 1;
  animation: dl-intro-mark-in 480ms var(--ease-out) 80ms both,
             dl-intro-mark-fade 220ms ease 580ms both;
}
.dl-intro-mark em { font-style: normal; color: var(--dl-ink); }
@keyframes dl-intro-mark-in {
  from { opacity: 0; transform: translateY(26px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes dl-intro-mark-fade {
  from { opacity: 1; }
  to   { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) { .dl-intro { display: none; } }

/* ── Hero-Kachel: das Handy lebt in der Abenddaemmerung weiter.
   Desktop: KEINE Box — weiche Maske loest die Videokanten auf, der
   Sand-Ton verschmilzt mit der Landschaft, das Handy schwebt frei. ── */
.dl-hero-tile {
  position: absolute; z-index: 2;
  right: clamp(40px, 7vw, 130px); top: 50%; transform: translateY(-50%);
  width: clamp(360px, 33vw, 540px); aspect-ratio: 3 / 4;
  animation: dl-tile-in 800ms var(--ease-out) 1900ms both;
}
/* Warmer Licht-Halo hinter dem Handy: hebt es aus der Landschaft */
.dl-hero-tile::before {
  content: ''; position: absolute; inset: -14%;
  background: radial-gradient(48% 46% at 50% 48%,
    rgba(255, 238, 208, 0.36), rgba(255, 219, 168, 0.15) 55%, transparent 74%);
  pointer-events: none;
}
.dl-tile-video { position: relative; }
.dl-tile-video {
  width: 100%; height: 100%; object-fit: cover; display: block;
  /* Warm-Grading ist im Kachel-Video eingebrannt (ffmpeg colorbalance);
     die Radial-Maske laesst die Berglandschaft rundherum durchscheinen */
  -webkit-mask-image: radial-gradient(56% 56% at 50% 50%, #000 46%, transparent 78%);
  mask-image: radial-gradient(56% 56% at 50% 50%, #000 46%, transparent 78%);
}
@keyframes dl-tile-in {
  from { opacity: 0; transform: translateY(calc(-50% + 18px)) scale(0.94); }
  to   { opacity: 1; transform: translateY(-50%) scale(1); }
}
@media (max-width: 980px) {
  /* Daylight-Mobile 1:1: Kachel klein oben rechts IM Foto, frei schwebend;
     Headline + Input darunter Richtung unteres Drittel */
  .dl-hero { flex-direction: column; justify-content: flex-end; }
  .dl-hero-tile {
    position: absolute; top: 78px; right: 2vw; transform: none; margin: 0;
    width: min(46vw, 205px);
    animation: dl-tile-in-m 800ms var(--ease-out) 1900ms both;
  }
  @keyframes dl-tile-in-m {
    from { opacity: 0; transform: translateY(16px) scale(0.95); }
    to   { opacity: 1; transform: none; }
  }
  .dl-hero-inner { padding-bottom: 48px; }
}

/* Erhaltene Sektionen ton-in-ton: Creme laeuft warm in die Daemmerung */
.ai-agent { background: linear-gradient(180deg, var(--dl-cream) 0%, #F1E2CC 100%); }
.worker-tour { background: linear-gradient(180deg, #F1E2CC 0%, var(--dl-cream) 100%); }

/* Schwebende Pill-Nav */
.dl-nav-wrap {
  position: fixed; top: 14px; left: 0; right: 0; z-index: 100;
  background: none; border: none; pointer-events: none;
  /* Legacy-.site-header neutralisieren: der Vollbreiten-Blur schnitt den Kran an */
  -webkit-backdrop-filter: none; backdrop-filter: none;
}
.dl-nav-wrap.scrolled { border: none; }
.dl-nav {
  pointer-events: auto;
  max-width: 720px; margin: 0 auto; padding: 8px 8px 8px 20px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-radius: 999px; box-shadow: 0 2px 8px rgba(23,19,16,0.08), 0 12px 32px rgba(23,19,16,0.10);
}
.dl-nav .links { display: flex; align-items: center; gap: 4px; }
.dl-nav .navlink { padding: 8px 14px; border-radius: 999px; font-size: 14.5px; }
.dl-nav .btn-primary { border-radius: 999px; padding: 10px 18px; min-height: 40px; font-size: 14.5px; }

/* Typo-Bausteine */
.dl-display {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 420; letter-spacing: -0.015em; line-height: 1.06;
  font-size: clamp(38px, 5.4vw, 76px); color: #fff;
}
.dl-display.small { font-size: clamp(24px, 3vw, 40px); line-height: 1.2; }
.dl-serif {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 440; letter-spacing: -0.01em; line-height: 1.12;
  font-size: clamp(28px, 3.4vw, 44px); color: var(--dl-ink);
}
.dl-kicker {
  font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}
.dl-kicker.dark { color: rgba(23, 19, 16, 0.55); }

/* Buttons */
.dl-btn-dark, .dl-btn-light, .dl-btn-ghost {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: 12px 24px; border-radius: 999px;
  font: inherit; font-size: 15px; font-weight: 700; cursor: pointer; border: none;
  transition: transform 150ms var(--ease-out), background 180ms ease;
  text-decoration: none;
}
.dl-btn-dark { background: var(--dl-ink); color: #fff; }
.dl-btn-dark:hover { transform: translateY(-1px); background: #000; }
.dl-btn-light { background: #fff; color: var(--dl-ink); }
.dl-btn-light:hover { transform: translateY(-1px); }
.dl-btn-ghost { background: none; color: var(--dl-ink); border: 1.5px solid var(--dl-hairline); }
.dl-btn-ghost:hover { border-color: var(--dl-ink); }

/* ── Hero: Vollbild-Foto + Input ── */
.dl-hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.dl-hero-bg { position: absolute; inset: -8% 0 0; width: 100%; height: 116%; object-fit: cover; object-position: center 62%; }
.dl-hero-tint {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(23,19,16,0.34) 0%, rgba(23,19,16,0.12) 40%, rgba(23,19,16,0.44) 100%);
}
.dl-hero-inner {
  position: relative; z-index: 2; max-width: 680px; min-width: 0; width: 100%;
  padding: 120px 24px 80px clamp(24px, 7vw, 96px);
}
/* Lange deutsche Headline: eine Stufe kleiner als das Original-Display */
.dl-hero-inner .dl-display { margin-top: 14px; font-size: clamp(34px, 4.3vw, 58px); }
.dl-hero-sub { color: rgba(255,255,255,0.92); font-size: clamp(15px, 1.6vw, 18px); line-height: 1.55; margin-top: 18px; max-width: 480px; }
.dl-cta { display: flex; margin-top: 28px; max-width: 480px; background: #fff; border-radius: 999px; padding: 6px; box-shadow: 0 10px 40px rgba(23,19,16,0.25); }
.dl-cta input { flex: 1; min-width: 0; border: none; background: none; padding: 10px 18px; font: inherit; font-size: 15px; color: var(--dl-ink); }
.dl-cta input:focus { outline: none; }
.dl-cta .dl-btn-dark { min-height: 44px; white-space: nowrap; }
.dl-hero-note { color: rgba(255,255,255,0.85); font-size: 13px; margin-top: 14px; }
.dl-hero-note a { color: #fff; font-weight: 700; text-decoration: none; }
.dl-hero-trust { color: rgba(255,255,255,0.66); font-size: 12.5px; margin-top: 6px; }
.dl-hero-trust.dark { color: rgba(23,19,16,0.55); }

/* Live-Daten-Karten auf dem Foto (Daylight-Signature) */
.dl-data {
  position: absolute; z-index: 2; display: flex; flex-direction: column; gap: 2px;
  padding: 12px 16px; border-radius: 14px;
  background: rgba(23, 19, 16, 0.42);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.18);
  animation: card-bob 7s ease-in-out infinite;
}
.dl-data-label { color: rgba(255,255,255,0.7); font-size: 11.5px; letter-spacing: 0.04em; }
.dl-data-value { color: #fff; font-size: 15px; font-weight: 700; }
.dl-data-1 { right: clamp(20px, 8vw, 130px); top: 26%; }
.dl-data-2 { right: clamp(60px, 14vw, 260px); bottom: 22%; animation-delay: -3s; }
@media (max-width: 900px) { .dl-data { display: none; } }

/* ── Benefit-Schachbrett mit Haarlinien ── */
.dl-benefits { border-top: 1px solid var(--dl-hairline); }
.dl-row {
  display: grid; grid-template-columns: 1.1fr 1fr; align-items: stretch;
  border-bottom: 1px solid var(--dl-hairline);
}
.dl-row-flip { direction: rtl; }
.dl-row-flip > * { direction: ltr; }
.dl-row-text { padding: clamp(40px, 6vw, 88px); display: flex; flex-direction: column; justify-content: center; gap: 14px; }
.dl-row-text p:last-child { color: rgba(23,19,16,0.66); font-size: 16px; line-height: 1.6; max-width: 400px; }
.dl-row-img { min-height: 320px; border-left: 1px solid var(--dl-hairline); }
.dl-row-flip .dl-row-img { border-left: none; border-right: 1px solid var(--dl-hairline); }
.dl-row-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 760px) {
  .dl-row, .dl-row-flip { display: block; direction: ltr; }
  .dl-row-img { border: none; border-top: 1px solid var(--dl-hairline); min-height: 240px; height: 300px; }
}

/* ── Emotionales Vollbild (Handschlag) ── */
.dl-interlude { position: relative; min-height: 78vh; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; }
.dl-interlude-bg { position: absolute; inset: -10% 0; width: 100%; height: 120%; object-fit: cover; }
.dl-interlude-tint { position: absolute; inset: 0; background: rgba(23,19,16,0.32); }
.dl-interlude-inner { position: relative; z-index: 2; padding: 80px 24px; display: flex; flex-direction: column; align-items: center; gap: 28px; }
.dl-interlude-inner .dl-display { max-width: 760px; font-size: clamp(32px, 4.4vw, 60px); }

/* ── Dunkler Story-Block ── */
.dl-story { position: relative; overflow: hidden; padding: clamp(90px, 14vh, 160px) 24px; text-align: center; }
.dl-story-bg { position: absolute; inset: -10% 0; width: 100%; height: 120%; object-fit: cover; }
.dl-story-tint { position: absolute; inset: 0; background: rgba(10, 9, 12, 0.55); }
.dl-story-inner { position: relative; z-index: 2; max-width: 880px; margin: 0 auto; display: flex; flex-direction: column; gap: 44px; }
.dl-story-facts { display: flex; flex-direction: column; gap: 14px; }
.dl-story-facts p { color: rgba(255,255,255,0.88); font-size: clamp(16px, 2vw, 21px); font-weight: 600; }
.dl-story .dl-display.small { color: rgba(255,255,255,0.96); }

/* ── Step-in (Abschluss-CTA) ── */
.dl-stepin { padding: clamp(80px, 12vh, 140px) 24px; text-align: center; }
.dl-stepin .dl-serif { max-width: 640px; margin: 0 auto; }
.dl-stepin-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 32px; }
.dl-stepin .dl-hero-trust { margin-top: 22px; }

/* ── Riesiger Koralle-Footer ── */
.dl-footer {
  background: linear-gradient(160deg, #F0743F 0%, #E8603A 55%, #D4502C 100%);
  padding: 72px 24px 0; overflow: hidden;
}
.dl-footer-links { max-width: 1080px; margin: 0 auto; display: flex; flex-direction: column; gap: 18px; }
.dl-footer-links nav { display: flex; gap: 26px; flex-wrap: wrap; }
.dl-footer-links a { color: #fff; font-weight: 700; font-size: 15px; text-decoration: none; }
.dl-footer-links a:hover { text-decoration: underline; }
.dl-footer-links p { color: rgba(255,255,255,0.75); font-size: 13px; max-width: 640px; }
.dl-footer-mark {
  font-family: var(--font-sans); font-weight: 800; letter-spacing: -0.045em; line-height: 0.78;
  font-size: clamp(120px, 22vw, 420px); color: #fff; text-align: center;
  margin-top: 34px; margin-bottom: -0.1em; user-select: none;
}
.dl-footer-mark em { font-style: normal; color: var(--dl-ink); }

/* Erhaltene Funktions-Sektionen auf die Creme-Leinwand betten */
.ai-agent, .visier-band, .worker-tour { position: relative; z-index: 1; }
.hero-stage { position: relative; background: var(--dl-cream); }

/* ── Daylight Mobile ── */
@media (max-width: 640px) {
  .dl-nav-wrap { top: 10px; padding: 0 10px; }
  .dl-nav { padding: 6px 6px 6px 16px; }
  .dl-nav .navlink { padding: 8px 8px; font-size: 13.5px; }
  .dl-nav .btn-primary { padding: 9px 13px; min-height: 38px; font-size: 13.5px; white-space: nowrap; }
  .dl-cta { flex-direction: column; gap: 6px; border-radius: 26px; padding: 8px; }
  .dl-cta input { text-align: center; padding: 10px 14px; }
  .dl-cta .dl-btn-dark { width: 100%; }
  .dl-hero-inner { padding-top: 104px; }
  .dl-footer-mark { font-size: 26vw; }
}
/* Uebergabe-Cue: taucht nach dem Brand-Moment auf und huepft sanft */
.hs-cue {
  position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px; border: 1px solid var(--border);
  border-radius: var(--radius-full); background: rgba(255, 255, 255, 0.85);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  color: var(--muted); font: inherit; font-size: 14px; font-weight: 600;
  cursor: pointer; box-shadow: var(--shadow-md);
  animation: hs-cue-in 500ms var(--ease-out) both;
}
.hs-cue svg { animation: hs-cue-bounce 1.6s ease-in-out infinite; }
.hs-cue:hover { color: var(--ink); }
@keyframes hs-cue-in { from { opacity: 0; transform: translate(-50%, 14px); } to { opacity: 1; transform: translate(-50%, 0); } }
@keyframes hs-cue-bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(4px); } }
@media (prefers-reduced-motion: reduce) { .hs-cue svg { animation: none; } }
.hs-video {
  display: block;
  width: 100%;
  height: calc(100vh - 73px);
  min-height: 420px;
  object-fit: cover;
  background: #FBFBFD;
}
.sr-only {
  position: absolute; width: 1px; height: 1px; margin: -1px;
  padding: 0; border: 0; clip: rect(0 0 0 0); overflow: hidden; white-space: nowrap;
}
@keyframes hc-fly-in {
  from { opacity: 0; transform: translateY(110px) scale(0.9) rotate(-5deg); }
  55%  { opacity: 1; }
  to   { opacity: 1; transform: translateY(0) scale(1) rotate(0deg); }
}
/* Content-Stagger: Badge → Headline → Lead → CTA faden nacheinander hoch */
.hc-up { animation: hc-up 640ms var(--ease-out) var(--d, 0ms) both; }
@keyframes hc-up {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .hc-phone, .hc-up { animation: none; }
}

/* ── Landing v3: zentrierter Hero auf Verlauf + echtes Produkt-Shot ── */
/* ══ IMMERSIVER FOTO-HERO (Kinetic/Zenith) — seit v5 ungenutzt ═══════ */
.hero-immersive {
  position: relative; min-height: min(88vh, 840px);
  display: flex; align-items: center; justify-content: flex-start;
  text-align: left; overflow: hidden;
  padding: 100px clamp(24px, 7vw, 112px) 120px;
}
.hi-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: 62% center;
  background-image: url('/assets/hero-worker.jpg');
  background-color: #12100e;
}
.hi-ph { display: none; }
.trust-pill.light { color: #fff; }
.hi-tint {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(9,11,15,0.9) 0%, rgba(9,11,15,0.78) 30%, rgba(9,11,15,0.4) 52%, rgba(9,11,15,0.08) 68%, transparent 82%),
    linear-gradient(180deg, transparent 56%, rgba(9,11,15,0.5) 100%),
    radial-gradient(48% 60% at 22% 44%, rgba(232,96,58,0.16), transparent 70%);
}
.hi-content { position: relative; z-index: 2; max-width: 600px; }
.hero-immersive h1 {
  font-size: clamp(40px, 5.2vw, 70px); font-weight: 800; letter-spacing: -0.04em;
  line-height: 1.02; color: #fff; text-shadow: 0 2px 40px rgba(0,0,0,0.45);
}
.hero-immersive h1 em { font-style: normal; color: var(--accent); }
.hero-immersive .lead {
  font-size: clamp(16px, 1.8vw, 19px); color: rgba(255,255,255,0.86);
  margin: 24px 0 32px; max-width: 500px; line-height: 1.5;
}
.hero-immersive .cta { display: flex; gap: 20px; justify-content: flex-start; align-items: center; flex-wrap: wrap; }
.trust-pill.light { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.22); color: #fff; -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }
.navlink.lg.light { color: #fff; }
.hi-proof { display: flex; align-items: center; justify-content: flex-start; gap: 12px; margin-top: 36px; flex-wrap: wrap; }
.hi-ava { display: flex; }
.hi-ava span { width: 34px; height: 34px; border-radius: 50%; margin-left: -9px; border: 2px solid rgba(255,255,255,0.3);
  color: #fff; font-size: 12px; font-weight: 800; display: flex; align-items: center; justify-content: center; }
.hi-ava span:first-child { margin-left: 0; }
.hi-proof > span { color: rgba(255,255,255,0.62); font-size: 13.5px; }
/* Schwebende Live-Karten über dem (cleanen) Foto */
.hero-immersive .hi-card { position: absolute; z-index: 3; animation: card-bob 6s ease-in-out infinite; }
.hero-immersive .mock-proof { right: clamp(14px, 5vw, 80px); top: 17%; width: 214px; padding: 16px 18px; }
.hero-immersive .mock-rapport { left: auto; right: clamp(14px, 5vw, 80px); bottom: 13%; width: 262px; padding: 18px; animation-delay: -2.6s; }
@media (max-width: 1040px) { .hero-immersive .hi-card { display: none; } }

/* Produkt-Peek: Dashboard-Sektion unter dem Hero */
.product-peek { max-width: 1120px; margin: 48px auto 0; padding: 20px 24px 0; text-align: center; }
.pp-head { max-width: 660px; margin: 0 auto 4px; }
.pp-head h2 { font-size: clamp(26px, 3.4vw, 40px); font-weight: 800; letter-spacing: -0.03em; color: var(--ink); line-height: 1.08; }
.pp-head h2 em { font-style: normal; color: var(--accent); }
.pp-shot { max-width: 1040px; margin: 28px auto 0; }
.pp-shot img {
  display: block; width: 100%; height: auto; border-radius: 18px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05), 0 40px 90px -40px rgba(11,13,18,0.4);
}

/* ── Visierungs-Sektion (Split: Text links, Polier-Foto rechts) ── */
.visier-band { max-width: 1180px; margin: 64px auto 0; padding: 0 24px; }
.vb-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.vb-text h2 { font-size: clamp(28px, 3.6vw, 44px); font-weight: 800; letter-spacing: -0.03em; color: var(--ink); line-height: 1.08; margin-top: 8px; }
.vb-text h2 em { font-style: normal; color: var(--accent); }
.vb-lead { font-size: clamp(16px, 1.7vw, 18px); color: var(--text-secondary); margin: 18px 0 26px; max-width: 44ch; line-height: 1.5; }
.vb-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.vb-list li { display: flex; align-items: center; gap: 12px; font-size: 15.5px; font-weight: 600; color: var(--ink); }
.vb-chk { flex: none; width: 24px; height: 24px; border-radius: 50%; background: rgba(52,199,89,0.15); color: #248a3d; display: inline-flex; align-items: center; justify-content: center; }
.vb-chk svg { width: 14px; height: 14px; }
.vb-photo img { display: block; width: 100%; height: auto; border-radius: 20px; box-shadow: 0 2px 8px rgba(0,0,0,0.05), 0 40px 90px -44px rgba(11,13,18,0.4); }
/* Bildgalerie: beide Fotos, sanfter Crossfade + Punkte */
.vb-gallery { position: relative; aspect-ratio: 1672 / 941; border-radius: 20px; overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05), 0 40px 90px -44px rgba(11,13,18,0.4); }
.vb-gallery .vbg-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  border-radius: 0; box-shadow: none; opacity: 0; transition: opacity .7s ease; }
.vb-gallery .vbg-img.active { opacity: 1; }
.vbg-dots { position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 2; }
.vbg-dot { width: 8px; height: 8px; padding: 0; border: none; border-radius: 50%; cursor: pointer;
  background: rgba(255,255,255,0.55); box-shadow: 0 1px 3px rgba(0,0,0,0.3); transition: background .3s, width .3s; }
.vbg-dot.active { background: #fff; width: 22px; border-radius: 5px; }

/* ── KI-Telefonagent: prominente Showcase-Sektion (Alleinstellung) ── */
.ai-agent { max-width: 1200px; margin: 66px auto 0; padding: 0 24px; text-align: center; }
.aa-head { max-width: 720px; margin: 0 auto; }
.aa-head h2 { font-size: clamp(28px, 3.8vw, 46px); font-weight: 800; letter-spacing: -0.03em; color: var(--ink); line-height: 1.06; }
.aa-head h2 em { font-style: normal; color: var(--accent); }
.aa-sub { font-size: clamp(15px, 1.7vw, 18px); color: var(--text-secondary); margin-top: 14px; line-height: 1.5; }
.aa-shot { max-width: 1120px; margin: 30px auto 0; }
.aa-shot img { display: block; width: 100%; height: auto; border-radius: 20px;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05), 0 44px 100px -44px rgba(11,13,18,0.42); }

/* ── Live-Demo-Widget: „ruf mich an" ──────────────────────────── */
.aa-demo { max-width: 720px; margin: 36px auto 0; text-align: center;
  background: var(--card); border: 1px solid var(--border); border-radius: 24px;
  padding: 30px clamp(20px, 4vw, 40px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04), 0 30px 70px -44px rgba(11,13,18,0.28); }
.aa-live { display: inline-flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); }
.aa-live-dot { width: 8px; height: 8px; border-radius: 50%; background: #11B76A; animation: aa-pulse 1.8s infinite; }
@keyframes aa-pulse { 0% { box-shadow: 0 0 0 0 rgba(17,183,106,0.5); } 70% { box-shadow: 0 0 0 8px rgba(17,183,106,0); } 100% { box-shadow: 0 0 0 0 rgba(17,183,106,0); } }
.aa-demo-head h3 { font-size: clamp(20px, 2.4vw, 26px); font-weight: 800; letter-spacing: -0.02em; color: var(--ink); margin: 10px 0 6px; }
.aa-demo-head h3 em { font-style: normal; color: var(--accent); }
.aa-demo-head p { font-size: 14.5px; color: var(--text-secondary); max-width: 48ch; margin: 0 auto; line-height: 1.5; }
.aa-form { margin-top: 22px; text-align: left; }
.aa-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 12px; }
.aa-fields .aa-full { grid-column: 1 / -1; }
.aa-demo input { width: 100%; font: inherit; font-size: 15px; padding: 12px 14px;
  border: 1px solid var(--border); border-radius: 12px; background: #fff; color: var(--ink); }
.aa-demo input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(232,96,58,0.12); }
.aa-step { display: flex; gap: 10px; }
.aa-step[hidden] { display: none; }
.aa-step input { flex: 1; }
.aa-step .btn { white-space: nowrap; }
.aa-left { align-self: center; font-size: 13px; font-weight: 600; color: var(--text-secondary); }
.aa-msg { min-height: 20px; margin: 14px 0 0; font-size: 14px; font-weight: 600; text-align: center; }
.aa-msg.ok { color: #248a3d; }
.aa-msg.err { color: #c0392b; }
.aa-fine { margin: 10px 0 0; font-size: 12px; color: var(--text-secondary); text-align: center; }
.aa-consent { display: flex; align-items: flex-start; gap: 8px; margin-top: 12px; font-size: 12.5px; color: var(--text-secondary); text-align: left; cursor: pointer; }
.aa-consent input { width: 16px; height: 16px; margin-top: 1px; flex: none; accent-color: var(--accent); }
@media (max-width: 560px) { .aa-fields { grid-template-columns: 1fr; } .aa-step { flex-direction: column; } }
@media (max-width: 820px) {
  .vb-grid { grid-template-columns: 1fr; gap: 28px; }
  .vb-photo { order: -1; }
}

/* ── Letzter Guss: farbige Icons pro Karte + Hover-Lift (unterer Teil) ── */
.fi, .bfi { width: 30px; height: 30px; margin-bottom: 14px; }
.features2 .feature2:nth-child(1) .fi,
.bento-card:nth-child(1) .bfi { color: #E8603A; }
.features2 .feature2:nth-child(2) .fi,
.bento-card:nth-child(2) .bfi { color: #2E86F7; }
.features2 .feature2:nth-child(3) .fi,
.bento-card:nth-child(3) .bfi { color: #11B76A; }
.features2 .feature2:nth-child(4) .fi,
.bento-card:nth-child(4) .bfi { color: #6846F5; }
.bento-card:nth-child(5) .bfi { color: #D98700; }
.feature2, .bento-card {
  transition: transform .2s var(--ease-out), box-shadow .2s var(--ease-out), border-color .2s;
}
.feature2:hover, .bento-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(11,13,18,0.10);
  border-color: color-mix(in srgb, var(--accent) 24%, var(--border));
}

.hero3 {
  position: relative;
  padding: 64px 24px 0;
  text-align: center;
  overflow: hidden;
}
.hero3::before {
  content: "";
  position: absolute; inset: -45% -25% auto -25%; height: 150%;
  background:
    radial-gradient(42% 55% at 20% 16%, rgba(232, 96, 58, 0.20), transparent 68%),
    radial-gradient(46% 60% at 82% 10%, rgba(104, 70, 245, 0.18), transparent 68%),
    radial-gradient(50% 62% at 62% 30%, rgba(46, 134, 247, 0.14), transparent 70%),
    radial-gradient(55% 65% at 42% 2%, rgba(17, 183, 106, 0.10), transparent 72%);
  pointer-events: none;
  animation: hero-aurora 26s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes hero-aurora {
  0%   { transform: translate3d(-2%, -1%, 0) scale(1.02) rotate(-1deg); }
  50%  { transform: translate3d(2%, 2%, 0)   scale(1.08) rotate(1.5deg); }
  100% { transform: translate3d(-1%, 1%, 0)  scale(1.04) rotate(-0.5deg); }
}
@media (prefers-reduced-motion: reduce) { .hero3::before { animation: none; } }
.hero3-text { position: relative; max-width: 780px; margin: 0 auto; }
.trust-pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: var(--text-secondary);
  background: var(--card); border: 1px solid var(--border);
  border-radius: 980px; padding: 7px 16px; margin-bottom: 22px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.trust-pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--ok); }
.hero3 h1 {
  font-size: clamp(36px, 5.5vw, 62px); font-weight: 700;
  letter-spacing: -0.035em; line-height: 1.05;
}
.hero3 h1 em { font-style: normal; color: var(--accent); }
.hero3 .lead {
  font-size: clamp(16px, 2vw, 19px); color: var(--text-secondary);
  margin: 20px auto 30px; max-width: 640px;
}
.hero3 .cta { display: flex; gap: 20px; justify-content: center; align-items: center; flex-wrap: wrap; }
.hero-note { margin-top: 16px; font-size: 13px; color: var(--text-secondary); }

/* Screenshot im Browser-Rahmen + schwebendes Rapport-Kärtchen */
.shot-wrap { position: relative; max-width: 1080px; margin: 52px auto 0; padding: 0 12px; }
.browser-frame {
  position: relative;
  background: var(--card); border-radius: 14px 14px 0 0;
  border: 1px solid rgba(0,0,0,0.06); border-bottom: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04), 0 30px 80px rgba(0,0,0,0.13);
  overflow: hidden;
}
.browser-bar {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 14px; background: #fbfbfd;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.bdot { width: 10px; height: 10px; border-radius: 50%; background: rgba(0,0,0,0.10); }
.burl {
  margin: 0 auto; font-size: 12px; color: var(--text-secondary);
  background: rgba(0,0,0,0.04); border-radius: 8px; padding: 3px 26px;
}
.browser-frame img {
  display: block; width: 100%; height: auto;
  /* Unterkante weich in den Seitenhintergrund auslaufen lassen */
  -webkit-mask-image: linear-gradient(to bottom, #000 82%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 82%, transparent 100%);
}
.shot-wrap .mock-rapport {
  position: absolute; left: max(-8px, 1vw); bottom: 28px;
  width: min(300px, 62vw); padding: 18px;
  transform: rotate(-1.6deg);
}
/* Schwebende Beweisketten-Karte oben rechts — spiegelt die Rapport-Karte */
.shot-wrap .mock-proof {
  position: absolute; right: max(-6px, 1vw); top: 70px;
  width: min(226px, 50vw); padding: 16px 18px;
  transform: rotate(1.4deg);
  z-index: 2;
  background: rgba(255,255,255,0.94);
  backdrop-filter: saturate(1.4) blur(8px);
  -webkit-backdrop-filter: saturate(1.4) blur(8px);
}
.mock-proof .proof-row span:last-child { white-space: nowrap; }
.mock-proof .proof-title {
  font-size: 12px; font-weight: 700; letter-spacing: -0.01em;
  color: var(--text); margin-bottom: 12px;
}
.mock-proof .proof-row {
  display: flex; align-items: center; gap: 9px;
  font-size: 12.5px; font-weight: 600; color: var(--text);
  margin-bottom: 9px;
}
.mock-proof .proof-check {
  flex: none; width: 19px; height: 19px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(52,199,89,0.16); color: #248a3d;
}
.mock-proof .proof-check svg { width: 12px; height: 12px; }
.mock-proof .proof-foot {
  margin-top: 12px; padding-top: 10px;
  border-top: 1px solid var(--border);
  font-size: 11px; font-weight: 600; color: var(--accent);
}
@media (max-width: 860px) {
  .shot-wrap .mock-proof { display: none; }
}
@media (max-width: 640px) {
  .shot-wrap .mock-rapport { display: none; }
}

/* ── Produkt-Show: Segmente + Panels (Crossfade, unterbrechbar) ───── */
.seg {
  display: inline-flex; gap: 4px; margin-bottom: 22px;
  background: rgba(0,0,0,0.045); border-radius: 980px; padding: 4px;
  position: relative; z-index: 3;
}
.seg-btn {
  font: inherit; font-size: 14px; font-weight: 600; color: var(--text-secondary);
  border: none; background: transparent; border-radius: 980px;
  padding: 8px 18px; cursor: pointer; white-space: nowrap;
  transition: color 150ms ease, background-color 150ms ease, transform 160ms var(--ease-out);
}
@media (max-width: 480px) {
  .seg-btn { font-size: 13px; padding: 7px 12px; }
}
.seg-btn:active { transform: scale(0.97); }
.seg-btn.active { background: #fff; color: var(--text); box-shadow: 0 1px 3px rgba(0,0,0,0.08); }

.panels { display: grid; }
.panel {
  grid-area: 1 / 1;
  position: relative;
  opacity: 0; transform: scale(0.985); pointer-events: none;
  transition: opacity 380ms ease, transform 420ms var(--ease-out);
}
.panel.active { opacity: 1; transform: scale(1); pointer-events: auto; }
.panel .mock-rapport { position: absolute; left: max(-8px, 1vw); bottom: 28px; width: min(300px, 62vw); padding: 18px; }
@media (max-width: 640px) { .panel .mock-rapport { display: none; } }

/* Telefon-Rahmen fuer die Worker-App */
.phone-panel { display: flex; flex-direction: column; align-items: center; padding-bottom: 24px; }
.phone-frame {
  position: relative; width: min(300px, 74vw);
  border-radius: 46px; padding: 9px; background: #17171a;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15), 0 30px 70px rgba(0,0,0,0.22);
}
.phone-frame img { display: block; width: 100%; height: auto; border-radius: 38px; }
/* Bulletproof-Crossfade (auch iOS/WebKit): der ERSTE Screen liegt im normalen
   Fluss und gibt dem Container die Höhe, die anderen liegen absolut darüber und
   faden per opacity. Kein grid, kein aspect-ratio → rendert auf jedem Browser.
   (Vorher grid + grid-area:1/1 — Safari liess die Zelle auf 0 zusammenfallen.) */
.phone-screens { position: relative; width: 100%; }
.phone-frame .pscreen {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity 400ms ease; border-radius: 38px;
}
.phone-frame .pscreen:first-child { position: relative; height: auto; object-fit: unset; }
.phone-frame .pscreen.active { opacity: 1; }
/* Tap-Zonen exakt ueber der App-Tab-Bar (unterste ~9% des Screens) */
.phone-taps {
  position: absolute; left: 9px; right: 9px; bottom: 9px;
  height: 8.6%; display: grid; grid-template-columns: repeat(4, 1fr);
  border-radius: 0 0 38px 38px; overflow: hidden;
}
.phone-taps button {
  border: none; background: transparent; cursor: pointer;
  transition: background-color 150ms ease;
}
.phone-taps button:active { background: rgba(255,255,255,0.08); }
@media (hover: hover) and (pointer: fine) {
  .phone-taps button:hover { background: rgba(255,255,255,0.06); }
}
/* Klick-Zonen in den Screens */
.phone-hotspots { position: absolute; inset: 9px; border-radius: 38px; overflow: hidden; pointer-events: none; }
.phone-hotspots button {
  position: absolute; border: none; background: transparent; cursor: pointer;
  pointer-events: auto; border-radius: 12px;
  transition: background-color 150ms ease;
}
.phone-hotspots button:active { background: rgba(255,255,255,0.07); }
@media (hover: hover) and (pointer: fine) {
  .phone-hotspots button:hover { background: rgba(255,255,255,0.05); }
}
/* Auto-Tour: „Finger"-Tap-Indikator, der über den Screen fährt */
.tap-cursor {
  position: absolute; z-index: 6; width: 34px; height: 34px; margin: -17px 0 0 -17px;
  border-radius: 50%; pointer-events: none; opacity: 0;
  background: radial-gradient(circle, rgba(255,255,255,0.85) 30%, rgba(255,255,255,0.25) 55%, transparent 70%);
  box-shadow: 0 0 0 2px rgba(232,96,58,0.55), 0 4px 12px rgba(0,0,0,0.25);
  transition: left 620ms var(--ease-in-out), top 620ms var(--ease-in-out), opacity 260ms ease;
}
.tap-cursor.show { opacity: 1; }
.tap-cursor.press { animation: tap-press 380ms var(--ease-out); }
@keyframes tap-press { 40% { transform: scale(0.7); } 100% { transform: scale(1); } }
.tap-ripple {
  position: absolute; z-index: 5; width: 14px; height: 14px; margin: -7px 0 0 -7px;
  border-radius: 50%; border: 2px solid rgba(232,96,58,0.8); pointer-events: none; opacity: 0;
}
.tap-ripple.go { animation: tap-ripple 620ms var(--ease-out); }
@keyframes tap-ripple {
  0% { opacity: 0.9; transform: scale(0.5); }
  100% { opacity: 0; transform: scale(4.2); }
}

/* „Auto-Demo läuft"-Chip über dem Telefon */
.tour-chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; color: var(--text-secondary);
  background: var(--card); border: 1px solid var(--border); box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  border-radius: 980px; padding: 5px 12px; margin: 0 auto 12px; cursor: pointer;
  transition: transform 160ms var(--ease-out), background-color 150ms ease;
}
.tour-chip:active { transform: scale(0.97); }
.tour-chip .tdot { width: 7px; height: 7px; border-radius: 50%; background: var(--ok); }
.tour-chip.paused .tdot { background: var(--text-secondary); }

/* Pulsierender Hinweispunkt: „hier kannst du tippen" */
.tapdot {
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  width: 10px; height: 10px; border-radius: 50%; background: var(--accent);
  pointer-events: none;
}
.tapdot::after {
  content: ""; position: absolute; inset: -4px; border-radius: 50%;
  border: 2px solid rgba(232,96,58,0.6);
  animation: ring 1.8s var(--ease-out) infinite;
}
@media (prefers-reduced-motion: reduce) {
  .tapdot::after { animation: none; }
}
.phone-notch {
  position: absolute; top: 20px; left: 50%; transform: translateX(-50%);
  width: 84px; height: 22px; border-radius: 980px; background: #17171a; z-index: 2;
}
.phone-caption { margin-top: 18px; font-size: 14px; color: var(--text-secondary); text-align: center; max-width: 340px; }

/* ── Funktions-Callouts rund ums Handy (NexCard-Stil, Pfeile aufs Handy) ── */
.phone-stage { display: flex; align-items: center; justify-content: center; gap: clamp(10px, 2vw, 30px); width: 100%; }
.stage-center { position: relative; flex: 0 0 auto; }
.annots { display: flex; flex-direction: column; gap: 26px; width: min(236px, 23vw); flex: 0 0 auto; }
.annot {
  position: relative;
  background: var(--card); border: 1px solid var(--border); border-radius: 16px;
  padding: 14px 15px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04), 0 16px 38px rgba(0,0,0,0.07);
  opacity: 0.45; transform: scale(0.96);
  transition: opacity .45s var(--ease-out), transform .45s var(--ease-out), box-shadow .45s, border-color .45s;
}
.annot.active {
  opacity: 1; transform: scale(1);
  border-color: color-mix(in srgb, var(--accent) 42%, var(--border));
  box-shadow: 0 4px 12px rgba(232,96,58,0.10), 0 22px 52px rgba(232,96,58,0.16);
}
.annot-head { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.annot-num {
  flex: none; width: 22px; height: 22px; border-radius: 50%;
  background: color-mix(in srgb, var(--accent) 12%, white); color: var(--accent);
  font-size: 12px; font-weight: 800; display: inline-flex; align-items: center; justify-content: center;
  transition: background .45s, color .45s;
}
.annot.active .annot-num { background: var(--accent); color: #fff; }
.annot-title { font-size: 14px; font-weight: 700; color: var(--text); letter-spacing: -0.01em; }
.annot p { font-size: 12.5px; line-height: 1.42; color: var(--text-secondary); }
.annot-arrow {
  position: absolute; top: 50%; width: 56px; height: 40px;
  color: var(--border); opacity: 0; pointer-events: none;
  transition: opacity .45s, color .45s;
}
.annots.left  .annot-arrow { right: -48px; transform: translateY(-50%); }
.annots.right .annot-arrow { left: -48px;  transform: translateY(-50%) scaleX(-1); }
.annot.active .annot-arrow { opacity: 1; color: var(--accent); }
@media (max-width: 980px) { .annots { display: none; } }

/* ── Hero A: Dashboard als plastisches Hero-Gerät ─────────────── */
.shot-wrap { perspective: 1500px; }
/* 3D-Parallax: JS kippt das Gerät dem Cursor nach; Karten poppen per translateZ heraus */
.hero-device {
  position: relative; transform-style: preserve-3d;
  transform: rotateX(6deg) rotateY(-7deg);
  transition: transform .4s cubic-bezier(.2,.7,.2,1); will-change: transform;
}
.hero-device .browser-frame {
  transform: rotate(0.3deg);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05), 0 60px 120px -34px rgba(11,13,18,0.34);
}
.hd-glow {
  position: absolute; inset: 14% 6% -8% 6%; transform: translateZ(-40px);
  background: radial-gradient(50% 52% at 50% 42%, rgba(232,96,58,0.26), transparent 72%);
  filter: blur(34px); pointer-events: none;
}
.hero-device .mock-rapport { left: max(-14px, 0vw); bottom: 34px; width: min(300px, 60vw);
  transform: rotate(-2deg) translateZ(55px); animation: card-bob 5.5s ease-in-out infinite; }
.hero-device .mock-proof   { right: max(-14px, 0vw); top: 92px;   width: min(226px, 50vw);
  transform: rotate(2deg) translateZ(75px); animation: card-bob 6.5s ease-in-out infinite; animation-delay: -2.2s; }
@keyframes card-bob { 0%, 100% { translate: 0 0; } 50% { translate: 0 -9px; } }
@media (prefers-reduced-motion: reduce) {
  .hero-device { transition: none; }
  .hero-device .mock-rapport, .hero-device .mock-proof { animation: none; }
}
@media (max-width: 900px) {
  .hero-device { transform: none; }
  .hero-device .mock-rapport, .hero-device .mock-proof { display: none; }
}

/* ── Worker-App-Tour: helles, warmes Premium-Panel (im Brand) ──── */
.worker-tour {
  position: relative; overflow: hidden;
  max-width: 1200px; margin: 56px auto; padding: 56px 24px 46px;
  border-radius: 36px; text-align: center;
  background: linear-gradient(180deg, #FFF4EF 0%, #FBEBE4 100%);
  border: 1px solid rgba(232,96,58,0.12);
  box-shadow: 0 30px 80px -42px rgba(232,96,58,0.30);
}
.worker-tour::before {           /* warmer Koralle-Schein hinter dem Handy */
  content: ""; position: absolute; left: 50%; top: 48%;
  width: 620px; height: 620px; transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(232,96,58,0.16), transparent 62%);
  filter: blur(26px); pointer-events: none;
}
.worker-tour > * { position: relative; }
.wt-head { max-width: 660px; margin: 0 auto; }
.wt-kicker { font-size: 12px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.wt-head h2 { font-size: clamp(28px, 3.6vw, 44px); font-weight: 800; letter-spacing: -0.03em; color: var(--ink); line-height: 1.06; }
.wt-head h2 em { font-style: normal; color: var(--accent); }
.wt-sub { font-size: clamp(15px, 1.6vw, 17px); color: var(--text-secondary); margin-top: 12px; }
.wt-stage { margin-top: 20px; }

/* Callouts = saubere weisse Karten, aktiv = Koralle (auf warmem Grund) */
.worker-tour .annot { background: #fff; border-color: rgba(0,0,0,0.05);
  box-shadow: 0 2px 6px rgba(0,0,0,0.04), 0 16px 38px rgba(232,96,58,0.12); }
.worker-tour .annot.active { border-color: color-mix(in srgb, var(--accent) 45%, white);
  box-shadow: 0 4px 12px rgba(232,96,58,0.16), 0 22px 52px rgba(232,96,58,0.22); }

/* ── Geräte-Übergabe-Szene (zweites Handy scannt) ────────────────── */
.handoff {
  display: none; width: min(360px, 86vw); text-align: center;
  padding: 6px 4px 4px;
}
.handoff.show { display: block; animation: card-in 300ms var(--ease-out); }
.phone-frame.hide { display: none; }
.handoff-title { font-size: 14px; font-weight: 600; margin-bottom: 12px; }
.share-row { display: flex; gap: 8px; justify-content: center; margin-bottom: 20px; flex-wrap: wrap; }
.share-chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12.5px; font-weight: 600; color: #fff;
  padding: 7px 13px; border-radius: 980px;
  opacity: 0; transform: translateY(6px); animation: rise 360ms var(--ease-out) forwards;
}
.share-chip.wa { background: #25D366; }
.share-chip.sms { background: #0A84FF; }
.share-chip.mail { background: #E8603A; }
.handoff.show .share-chip:nth-child(1) { animation-delay: 120ms; }
.handoff.show .share-chip:nth-child(2) { animation-delay: 220ms; }
.handoff.show .share-chip:nth-child(3) { animation-delay: 320ms; }

.handoff-scene { display: flex; align-items: center; justify-content: center; gap: 10px; margin: 4px 0 18px; }
.mini-phone {
  position: relative; width: 96px; height: 168px; flex: none;
  background: #17171a; border-radius: 18px; padding: 10px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}
.mini-phone.polier { animation: polier-in 600ms var(--ease-out) 500ms both; }
@keyframes polier-in { from { opacity: 0; transform: translateX(20px) scale(0.94); } to { opacity: 1; transform: none; } }
.mini-label { font-size: 10px; color: rgba(255,255,255,0.7); font-weight: 600; }
.mini-qr {
  width: 62px; height: 62px; border-radius: 8px; background:
    repeating-conic-gradient(#000 0% 25%, #fff 0% 50%) 50% / 10px 10px;
  outline: 5px solid #fff; outline-offset: 0;
}
.mini-qr.small { width: 46px; height: 46px; }
.scan-frame { position: relative; padding: 8px; border-radius: 10px; overflow: hidden; }
.scan-frame::before, .scan-frame::after {
  content: ""; position: absolute; width: 14px; height: 14px; border: 2px solid #34c759;
}
.scan-frame::before { top: 0; left: 0; border-right: none; border-bottom: none; border-radius: 4px 0 0 0; }
.scan-frame::after { bottom: 0; right: 0; border-left: none; border-top: none; border-radius: 0 0 4px 0; }
.scan-line {
  position: absolute; left: 8px; right: 8px; height: 2px; background: #34c759;
  box-shadow: 0 0 8px #34c759; top: 10px;
  animation: scan 1.4s var(--ease-in-out) 900ms infinite;
}
@keyframes scan { 0%,100% { top: 12px; } 50% { top: 58px; } }
.handoff-arrow { position: relative; color: var(--text-secondary); font-size: 20px; font-weight: 700; }
.flydot {
  position: absolute; left: -4px; top: 50%; width: 7px; height: 7px; margin-top: -3px;
  border-radius: 50%; background: var(--accent);
  animation: fly 1.3s var(--ease-in-out) infinite;
}
@keyframes fly { 0% { left: -10px; opacity: 0; } 30% { opacity: 1; } 100% { left: 24px; opacity: 0; } }
.handoff-sub { font-size: 13px; color: var(--text-secondary); }
.handoff-sub b { color: var(--text); }
@media (prefers-reduced-motion: reduce) {
  .scan-line, .flydot, .mini-phone.polier, .share-chip { animation: none; opacity: 1; transform: none; }
}

/* ── Landing v2 (Design-Pass: kein "Vibecoding"-Look) ────────────── */
.navlink { font-size: 15px; font-weight: 500; color: var(--text); text-decoration: none; padding: 8px 10px; }
.navlink:hover { color: var(--accent); }
.navlink.lg { font-size: 16px; font-weight: 600; }

.hero2 {
  max-width: 1080px; margin: 0 auto; padding: 56px 24px 40px;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center;
}
.eyebrow {
  font-size: 13px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 14px;
}
.hero2 h1 {
  font-size: clamp(38px, 5.5vw, 64px); font-weight: 700;
  letter-spacing: -0.035em; line-height: 1.02;
}
.hero2 h1 em { font-style: normal; color: var(--accent); }
.hero2 .lead { font-size: 17px; color: var(--text-secondary); margin: 22px 0 28px; max-width: 46ch; }
.hero2 .cta { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.facts { list-style: none; display: flex; gap: 8px 22px; flex-wrap: wrap; margin-top: 26px; }
.facts li { font-size: 13px; color: var(--text-secondary); display: flex; align-items: center; gap: 7px; }
.facts li::before {
  content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); flex: none;
}

/* Produkt-Mockups (reines CSS/SVG) */
.hero2-visual { position: relative; min-height: 360px; }
.mock {
  position: absolute; background: var(--card); border-radius: var(--radius);
  box-shadow: 0 2px 6px rgba(0,0,0,0.05), 0 24px 48px rgba(0,0,0,0.10);
  border: 1px solid rgba(0,0,0,0.04);
}
.mock-plan { top: 0; right: 8px; width: min(340px, 78%); padding: 18px 18px 20px; transform: rotate(1.2deg); }
.mock-rapport { bottom: 0; left: 0; width: min(320px, 74%); padding: 18px; transform: rotate(-1.6deg); z-index: 2; }
.mock-title { font-size: 13px; font-weight: 600; margin-bottom: 12px; }
.plan-grid { display: grid; grid-template-columns: auto repeat(5, 1fr); gap: 7px; align-items: center; }
.plan-name { font-size: 11px; color: var(--text-secondary); padding-right: 8px; white-space: nowrap; }
.c { height: 22px; border-radius: 6px; background: rgba(0,0,0,0.05); }
.c.ok { background: rgba(52,199,89,0.55); }
.c.warn { background: rgba(255,159,10,0.55); }
.c.acc { background: rgba(232,96,58,0.45); }
.mock-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; }
.mock-strong { font-size: 14px; font-weight: 600; }
.mock-dim { font-size: 12px; color: var(--text-secondary); }
.mock-dim.small { font-size: 11px; }
.pill {
  font-size: 11px; font-weight: 700; color: #248a3d; background: rgba(52,199,89,0.14);
  padding: 4px 10px; border-radius: 980px; white-space: nowrap;
}
.sig { color: var(--text); margin: 14px 0 8px; border-bottom: 1px solid var(--border); padding-bottom: 8px; }
.sig svg { width: 70%; height: 34px; opacity: .85; }

/* Feature-Sektion v2 */
.features2 {
  max-width: 1080px; margin: 40px auto 0; padding: 0 24px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 14px;
}
.feature2 {
  background: var(--card); border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,0.04); box-shadow: 0 1px 3px rgba(0,0,0,0.03);
  padding: 24px 22px;
}
.fi { width: 26px; height: 26px; color: var(--accent); margin-bottom: 14px; }
.feature2 h3 { font-size: 16px; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 6px; }
.feature2 p { font-size: 13.5px; color: var(--text-secondary); }

/* Steps */
.steps { max-width: 1080px; margin: 72px auto 64px; padding: 0 24px; text-align: center; }
.steps h2 { font-size: clamp(26px, 4vw, 36px); font-weight: 700; letter-spacing: -0.025em; margin-bottom: 34px; }
.steps-row { display: flex; gap: 10px; justify-content: center; align-items: stretch; flex-wrap: wrap; }
.step { flex: 1; min-width: 200px; max-width: 280px; text-align: left; background: var(--card); border-radius: var(--radius); padding: 22px; border: 1px solid rgba(0,0,0,0.04); }
.step-n {
  width: 28px; height: 28px; border-radius: 50%; background: var(--accent); color: #fff;
  font-size: 14px; font-weight: 700; display: flex; align-items: center; justify-content: center; margin-bottom: 12px;
}
.step h4 { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.step p { font-size: 13px; color: var(--text-secondary); }
.step-arrow { align-self: center; color: var(--text-secondary); font-size: 18px; }
.steps-cta { margin-top: 34px; }
.mono { font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 0.92em; }

@media (max-width: 860px) {
  .hero2 { grid-template-columns: 1fr; gap: 40px; padding-top: 36px; }
  .hero2-visual { min-height: 320px; max-width: 440px; }
  .step-arrow { display: none; }
}

/* ── Entrance (nur Landing, einmalig gesehen → Delight erlaubt) ─────
   Kaskade: Eyebrow → H1 → Lead → CTA → Facts → Mockups (50ms-Stagger),
   fade-up ab 8px, starke ease-out-Kurve, nichts über 500ms. */
.hero3-text > *, .shot-wrap {
  opacity: 0;
  transform: translateY(8px);
  animation: rise 480ms var(--ease-out) forwards;
}
.hero3-text > :nth-child(1) { animation-delay: 0ms; }
.hero3-text > :nth-child(2) { animation-delay: 50ms; }
.hero3-text > :nth-child(3) { animation-delay: 100ms; }
.hero3-text > :nth-child(4) { animation-delay: 150ms; }
.hero3-text > :nth-child(5) { animation-delay: 200ms; }
.shot-wrap { animation-delay: 220ms; animation-duration: 560ms; transform: translateY(16px); }
@keyframes rise {
  to { opacity: 1; transform: translateY(0); }
}

/* ── Lebendige Mockups: Loop-Story „erfassen → unterschreiben → visiert" ──
   Marketing-Element, bewusst langsam (10s-Zyklus mit langer Ruhephase). */
.sig path {
  stroke-dasharray: 320;
  stroke-dashoffset: 320;
  animation: draw-loop 10s var(--ease-in-out) 700ms infinite;
}
@keyframes draw-loop {
  0%       { stroke-dashoffset: 320; opacity: 1; }
  14%      { stroke-dashoffset: 0; }
  82%      { stroke-dashoffset: 0; opacity: 1; }
  90%      { stroke-dashoffset: 0; opacity: 0; }
  96%,100% { stroke-dashoffset: 320; opacity: 0; }
}
/* Visiert-Badge poppt auf, sobald die Unterschrift fertig gezeichnet ist */
.pill-live {
  animation: pill-loop 10s var(--ease-out) 700ms infinite;
}
@keyframes pill-loop {
  0%, 14%   { opacity: 0; transform: scale(0.9); }
  19%       { opacity: 1; transform: scale(1); }
  85%       { opacity: 1; transform: scale(1); }
  92%, 100% { opacity: 0; transform: scale(0.95); }
}
/* Eine leere Plan-Zelle durchlebt den Zyklus leer → geplant → visiert */
.c.cycle { animation: cell-cycle 10s ease 700ms infinite; }
@keyframes cell-cycle {
  0%, 22%   { background: rgba(0,0,0,0.05); }
  30%, 52%  { background: rgba(232,96,58,0.45); }
  60%, 88%  { background: rgba(52,199,89,0.55); }
  96%, 100% { background: rgba(0,0,0,0.05); }
}

/* ── Scroll-Reveals (einmalig, JS setzt .in via IntersectionObserver) ── */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 500ms var(--ease-out), transform 500ms var(--ease-out);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* Hover-Lift auf Karten — nur echte Pointer */
@media (hover: hover) and (pointer: fine) {
  .feature2, .step { transition: transform 200ms var(--ease-out), box-shadow 200ms ease; }
  .feature2:hover, .step:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05), 0 14px 32px rgba(0,0,0,0.07);
  }
}

/* Karten-Wechsel (Signup: Formular → Provisionierung) */
.card-enter {
  animation: card-in 240ms var(--ease-out);
}
@keyframes card-in {
  from { opacity: 0; transform: scale(0.98) translateY(6px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

/* Reduced Motion: Bewegung raus, Opacity bleibt (Verstaendnis-Hilfe) */
@media (prefers-reduced-motion: reduce) {
  .hero3-text > *, .shot-wrap {
    animation: fade-only 200ms ease forwards;
    transform: none;
  }
  .panel { transition: opacity 200ms ease; transform: none; }
  .sig path { animation: none; stroke-dashoffset: 0; }
  .pill-live { animation: none; opacity: 1; }
  .c.cycle { animation: none; }
  .card-enter { animation: fade-only 150ms ease; }
  .btn:active { transform: none; }
  .reveal { transition: opacity 200ms ease; transform: none; }
  .feature2:hover, .step:hover { transform: none; }
  @keyframes fade-only { from { opacity: 0; } to { opacity: 1; } }
}

/* ── Editoriale Übergangs-Headline (Brief-Rhythmus) ──────────────── */
.editorial { max-width: var(--maxw); margin: var(--section-y) auto 0; padding: 0 24px; }
.editorial h2 {
  font-size: clamp(30px, 5.5vw, 56px); font-weight: 800;
  letter-spacing: -0.035em; line-height: 1.06; max-width: 15ch;
}
.editorial h2 em { font-style: normal; color: var(--accent); }
.editorial p { font-size: 17px; color: var(--muted); margin-top: 20px; max-width: 52ch; }

/* ── Rollen-Bento (asymmetrisch, Brief „Built for everyone") ─────── */
.bento { max-width: var(--maxw); margin: 72px auto 0; padding: 0 24px; }
.bento-head { text-align: center; margin-bottom: 34px; }
.bento-head h2 { font-size: var(--fs-h2); font-weight: 800; letter-spacing: -0.03em; }
.bento-head p { color: var(--muted); margin-top: 10px; font-size: 16px; }
.bento-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px;
  grid-auto-rows: 1fr;
}
.bento-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-card); padding: 26px 24px; box-shadow: var(--shadow-card);
  display: flex; flex-direction: column; gap: 8px;
}
.bento-card.big { grid-column: span 3; }
.bento-card.med { grid-column: span 3; }
.bento-card.wide { grid-column: span 6; flex-direction: row; align-items: center; gap: 20px; }
.bento-card .role { font-size: var(--fs-small); font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--accent); }
.bento-card h3 { font-size: 20px; font-weight: 700; letter-spacing: -0.01em; }
.bento-card p { font-size: 14px; color: var(--muted); }
.bento-card .bfi { width: 30px; height: 30px; color: var(--accent); flex: none; }
.bento-card.wide .bwrap { flex: 1; }
@media (max-width: 780px) {
  .bento-grid { grid-template-columns: 1fr; }
  .bento-card.big, .bento-card.med, .bento-card.wide { grid-column: 1; }
  .bento-card.wide { flex-direction: column; align-items: flex-start; }
}

/* ── Footer-Wortmarke (Brief-Signatur, grosser Abschluss) ────────── */
.foot-brand {
  max-width: var(--maxw-wide); margin: 0 auto; padding: 64px 24px 0;
  overflow: hidden;
}
.foot-cols {
  display: flex; justify-content: space-between; gap: 32px; flex-wrap: wrap;
  padding-bottom: 40px; border-bottom: 1px solid var(--border);
}
.foot-statement { max-width: 30ch; font-size: 16px; color: var(--muted); }
.foot-statement b { color: var(--ink); font-weight: 700; }
.foot-links { display: flex; gap: 56px; flex-wrap: wrap; }
.foot-col h4 { font-size: var(--fs-small); font-weight: 700; color: var(--ink); margin-bottom: 12px; }
.foot-col a { display: block; font-size: 14px; color: var(--muted); text-decoration: none; margin-bottom: 8px; }
.foot-col a:hover { color: var(--accent); }
.wordmark {
  font-size: clamp(72px, 22vw, 280px); font-weight: 800; letter-spacing: -0.05em;
  line-height: 0.9; color: var(--accent); margin: 24px 0 -0.12em;
  white-space: nowrap; user-select: none;
}
.foot-meta { padding: 20px 24px 28px; text-align: center; font-size: 12px; color: var(--muted); }
.foot-meta a { color: var(--muted); }

/* ── Integrationen (echt) ────────────────────────────────────────── */
.integrations { max-width: var(--maxw); margin: 64px auto 0; padding: 0 24px; text-align: center; }
.int-label { font-size: var(--fs-small); font-weight: 600; color: var(--muted); letter-spacing: 0.02em; margin-bottom: 18px; }
.int-row { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.int-chip {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 14px; font-weight: 600; color: var(--ink);
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-pill); padding: 9px 16px; box-shadow: var(--shadow-sm);
}
.int-dot { width: 12px; height: 12px; border-radius: 4px; flex: none; }

/* ── Marquee (Branchen-Band) ─────────────────────────────────────── */
.marquee {
  display: flex; overflow: hidden; user-select: none;
  margin: 56px 0 8px; padding: 14px 0;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
}
.marquee-track {
  display: flex; gap: 34px; flex-shrink: 0; min-width: 100%;
  justify-content: space-around; align-items: center;
  animation: marquee 36s linear infinite;
  font-size: 14px; font-weight: 600; letter-spacing: 0.04em;
  color: var(--text-secondary); text-transform: uppercase;
  padding-right: 34px;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-100%); } }

/* ── Interaktive Visierungs-Demo ─────────────────────────────────── */
.try { max-width: 1080px; margin: 84px auto 0; padding: 0 24px; }
.try-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
.try h2 { font-size: clamp(26px, 4vw, 38px); font-weight: 700; letter-spacing: -0.025em; }
.try-lead { color: var(--text-secondary); font-size: 16px; margin: 16px 0 20px; }
.try-lead b { color: var(--text); }
.try-points { list-style: none; display: grid; gap: 10px; }
.try-points li {
  font-size: 14px; color: var(--text-secondary);
  display: flex; gap: 10px; align-items: baseline;
}
.try-points li::before { content: "✓"; color: var(--ok); font-weight: 700; flex: none; }

.try-card {
  position: relative; background: var(--card); border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,0.05); box-shadow: var(--shadow);
  padding: 22px; overflow: hidden;
}
.try-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.try-pill { background: rgba(255,159,10,0.14); color: #b06a00; transition: background-color 200ms ease, color 200ms ease, transform 200ms var(--ease-out); }
.try-pill.signed { background: rgba(52,199,89,0.14); color: #248a3d; }
.try-pill.pop { transform: scale(1.12); }
.try-sig-label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-secondary); margin: 18px 0 8px; }
.try-canvas-wrap {
  position: relative; height: 150px;
  background: #fafafa; border: 1.5px dashed rgba(0,0,0,0.14); border-radius: var(--radius-sm);
  cursor: crosshair; touch-action: none;
  transition: border-color 200ms ease, background-color 200ms ease;
}
.try-canvas-wrap.signed { border-color: rgba(52,199,89,0.5); border-style: solid; background: rgba(52,199,89,0.03); }
.try-canvas-wrap canvas { width: 100%; height: 100%; display: block; }
.try-hint {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  color: var(--text-secondary); font-size: 15px; pointer-events: none;
  transition: opacity 250ms ease;
}
.try-hint.hidden { opacity: 0; }
.try-foot { display: flex; justify-content: space-between; align-items: center; margin-top: 14px; min-height: 34px; }

/* Konfetti (12 Partikel, nur beim Visieren) */
.confetti { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.confetti span {
  position: absolute; top: 42%; left: 78%;
  width: 7px; height: 10px; border-radius: 2px; opacity: 0;
}
.confetti.burst span { animation: confetti 900ms var(--ease-out) forwards; }
@keyframes confetti {
  0%   { opacity: 1; transform: translate(0, 0) rotate(0deg); }
  100% { opacity: 0; transform: translate(var(--cx), var(--cy)) rotate(var(--cr)); }
}

/* ── KI-Telefonassistent (Anruf-Simulation) ──────────────────────── */
.voice { max-width: 1080px; margin: 84px auto 0; padding: 0 24px; }
.voice-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.voice h2 { font-size: clamp(26px, 4vw, 38px); font-weight: 700; letter-spacing: -0.025em; line-height: 1.1; }
.voice-card {
  position: relative; background: var(--card); border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,0.05); box-shadow: var(--shadow); padding: 22px;
}
.call-head { display: flex; align-items: center; gap: 14px; }
.call-avatar {
  position: relative; width: 44px; height: 44px; flex: none;
  border-radius: 50%; background: var(--accent); color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.call-avatar .ring {
  position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid rgba(232,96,58,0.45);
  animation: ring 2.4s var(--ease-out) infinite;
}
.call-avatar .ring.r2 { animation-delay: 1.2s; }
@keyframes ring {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.9); opacity: 0; }
}
.call-timer { margin-left: auto; font-size: 13px; color: var(--text-secondary); font-variant-numeric: tabular-nums; }
.call-lines { display: flex; flex-direction: column; gap: 10px; margin: 18px 0 6px; min-height: 178px; }
.call-line {
  max-width: 85%; padding: 10px 14px; border-radius: 16px;
  font-size: 13.5px; line-height: 1.45;
  opacity: 0; transform: translateY(6px);
  transition: opacity 320ms ease, transform 360ms var(--ease-out);
}
.call-line.in { opacity: 1; transform: translateY(0); }
.call-line.agent { background: rgba(0,0,0,0.045); border-bottom-left-radius: 6px; align-self: flex-start; }
.call-line.worker { background: rgba(232,96,58,0.10); border-bottom-right-radius: 6px; align-self: flex-end; }
.call-result {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  border-top: 1px solid var(--border); padding-top: 14px;
  opacity: 0; transition: opacity 400ms ease;
}
.call-result.in { opacity: 1; }
@media (max-width: 860px) {
  .voice-inner { grid-template-columns: 1fr; gap: 36px; }
  .voice-text { order: -1; }
}

/* ── Zahlen (Count-up) ───────────────────────────────────────────── */
.stats {
  max-width: 1080px; margin: 84px auto 0; padding: 0 24px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 14px;
}
.stat {
  background: var(--card); border-radius: var(--radius); border: 1px solid rgba(0,0,0,0.04);
  padding: 26px 22px; text-align: center;
}
.stat-n { font-size: 38px; font-weight: 700; letter-spacing: -0.03em; color: var(--accent); font-variant-numeric: tabular-nums; }
.stat-l { font-size: 13px; color: var(--text-secondary); margin-top: 4px; }

/* ── Spotlight auf Karten (Cursor-Glow) ──────────────────────────── */
.feature2 { position: relative; overflow: hidden; }
.feature2::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(240px circle at var(--mx, 50%) var(--my, 50%), rgba(232,96,58,0.07), transparent 70%);
  opacity: 0; transition: opacity 250ms ease;
}
@media (hover: hover) and (pointer: fine) {
  .feature2:hover::after { opacity: 1; }
}

/* ── Finale ──────────────────────────────────────────────────────── */
.finale {
  position: relative; text-align: center; overflow: hidden;
  margin-top: 96px; padding: 96px 24px 104px;
  background: #141416; color: #fff;
}
.finale-glow {
  position: absolute; left: 50%; bottom: -40%; transform: translateX(-50%);
  width: 900px; height: 500px; pointer-events: none;
  background: radial-gradient(closest-side, rgba(232,96,58,0.28), transparent 72%);
}
.finale h2 {
  position: relative; font-size: clamp(30px, 5vw, 48px); font-weight: 700;
  letter-spacing: -0.03em; line-height: 1.1;
}
.finale p { position: relative; color: rgba(255,255,255,0.65); margin-top: 16px; font-size: 16px; }
.finale .btn-primary { position: relative; }

@media (max-width: 860px) {
  .try-inner { grid-template-columns: 1fr; gap: 36px; }
}

/* Footer */
.footer { text-align: center; padding: 28px 24px; font-size: 12px; color: var(--text-secondary); }
.footer a { color: var(--text-secondary); }

@media (max-width: 520px) {
  .row2 { grid-template-columns: 1fr; }
  .card { padding: 26px 20px; }
}

/* ═══════════════ Preis-Seite (preise.html) ═══════════════ */
.pr-hero { max-width: 780px; margin: 0 auto; padding: 72px 24px 40px; text-align: center; }
.pr-kicker { font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.pr-hero h1 { font-size: clamp(32px, 5vw, 52px); font-weight: 800; line-height: 1.05; }
.pr-lead { margin-top: 18px; font-size: 18px; color: var(--text-secondary); }

.pr-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; max-width: 1080px; margin: 24px auto 0; padding: 0 24px; align-items: start; }
.pr-card { position: relative; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px 26px; box-shadow: var(--shadow); display: flex; flex-direction: column; }
.pr-featured { border: 2px solid var(--accent); box-shadow: 0 18px 50px -18px color-mix(in srgb, var(--accent) 55%, transparent); }
@media (min-width: 901px) { .pr-featured { transform: translateY(-14px); } }
.pr-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #fff; font-size: 12px; font-weight: 700; letter-spacing: .04em; padding: 5px 16px; border-radius: 999px; white-space: nowrap; }
.pr-card-head h2 { font-size: 24px; font-weight: 800; }
.pr-tag { margin-top: 8px; font-size: 14px; color: var(--text-secondary); min-height: 40px; }
.pr-price { margin-top: 22px; display: flex; align-items: baseline; gap: 4px; }
.pr-cur { font-size: 20px; font-weight: 700; color: var(--text-secondary); }
.pr-amt { font-size: 46px; font-weight: 800; letter-spacing: -0.03em; line-height: 1; }
.pr-per { font-size: 16px; color: var(--text-secondary); }
.pr-year { margin-top: 8px; font-size: 14px; font-weight: 600; color: var(--accent); }
.pr-meta { margin-top: 4px; font-size: 13px; color: var(--text-secondary); }
.pr-cta { width: 100%; margin-top: 20px; justify-content: center; }
.pr-feats { list-style: none; margin-top: 24px; padding-top: 22px; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 12px; }
.pr-feats li { position: relative; padding-left: 28px; font-size: 15px; color: var(--text); }
.pr-feats li::before { content: "✓"; position: absolute; left: 0; top: -1px; font-weight: 800; color: var(--ink); }
.pr-feats li.yes::before { color: var(--green); }
.pr-feats li.no { color: var(--text-secondary); }
.pr-feats li.no::before { content: "–"; color: var(--text-secondary); font-weight: 700; }
.pr-note { color: var(--text-secondary); font-weight: 600; }
.pr-vat { text-align: center; font-size: 13px; color: var(--text-secondary); margin: 28px 0 0; }

/* Credits-Band */
.pr-credits { max-width: 1080px; margin: 64px auto 0; padding: 0 24px; }
.pr-credits-inner { background: var(--ink); color: var(--canvas); border-radius: var(--radius); padding: 44px; display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: center; }
.pr-credits-inner .pr-kicker { color: color-mix(in srgb, var(--accent) 85%, white); }
.pr-credits-text h2 { font-size: 30px; font-weight: 800; }
.pr-credits-text h2 em { color: color-mix(in srgb, var(--accent) 85%, white); font-style: normal; }
.pr-credits-text p { margin-top: 14px; font-size: 16px; line-height: 1.6; color: color-mix(in srgb, var(--canvas) 78%, transparent); }
.pr-packs { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.pr-pack { background: color-mix(in srgb, var(--canvas) 10%, transparent); border: 1px solid color-mix(in srgb, var(--canvas) 22%, transparent); border-radius: var(--radius-sm); padding: 20px; text-align: center; }
.pr-pack-amt { display: block; font-size: 24px; font-weight: 800; }
.pr-pack-lbl { display: block; margin-top: 2px; font-size: 13px; color: color-mix(in srgb, var(--canvas) 65%, transparent); }

.pr-finale { text-align: center; padding: 80px 24px; }
.pr-finale h2 { font-size: clamp(26px, 4vw, 38px); font-weight: 800; margin-bottom: 26px; }
.pr-footer { max-width: 1080px; margin: 0 auto; padding: 32px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; border-top: 1px solid var(--border); font-size: 14px; color: var(--text-secondary); }

@media (max-width: 900px) {
  .pr-grid { grid-template-columns: 1fr; max-width: 440px; }
  .pr-credits-inner { grid-template-columns: 1fr; padding: 32px; gap: 26px; }
}

/* Preis-Seite: sekundärer Trial-Link unter dem Kauf-Button */
.pr-trial { display: block; text-align: center; margin-top: 10px; font-size: 13px; color: var(--text-secondary); text-decoration: none; }
.pr-trial:hover { color: var(--accent); text-decoration: underline; }

/* ═══════════ Zwei-Säulen-USP (App links / KI rechts) ═══════════ */
.usp-duo { max-width: 1080px; margin: 0 auto; padding: 80px 24px 32px; }
.usp-head { text-align: center; max-width: 680px; margin: 0 auto 40px; }
.usp-head h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 800; line-height: 1.08; }
.usp-sub { margin-top: 14px; font-size: 18px; color: var(--text-secondary); }
.usp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.usp-col { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow); display: flex; flex-direction: column; }
.usp-kicker { font-size: 13px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--accent); }
.usp-shot { margin: 16px 0; border-radius: var(--radius-sm); overflow: hidden; background: var(--bg); aspect-ratio: 16 / 10; }
.usp-shot img { width: 100%; height: 100%; object-fit: cover; display: block; }
.usp-text { font-size: 16px; line-height: 1.55; color: var(--text); flex: 1; }
.usp-cta { margin-top: 18px; align-self: flex-start; }
@media (max-width: 760px) { .usp-grid { grid-template-columns: 1fr; } }

/* Worker-App-Spalte: ganzes Handy im Rahmen + Stichpunkte daneben */
.usp-grid { align-items: stretch; }
.usp-appbody { display: flex; gap: 18px; align-items: center; margin: 16px 0; flex: 1; }
.usp-phone { flex: none; width: 155px; border-radius: 26px; overflow: hidden; border: 6px solid #17140f; background: #000; box-shadow: 0 14px 34px -14px rgba(0,0,0,.5); }
.usp-phone img { width: 100%; display: block; }
.usp-bullets { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.usp-bullets li { position: relative; padding-left: 26px; font-size: 15px; line-height: 1.45; color: var(--text); }
.usp-bullets li::before { content: "✓"; position: absolute; left: 0; top: 0; font-weight: 800; color: var(--green); }
@media (max-width: 420px) { .usp-appbody { flex-direction: column; align-items: flex-start; } .usp-phone { width: 170px; align-self: center; } }

/* Touch-Geräte (iPhone/iPad, WebKit): die animierte Phone-Tour macht Probleme
   und Interaktion ist eh sinnlos → das Handy als EINFACHES statisches Bild
   zeigen (dasselbe robuste Muster wie der USP-Block, der auf iOS läuft). */
@media (hover: none) {
  /* Touch = „Video-Modus": Auto-Demo läuft (Crossfade), aber keine Tipp-Zonen
     (auf einem Mini-Handy eh fummelig). Der Chip zeigt „Auto-Demo läuft". */
  #phone-taps, #phone-hotspots { display: none; }
}

/* ── Der vollständige Ablauf (Prozess-Band, farbcodiert nach Werkzeug) ── */
.flow { max-width: 1180px; margin: 0 auto; padding: clamp(48px, 7vw, 90px) 24px; }
.flow-head { text-align: center; max-width: 700px; margin: 0 auto clamp(28px, 4vw, 46px); }
.flow-head h2 { font-size: clamp(28px, 3.8vw, 46px); font-weight: 800; letter-spacing: -0.03em; color: var(--ink); line-height: 1.06; margin-top: 8px; }
.flow-head h2 em { font-style: normal; color: var(--accent); }
.flow-sub { margin-top: 14px; font-size: 16.5px; line-height: 1.6; color: var(--muted); }
.flow-track {
  list-style: none; display: flex; gap: 14px; align-items: stretch;
  overflow-x: auto; scroll-snap-type: x proximity;
  padding: 6px 2px 16px; -webkit-overflow-scrolling: touch;
}
.flow-step {
  position: relative; flex: 1 1 160px; min-width: 160px; scroll-snap-align: start;
  background: var(--card); border: 1px solid var(--border); border-top-width: 3px;
  border-radius: 16px; padding: 16px; box-shadow: var(--shadow);
}
/* Verbindungspfeil zwischen den Karten (sitzt in der Lücke) */
.flow-step:not(:last-child)::after {
  content: "→"; position: absolute; right: -13px; top: 50%; transform: translateY(-50%);
  font-size: 17px; font-weight: 700; color: #c4cbd3; z-index: 1; pointer-events: none;
}
.flow-top { display: flex; align-items: center; gap: 8px; }
.flow-n {
  display: inline-flex; align-items: center; justify-content: center; flex: none;
  width: 26px; height: 26px; border-radius: 50%; font-size: 13px; font-weight: 800;
  background: var(--ink); color: #fff;
}
.flow-tag {
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
  padding: 3px 8px; border-radius: 999px;
}
.flow-step[data-tool="ki"]      { border-top-color: var(--accent); }
.flow-step[data-tool="app"]     { border-top-color: var(--blue); }
.flow-step[data-tool="cockpit"] { border-top-color: var(--green); }
.flow-step[data-tool="ki"]      .flow-tag { color: var(--accent); background: rgba(232,96,58,0.10); }
.flow-step[data-tool="app"]     .flow-tag { color: var(--blue);   background: rgba(46,134,247,0.10); }
.flow-step[data-tool="cockpit"] .flow-tag { color: var(--green);  background: rgba(17,183,106,0.10); }
.flow-step h4 { margin: 12px 0 6px; font-size: 16px; font-weight: 800; letter-spacing: -0.02em; color: var(--ink); }
.flow-step p { font-size: 13.5px; line-height: 1.5; color: var(--muted); }
.flow-legend { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin-top: 6px; font-size: 13px; font-weight: 600; color: var(--muted); }
.flow-legend span { display: inline-flex; align-items: center; gap: 7px; }
.flow-legend i { width: 10px; height: 10px; border-radius: 3px; display: inline-block; }
@media (max-width: 720px) {
  .flow-step:not(:last-child)::after { display: none; }
  .flow-step { flex-basis: 78%; min-width: 78%; }
}

/* Beruhigung am Testanruf-Formular (P5): senkt die Hemmschwelle */
.aa-demo-head p.aa-note { margin-top: 10px; font-size: 13.5px; font-weight: 700; color: var(--green); }

/* P4: Landing-Untertitel dunkler → besserer Kontrast (Kritik „kontrastarm").
   Landing-scoped, damit der globale --muted-Token (auch in der App) unberührt bleibt. */
.usp-sub, .flow-sub, .aa-sub, .vb-lead, .editorial p, .bento-head p, .pp-sub, .steps .step p {
  color: #4C525C;
}

/* ── Runde 2: Hero-Label, grössere USP-Karten, Mini-Prozess, Telefon-Notiz ── */

/* #6 Zielgruppen-Label als Pill über der H1 */
.hi-eyebrow {
  display: inline-block; margin-bottom: 14px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  color: #fff; background: var(--accent); padding: 6px 14px; border-radius: 999px;
}

/* #1 USP-Karten ~25% grösser & klarer */
.usp-duo { max-width: 1140px; padding-top: 72px; }
.usp-col { padding: 30px; }
.usp-kicker { font-size: 14px; }
.usp-phone { width: 172px; }
.usp-text { font-size: 17px; line-height: 1.5; }
.usp-shot { aspect-ratio: 16 / 11; }

/* #2 Mini-Prozess auf der Worker-App-Karte (links erzählt auch eine Story) */
.usp-colbody { display: flex; flex-direction: column; gap: 14px; flex: 1; }
.usp-mini { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.usp-mini span {
  font-size: 12.5px; font-weight: 700; color: var(--blue);
  background: rgba(46,134,247,0.10); padding: 5px 11px; border-radius: 999px;
}
.usp-mini i { color: #c4cbd3; font-style: normal; font-weight: 700; }

/* #7 Vertrauens-Notiz direkt am Telefonfeld */
.aa-phone-note {
  text-align: left; margin: 4px auto 10px; max-width: 520px;
  font-size: 13.5px; line-height: 1.5; color: #4C525C;
  background: rgba(17,183,106,0.08); border-left: 3px solid var(--green);
  padding: 9px 12px; border-radius: 8px;
}
.aa-phone-note b { color: var(--ink); }

/* #3 Prozess-Karten minimal lesbarer */
.flow-step h4 { font-size: 16.5px; }
.flow-step p { font-size: 14px; }

/* ── Modularität: „kein Muss\" + Dashboard stärker verkaufen ── */

/* „Kein Paketzwang\": visuelles Baukasten-Element unter den zwei USP-Karten */
.usp-modular { max-width: 720px; margin: 36px auto 0; text-align: center; }
.usp-modular-kicker {
  font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 14px;
}
.usp-modules { display: flex; align-items: stretch; justify-content: center; gap: 12px; flex-wrap: wrap; }
.usp-mod {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  background: var(--card); border: 1px solid var(--border); border-radius: 14px;
  padding: 14px 24px; min-width: 190px; box-shadow: var(--shadow);
}
.usp-mod.is-base { border-color: rgba(17,183,106,0.45); }
.usp-mod.is-opt { border-style: dashed; }
.usp-mod b { font-size: 16px; color: var(--ink); }
.usp-mod-desc { font-size: 13px; color: #4C525C; }
.usp-mod-tag {
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 3px 9px; border-radius: 999px; margin-bottom: 5px;
}
.usp-mod.is-base .usp-mod-tag { color: var(--green); background: rgba(17,183,106,0.10); }
.usp-mod.is-opt .usp-mod-tag { color: var(--accent); background: rgba(232,96,58,0.10); }
.usp-mod-plus { align-self: center; font-size: 22px; font-weight: 800; color: #b9c1ca; }
.usp-modular-sub { margin-top: 14px; font-size: 14.5px; line-height: 1.55; color: #4C525C; }
@media (max-width: 480px) { .usp-mod-plus { transform: rotate(90deg); } .usp-mod { width: 100%; } }

/* ── KI-Agent-Ablauf-Animation: Handy ↔ Cockpit synchron (18s-Loop) ── */
.aa-flow {
  position: relative; display: flex; align-items: stretch; justify-content: center;
  gap: 0; max-width: 940px; margin: 8px auto 0;
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 30px 26px 26px;
}
.aaf-panel { flex: 1; min-width: 0; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.aaf-label { font-size: 11.5px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: var(--muted); }

/* Handy links */
.aaf-phone {
  position: relative; width: 205px; border-radius: 30px; overflow: hidden;
  border: 6px solid #17140f; background: #0d0f14;
  box-shadow: 0 14px 34px -14px rgba(0,0,0,0.5);
}
.aa-flow[data-phase="0"] .aaf-phone { animation: aaf-ring 0.5s ease-in-out infinite; }
@keyframes aaf-ring { 25% { transform: rotate(1.4deg); } 75% { transform: rotate(-1.4deg); } }
.aaf-notch { position: absolute; top: 7px; left: 50%; transform: translateX(-50%); width: 64px; height: 14px; border-radius: 8px; background: #17140f; z-index: 2; }
.aaf-screen { position: relative; height: 330px; }
.aaf-call {
  position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center;
  gap: 9px; padding-top: 46px; color: #fff; transition: opacity 0.4s ease;
}
.aa-flow[data-phase="3"] .aaf-call, .aa-flow[data-phase="4"] .aaf-call { opacity: 0.25; }
.aaf-avatar { width: 56px; height: 56px; border-radius: 50%; background: var(--accent); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 24px; }
.aaf-caller { font-weight: 800; font-size: 17px; }
.aaf-callstate { font-size: 12px; color: rgba(255,255,255,0.65); min-height: 16px; }
.aaf-waves { display: flex; gap: 4px; align-items: center; height: 28px; opacity: 0; transition: opacity 0.3s; }
.aa-flow[data-phase="1"] .aaf-waves { opacity: 1; }
.aaf-waves i { width: 4px; height: 8px; border-radius: 2px; background: var(--green); animation: aaf-wave 0.9s ease-in-out infinite; }
.aaf-waves i:nth-child(2) { animation-delay: 0.15s; }
.aaf-waves i:nth-child(3) { animation-delay: 0.3s; }
.aaf-waves i:nth-child(4) { animation-delay: 0.45s; }
.aaf-waves i:nth-child(5) { animation-delay: 0.6s; }
@keyframes aaf-wave { 50% { height: 24px; } }
.aaf-callbtns { display: flex; gap: 26px; margin-top: auto; margin-bottom: 26px; opacity: 0; transition: opacity 0.3s; }
.aa-flow[data-phase="0"] .aaf-callbtns { opacity: 1; }
.aaf-btn { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 800; color: #fff; }
.aaf-btn.decline { background: #e2453a; }
.aaf-btn.accept { background: var(--green); animation: aaf-pulse 1.1s ease-in-out infinite; }
@keyframes aaf-pulse { 50% { transform: scale(1.12); box-shadow: 0 0 0 8px rgba(17,183,106,0.18); } }
.aaf-sms {
  position: absolute; left: 9px; right: 9px; bottom: 12px; z-index: 3;
  background: #fff; border-radius: 14px; padding: 11px 12px; text-align: left;
  box-shadow: 0 10px 26px rgba(0,0,0,0.35);
  transform: translateY(130%); opacity: 0; transition: transform 0.5s ease, opacity 0.4s ease;
}
.aa-flow[data-phase="3"] .aaf-sms, .aa-flow[data-phase="4"] .aaf-sms { transform: none; opacity: 1; }
.aaf-sms-head { font-size: 10.5px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.aaf-sms p { font-size: 11.5px; line-height: 1.45; color: var(--ink); }

/* Verbindung in der Mitte */
.aaf-connector { display: flex; align-items: center; padding: 0 18px; }
.aaf-dotline {
  width: 58px; height: 2px;
  background-image: linear-gradient(90deg, var(--accent) 55%, transparent 45%);
  background-size: 9px 2px; background-repeat: repeat-x;
  animation: aaf-flowline 0.8s linear infinite;
}
@keyframes aaf-flowline { to { background-position: 9px 0; } }

/* Cockpit rechts */
.aaf-dash { width: 100%; max-width: 360px; background: var(--bg); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; text-align: left; }
.aaf-dash-head { display: flex; align-items: center; gap: 8px; padding: 10px 14px; font-size: 12px; font-weight: 700; color: var(--muted); background: var(--card); border-bottom: 1px solid var(--border); }
.aaf-dash-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); animation: aaf-blink 1.6s ease-in-out infinite; }
@keyframes aaf-blink { 50% { opacity: 0.35; } }
.aaf-row { display: flex; align-items: center; gap: 10px; padding: 12px 14px; background: var(--card); border-bottom: 1px solid var(--border); }
.aaf-ava { flex: none; width: 34px; height: 34px; border-radius: 50%; background: var(--blue); color: #fff; font-weight: 800; font-size: 13px; display: flex; align-items: center; justify-content: center; }
.aaf-who { min-width: 0; }
.aaf-who b { display: block; font-size: 14px; color: var(--ink); }
.aaf-who span { font-size: 12px; color: var(--muted); }
.aaf-status { margin-left: auto; flex: none; font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 999px; white-space: nowrap; transition: background 0.3s, color 0.3s; }
.aaf-status.is-call { color: var(--blue); background: rgba(46,134,247,0.10); }
.aaf-status.is-proc { color: #a07400; background: rgba(255,200,61,0.18); }
.aaf-status.is-ok { color: var(--green); background: rgba(17,183,106,0.12); }
.aaf-log { list-style: none; margin: 0; padding: 12px 14px; display: flex; flex-direction: column; gap: 8px; min-height: 138px; }
.aaf-log li { font-size: 12.5px; line-height: 1.4; color: #4C525C; opacity: 0; transform: translateY(5px); transition: opacity 0.35s ease, transform 0.35s ease; }
.aaf-log li.on { opacity: 1; transform: none; }
.aaf-decide { padding: 10px 14px; border-top: 1px dashed var(--border); font-size: 12px; color: var(--muted); }
.aaf-decide b { color: var(--ink); }

/* Pause/Play + Bildunterschrift */
.aaf-toggle {
  position: absolute; top: 12px; right: 12px; width: 30px; height: 30px; border-radius: 50%;
  border: 1px solid var(--border); background: var(--card); color: var(--muted);
  font-size: 11px; cursor: pointer; line-height: 1;
}
.aaf-toggle:hover { color: var(--ink); }
.aaf-caption { text-align: center; max-width: 640px; margin: 16px auto 0; font-size: 14.5px; line-height: 1.55; color: #4C525C; }
.aaf-caption b { color: var(--ink); }

@media (max-width: 760px) {
  .aa-flow { flex-direction: column; gap: 22px; padding: 22px 16px 18px; }
  .aaf-connector { transform: rotate(90deg); padding: 0; height: 26px; align-self: center; }
  .aaf-screen { height: 310px; }
}

/* ── Chat-Bubbles (von der Live-Bühne genutzt) ── */
.aa-bubble {
  max-width: 85%; padding: 8px 12px; border-radius: 14px;
  font-size: 13px; line-height: 1.45; color: var(--ink);
}
.aa-bubble.is-agent { align-self: flex-start; background: var(--card); border: 1px solid var(--border); border-bottom-left-radius: 4px; }
.aa-bubble.is-du { align-self: flex-end; background: rgba(46,134,247,0.10); border: 1px solid rgba(46,134,247,0.22); border-bottom-right-radius: 4px; }

/* ── Live-Modus der Bühne: echter Testanruf des Besuchers ──────────
   #aa-flow[data-mode="live"] + data-lstate = requested | ringing |
   connected | processing | result | sms | failed. Rendert nur Poll-Daten. */
.aaf-livehint {
  text-align: center; margin: 18px auto -4px; max-width: 640px;
  font-size: 14px; line-height: 1.5; color: #4C525C;
}
.aaf-livehint b { color: var(--ink); }
.aaf-livehint a { color: var(--accent); font-weight: 700; text-decoration: none; }
.aaf-livehint a:hover { text-decoration: underline; }

/* Kurzes Highlight nach Klick auf „Jetzt anrufen lassen“ */
.aa-flow.aa-stage-hi { box-shadow: 0 0 0 3px rgba(232,96,58,0.4), var(--shadow); }

/* Panel-Umschaltung idle ↔ live */
.aaf-live, .aaf-dash-live, .aafl-ringhint { display: none; }
.aa-flow[data-mode="live"] .aaf-live { display: block; position: absolute; inset: 0; }
.aa-flow[data-mode="live"] .aaf-call:not(.aafl-call),
.aa-flow[data-mode="live"] .aaf-sms:not(.aafl-sms),
.aa-flow[data-mode="live"] .aaf-dash:not(.aaf-dash-live),
.aa-flow[data-mode="live"] .aaf-toggle { display: none; }
.aa-flow[data-mode="live"] .aaf-dash-live { display: block; }
.aaf-idlenote { padding: 0 14px 10px; font-size: 11.5px; color: var(--muted); }

/* Telefon: Live-Zustände */
.aa-flow[data-mode="live"][data-lstate="ringing"] .aaf-phone { animation: aaf-ring 0.5s ease-in-out infinite; }
.aa-flow[data-mode="live"][data-lstate="ringing"] .aaf-phone-panel .aaf-label { display: none; }
.aa-flow[data-mode="live"][data-lstate="ringing"] .aafl-ringhint {
  display: block; font-size: 11.5px; font-weight: 800; letter-spacing: 0.07em;
  text-transform: uppercase; color: var(--accent);
  animation: aaf-blink 1.2s ease-in-out infinite;
}
/* display:flex der Basisklasse würde [hidden] aushebeln → hart schalten */
.aa-flow[data-mode="live"] .aafl-call .aaf-callbtns { display: none; }
.aa-flow[data-mode="live"][data-lstate="ringing"] .aafl-call .aaf-callbtns { display: flex; opacity: 1; }
.aa-flow[data-mode="live"][data-lstate="connected"] .aafl-call .aaf-waves { opacity: 1; }
.aa-flow[data-mode="live"][data-lstate="sms"] .aafl-call { opacity: 0.25; }
.aa-flow[data-mode="live"][data-lstate="sms"] .aafl-sms { transform: none; opacity: 1; }

.aafl-timer { font-size: 15px; font-weight: 800; color: #fff; font-variant-numeric: tabular-nums; }
.aafl-spinner {
  width: 22px; height: 22px; border-radius: 50%; margin: 6px auto;
  border: 3px solid rgba(255,255,255,0.25); border-top-color: #fff;
  animation: aafl-rot 0.8s linear infinite;
}
@keyframes aafl-rot { to { transform: rotate(1turn); } }
.aafl-lines {
  width: 100%; display: flex; flex-direction: column; gap: 6px;
  padding: 0 9px; margin-top: auto; margin-bottom: 12px; overflow: hidden;
  /* Neueste Zeile MUSS sichtbar sein: unten verankern, Ältestes oben abschneiden.
     flex 0 1 auto + min-height 0: schrumpft in den verbleibenden Screen-Platz,
     statt unten aus dem Telefon zu ragen. */
  justify-content: flex-end; max-height: 150px; flex: 0 1 auto; min-height: 0;
  /* Ältestes läuft oben weich aus statt hart abgeschnitten */
  -webkit-mask-image: linear-gradient(180deg, transparent 0, #000 22px);
  mask-image: linear-gradient(180deg, transparent 0, #000 22px);
}
.aafl-lines .aa-bubble { font-size: 11px; line-height: 1.4; padding: 6px 9px; max-width: 92%; }
.aafl-lines .aa-bubble.is-agent { background: rgba(255,255,255,0.92); border: none; }
.aafl-lines .aa-bubble.is-du { background: rgba(46,134,247,0.32); border: none; color: #fff; }
.aafl-result { margin: 10px 12px auto; text-align: center; color: #fff; }
.aafl-result b { display: block; font-size: 13px; line-height: 1.45; margin-bottom: 6px; }
.aafl-result span { display: block; font-size: 11px; line-height: 1.45; color: rgba(255,255,255,0.75); }

/* Live-Status-Dashboard: progressive Checkliste */
.aafl-check li { position: relative; padding-left: 20px; }
.aafl-check li::before { position: absolute; left: 0; top: 0; }
.aafl-check li.done::before { content: "✓"; color: var(--green); font-weight: 800; }
.aafl-check li.act::before { content: "●"; color: var(--blue); animation: aaf-blink 1.2s ease-in-out infinite; }
.aafl-check li.err { color: #c0392b; }
.aafl-check li.err::before { content: "✕"; color: #c0392b; font-weight: 800; }
.aafl-dur { padding: 0 14px 12px; font-size: 12.5px; color: var(--muted); }
.aafl-dur b { color: var(--ink); font-variant-numeric: tabular-nums; }
.aaf-status.is-err { color: #c0392b; background: rgba(226,69,58,0.10); }

@media (prefers-reduced-motion: reduce) {
  .aa-flow[data-mode="live"][data-lstate="ringing"] .aaf-phone,
  .aa-flow[data-mode="live"][data-lstate="ringing"] .aafl-ringhint,
  .aafl-spinner,
  .aafl-check li.act::before { animation: none; }
  .aafl-check li { transition: none; }
  /* Puls/Waves/Blink der wiederverwendeten Idle-Elemente sind im Live-Modus
     erstmals sichtbar → auch hier stilllegen */
  .aa-flow[data-mode="live"] .aaf-btn.accept,
  .aa-flow[data-mode="live"] .aaf-waves i,
  .aa-flow[data-mode="live"] .aaf-dash-dot { animation: none; }
}

/* Dashboard-Sektion: Untertitel + Nutzen-Bullets */
.pp-sub {
  margin: 12px auto 0; max-width: 640px; font-size: 16.5px; line-height: 1.6;
}
.pp-points {
  list-style: none; display: flex; flex-wrap: wrap; justify-content: center;
  gap: 12px 28px; max-width: 900px; margin: 22px auto 6px; padding: 0 24px;
}
.pp-points li {
  position: relative; padding-left: 26px; font-size: 15px; font-weight: 600; color: var(--ink);
}
.pp-points li::before {
  content: "✓"; position: absolute; left: 0; top: 0; font-weight: 800; color: var(--green);
}

/* ══ Premium-Polish der Live-Bühne (Briefing v3): realistisches Phone,
      echte Call-UI, iMessage-SMS, moderne Cockpit-Karte, Datenfluss ══ */

/* Realistisches Smartphone: dünne Ränder, Glas, tiefe Schatten */
.aaf-phone {
  width: 212px; border-radius: 34px; border: 4px solid #0b0d12; background: #05070c;
  box-shadow:
    inset 0 0 0 1.5px rgba(255,255,255,0.09),
    0 30px 60px -22px rgba(11,13,18,0.55),
    0 10px 22px -10px rgba(11,13,18,0.4);
}
.aaf-gloss {
  position: absolute; inset: 0; z-index: 5; pointer-events: none; border-radius: 30px;
  background: linear-gradient(115deg, rgba(255,255,255,0.13) 0%, rgba(255,255,255,0.05) 16%, transparent 30%);
}
.aaf-screen {
  background: radial-gradient(130% 90% at 50% -5%, #202a3f 0%, #0d1220 52%, #070a12 100%);
}

/* Status-Bar wie echt (Uhrzeit = echte Uhrzeit des Besuchers) */
.aafl-statusbar {
  position: absolute; top: 7px; left: 0; right: 0; z-index: 3;
  display: flex; justify-content: space-between; padding: 0 16px;
  font-size: 8.5px; font-weight: 700; color: rgba(255,255,255,0.8);
  font-variant-numeric: tabular-nums;
}
.aafl-sbicons { font-size: 7.5px; letter-spacing: 0; opacity: 0.85; }

/* Call-UI: grosszügiger, echter */
.aafl-call .aaf-avatar {
  width: 60px; height: 60px; font-size: 24px;
  background: linear-gradient(150deg, #ff8a5c, #E8603A 70%);
  box-shadow: 0 0 0 4px rgba(232,96,58,0.16), 0 10px 24px -8px rgba(232,96,58,0.55);
}
.aafl-callsub {
  font-size: 9px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.42); margin-top: -5px;
}
.aafl-timer { font-size: 22px; font-weight: 300; letter-spacing: 0.04em; }
.aafl-speaker { font-size: 10.5px; font-weight: 600; color: rgba(255,255,255,0.55); }

/* Sprachwellen: 7 Balken, Farbe folgt dem Sprecher (KI grün / Du blau) */
#aafl-waves i { width: 3.5px; }
#aafl-waves i:nth-child(6) { animation-delay: 0.25s; }
#aafl-waves i:nth-child(7) { animation-delay: 0.5s; }
.aaf-waves.who-agent i { background: var(--green); }
.aaf-waves.who-du i { background: var(--blue); }

/* SMS wie eine echte Nachrichten-App (tippt … → Bubble → Zugestellt) */
.aafl-sms {
  position: absolute; left: 7px; right: 7px; bottom: 8px; z-index: 4;
  border-radius: 18px; overflow: hidden; background: #f4f4f8; text-align: left;
  box-shadow: 0 18px 38px rgba(0,0,0,0.5);
  transform: translateY(140%); opacity: 0;
  transition: transform 0.55s cubic-bezier(0.2, 0.85, 0.25, 1), opacity 0.4s ease;
}
.aafl-sms-head {
  display: flex; align-items: center; gap: 8px; padding: 9px 12px 8px;
  background: rgba(255,255,255,0.9); border-bottom: 1px solid rgba(11,13,18,0.06);
}
.aafl-sms-ava {
  flex: none; width: 26px; height: 26px; border-radius: 50%;
  background: linear-gradient(150deg, #ff8a5c, #E8603A); color: #fff;
  display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 12px;
}
.aafl-sms-who b { display: block; font-size: 12px; color: var(--ink); line-height: 1.1; }
.aafl-sms-who span { font-size: 9px; color: #8a8f98; font-weight: 600; }
.aafl-sms-thread { display: flex; flex-direction: column; gap: 6px; padding: 8px 10px 10px; }
.aafl-sms-time { text-align: center; font-size: 9px; font-weight: 600; color: #9aa0a8; }
.aafl-typing {
  align-self: flex-start; display: flex; gap: 3.5px;
  background: #e5e5ea; border-radius: 14px; border-bottom-left-radius: 5px; padding: 9px 11px;
}
.aafl-typing[hidden] { display: none; } /* display:flex würde [hidden] aushebeln */
.aafl-typing i { width: 6px; height: 6px; border-radius: 50%; background: #9aa0a8; animation: aafl-tp 1s ease-in-out infinite; }
.aafl-typing i:nth-child(2) { animation-delay: 0.15s; }
.aafl-typing i:nth-child(3) { animation-delay: 0.3s; }
@keyframes aafl-tp { 30% { transform: translateY(-3px); opacity: 0.55; } }
.aafl-sms-bubble {
  align-self: flex-start; max-width: 96%;
  background: #e9e9ee; border-radius: 16px; border-bottom-left-radius: 5px; padding: 8px 10px;
  animation: aafl-pop 0.3s ease;
}
.aafl-sms-bubble p { font-size: 10.5px; line-height: 1.45; color: #15181d; }
@keyframes aafl-pop { from { transform: scale(0.94) translateY(6px); opacity: 0; } }
.aafl-sms-deliv { font-size: 8.5px; font-weight: 600; color: #9aa0a8; margin-left: 5px; }

/* Cockpit-Karte: moderner, ruhiger */
.aaf-dash-live {
  border: 1px solid rgba(11,13,18,0.07); border-radius: 18px;
  box-shadow: 0 1px 2px rgba(11,13,18,0.04), 0 18px 40px -20px rgba(11,13,18,0.18);
}
.aaf-dash-live .aaf-dash-head {
  font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase;
  background: linear-gradient(180deg, #fff, #fafbfc);
}
.aaf-dash-live .aaf-ava { background: linear-gradient(150deg, #5ea4ff, var(--blue)); }
/* Status-Farben (Briefing §9): grün Gespräch, orange verarbeitet, blau SMS */
.aaf-status.is-live { color: var(--green); background: rgba(17,183,106,0.12); }
.aaf-status.is-sms { color: var(--blue); background: rgba(46,134,247,0.12); }
/* Aktiver Checklisten-Schritt trägt die Farbe seiner Phase */
.aafl-check li[data-k="talk"].act::before { background: var(--green); }
.aafl-check li[data-k="proc"].act::before { background: var(--yellow); }
.aafl-check li[data-k="sms"].act::before { background: var(--blue); }

/* Verbindung Phone ↔ Cockpit: fliessende Datenpunkte statt Strichlinie */
.aaf-dotline {
  position: relative; width: 58px; height: 5px; overflow: visible;
  background-image: radial-gradient(circle, currentColor 1.7px, transparent 2.3px);
  background-size: 11px 5px; background-repeat: repeat-x; background-position: 0 50%;
  color: #c4cbd3; animation: aaf-flowdots 0.65s linear infinite;
}
@keyframes aaf-flowdots { to { background-position: 11px 50%; } }
.aa-flow[data-mode="live"][data-lstate="connected"] .aaf-dotline { color: var(--green); }
.aa-flow[data-mode="live"][data-lstate="processing"] .aaf-dotline { color: var(--yellow); }
.aa-flow[data-mode="live"][data-lstate="sms"] .aaf-dotline { color: var(--blue); }
/* Während des SMS-Versands fliegt das Kuvert übers Band */
.aa-flow[data-mode="live"][data-lstate="sms"] .aaf-dotline::after {
  content: '✉'; position: absolute; top: -10px; left: 0;
  font-size: 12px; color: var(--blue);
  animation: aaf-fly 1.4s ease-in-out infinite;
}
@keyframes aaf-fly {
  0% { transform: translateX(-4px); opacity: 0; }
  25% { opacity: 1; }
  100% { transform: translateX(50px); opacity: 0; }
}

/* Reduced Motion: alle neuen Bewegungen stilllegen */
@media (prefers-reduced-motion: reduce) {
  .aaf-dotline, .aafl-typing i, .aafl-sms-bubble,
  .aa-flow[data-mode="live"][data-lstate="sms"] .aaf-dotline::after { animation: none; }
  .aafl-sms { transition: none; }
}

/* ══ Kino-Modus: die Live-Demo wird zum Mittelpunkt der Seite ══ */
#aa-cinema-backdrop {
  position: fixed; inset: 0; z-index: 400;
  background: rgba(7, 9, 14, 0.6);
  -webkit-backdrop-filter: blur(7px) saturate(0.75);
  backdrop-filter: blur(7px) saturate(0.75);
  opacity: 0; pointer-events: none; transition: opacity 0.4s ease;
}
#aa-cinema-backdrop.on { opacity: 1; pointer-events: auto; }
.aa-flow.in-cinema {
  position: relative; z-index: 500;
  box-shadow: 0 50px 140px -30px rgba(0, 0, 0, 0.55);
  transform: scale(1.02);
  transition: transform 0.45s cubic-bezier(0.2, 0.85, 0.25, 1);
}
/* Die Bühne wächst: grosses Handy (~45%), Dashboard daneben (~55%) */
.aa-flow.in-cinema .aaf-phone-panel { flex: 0.92; }
.aa-flow.in-cinema .aaf-dash-panel { flex: 1.08; }
.aa-flow.in-cinema .aaf-phone { width: 268px; }
.aa-flow.in-cinema .aaf-screen { height: 432px; }
.aa-flow.in-cinema .aafl-timer { font-size: 30px; }
.aa-flow.in-cinema .aafl-call .aaf-avatar { width: 72px; height: 72px; font-size: 28px; }
.aa-flow.in-cinema .aafl-lines { max-height: 190px; }
.aa-flow.in-cinema .aafl-lines .aa-bubble { font-size: 12.5px; }
.aa-flow.in-cinema .aafl-sms-bubble p { font-size: 12px; }
.aa-flow.in-cinema .aafl-statusbar { font-size: 10px; }
.aa-flow.in-cinema .aaf-label { font-size: 13px; }
.aaf-close {
  position: absolute; top: 12px; right: 12px; z-index: 6;
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid var(--border); background: var(--card); color: var(--muted);
  font-size: 13px; cursor: pointer; line-height: 1;
}
.aaf-close:hover { color: var(--ink); }
.aafl-actions {
  position: absolute; left: 0; right: 0; bottom: -66px; z-index: 6;
  display: flex; justify-content: center; gap: 12px;
}
.aafl-actions[hidden] { display: none; } /* display:flex würde [hidden] aushebeln */
.aafl-actions .btn { box-shadow: 0 14px 30px -12px rgba(0, 0, 0, 0.5); }

/* ══ Emotionaler Live-Feed (ersetzt die statische Checkliste) ══ */
.aafl-check { max-height: 218px; overflow-y: auto; scroll-behavior: smooth; }
.aafl-check li {
  padding-left: 0; font-size: 13px; line-height: 1.5; color: var(--ink);
  opacity: 0; transform: translateY(6px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.aafl-check li::before { content: none; }
.aafl-check li.on { opacity: 1; transform: none; }
.aafl-check li.act { font-weight: 700; animation: aafl-feedpulse 1.4s ease-in-out infinite; }
.aafl-check li.err { color: #b3261e; }
@keyframes aafl-feedpulse { 50% { opacity: 0.55; } }

@media (max-width: 760px) {
  .aa-flow.in-cinema { transform: none; }
  .aa-flow.in-cinema .aaf-phone { width: 230px; }
  .aa-flow.in-cinema .aaf-screen { height: 380px; }
  .aafl-actions { position: static; margin-top: 16px; }
}
@media (prefers-reduced-motion: reduce) {
  #aa-cinema-backdrop, .aa-flow.in-cinema { transition: none; }
  .aa-flow.in-cinema { transform: none; }
  .aafl-check li { transition: none; }
  .aafl-check li.act { animation: none; }
}

/* ══ Scroll-Inszenierung Dashboard + 3D-Tiefe des Bühnen-Handys ══ */

/* Dashboard richtet sich beim Scrollen auf (GSAP steuert transform) */
.product-peek { perspective: 1100px; }
.pp-shot { transform-style: preserve-3d; will-change: transform; }

/* Bühnen-Handy: dezente Perspektive im Idle — richtet sich im Live-/
   Kino-Modus gerade (voller Fokus). Nicht während des Klingel-Wiggles
   (Phase 0), dessen animation den transform übernimmt. */
.aaf-phone-panel { perspective: 950px; }
.aaf-phone { transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.3, 1); }
.aa-flow:not([data-mode="live"]):not([data-phase="0"]) .aaf-phone {
  transform: rotateY(-8deg) rotateX(3deg);
}
.aa-flow[data-mode="live"] .aaf-phone { transform: none; }
@media (max-width: 768px) {
  /* Mobile: keine 3D-Neigung (Berater-Regel) */
  .aa-flow:not([data-mode="live"]):not([data-phase="0"]) .aaf-phone { transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .aaf-phone { transition: none; }
}

/* ══ Geräterahmen v2: echtes Smartphone statt gezeichneter Box ══
   Titan-Band (conic), innerer Bezel, Dynamic Island, Seitentasten,
   Bodenschatten. Überschreibt die bisherigen .aaf-phone-Regeln. */
.aaf-phone {
  width: 216px; padding: 11px; border-radius: 52px; border: none;
  background: conic-gradient(from 210deg,
    #4a4e56, #83888f 10%, #2b2e33 26%, #5c6067 40%, #1d1f23 55%,
    #767b83 72%, #33363c 86%, #4a4e56);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.25) inset,
    0 34px 64px -24px rgba(11,13,18,0.55),
    0 12px 24px -10px rgba(11,13,18,0.42);
  overflow: visible;
}
/* innerer schwarzer Bezel zwischen Metallband und Display */
.aaf-phone::before {
  content: ''; position: absolute; inset: 3px; z-index: 0;
  border-radius: 49px; background: #08090d;
}
.aaf-screen {
  position: relative; z-index: 1; border-radius: 41px; overflow: hidden;
  background: radial-gradient(130% 90% at 50% -5%, #202a3f 0%, #0d1220 52%, #070a12 100%);
}
/* Dynamic Island statt Notch-Balken (+ Kamera-Punkt) */
.aaf-notch {
  top: 19px; width: 72px; height: 21px; border-radius: 12px;
  background: #000; z-index: 3;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.03);
}
.aaf-notch::after {
  content: ''; position: absolute; right: 7px; top: 50%; transform: translateY(-50%);
  width: 8px; height: 8px; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #2a3140, #0a0d14 70%);
  box-shadow: 0 0 2px rgba(80,120,200,0.35) inset;
}
/* Seitentasten (über die Gloss-Ebene, ragen aus dem Band) */
.aaf-gloss { overflow: visible; border-radius: 52px; }
.aaf-gloss::before, .aaf-gloss::after {
  content: ''; position: absolute; border-radius: 2px;
  background: linear-gradient(90deg, #5a5e66, #23262b);
}
.aaf-gloss::before { left: -2.5px; top: 108px; width: 3px; height: 54px; }   /* Lautstärke */
.aaf-gloss::after { right: -2.5px; top: 128px; width: 3px; height: 40px;     /* Power */
  background: linear-gradient(270deg, #5a5e66, #23262b); }
/* Bodenschatten unter dem Gerät */
.aaf-phone-panel { position: relative; }
.aaf-phone-panel::after {
  content: ''; position: absolute; left: 50%; bottom: -14px; transform: translateX(-50%);
  width: 62%; height: 22px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(11,13,18,0.28), transparent 70%);
  z-index: -1;
}
/* Statusbar unter die Island rücken */
.aafl-statusbar { top: 21px; padding: 0 20px; }
/* Kino-Modus: Grössen mitziehen */
.aa-flow.in-cinema .aaf-phone { width: 272px; }

/* Feed-Zeilen mit Line-Icons (statt Emojis) */
.aafl-check li { display: flex; align-items: flex-start; gap: 9px; }
.fico { flex: none; width: 15px; height: 15px; margin-top: 2px; color: var(--muted); }
.fico svg { width: 100%; height: 100%; display: block; }
.fico[data-tone="ok"] { color: var(--green); }
.fico[data-tone="err"] { color: #d23c2e; }
.fico[data-tone="warn"] { color: #c98a00; }
.fico[data-tone="info"] { color: var(--blue); }
.fico[data-tone="accent"] { color: var(--accent); }
.ftxt { min-width: 0; }

/* ════════════════════════════════════════════════════════════════
   DAYLIGHT-MITTE — Hochglanz-Haut fuer Live-Buehne, Formulare und
   Touren (Rogers "Tag und Nacht"-Feedback). NUR Optik: alle IDs,
   Struktur und Demo-Anruf-Logik bleiben unangetastet.
   ════════════════════════════════════════════════════════════════ */

/* Serif-Editorial fuer alle Titel der Mitte */
.aa-head h2, .vb-text h2, .wt-head h2, .aa-demo-head h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 440; letter-spacing: -0.01em; line-height: 1.12;
  color: var(--dl-ink);
}
.aa-head h2 { font-size: clamp(30px, 3.6vw, 48px); }
.aa-demo-head h3 { font-size: clamp(24px, 2.6vw, 32px); }
.aa-head h2 em, .vb-text h2 em, .wt-head h2 em, .aa-demo-head h3 em { color: var(--accent); }
.wt-kicker {
  font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(23, 19, 16, 0.5);
}

/* Formulare: Daylight-Ruhe — cremeweisse Karte, Pill-Felder, Haarlinien */
.aa-demo {
  background: #FDFAF4;
  border: 1px solid var(--dl-hairline);
  border-radius: 30px;
  box-shadow: 0 20px 60px rgba(23, 19, 16, 0.08);
  padding: clamp(28px, 4vw, 44px);
}
.aa-form input:not([type="checkbox"]), .aa-form select, .aa-step input {
  border-radius: 999px !important;
  border: 1.5px solid var(--dl-hairline);
  background: #fff;
  padding: 13px 20px;
  font: inherit; font-size: 15px; color: var(--dl-ink);
  transition: border-color 150ms ease, box-shadow 150ms ease;
  width: 100%;
}
.aa-form input:focus, .aa-step input:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(232, 96, 58, 0.14);
}
.aa-form input::placeholder { color: rgba(23, 19, 16, 0.38); }
.aa-form .btn-primary, .aa-demo .btn-primary { border-radius: 999px; }
.aa-consent {
  display: flex; align-items: flex-start; gap: 10px; text-align: left;
  font-size: 13px; color: rgba(23, 19, 16, 0.6); margin-top: 12px;
}
.aa-consent input[type="checkbox"] {
  width: 18px; height: 18px; flex: 0 0 18px; margin-top: 1px;
  accent-color: var(--accent);
}
.aa-fine, .aa-phone-note { color: rgba(23, 19, 16, 0.5); }

/* Live-Buehne: warmes Abend-Charcoal statt kaltem Schwarz */
.aaf-phone {
  background: linear-gradient(165deg, #241812 0%, #17100B 100%) !important;
  border-radius: 40px !important;
  box-shadow: 0 26px 70px rgba(23, 19, 16, 0.4), 0 0 0 1px rgba(255, 210, 160, 0.14);
}
.aaf-avatar {
  background: linear-gradient(135deg, #F0743F, #D4502C) !important;
  box-shadow: 0 6px 22px rgba(232, 96, 58, 0.45);
}
.aaf-panel { }
.aaf-label {
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(23, 19, 16, 0.5);
}
/* Cockpit-/Protokoll-Karten: Creme-Glas mit Haarlinie statt grauem Kasten */
.aaf-dash, .aaf-dash-live {
  background: #FDFAF4 !important;
  border: 1px solid var(--dl-hairline) !important;
  border-radius: 22px !important;
  box-shadow: 0 14px 44px rgba(23, 19, 16, 0.10) !important;
}
.aaf-caption { color: rgba(23, 19, 16, 0.62); }
.aaf-caption b { color: var(--dl-ink); }
.aaf-livehint { color: rgba(23, 19, 16, 0.62); }

/* Worker-Tour & Visierung: Karten auf die Creme-Haarlinien-Sprache heben */
.worker-tour .annot-body, .worker-tour .tour-chip {
  background: #FDFAF4; border: 1px solid var(--dl-hairline); border-radius: 18px;
}
.vb-gallery img { border-radius: 24px; }

/* Abschnitts-Rhythmus: die Mitte atmet in warmen Verlaeufen */
.visier-band {
  background: linear-gradient(180deg, #F1E2CC 0%, var(--dl-cream) 60%);
  padding-top: 72px; padding-bottom: 40px; margin-top: 0;
}

/* ── Daylight-Mitte, Runde 2: kalte Gruen-/Blau-Toene raus (Rogers
   Screenshots) — alles kommt in die warme Sand-Koralle-Familie ── */
.aa-live-dot { background: var(--accent) !important; }
.aa-demo-head p.aa-note { color: #A9741B !important; }
.aa-phone-note {
  background: rgba(232, 96, 58, 0.07) !important;
  border-left-color: var(--accent) !important;
  border-radius: 14px !important;
  color: rgba(23, 19, 16, 0.66) !important;
}
.aaf-waves i { background: #F0A35E !important; }
.aaf-ava { background: linear-gradient(135deg, #E8925A, #C96B32) !important; }
.aaf-status.is-call { color: #A9741B !important; background: rgba(240, 163, 94, 0.16) !important; }
.aaf-status.is-ok, .aaf-status.is-live { color: #8A6A12 !important; background: rgba(255, 200, 61, 0.20) !important; }
.aaf-status.is-sms { color: #B4602F !important; background: rgba(232, 96, 58, 0.10) !important; }
.aaf-dot, .aafl-dot { background: var(--accent) !important; }
/* Gruener Punkt vor "Verfuegbarkeit"-Zeile in der Cockpit-Karte */
.aaf-dash .aaf-dash-title i, .aaf-title-dot { background: var(--accent) !important; }
.aaf-dash-dot { background: var(--accent) !important; }

/* ── Wayfarer-Formular (Rogers Referenz): dunkle Glas-Karte ueber
   Nacht-Baustelle, links Creme-Panel mit Schritt-Stationen ── */
.aad-wayfarer {
  display: grid; grid-template-columns: 290px 1fr;
  max-width: 980px !important;
  padding: 0 !important; overflow: hidden; text-align: left;
  background: url('/assets/dl-night.jpg') center / cover no-repeat !important;
  border-radius: 30px;
}
.aad-side {
  background: #FBF3E6; padding: 30px 26px;
  display: flex; flex-direction: column; gap: 26px;
}
.aad-logo { font-weight: 800; letter-spacing: -0.04em; font-size: 24px; color: var(--dl-ink); }
.aad-logo em { font-style: normal; color: var(--accent); }
.aad-steps { list-style: none; margin: 6px 0 0; padding: 0; display: flex; flex-direction: column; gap: 0; }
.aad-steps li {
  display: flex; gap: 12px; align-items: flex-start; position: relative;
  padding-bottom: 26px;
}
.aad-steps li:not(:last-child)::before {
  content: ''; position: absolute; left: 13px; top: 28px; bottom: 2px;
  width: 2px; background: rgba(232, 96, 58, 0.25);
}
.aad-steps b {
  flex: 0 0 27px; width: 27px; height: 27px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800;
  background: #fff; color: rgba(23, 19, 16, 0.5);
  border: 1.5px solid var(--dl-hairline);
  transition: background 250ms ease, color 250ms ease;
}
.aad-steps li.on b { background: var(--accent); color: #fff; border-color: var(--accent); }
.aad-steps li.done b { background: #E8925A; color: #fff; border-color: #E8925A; }
.aad-steps strong { display: block; font-size: 14.5px; color: var(--dl-ink); }
.aad-steps span { display: block; font-size: 12.5px; color: rgba(23, 19, 16, 0.55); margin-top: 2px; }
.aad-sidenote { margin-top: auto; font-size: 12px; color: rgba(23, 19, 16, 0.5); }
.aad-main {
  padding: clamp(28px, 4vw, 44px);
  background: rgba(20, 14, 10, 0.6);
  -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
}
/* Textfarben im Glas-Teil */
.aad-main .aa-demo-head h3 { color: #fff; }
.aad-main .aa-demo-head p { color: rgba(255, 255, 255, 0.78); }
.aad-main .aa-demo-head p.aa-note { color: #F5C98B !important; }
.aad-main .aa-phone-note {
  background: rgba(255, 255, 255, 0.08) !important;
  border-left-color: #F0A35E !important;
  color: rgba(255, 255, 255, 0.8) !important;
}
.aad-main .aa-phone-note b { color: #fff; }
.aad-main .aa-consent { color: rgba(255, 255, 255, 0.75); }
.aad-main .aa-fine { color: rgba(255, 255, 255, 0.5); }
.aad-main .aa-msg { color: #F5C98B; }
.aad-main .aa-left { color: rgba(255, 255, 255, 0.7); }
@media (max-width: 860px) {
  .aad-wayfarer { grid-template-columns: 1fr; }
  .aad-side { flex-direction: column; padding: 22px 22px 6px; gap: 14px; }
  .aad-steps { flex-direction: row; gap: 10px; }
  .aad-steps li { flex: 1; padding-bottom: 12px; flex-direction: column; gap: 8px; }
  .aad-steps li:not(:last-child)::before { display: none; }
  .aad-steps span { display: none; }
  .aad-sidenote { display: none; }
}


/* Berater-Regel: Serif nur fuer grosse emotionale Headlines — Formulare
   und Software-Darstellungen bleiben Sans */
.aa-demo-head h3 {
  font-family: var(--font-sans) !important;
  font-weight: 800 !important; letter-spacing: -0.02em !important;
}

/* ── Cockpit-Sektion: das Produkt kompakt (Berater-Punkt 5) ── */
.dl-cockpit { padding: clamp(64px, 9vh, 110px) 24px; text-align: center; }
.dl-cockpit .dl-serif { max-width: 640px; margin: 12px auto 0; }
.dl-cockpit-sub { max-width: 560px; margin: 14px auto 0; color: rgba(23, 19, 16, 0.62); font-size: 16px; line-height: 1.6; }
.dl-cockpit-shot { max-width: 1040px; margin: 36px auto 0; }
.dl-cockpit-shot img {
  width: 100%; height: auto; display: block;
  border-radius: 22px; border: 1px solid var(--dl-hairline);
  box-shadow: 0 30px 80px rgba(23, 19, 16, 0.16);
}

/* ── Hero-CTAs (Berater-Logik): Plattform primaer, Live-Auswahl sekundaer ── */
.dl-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.dl-btn-glass {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: 12px 24px; border-radius: 999px;
  font: inherit; font-size: 15px; font-weight: 700; cursor: pointer;
  background: rgba(255, 255, 255, 0.14); color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  transition: background 180ms ease, transform 150ms var(--ease-out);
}
.dl-btn-glass:hover { background: rgba(255, 255, 255, 0.24); transform: translateY(-1px); }
.dl-chooser {
  margin-top: 14px; max-width: 420px;
  background: rgba(253, 250, 244, 0.97);
  border: 1px solid var(--dl-hairline); border-radius: 22px;
  padding: 18px; box-shadow: 0 24px 60px rgba(23, 19, 16, 0.3);
  animation: dl-chooser-in 260ms var(--ease-out) both;
}
@keyframes dl-chooser-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.dl-chooser > p { font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(23, 19, 16, 0.5); margin-bottom: 12px; }
.dl-choice {
  display: block; padding: 13px 16px; border-radius: 14px;
  border: 1px solid var(--dl-hairline); background: #fff;
  text-decoration: none; transition: border-color 150ms ease, transform 150ms var(--ease-out);
}
.dl-choice + .dl-choice { margin-top: 8px; }
.dl-choice:hover { border-color: var(--accent); transform: translateY(-1px); }
.dl-choice strong { display: block; color: var(--dl-ink); font-size: 15px; }
.dl-choice span { display: block; color: rgba(23, 19, 16, 0.55); font-size: 12.5px; margin-top: 2px; }
.dl-hero-note { font-weight: 600; letter-spacing: 0.01em; }
