/* ============================================================
   Einwandfr.ai — Landing Page
   Cinematic midnight / azure aesthetic
   (variable names kept from the crimson theme; values retuned cool)
   ============================================================ */

:root {
  /* Cool ink surfaces (midnight navy) */
  --ink-0: #060912;
  --ink-1: #0a1020;
  --ink-2: #0f1829;
  --ink-3: #16213b;
  --ink-4: #1e2e4f;

  /* Azure + sky accents pulled from a night-blue canyon */
  --crimson: oklch(0.62 0.175 255);
  --crimson-deep: oklch(0.47 0.16 260);
  --ember: oklch(0.74 0.14 245);
  --ember-soft: oklch(0.83 0.095 238);
  --rose: oklch(0.86 0.055 235);
  --sky: oklch(0.92 0.035 230);

  --crimson-glow: oklch(0.62 0.175 255 / 0.48);
  --ember-glow: oklch(0.74 0.14 245 / 0.42);
  --tint: oklch(0.74 0.14 245 / 0.09);
  --tint-2: oklch(0.74 0.14 245 / 0.17);

  /* Text ramp (cool whites) */
  --text: #eef2fb;
  --text-2: rgba(238, 242, 251, 0.74);
  --text-3: rgba(238, 242, 251, 0.50);
  --text-4: rgba(238, 242, 251, 0.32);
  --text-faint: rgba(238, 242, 251, 0.14);

  /* Hairlines (cool) */
  --hair: rgba(190, 214, 255, 0.08);
  --hair-2: rgba(190, 214, 255, 0.14);
  --hair-3: rgba(190, 214, 255, 0.22);

  /* Type */
  --sans: "Hanken Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --serif: "Instrument Serif", Georgia, "Times New Roman", serif;
  --mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* Motion */
  --ease: cubic-bezier(0.22, 0.61, 0.27, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  /* Layout */
  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--ink-0);
  color: var(--text);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--ember); color: var(--ink-0); }

/* Film grain overlay */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

/* ---- Shared layout ---- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--gutter);
}
section { position: relative; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ember-soft);
  font-weight: 500;
}
.eyebrow::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--ember);
  box-shadow: 0 0 10px var(--ember-glow);
}

h1, h2, h3 { font-weight: 700; letter-spacing: -0.025em; line-height: 1.02; margin: 0; }
.display {
  font-size: clamp(40px, 6.6vw, 92px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.98;
  text-wrap: balance;
}
.h2 {
  font-size: clamp(32px, 4.6vw, 60px);
  font-weight: 750;
  letter-spacing: -0.03em;
  line-height: 1.0;
  text-wrap: balance;
}
.serif-accent {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.01em;
}
.lede {
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.55;
  color: var(--text-2);
  font-weight: 400;
  max-width: 56ch;
  text-wrap: pretty;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  padding: 15px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 0.4s var(--ease-out), background 0.3s var(--ease), box-shadow 0.4s var(--ease), border-color 0.3s var(--ease);
  white-space: nowrap;
  line-height: 1;
}
.btn svg { width: 17px; height: 17px; }
.btn-primary {
  background: linear-gradient(180deg, var(--ember) 0%, var(--crimson) 100%);
  color: #fff;
  box-shadow: 0 1px 0 rgba(255,255,255,0.25) inset, 0 10px 30px -8px var(--crimson-glow);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.3) inset, 0 18px 44px -10px var(--crimson-glow);
}
.btn-ghost {
  background: rgba(255, 240, 234, 0.04);
  border-color: var(--hair-2);
  color: var(--text);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { border-color: var(--hair-3); background: rgba(255,240,234,0.07); transform: translateY(-2px); }
.btn-lg { padding: 18px 32px; font-size: 16px; }
.btn-white {
  background: #fbf3ef;
  color: #1a0e0c;
  box-shadow: 0 1px 0 rgba(255,255,255,0.6) inset, 0 12px 34px -10px rgba(0,0,0,0.5);
}
.btn-white:hover { transform: translateY(-2px); background: #fff; box-shadow: 0 1px 0 rgba(255,255,255,0.8) inset, 0 18px 46px -12px rgba(0,0,0,0.55); }

/* ---- Navigation ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--gutter);
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), padding 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(11, 6, 5, 0.72);
  backdrop-filter: blur(18px) saturate(1.4);
  border-bottom-color: var(--hair);
  padding-top: 13px;
  padding-bottom: 13px;
}
.brand { display: flex; align-items: center; gap: 9px; font-weight: 700; font-size: 18px; letter-spacing: -0.03em; }
.brand-mark { width: 30px; height: 30px; object-fit: contain; flex-shrink: 0; display: block; }
.brand-word { white-space: nowrap; }
.brand-tld { color: var(--ember-soft); }
.brand-orb {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: radial-gradient(circle at 34% 28%, var(--sky) 0%, var(--ember) 30%, var(--crimson) 62%, var(--crimson-deep) 100%);
  box-shadow: inset 0 0 8px rgba(255,240,234,0.5), 0 0 16px var(--crimson-glow);
  flex-shrink: 0;
}
.brand-orb::after {
  content: "";
  display: block;
  width: 100%; height: 100%;
  border-radius: 50%;
  background: radial-gradient(ellipse 50% 35% at 38% 30%, rgba(255,250,247,0.7), transparent 70%);
}
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-size: 14.5px;
  color: var(--text-2);
  padding: 9px 13px;
  border-radius: 999px;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
  font-weight: 500;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--text); background: rgba(255,240,234,0.05); }
.nav-right { display: flex; align-items: center; gap: 10px; }
/* Desktop: Wrapper ist transparent -> Links + CTAs sitzen direkt im Nav-Flex wie zuvor. */
.nav-collapse { display: contents; }
/* Hamburger (nur Mobile sichtbar, s. Media-Query) */
.nav-burger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 42px; height: 42px;
  padding: 0;
  border: 1px solid var(--hair);
  border-radius: 12px;
  background: rgba(255,240,234,0.04);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.nav-burger span {
  display: block;
  width: 20px; height: 2px;
  border-radius: 2px;
  background: var(--text);
  transition: transform 0.25s var(--ease), opacity 0.2s var(--ease);
}
.nav.menu-open .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.menu-open .nav-burger span:nth-child(2) { opacity: 0; }
.nav.menu-open .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: clamp(120px, 18vh, 200px);
  padding-bottom: 0;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center 35%;
  transform: scale(1.06);
  will-change: transform;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(58% 46% at 50% 50%, rgba(11,6,5,0.30) 0%, transparent 72%),
    linear-gradient(180deg, rgba(11,6,5,0.34) 0%, transparent 16%, transparent 64%, rgba(11,6,5,0.55) 86%, var(--ink-0) 100%);
}
.hero-inner {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding-inline: var(--gutter);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 8px 16px; border-radius: 999px;
  background: rgba(16,9,8,0.4);
  border: 1px solid rgba(255,224,214,0.16);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  color: var(--text-2); margin-bottom: 26px;
  text-shadow: none;
}
.hero .display { margin-top: 0; font-size: clamp(30px, 4vw, 54px); line-height: 1.12; letter-spacing: -0.03em; text-wrap: balance; text-shadow: 0 2px 40px rgba(11,6,5,0.45); }
.hero .lede { margin: 32px auto 0; text-align: center; color: var(--text); font-size: clamp(15px, 1.2vw, 18px); max-width: 50ch; text-shadow: 0 1px 24px rgba(11,6,5,0.5); }
.hero-cta { display: flex; gap: 14px; margin-top: 40px; flex-wrap: wrap; justify-content: center; }
.hero-cta .btn svg { width: 18px; height: 18px; }

/* Social proof */
.hero-proof { display: flex; align-items: center; gap: 16px; margin-top: 30px; flex-wrap: wrap; justify-content: center; }
.proof-avatars { display: flex; }
.pa {
  width: 38px; height: 38px; border-radius: 50%;
  border: 2px solid rgba(20,11,10,0.9);
  margin-left: -10px; background-size: cover; background-position: center;
  box-shadow: 0 4px 10px -4px rgba(0,0,0,0.6);
}
.pa:first-child { margin-left: 0; }
.pa1 { background: linear-gradient(140deg, #c98b6b, #8a5239); }
.pa2 { background: linear-gradient(140deg, #9fb0c4, #5d6b80); }
.pa3 { background: linear-gradient(140deg, #c97a6b, #7a3528); }
.pa4 { background: linear-gradient(140deg, #b59a86, #6d5644); }
.pa5 { background: linear-gradient(140deg, #8c93a6, #4f5564); }
.proof-text { font-size: 14.5px; color: var(--text-2); text-shadow: 0 1px 16px rgba(11,6,5,0.6); }
.proof-text strong { color: var(--text); font-weight: 700; }
.hero-note { margin-top: 20px; font-size: 13.5px; color: var(--text-2); display: flex; align-items: center; gap: 8px; text-shadow: 0 1px 16px rgba(11,6,5,0.6); }

/* ---- Hero call-scene composition (peeks at bottom) ---- */
.hero-scene {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1180px;
  margin: clamp(48px, 7vh, 96px) auto -2px;
  padding-inline: var(--gutter);
}
.scene-stage {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 22px 22px 0 0;
}
.scene-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border-radius: 22px 22px 0 0 !important;
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 50% 30%, #3a2420 0%, #1a0f0d 55%, #0e0807 100%);
  border: 1px solid var(--hair-2);
  border-bottom: none;
  box-shadow: 0 -2px 80px -20px rgba(0,0,0,0.7);
}
.scene-vignette {
  position: absolute; inset: 0; pointer-events: none; z-index: 4;
  border-radius: 22px 22px 0 0;
  background: radial-gradient(80% 60% at 50% 40%, transparent 40%, rgba(11,6,5,0.45) 100%);
}
.sw {
  position: absolute; z-index: 5;
  background: rgba(16, 9, 8, 0.5);
  backdrop-filter: blur(22px) saturate(1.35);
  -webkit-backdrop-filter: blur(22px) saturate(1.35);
  border: 1px solid rgba(255, 224, 214, 0.16);
  border-radius: 18px;
  box-shadow: 0 1px 0 rgba(255,255,255,0.06) inset, 0 30px 60px -28px rgba(0,0,0,0.85);
}
.sw-cap { font-size: 13px; color: var(--text-3); font-weight: 500; letter-spacing: -0.01em; }
.sw-cap.ember { color: var(--ember-soft); display: inline-flex; align-items: center; gap: 8px; }
.hw-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; display: inline-block; }
.hw-dot.crimson { background: var(--crimson); box-shadow: 0 0 10px var(--crimson-glow); }

.sw-transcript { top: 26%; left: 3%; width: clamp(240px, 23%, 320px); padding: 16px 18px; }
.sw-transcript p { margin: 11px 0 0; font-size: 15px; line-height: 1.42; color: var(--text); font-weight: 450; letter-spacing: -0.01em; }

.sw-badge {
  top: 17%; left: 4%;
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 13px; border-radius: 999px;
  font-size: 10.5px; font-weight: 650; color: var(--text); letter-spacing: -0.01em;
  background: rgba(70, 20, 16, 0.55);
}
.sw-einwaende { top: 55%; left: 3%; width: clamp(250px, 24%, 330px); padding: 16px 18px; }

.sw-int {
  top: 5%; right: 3%;
  display: flex; gap: 12px; padding: 13px 18px; border-radius: 18px;
  align-items: center;
}
.sw-int img { width: 34px; height: 34px; border-radius: 9px; object-fit: contain; }
.sw-int img[src$=".svg"], .sw-int img[alt="Microsoft Teams"] { border-radius: 0; }

.sw-bar {
  top: 7%; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; gap: 22px;
  padding: 12px 14px 12px 12px; border-radius: 16px;
}
.hb-stop {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--crimson); color: #fff;
  padding: 9px 18px; border-radius: 11px; font-weight: 650; font-size: 15px;
}
.hb-sq { width: 11px; height: 11px; border-radius: 3px; background: #fff; }
.hb-item { display: inline-flex; align-items: center; gap: 8px; color: var(--text); font-size: 15px; font-weight: 500; white-space: nowrap; }
.hb-key {
  display: inline-grid; place-items: center; min-width: 22px; height: 22px; padding: 0 5px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.14);
  border-radius: 6px; font-size: 12px; color: var(--text-2); font-family: var(--mono);
}
.hb-dots { display: inline-flex; flex-direction: column; gap: 3px; padding-left: 4px; }
.hb-dots span { width: 3.5px; height: 3.5px; border-radius: 50%; background: var(--text-3); }

.sw-speaker { bottom: 9%; right: 3%; width: clamp(200px, 18%, 240px); }
.sw-tile {
  position: relative; width: 100%; aspect-ratio: 4/3; border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(150deg, #4a2c26, #1c100d);
  border: 1px solid rgba(255,224,214,0.14);
}
.sw-tile img, .sw-tile video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.sw-mic {
  position: absolute; left: 10px; bottom: 10px;
  display: grid; place-items: center; width: 28px; height: 28px; border-radius: 8px;
  background: rgba(10,6,5,0.6); color: var(--text); backdrop-filter: blur(8px);
}
.sw-mic svg { width: 14px; height: 14px; }
.sw-name { display: block; margin-top: 10px; font-size: 14px; font-weight: 600; color: var(--text); text-align: center; }

@media (max-width: 1100px) {
  .sw-transcript, .sw-einwaende { width: 40%; }
  .sw-bar { gap: 12px; }
}
@media (max-width: 760px) {
  /* Demo-Szene AUF MOBILE zeigen (wie beim Wettbewerber): kompakte, hochformatige
     Karte unter den CTAs. Widgets verkleinert + neu positioniert, damit nichts
     überlappt oder überläuft. */
  .hero-scene {
    margin: clamp(26px, 5vh, 44px) auto 0;
    padding-inline: 14px;
  }
  .scene-stage { aspect-ratio: 3 / 4; border-radius: 20px; }
  .scene-video {
    border-radius: 20px !important;
    border-bottom: 1px solid var(--hair-2);
    box-shadow: 0 18px 60px -24px rgba(0,0,0,0.8);
  }
  .scene-vignette { border-radius: 20px; }
  .sw { border-radius: 13px; box-shadow: 0 18px 38px -22px rgba(0,0,0,0.85); }

  .sw-bar {
    top: 10.5%; gap: 8px; padding: 6px 8px;
    transform: translateX(-50%) scale(0.82); transform-origin: top center;
  }
  .hb-stop { padding: 6px 11px; font-size: 12px; gap: 6px; }
  .hb-item { font-size: 12px; gap: 5px; }
  .hb-key { min-width: 17px; height: 17px; font-size: 10px; }
  .sw-bar .hb-item:last-of-type { display: none; }  /* „Ausblenden" weg — Platz */
  .sw-bar .hb-dots { display: none; }

  .sw-int { top: 2.5%; right: 4%; gap: 6px; padding: 7px 9px; border-radius: 12px; }
  .sw-int img { width: 22px; height: 22px; border-radius: 6px; }

  .sw-transcript { top: 28%; left: 4%; width: 64%; padding: 10px 12px; }
  .sw-transcript .sw-cap { font-size: 11px; }
  .sw-transcript p { font-size: 12.5px; margin-top: 6px; line-height: 1.35; }

  .sw-badge { top: 20%; left: 5%; padding: 5px 9px; font-size: 8.5px; gap: 5px; }

  .sw-einwaende { top: 52%; left: 4%; width: 60%; padding: 10px 12px; }
  .sw-einwaende .sw-cap { font-size: 11px; }

  .sw-speaker { bottom: 4.5%; right: 4%; width: 42%; }
  .sw-name { font-size: 11.5px; margin-top: 6px; }

  /* Hero-Hintergrundbild auf Mobile 10px nach links */
  .hero-bg { background-position: calc(50% - 10px) 35%; }
}
.hero-note .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--ember); box-shadow: 0 0 8px var(--ember-glow); }

/* Trust strip */
.trust-strip {
  background: var(--ink-0);
  padding-block: clamp(36px, 6vh, 60px);
  border-bottom: 1px solid var(--hair);
}
.trust-label { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-4); text-align: center; }
.trust-logos {
  margin-top: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 5vw, 64px);
  flex-wrap: wrap;
}
.trust-logos .logo {
  display: flex; align-items: center; gap: 9px;
  font-size: 17px; font-weight: 650; letter-spacing: -0.02em;
  color: var(--text-3);
  transition: color 0.3s var(--ease);
}
.trust-logos .logo:hover { color: var(--text); }
.trust-logos .logo .mk { width: 16px; height: 16px; opacity: 0.85; }
.trust-logos .logo sup { font-size: 0.5em; opacity: 0.7; }

/* ---- Section scaffold ---- */
.section { padding-block: clamp(80px, 12vh, 160px); }
.section-head { max-width: 760px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 22px; }
.section-head .lede { margin-top: 22px; }
.section-head.center .lede { margin-inline: auto; }

/* ---- Live call showcase (bento) ---- */
.showcase { background: var(--ink-1); border-top: 1px solid var(--hair); border-bottom: 1px solid var(--hair); }
.bento {
  margin-top: clamp(44px, 6vh, 72px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.bento-card {
  position: relative;
  border-radius: 22px;
  border: 1px solid var(--hair-2);
  background: var(--ink-2);
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(255,255,255,0.04) inset, 0 30px 60px -30px rgba(0,0,0,0.7);
}
.bento-card .pad { padding: 30px 32px 0; }
.bento-card .kicker { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ember-soft); }
.bento-card h3 { font-size: clamp(22px, 2vw, 28px); margin-top: 12px; letter-spacing: -0.025em; }
.bento-card p { color: var(--text-3); font-size: 15px; margin: 10px 0 0; max-width: 42ch; }
.bento-card .shot { margin-top: 24px; width: 100%; }
.bento-card.tall { grid-row: span 2; }
.bento-card.tall .shot { margin-top: 26px; }
.bento-card .shot-wide { display: block; width: 100%; margin-top: 22px; }

/* ---- Co-pilot split ---- */
.split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(36px, 5vw, 80px); align-items: center; }
.split-media {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--hair-2);
  aspect-ratio: 4 / 5;
  background: var(--ink-2);
}
.split-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.feature-list { margin-top: 32px; display: flex; flex-direction: column; gap: 2px; }
.feature-row {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid var(--hair);
  align-items: flex-start;
}
.feature-row:last-child { border-bottom: 1px solid var(--hair); }
.feature-row .ico {
  flex-shrink: 0;
  width: 38px; height: 38px;
  border-radius: 11px;
  display: grid; place-items: center;
  background: var(--tint);
  border: 1px solid var(--tint-2);
  color: var(--ember-soft);
}
.feature-row .ico svg { width: 18px; height: 18px; }
.feature-row h3 { font-size: 17px; font-weight: 650; letter-spacing: -0.015em; margin: 2px 0 0; }
.feature-row p { color: var(--text-3); font-size: 14.5px; margin: 5px 0 0; }

/* Placeholder media (striped) */
.media-ph {
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(135deg, rgba(255,224,214,0.04) 0 2px, transparent 2px 11px),
    linear-gradient(160deg, var(--ink-3), var(--ink-2));
  display: grid; place-items: center;
}
.media-ph span { font-family: var(--mono); font-size: 12px; color: var(--text-4); letter-spacing: 0.05em; }

/* ---- Results stats ---- */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: clamp(44px, 6vh, 72px); }
.stat {
  position: relative;
  border-radius: 22px;
  border: 1px solid var(--hair-2);
  background: linear-gradient(165deg, var(--ink-3), var(--ink-1));
  padding: 36px 32px 30px;
  overflow: hidden;
}
.stat::before {
  content: "";
  position: absolute; top: -40%; right: -20%;
  width: 240px; height: 240px;
  background: radial-gradient(circle, var(--ember-glow), transparent 70%);
  opacity: 0.5; filter: blur(20px);
}
.stat .num {
  font-size: clamp(48px, 5.5vw, 76px);
  font-weight: 800; letter-spacing: -0.04em; line-height: 1;
  font-variant-numeric: tabular-nums;
  background: linear-gradient(180deg, var(--text) 30%, var(--ember-soft));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.stat .lbl { margin-top: 14px; font-size: 15px; color: var(--text-2); font-weight: 550; position: relative; }
.stat .sub { margin-top: 4px; font-size: 13.5px; color: var(--text-3); position: relative; }

/* ---- Feature trio (compliance/integrations/lang) ---- */
.trio { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: clamp(44px, 6vh, 72px); }
.trio-card {
  border-radius: 22px;
  border: 1px solid var(--hair-2);
  background: var(--ink-2);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.5s var(--ease-out), border-color 0.4s var(--ease);
}
.trio-card:hover { transform: translateY(-5px); border-color: var(--hair-3); }
.trio-card .shot { width: 100%; border-bottom: 1px solid var(--hair-2); }
.trio-card .shot img { display: block; width: 100%; height: auto; }
.trio-card .body { padding: 24px 28px 28px; }
.trio-card h3 { font-size: 20px; letter-spacing: -0.02em; }
.trio-card p { color: var(--text-3); font-size: 14.5px; margin: 9px 0 0; }

/* ---- FAQ ---- */
.faq-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(36px, 5vw, 80px); align-items: start; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-top: 1px solid var(--hair); }
.faq-item:last-child { border-bottom: 1px solid var(--hair); }
.faq-q {
  width: 100%;
  background: none; border: none;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 24px 4px;
  text-align: left;
  color: var(--text);
  font-size: 18px; font-weight: 600; letter-spacing: -0.015em;
}
.faq-q .plus { position: relative; width: 18px; height: 18px; flex-shrink: 0; }
.faq-q .plus::before, .faq-q .plus::after {
  content: ""; position: absolute; background: var(--ember-soft);
  transition: transform 0.4s var(--ease);
}
.faq-q .plus::before { top: 50%; left: 0; right: 0; height: 1.5px; transform: translateY(-50%); }
.faq-q .plus::after { left: 50%; top: 0; bottom: 0; width: 1.5px; transform: translateX(-50%); }
.faq-item.open .plus::after { transform: translateX(-50%) scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.45s var(--ease); }
.faq-a-inner { padding: 0 4px 26px; color: var(--text-3); font-size: 15.5px; max-width: 58ch; }

/* ---- Cost callout ---- */
.cost { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: clamp(40px, 5vh, 64px); }
.cost-tile {
  border-radius: 20px; border: 1px solid var(--hair-2);
  background: var(--ink-2); padding: 30px 30px 28px; text-align: center;
}
.cost-tile .v { font-size: clamp(34px, 4vw, 52px); font-weight: 800; letter-spacing: -0.035em; font-variant-numeric: tabular-nums; }
.cost-tile.danger .v { color: var(--crimson); }
.cost-tile .c { margin-top: 8px; font-size: 14px; color: var(--text-3); }

/* ---- Final CTA ---- */
.final {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  padding: clamp(56px, 9vw, 110px) var(--gutter);
  text-align: center;
  border: 1px solid var(--hair-2);
  isolation: isolate;
}
.final-bg { position: absolute; inset: 0; z-index: -2; background-size: cover; background-position: center; transform: scale(1.08); }
.final-scrim { position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(11,6,5,0.78), rgba(11,6,5,0.62)); }
.final .display { margin-inline: auto; }
.final .lede { margin: 24px auto 0; text-align: center; }
.final-cta { margin-top: 38px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.final-checks { margin-top: 28px; display: flex; gap: 26px; justify-content: center; flex-wrap: wrap; }
.final-checks span { font-size: 13.5px; color: var(--text-2); display: inline-flex; align-items: center; gap: 8px; }
.check { color: var(--ember); flex-shrink: 0; }

/* ---- Footer ---- */
.footer { border-top: 1px solid var(--hair); padding-block: 56px; margin-top: clamp(80px, 12vh, 140px); }
.footer-top { display: flex; justify-content: space-between; gap: clamp(32px, 4vw, 56px); flex-wrap: wrap; }
.footer-brand { max-width: 300px; }
.footer-brand p { color: var(--text-3); font-size: 14.5px; margin-top: 16px; }
.footer-cols { display: flex; gap: clamp(26px, 3.5vw, 64px); flex-wrap: wrap; }
/* Desktop: Brand-Block bleibt LINKS neben den Spalten (kein Umbruch nach oben) */
@media (min-width: 981px) {
  .footer-top { flex-wrap: nowrap; }
  .footer-brand { flex-shrink: 0; }
  .footer-cols { flex-wrap: nowrap; }
}
.footer-col .footer-h { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-4); margin: 0 0 16px; font-weight: 500; }
.footer-col .footer-link-btn { display: block; color: var(--text-2); font-size: 14.5px; padding: 7px 0; transition: color 0.2s var(--ease); background: none; border: 0; cursor: pointer; text-align: left; font-family: inherit; }
.footer-col .footer-link-btn:hover { color: var(--text); }
.footer-col a { display: block; color: var(--text-2); font-size: 14.5px; padding: 7px 0; transition: color 0.2s var(--ease); }
.footer-col a:hover { color: var(--text); }
.footer-bot { margin-top: 48px; padding-top: 26px; border-top: 1px solid var(--hair); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13px; color: var(--text-4); }

/* ---- Scroll reveal ---- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: 0.08s; }
.reveal[data-d="2"] { transition-delay: 0.16s; }
.reveal[data-d="3"] { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .hero-bg { transform: none; }
}

/* ---- Responsive ---- */
@media (max-width: 980px) {
  .split, .faq-grid { grid-template-columns: 1fr; }
  .split-media { aspect-ratio: 16/11; order: -1; }
  .stats, .trio, .cost { grid-template-columns: 1fr; }
  .bento { grid-template-columns: 1fr; }
  .bento-card.tall { grid-row: auto; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  /* Header klebt ganz oben ohne freien Bereich darueber (kein Safe-Area-Offset). */
  .nav { padding-top: 11px; padding-bottom: 11px; }
  .nav.scrolled { padding-top: 9px; padding-bottom: 9px; }
  /* Mobile-Navbar: Hamburger + aufklappbares Menue */
  .nav-burger { display: inline-flex; }
  .nav-collapse {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    position: absolute;
    top: calc(100% + 8px);
    left: var(--gutter);
    right: var(--gutter);
    padding: 10px;
    border-radius: 18px;
    background: rgba(11, 6, 5, 0.94);
    backdrop-filter: blur(18px) saturate(1.4);
    -webkit-backdrop-filter: blur(18px) saturate(1.4);
    border: 1px solid var(--hair);
    box-shadow: 0 24px 60px -20px rgba(0,0,0,0.7);
    opacity: 0;
    transform: translateY(-8px);
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s var(--ease), transform 0.22s var(--ease), visibility 0.22s;
  }
  .nav.menu-open .nav-collapse {
    opacity: 1;
    transform: none;
    visibility: visible;
    pointer-events: auto;
  }
  .nav-collapse .nav-links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    width: 100%;
  }
  .nav-collapse .nav-links a {
    display: block;
    padding: 12px 14px;
    font-size: 16px;
    border-radius: 12px;
  }
  .nav-collapse .nav-right {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    width: 100%;
    margin-top: 6px;
    padding-top: 10px;
    border-top: 1px solid var(--hair);
  }
  .nav-collapse .nav-right .btn { width: 100%; justify-content: center; text-align: center; }
  .footer-top { flex-direction: column; }
}

/* ============================================================
   Problem section (dark)
   ============================================================ */
.problem { background: var(--ink-0); }
.problem-head { max-width: 1000px; }
.problem-head .eyebrow { margin-bottom: 26px; }
.problem-head .h2 { font-size: clamp(30px, 4.2vw, 56px); }
.problem-grid {
  margin-top: clamp(44px, 6vh, 76px);
  width: min(100vw - clamp(40px, 6vw, 100px), 1640px);
  margin-left: 50%;
  transform: translateX(-50%);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.4vw, 36px);
}
.problem-card { display: flex; flex-direction: column; }
.problem-shot {
  border-radius: 18px; overflow: hidden;
  border: 1px solid var(--hair-2);
  background: var(--ink-2);
  aspect-ratio: 16 / 9;
  box-shadow: 0 30px 60px -34px rgba(0,0,0,0.8);
}
.problem-shot img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.problem-card h3 { margin-top: 26px; font-size: clamp(19px, 1.6vw, 23px); letter-spacing: -0.02em; }
.problem-card p { margin-top: 12px; color: var(--text-3); font-size: 15.5px; line-height: 1.55; }

/* ============================================================
   Enterprise section (light bento)
   ============================================================ */
.enterprise {
  background: #f3efec;
  color: #1a0f0d;
  border-top: 1px solid var(--hair);
}
.ent-head { max-width: 900px; }
.ent-eyebrow { color: #b8472a; }
.ent-eyebrow::before { background: #e0612f; box-shadow: 0 0 10px rgba(224,97,47,0.5); }
.ent-head .h2 { color: #18100e; margin-top: 24px; }
.ent-bento {
  margin-top: clamp(40px, 5.5vh, 64px);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-areas: "a b d" "a c d";
  gap: clamp(16px, 1.8vw, 24px);
  align-items: stretch;
}
.ent-card {
  background: #fff;
  border: 1px solid rgba(24, 16, 14, 0.08);
  border-radius: 22px;
  padding: 30px 30px 0;
  display: flex; flex-direction: column;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(24,16,14,0.04), 0 24px 50px -34px rgba(24,16,14,0.22);
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease);
}
.ent-card:hover { transform: translateY(-4px); box-shadow: 0 1px 2px rgba(24,16,14,0.04), 0 34px 64px -34px rgba(24,16,14,0.3); }
.ent-card.a { grid-area: a; }
.ent-card.b { grid-area: b; }
.ent-card.c { grid-area: c; }
.ent-card.d { grid-area: d; }
.ent-body { flex-shrink: 0; }
.ent-card h3 { font-size: clamp(19px, 1.5vw, 22px); letter-spacing: -0.022em; color: #18100e; line-height: 1.12; }
.ent-card p { margin-top: 12px; color: #5b4f4a; font-size: 15px; line-height: 1.55; }
.ent-media {
  margin-top: 24px;
  margin-inline: -30px; margin-bottom: -1px;
  flex: 1; min-height: 0;
  display: flex; align-items: flex-end; justify-content: center;
  overflow: hidden;
}
.ent-media img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.ent-card.b .ent-media, .ent-card.c .ent-media { margin-top: 22px; align-items: center; }
.ent-card.b .ent-media img, .ent-card.c .ent-media img { object-fit: cover; }

/* — Vorteile: Subline, Icons, Chips, Hero — */
.ent-sub {
  margin-top: 18px;
  max-width: 620px;
  color: #5b4f4a;
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.55;
}
.ent-card-h { display: flex; align-items: center; gap: 12px; }
.ent-card-h h3 { margin: 0; }
.ent-ic {
  flex-shrink: 0;
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 11px;
  background: rgba(46, 144, 218, 0.10);
  color: #2E90DA;
}
.ent-ic svg { width: 20px; height: 20px; }
.ent-chip {
  align-self: flex-start;
  margin-top: 16px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px; font-weight: 600; letter-spacing: -0.01em;
  color: #1F6FB8;
  background: rgba(46, 144, 218, 0.10);
  border: 1px solid rgba(46, 144, 218, 0.18);
}
.ent-card.ent-hero {
  border-color: rgba(46, 144, 218, 0.40);
  box-shadow: 0 1px 2px rgba(24,16,14,0.04), 0 24px 60px -30px rgba(46, 144, 218, 0.45);
}
.ent-card.ent-hero:hover {
  box-shadow: 0 1px 2px rgba(24,16,14,0.04), 0 34px 70px -30px rgba(46, 144, 218, 0.55);
}
.ent-card.ent-hero .ent-ic { background: rgba(46, 144, 218, 0.16); }
.ent-badge {
  display: inline-flex; align-self: flex-start;
  margin-bottom: 14px;
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, #2E90DA, #1F6FB8);
  box-shadow: 0 6px 16px -8px rgba(46, 144, 218, 0.6);
}

@media (max-width: 980px) {
  .problem-grid { grid-template-columns: 1fr; width: auto; max-width: 480px; margin-left: 0; transform: none; margin-inline: auto; }
  .ent-bento { grid-template-columns: 1fr; grid-template-areas: "d" "c" "a" "b"; }
  .ent-card.a, .ent-card.d { min-height: 0; }
  .ent-media { min-height: 240px; }
}

/* ============================================================
   MIDNIGHT / AZURE RESKIN — cool retune of warm literals
   + two hero treatments (photo | aurora)
   ============================================================ */

/* --- chrome surfaces --- */
.nav.scrolled { background: rgba(8, 12, 22, 0.74); border-bottom-color: var(--hair); }
.hero-eyebrow { background: rgba(12, 18, 34, 0.44); border-color: rgba(190, 214, 255, 0.18); }

/* --- social-proof avatars (cool) --- */
.pa1 { background: linear-gradient(140deg, #7fa8d6, #3f5f8c); }
.pa2 { background: linear-gradient(140deg, #9fb6e0, #4f5f86); }
.pa3 { background: linear-gradient(140deg, #6f9fd0, #2f4f7a); }
.pa4 { background: linear-gradient(140deg, #86a0c8, #445a82); }
.pa5 { background: linear-gradient(140deg, #8c9ec0, #4a5878); }

/* --- call-scene glass widgets (cool) --- */
.sw { background: rgba(10, 16, 30, 0.52); border-color: rgba(190, 214, 255, 0.16); }
.scene-video { background: radial-gradient(120% 90% at 50% 30%, #1f2c46 0%, #101829 55%, #070b14 100%); }
.sw-badge { background: rgba(18, 42, 84, 0.55); }
.sw-tile { background: linear-gradient(150deg, #27405e, #0d1626); border-color: rgba(190, 214, 255, 0.14); }

/* --- HERO: photographic (blue-graded canyon) --- */
.hero-bg { filter: brightness(0.6) saturate(0.82) hue-rotate(192deg) contrast(1.03); }
.hero-scrim {
  background:
    radial-gradient(58% 46% at 50% 46%, rgba(6,9,18,0.24) 0%, transparent 72%),
    radial-gradient(72% 50% at 50% 6%, oklch(0.6 0.16 250 / 0.30), transparent 60%),
    linear-gradient(180deg, rgba(6,9,18,0.46) 0%, transparent 22%, transparent 60%, rgba(6,9,18,0.62) 86%, var(--ink-0) 100%);
}

/* --- HERO: aurora (no photo) --- */
.hero-aurora { display: none; }
.hero[data-hero="aurora"] .hero-bg { display: none; }
.hero[data-hero="aurora"] .hero-aurora {
  display: block;
  position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(48% 40% at 20% 16%, oklch(0.62 0.18 252 / 0.55), transparent 62%),
    radial-gradient(44% 38% at 82% 24%, oklch(0.72 0.14 216 / 0.42), transparent 62%),
    radial-gradient(72% 56% at 50% 110%, oklch(0.5 0.17 266 / 0.6), transparent 70%),
    var(--ink-0);
}
.hero[data-hero="aurora"] .hero-aurora::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(190,214,255,0.55) 1px, transparent 1.5px);
  background-size: 40px 40px;
  opacity: 0.05;
  -webkit-mask-image: radial-gradient(72% 60% at 50% 34%, #000, transparent 82%);
  mask-image: radial-gradient(72% 60% at 50% 34%, #000, transparent 82%);
}
.hero[data-hero="aurora"] .hero-scrim {
  background: linear-gradient(180deg, transparent 0%, transparent 62%, rgba(6,9,18,0.5) 86%, var(--ink-0) 100%);
}

/* --- FINAL CTA: blue-graded canyon --- */
.final-bg { filter: brightness(0.55) saturate(0.8) hue-rotate(192deg) contrast(1.02); }
.final-scrim {
  background:
    radial-gradient(82% 60% at 50% 0%, oklch(0.55 0.16 250 / 0.32), transparent 60%),
    linear-gradient(180deg, rgba(6,9,18,0.82), rgba(8,14,28,0.66));
}

/* --- light enterprise section accents (cool, if used) --- */
.ent-eyebrow { color: #2f5fb8; }
.ent-eyebrow::before { background: #3f7fe0; box-shadow: 0 0 10px rgba(63,127,224,0.5); }

/* --- product imagery: recolor the warm crimson assets to fit the cool theme ---
   Problem trio = atmospheric, no logos → cool blue duotone.
   Bento widgets carry real brand logos / flags / compliance badges →
   only desaturate the warm ambient so the marks stay accurate. */
.problem-shot img {
  filter: none;
}
.bento-card .shot,
.bento-card .shot-wide {
  filter: saturate(0.5) sepia(0.42) hue-rotate(179deg) brightness(0.97) contrast(1.05);
}
/* the call-transcript widget has no brand marks → give it the same cool duotone */
.bento-card .shot[src*="widget-call"] {
  filter: grayscale(1) sepia(1) hue-rotate(176deg) saturate(1.9) brightness(0.96) contrast(1.03);
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing { background: var(--ink-0); }
.pricing .section-head { max-width: 720px; }

/* billing toggle */
.price-toggle {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; flex-wrap: wrap;
  margin-top: clamp(34px, 5vh, 56px);
}
.pt-label {
  font-size: 15px; font-weight: 550; color: var(--text-3);
  letter-spacing: -0.01em; transition: color 0.3s var(--ease);
}
.pt-label.active { color: var(--text); }
.pt-switch {
  position: relative; width: 56px; height: 30px; flex-shrink: 0;
  border-radius: 999px; border: 1px solid var(--hair-2);
  background: var(--ink-3);
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease);
  padding: 0;
}
.pt-switch[aria-checked="true"] {
  background: linear-gradient(180deg, var(--ember), var(--crimson));
  border-color: transparent;
}
.pt-knob {
  position: absolute; top: 3px; left: 3px;
  width: 22px; height: 22px; border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.45);
  transition: transform 0.35s var(--ease-out);
}
.pt-switch[aria-checked="true"] .pt-knob { transform: translateX(26px); }
.pt-save {
  font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.04em;
  color: var(--ember-soft);
  padding: 6px 12px; border-radius: 999px;
  border: 1px solid var(--tint-2); background: var(--tint);
  transition: color .18s, border-color .18s, background .18s, opacity .18s;
}
/* Bei monatlicher Zahlung gilt der 2-Monate-Rabatt nicht → Badge ausgegraut */
#billingSwitch[aria-checked="false"] ~ .pt-save {
  color: var(--text-3);
  border-color: var(--hair-2);
  background: transparent;
  opacity: .7;
}

/* grid */
.price-grid {
  margin-top: clamp(40px, 5.5vh, 64px);
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; align-items: start;
}
.price-card {
  position: relative;
  display: flex; flex-direction: column;
  border-radius: 24px;
  border: 1px solid var(--hair-2);
  background: var(--ink-2);
  padding: 34px 30px 32px;
  overflow: hidden;
  transition: transform 0.5s var(--ease-out), border-color 0.4s var(--ease);
}
.price-card:hover { transform: translateY(-5px); border-color: var(--hair-3); }
.price-card.featured {
  border-color: var(--tint-2);
  background: linear-gradient(180deg, var(--ink-3), var(--ink-2) 60%);
  box-shadow: 0 1px 0 rgba(255,255,255,0.05) inset, 0 40px 80px -40px var(--crimson-glow);
}
.price-card > * { position: relative; }
.price-card .pc-glow {
  position: absolute; top: -30%; left: 50%; transform: translateX(-50%);
  width: 320px; height: 320px; pointer-events: none;
  background: radial-gradient(circle, var(--ember-glow), transparent 70%);
  opacity: 0.45; filter: blur(26px);
}

.pc-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; min-height: 30px; }
.pc-name { font-size: 22px; font-weight: 700; letter-spacing: -0.02em; }
.pc-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.04em;
  color: var(--ember-soft);
  padding: 6px 11px; border-radius: 999px;
  border: 1px solid var(--tint-2); background: var(--tint);
  white-space: nowrap;
}
.pc-badge svg { width: 13px; height: 13px; }

.pc-price { margin-top: 22px; display: flex; align-items: baseline; gap: 9px; flex-wrap: wrap; }
.pc-amount {
  font-size: clamp(38px, 4vw, 50px); font-weight: 800;
  letter-spacing: -0.035em; line-height: 1; font-variant-numeric: tabular-nums;
}
.pc-amount-custom { font-size: clamp(32px, 3.4vw, 42px); }
.pc-from { font-size: 0.4em; font-weight: 600; letter-spacing: 0; color: var(--text-3); vertical-align: middle; }
.pc-per { font-size: 16px; color: var(--text-3); font-weight: 500; }

.pc-tag { margin-top: 16px; font-size: 15px; line-height: 1.5; color: var(--text-3); min-height: 3em; }

.pc-btn { width: 100%; justify-content: center; margin-top: 22px; }
.price-card .btn-ghost { border-color: var(--hair-3); }
.price-card .btn-ghost:hover { border-color: var(--text-3); }

.pc-incl {
  display: block; margin-top: 28px; margin-bottom: 4px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--text-4);
}
.pc-feats { list-style: none; margin: 0; padding: 0; }
.pc-feats li {
  position: relative;
  padding: 11px 0 11px 32px;
  font-size: 14.5px; line-height: 1.4;
  border-bottom: 1px solid var(--hair);
}
.pc-feats li:last-child { border-bottom: none; }
.pc-feats li::before {
  position: absolute; left: 0; top: 11px;
  width: 19px; height: 19px;
  display: grid; place-items: center;
  border-radius: 50%; font-size: 12px; font-weight: 700;
}
.pc-feats li.ok { color: var(--text); }
.pc-feats li.ok::before {
  content: "\2713";
  color: var(--ember-soft);
  background: var(--tint); border: 1px solid var(--tint-2);
}
.pc-feats li.no { color: var(--text-4); }
.pc-feats li.no::before {
  content: "\00d7";
  color: var(--text-4);
  background: transparent; border: 1px solid var(--hair-2);
}

@media (max-width: 980px) {
  .price-grid { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; }
  .pc-tag { min-height: 0; }
}

/* ============================================================
   Scroll-pinned panel swap (#ergebnisse) — award-style crossfade
   ============================================================ */
.swap-section { position: relative; }
/* svh statt vh (mit vh als Fallback fuer alte Browser):
   Auf dem Handy rechnen Safari/Chrome `vh` gegen den Viewport OHNE Adressleiste.
   Beim Scrollen faehrt die Leiste ein und aus -> die Hoehe springt staendig,
   das gepinnte Panel zappelt und der Umschlag wirkt hakelig. `svh` ist die
   KLEINE Viewport-Hoehe und aendert sich dabei nicht.
   Bewusst nicht `dvh`: das folgt der Leiste live und erzeugt genau das
   Nachrechnen, das wir vermeiden wollen. Am Desktop sind alle drei gleich. */
.swap-stage { height: 230vh; height: 230svh; position: relative; }
.swap-pin {
  position: sticky; top: 0;
  height: 100vh;
  height: 100svh;
  display: flex; align-items: center; overflow: hidden;
}
.swap-pin .wrap { position: relative; width: 100%; perspective: 1400px; }

.swap-panel {
  position: absolute; left: 0; right: 0; top: 50%;
  transform: translateY(-50%);
}
.swap-panel .section-head,
.swap-panel .stat {
  transition:
    transform .85s cubic-bezier(.16,.84,.24,1),
    opacity .6s ease,
    filter .6s ease;
  transform-origin: 50% 50%;
  will-change: transform, opacity, filter;
}
.swap-panel .stat { transition-delay: calc(var(--d, 0) * 95ms); }

/* default state: A in, B waiting below */
.swap-panel.is-a .section-head,
.swap-panel.is-a .stat { opacity: 1; transform: none; filter: none; }
.swap-panel.is-b .section-head,
.swap-panel.is-b .stat { opacity: 0; transform: translateY(78px) scale(.9) rotateX(16deg); filter: blur(12px); }

/* swapped state: A leaves upward, B enters */
.swap-section.show-b .swap-panel.is-a .section-head,
.swap-section.show-b .swap-panel.is-a .stat {
  opacity: 0; transform: translateY(-64px) scale(.93) rotateX(-12deg); filter: blur(12px);
}
.swap-section.show-b .swap-panel.is-a .stat { transition-delay: calc((2 - var(--d, 0)) * 75ms); }
.swap-section.show-b .swap-panel.is-b .section-head,
.swap-section.show-b .swap-panel.is-b .stat { opacity: 1; transform: none; filter: none; }

/* progress indicator */
.swap-progress {
  position: absolute; left: 50%; bottom: clamp(26px, 6vh, 58px);
  transform: translateX(-50%); display: flex; gap: 9px; z-index: 3;
}
.sp-dot {
  width: 8px; height: 8px; border-radius: 99px;
  background: rgba(255,255,255,.22);
  transition: width .45s cubic-bezier(.2,.8,.2,1), background .45s ease, box-shadow .45s ease;
}
.sp-dot.on {
  width: 28px;
  background: var(--ember, #54b3fd);
  box-shadow: 0 0 14px var(--ember-glow, rgba(84,179,253,.5));
}

/* Mobile: gepinnte Swap-Animation bleibt aktiv (wie Desktop), nur kompakter,
   damit beide Panels sicher in 100vh passen (kein Clipping). */
@media (max-width: 760px) {
  .swap-stage { height: 200vh; height: 200svh; }
  .swap-pin { padding: 0 4px; }
  .swap-panel .section-head .h2 { font-size: clamp(24px, 6.4vw, 34px); }
  .swap-panel .stats { gap: 14px; }
  .swap-panel .stat { padding: 16px 18px; }
  .swap-panel .stat .num { font-size: clamp(34px, 11vw, 46px); }
  .swap-panel .stat .lbl { margin-top: 8px; font-size: 14px; }
  .swap-panel .stat .sub { font-size: 12.5px; }
}
@media (prefers-reduced-motion: reduce) {
  .swap-stage { height: auto; }
  .swap-pin { position: static; height: auto; display: block; padding: 64px 0; }
  .swap-panel { position: relative; top: auto; transform: none; }
  .swap-panel.is-b { margin-top: 72px; }
  .swap-panel .section-head, .swap-panel .stat { opacity: 1 !important; transform: none !important; filter: none !important; transition: none; }
  .swap-progress { display: none; }
}

/* ============ HOW-IT-WORKS INTERAKTIVE WIDGETS (hiw-) ============ */
.hiw-shot {
  position: relative;
  height: 300px;
  background:
    radial-gradient(120% 140% at 50% 115%, oklch(0.74 0.14 245 / 0.10) 0%, transparent 55%),
    linear-gradient(165deg, var(--ink-2) 20%, var(--ink-1) 100%);
  overflow: hidden;
  user-select: none;
}

/* ---- Szene-Basis: echte Hero-Widgets im Card-Kontext ---- */
.hiw-scene {
  /* Glass-Tokens wie .scene-stage (demo-scene.css), damit dp-*-/ew-*-Styles greifen */
  --g-sheen: linear-gradient(135deg, rgba(255,255,255,0.10), rgba(255,255,255,0.03) 50%, rgba(255,255,255,0.015));
  --g-base: 24, 26, 32;
  --g-edge: rgba(255,255,255,0.14);
  --g-rim: rgba(255,255,255,0.28);
  --g-txt: rgba(255,255,255,1);
  --g-txt-2: rgba(255,255,255,0.90);
  --g-txt-3: rgba(255,255,255,0.72);
  --t03: rgba(255,255,255,0.03);
  --t06: rgba(255,255,255,0.06);
  --t08: rgba(255,255,255,0.08);
  --t10: rgba(255,255,255,0.10);
}
.hiw-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.hiw-vignette { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6,9,18,0.45) 0%, rgba(6,9,18,0.12) 40%, rgba(6,9,18,0.58) 100%); }

/* Notch-Bar kompakt in der Card */
.hiw-swbar { top: 12px; left: 50%; transform: translateX(-50%); padding: 6px 12px; gap: 10px; display: inline-flex; align-items: center; border-radius: 999px; z-index: 6; }
.hiw-swbar .hb-stop { font-size: 11.5px; padding: 5px 10px; gap: 6px; }
.hiw-swbar .hb-sq { width: 9px; height: 9px; }
.hiw-swbar .hb-item { font-size: 11.5px; gap: 5px; }
.hiw-swbar .hb-key { min-width: 16px; height: 16px; font-size: 9.5px; }

.hiw-scene .dp-head { padding: 10px 12px 8px; }
.hiw-scene .dp-body { padding: 0 12px 12px; }
.hiw-scene .dp-move, .hiw-scene .dp-x { display: inline-flex; align-items: center; justify-content: center; width: 24px; height: 24px; color: var(--g-txt-3); }
.hiw-scene .dp-move svg, .hiw-scene .dp-x svg { width: 13px; height: 13px; }

/* Glass-Fenster-Basis für die neuen Widgets */
.hiw-feedwin, .hiw-ana, .hiw-einw2 {
  background: var(--g-sheen), rgba(var(--g-base), 0.72);
  backdrop-filter: blur(22px) saturate(1.35);
  -webkit-backdrop-filter: blur(22px) saturate(1.35);
  border: 1px solid var(--g-edge);
  color: var(--g-txt);
}

/* ---- Widget 1: Live-Transkript-Feed ---- */
.hiw-feedwin { left: 14px; right: 14px; bottom: 14px; top: 64px; }
.hiw-rec {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.08em;
  color: var(--g-txt-3); white-space: nowrap;
}
.hiw-rec b { color: var(--g-txt-2); font-weight: 600; font-variant-numeric: tabular-nums; }
.hiw-rec i {
  width: 7px; height: 7px; border-radius: 50%; background: #e85454;
  box-shadow: 0 0 0 0 rgba(232, 84, 84, 0.55);
  animation: hiwRecPulse 1.6s ease-out infinite;
}
@keyframes hiwRecPulse {
  0% { box-shadow: 0 0 0 0 rgba(232, 84, 84, 0.55); }
  70% { box-shadow: 0 0 0 7px rgba(232, 84, 84, 0); }
  100% { box-shadow: 0 0 0 0 rgba(232, 84, 84, 0); }
}
.hiw-feed { display: flex; flex-direction: column; gap: 7px; overflow: hidden; justify-content: flex-end; height: 148px; }
.hiw-fline {
  margin: 0; font-size: 12.5px; line-height: 1.45; color: var(--g-txt-2);
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.45s var(--ease-out), transform 0.45s var(--ease-out);
}
.hiw-fline.in { opacity: 1; transform: none; }
.hiw-fline .hiw-fwho {
  display: inline-block; margin-right: 6px;
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--g-txt-3); border: 1px solid var(--t10); border-radius: 5px; padding: 1px 5px;
  vertical-align: 1px;
}
.hiw-fline.du .hiw-fwho { color: var(--ember-soft); border-color: rgba(140, 190, 255, 0.35); }

/* ---- Widget 2: Live-Analyse (im Slider) ---- */
.hiw-ana { left: 14px; right: 14px; bottom: 14px; }
.hiw-ana-time { font-family: var(--mono); font-size: 10px; color: var(--g-txt-3); white-space: nowrap; }
.hiw-ana .dp-body { display: flex; flex-direction: column; gap: 9px; }
.hiw-waves { display: flex; align-items: center; gap: 3px; height: 18px; }
.hiw-waves i {
  flex: 1; height: 30%; border-radius: 2px; background: rgba(140, 190, 255, 0.75);
  animation: hiwWv 1.15s ease-in-out infinite;
}
.hiw-waves i:nth-child(2n) { animation-delay: 0.12s; height: 65%; }
.hiw-waves i:nth-child(3n) { animation-delay: 0.24s; height: 45%; }
.hiw-waves i:nth-child(4n) { animation-delay: 0.36s; height: 85%; }
.hiw-waves i:nth-child(5n) { animation-delay: 0.48s; height: 55%; }
@keyframes hiwWv { 0%, 100% { transform: scaleY(0.45); } 50% { transform: scaleY(1); } }
.hiw-quote { margin: 0; font-size: 12.5px; line-height: 1.5; color: var(--g-txt-2); }
.hiw-quote b { color: #fff; font-weight: 650; text-shadow: 0 0 10px var(--crimson-glow); }
.hiw-tagrow { display: flex; align-items: center; gap: 8px; }
.hiw-conf { font-family: var(--mono); font-size: 10px; color: var(--g-txt-3); }

/* ---- Widget 3: Konter-Typewriter ---- */
.hiw-einw2 {
  left: 16px; right: 16px; top: 50%; transform: translateY(-50%);
  box-shadow: 0 26px 60px -22px rgba(0, 0, 0, 0.8), 0 0 34px oklch(0.74 0.14 245 / 0.08);
}
.hiw-einw2 .dp-head { padding: 11px 13px 9px; }
.hiw-einw2 .dp-head > svg { color: var(--ember-soft); filter: drop-shadow(0 0 6px oklch(0.74 0.14 245 / 0.4)); }
.hiw-einw2 .dp-body { display: flex; flex-direction: column; gap: 9px; padding: 0 13px 13px; }
.hw-dot.ember { background: var(--ember); box-shadow: 0 0 10px var(--ember-glow); }
.hiw-krow { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.hiw-krow .ew-cat { margin: 0; transition: opacity 0.22s var(--ease), transform 0.22s var(--ease); }
.hiw-krow .ew-cat.swap { opacity: 0; transform: translateY(4px); }
.hiw-kconf {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.05em;
  color: var(--g-txt-3); white-space: nowrap;
}
.hiw-kconf .hw-dot { width: 5px; height: 5px; }
.hiw-kcard { align-self: stretch; padding: 12px 13px; min-height: 68px; }
.hiw-kcard .ew-row { gap: 9px; }
.hiw-kcard .ew-row > svg {
  width: 13px; height: 13px; flex-shrink: 0; margin-top: 14px;
  color: rgba(74, 222, 128, 0.95);
}
.hiw-ktext { flex: 1; margin: 0; font-size: 12.5px; line-height: 1.55; color: var(--g-txt); min-height: 2.9em; }
.hiw-caret {
  display: inline-block; width: 1.5px; height: 12px; margin-left: 2px;
  background: var(--ember-soft); box-shadow: 0 0 6px var(--ember-glow);
  vertical-align: -1.5px;
  animation: hiwCaret 0.9s step-end infinite;
}
@keyframes hiwCaret { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
.hiw-kdots { display: inline-flex; align-items: center; gap: 5px; margin-left: auto; }
.hiw-kdots i {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--t10); transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.hiw-kdots i.on { background: var(--ember); box-shadow: 0 0 8px var(--ember-glow); }

/* ---- Widget 2: Vergleichs-Slider ---- */
.hiw-cmp { position: absolute; inset: 0; touch-action: none; }
.hiw-cmp-layer { position: absolute; inset: 0; background: linear-gradient(165deg, var(--ink-2) 20%, var(--ink-1) 100%); }
.hiw-cmp-top { clip-path: inset(0% 45% 0% 0%); will-change: clip-path; }
.hiw-pill {
  position: absolute; top: 14px; z-index: 10;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-2); background: var(--ink-4);
  border: 1px solid var(--hair-2);
  padding: 5px 9px; border-radius: 6px; white-space: nowrap;
}
.hiw-pill.l { left: 14px; color: var(--ember-soft); background: var(--tint-2); }
.hiw-pill.r { right: 14px; }
.hiw-cmp-line { position: absolute; top: 0; bottom: 0; left: 55%; width: 1px; background: rgba(255, 255, 255, 0.35); z-index: 15; pointer-events: none; }
.hiw-cmp-handle {
  position: absolute; top: 50%; left: 55%; z-index: 20;
  width: 26px; height: 26px; transform: translate(-50%, -50%);
  border-radius: 50%; border: 1px solid var(--hair-3);
  background: var(--ink-4); color: var(--text-2);
  display: flex; align-items: center; justify-content: center;
  cursor: ew-resize; padding: 0;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.5);
  transition: border-color 0.3s var(--ease);
}
.hiw-cmp-handle:hover { border-color: var(--ember); color: var(--ember-soft); }

@media (max-width: 960px) {
  .hiw-shot { height: 280px; }
}

/* ============ ALLTAG IM VERTRIEB (Pain-Karten) ============ */
.moments-grid {
  margin-top: clamp(40px, 5.5vh, 68px);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 26px);
}
.moment-card {
  padding: clamp(22px, 2.6vw, 30px);
  border-radius: 18px;
  background: linear-gradient(165deg, var(--ink-2) 0%, var(--ink-1) 100%);
  border: 1px solid var(--hair);
  transition: border-color .25s ease, transform .25s ease;
}
.moment-card:hover { border-color: var(--hair-2); transform: translateY(-3px); }
.mo-ic {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 12px;
  background: rgba(229, 72, 77, 0.10); border: 1px solid rgba(229, 72, 77, 0.22);
  color: #ff8a8e; margin-bottom: 16px;
}
.mo-ic svg { width: 20px; height: 20px; }
.moment-card h3 { margin: 0 0 10px; font-size: clamp(16px, 1.4vw, 18px); line-height: 1.3; letter-spacing: -0.015em; color: var(--text); }
.moment-card p { margin: 0; font-size: 14.5px; line-height: 1.6; color: var(--text-2); }
.moments-bridge {
  margin: clamp(44px, 6vh, 72px) auto 0; max-width: 46ch; text-align: center;
  font-size: clamp(18px, 2vw, 24px); line-height: 1.45; letter-spacing: -0.02em;
  color: var(--text); font-weight: 550;
}
@media (max-width: 960px) { .moments-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .moments-grid { grid-template-columns: 1fr; } }

/* Preis-Feinheiten: Minuten-Hinweis, Vergleichs-Link, Enterprise-Banner */
.pc-note { display: block; margin-top: 3px; font-size: 12px; color: var(--text-3); }
.price-compare { margin: 34px 0 0; text-align: center; }
.price-compare a { color: var(--text-2); font-size: 15px; font-weight: 550; text-decoration: none; border-bottom: 1px solid var(--hair-3); padding-bottom: 2px; transition: color .2s, border-color .2s; }
.price-compare a:hover { color: var(--text); border-color: var(--text-2); }
.ent-banner {
  position: relative; overflow: hidden;
  margin-top: clamp(34px, 4.5vh, 52px);
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  padding: 22px 28px; border-radius: 16px;
  background:
    radial-gradient(90% 160% at 0% 50%, rgba(90, 140, 255, 0.10) 0%, transparent 55%),
    linear-gradient(165deg, var(--ink-2) 0%, var(--ink-1) 100%);
  border: 1px solid var(--hair-2);
}
.ent-banner::before {
  content: ""; position: absolute; left: 0; top: 18%; bottom: 18%; width: 3px; border-radius: 0 3px 3px 0;
  background: linear-gradient(180deg, rgba(120, 170, 255, 0.75), rgba(120, 170, 255, 0.15));
}
.ent-banner p { margin: 0; font-size: 15px; line-height: 1.55; color: var(--text-2); }
.ent-banner p b { display: block; margin-bottom: 2px; font-size: 16px; color: var(--text); letter-spacing: -0.01em; }
.ent-banner .btn { flex-shrink: 0; }
@media (max-width: 640px) { .ent-banner { flex-direction: column; align-items: flex-start; } }
