/* nullzwo Landing Page · scaffold + section styles */

html, body { margin: 0; padding: 0; background: #0a0a0a; overscroll-behavior-x: none; }
* { box-sizing: border-box; }
body {
  font-family: var(--font-body);
  color: var(--fg-1);
  background: #0a0a0a;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
button { font-family: var(--font-body); }
[data-screen-label] { scroll-margin-top: 80px; }

/* Links global: DS-Default (colors_and_type.css → a { border-bottom: 1px solid currentColor })
   erzeugt eine permanente Unterstreichung. Wir setzen den Border permanent transparent
   (kein Layout-Shift, 1px bleibt) — sichtbar nur dort, wo :hover ihn einfärbt. */
a { border-bottom-color: transparent; }

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.005em;
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--dur-base) var(--ease-emphasis);
  white-space: nowrap;
}
.btn-lg { padding: 18px 30px; font-size: 17px; }
.btn-md { padding: 12px 22px; font-size: 15px; }
.btn-sm { padding: 8px 14px; font-size: 13px; }

.btn-primary {
  background: var(--color-duron-cruising);
  color: #fff;
  font-weight: 700;
  border-color: var(--color-duron-cruising);
  box-shadow: 0 4px 12px rgba(15, 30, 40, 0.18),
              0 14px 40px rgba(0, 121, 148, 0.32),
              0 1px 0 rgba(255,255,255,0.22) inset;
}
.btn-primary:hover {
  background: var(--color-bayside);
  border-color: var(--color-bayside);
  color: #0a0a0a;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(15, 30, 40, 0.16),
              0 22px 56px rgba(87, 199, 194, 0.48),
              0 1px 0 rgba(255,255,255,0.30) inset;
}
.btn-primary-dark { background: #fff; color: #0a0a0a; }
.btn-primary-dark:hover { background: var(--color-bayside); color: #0a0a0a; }

.btn-ghost-dark { background: transparent; color: #fff; border-color: rgba(255,255,255,.25); }
.btn-ghost-dark:hover { border-color: rgba(255,255,255,.6); }

/* ----- Section spacing ----- */
.section { padding: clamp(80px, 12vh, 144px) 32px; }
.container { max-width: 1200px; margin: 0 auto; }
.container-narrow { max-width: 760px; margin: 0 auto; }

/* ----- Eyebrow ----- */
.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.eyebrow-light { color: var(--color-bayside); }
.eyebrow-dark { color: var(--color-duron-cruising); }

/* ----- Headline helpers ----- */
.h-display {
  font-family: var(--font-headline);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0;
  text-wrap: balance;
}

.lead {
  font-size: 20px;
  line-height: 1.55;
  text-wrap: pretty;
  margin: 0;
}

/* ===== HEADER ===== */
.nz-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10,10,10,0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background var(--dur-base) var(--ease-standard),
              border-color var(--dur-base) var(--ease-standard);
}
.nz-header.is-light {
  background: rgba(255,255,255,0.88);
  border-bottom-color: var(--color-pearl-gray);
}
.nz-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 32px;
  display: flex; align-items: center; justify-content: space-between;
}
.nz-header__logo { display: flex; align-items: center; border-bottom: none; height: 28px; }
.nz-header__logo img { height: 28px; display: block; }
.nz-header__logo .light { display: block; }
.nz-header__logo .dark { display: none; }
.nz-header.is-light .light { display: none; }
.nz-header.is-light .dark { display: block; }

.nz-nav {
  display: flex; align-items: center; gap: 28px;
}
.nz-nav a {
  font-size: 14px; font-weight: 500;
  color: rgba(255,255,255,0.72);
  border-bottom: none;
  text-decoration: none;
  transition: color var(--dur-base) var(--ease-standard);
}
.nz-nav a:hover { color: #fff; }
.nz-nav a.btn-primary { color: #fff; }
.nz-nav a.btn-primary:hover { color: #0a0a0a; }
.nz-header.is-light .nz-nav a:not(.btn) { color: var(--fg-2); }
.nz-header.is-light .nz-nav a:not(.btn):hover { color: var(--color-filoli-iris); }


/* ===== HERO ===== */
.hero {
  background: #060708;
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 32px 32px 40px;
  isolation: isolate;
}
/* Industrial backdrop, heavily darkened with vignette. */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    image-set(
      url('assets/images/industry-bg.avif') type('image/avif'),
      url('assets/images/industry-bg.webp') type('image/webp'),
      url('assets/images/industry-bg.jpg') type('image/jpeg')
    ) center/cover no-repeat,
    #060708;
  z-index: -2;
  filter: saturate(0.55) contrast(1.05);
}
.hero::after {
  /* ~72% black overlay + soft vignette to edges + Bottom-Fade zu reinem Schwarz für Übergang. */
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 75%, rgba(0,0,0,0.55) 88%, #000 100%),
    radial-gradient(120% 95% at 50% 45%, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.78) 55%, rgba(0,0,0,0.94) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0.74) 100%);
  z-index: -1;
  pointer-events: none;
}
.hero__inner {
  max-width: 1180px; margin: 0 auto;
  display: flex; flex-direction: column;
  align-items: center;
  padding-top: 24px;
}
.hero__head {
  text-align: center;
  width: 100%;
  display: flex; flex-direction: column; align-items: center;
  margin-bottom: 56px;
}
.hero__mini-sub {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--color-bayside);
  margin: 0 0 14px;
  text-transform: uppercase;
  white-space: nowrap;
}
.hero__headline {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: clamp(32px, 3.4vw, 50px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 14px;
  text-wrap: balance;
  max-width: 1100px;
}
.hero__headline em {
  font-style: normal;
  color: rgb(166, 194, 204);
  font-weight: 700;
}
.hero__sub {
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.5;
  color: rgba(255,255,255,0.78);
  margin: 0;
  max-width: 70ch;
  text-wrap: pretty;
  font-weight: 500;
}

/* Two-col block (VSL + bullets) */
.hero__split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(36px, 4.5vw, 64px);
  width: 100%;
  align-items: stretch;
}

/* Right column: bullets at top, CTA at bottom — aligns with video bottom edge */
.hero__right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  min-width: 0;
  height: 100%;
}
.hero__right .hero__cta-wrap {
  margin-top: auto;
}

/* Bullets — Baulig-style: large, generous spacing */
.hero__bullets {
  list-style: none;
  margin: 0;
  padding: 4px 0 0;
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 2vh, 28px);
}
.hero__bullet {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  align-items: center;
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.5;
  min-height: 3em;
  color: rgba(255,255,255,0.95);
  font-family: var(--font-body);
  font-weight: 400;
}
.hero__bullet svg {
  width: 28px; height: 28px;
  stroke-width: 2.2;
  color: var(--red);
  flex-shrink: 0;
}

/* Centered CTA below VSL+bullets (Baulig-style) */
.hero__cta-wrap {
  display: flex; justify-content: center;
  width: 100%;
  margin-top: 0;
}
.hero__cta {
  font-size: 15px;
  padding: 14px 30px;
  font-weight: 700;
  letter-spacing: 0.01em;
  background: var(--color-bleu-ash);
  color: #0a0a0a;
  border: 1px solid var(--color-bleu-ash);
  box-shadow: 0 8px 24px rgba(166, 194, 204, 0.22),
              0 1px 0 rgba(255,255,255,0.18) inset;
  transition: all var(--dur-base) var(--ease-emphasis);
}
.hero__cta:hover {
  background: #E4D245;
  border-color: #E4D245;
  color: #0a0a0a;
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(228, 210, 69, 0.28);
}
.hero__cta svg { width: 18px; height: 18px; }

/* Trust strip: logos | divider | (stars over rating-link) */
.hero__trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 3.2vw, 48px);
  width: 100%;
  flex-wrap: wrap;
  margin-top: 32px;
}
.hero__logos {
  display: flex;
  align-items: center;
  gap: clamp(28px, 3.4vw, 56px);
}
.hero__logo-img {
  height: 52px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
  opacity: 0.85;
  transition: opacity var(--dur-base) var(--ease-standard);
}
.hero__logo-img:hover { opacity: 1; }

.hero__trust-divider {
  width: 1px;
  height: 72px;
  background: rgba(255,255,255,0.18);
  align-self: center;
}

.hero__sources {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1.4;
  color: rgba(255,255,255,0.72);
  text-align: left;
  white-space: nowrap;
}
.hero__sources a {
  color: inherit;
  transition: color var(--dur-base) var(--ease-standard), border-color var(--dur-base) var(--ease-standard);
}
.hero__sources a:hover { color: #fff; border-bottom-color: currentColor; }
.hero__sources sup { font-size: 0.85em; margin-right: 2px; }
.hero__bullet sup {
  font-size: 0.62em;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  margin-left: 1px;
}

/* Baulig-style score card: stars top, "Hervorragend" middle, "X Bewertungen auf [in]" bottom */
.hero__score {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  text-decoration: none !important;
  color: #fff;
  padding: 4px 8px;
  border-radius: 6px;
  transition: transform var(--dur-base) var(--ease-emphasis);
}
.hero__score,
.hero__score:hover,
.hero__score:focus,
.hero__score:visited,
.hero__score *,
a.hero__score,
a.hero__score * {
  text-decoration: none !important;
  border-bottom: none !important;
  outline: none;
  box-shadow: none;
}
.hero__score:hover { transform: translateY(-1px); }
.hero__score-stars {
  display: inline-flex; gap: 4px;
  color: #FFB400;
}
.hero__score-stars svg { width: 24px; height: 24px; fill: currentColor; display: block; }
.hero__score-label {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: #fff;
  line-height: 1;
}
.hero__score-meta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255,255,255,0.72);
  letter-spacing: 0.01em;
  line-height: 1;
}
.hero__score-linkedin {
  width: 18px; height: 18px;
  fill: #fff;
  display: block;
}

/* VSL */
.hero__vsl-wrap { width: 100%; }
.hero__vsl {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #0d1014;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 24px 60px rgba(0,0,0,0.55),
              0 0 0 1px rgba(87,199,194,0.04);
}
.hero__vsl::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 70% at 50% 50%, rgba(87,199,194,0.10) 0%, transparent 70%),
    linear-gradient(180deg, #131820 0%, #0a0c10 100%);
  pointer-events: none;
}
.hero__vsl-inner {
  position: relative;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  color: rgba(255,255,255,0.6);
}
.hero__vsl-play {
  width: 76px; height: 76px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--dur-base) var(--ease-standard);
  cursor: pointer;
}
.hero__vsl-play:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.36); transform: scale(1.04); }
.hero__vsl-play svg { width: 22px; height: 22px; fill: #fff; margin-left: 4px; }
.hero__vsl-label {
  font-family: var(--font-mono, monospace);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* Mobile order: Mini-Sub, Headline, Sub, VSL, Bullets, CTA, Logos, Rating */
@media (max-width: 860px) {
  .hero { padding: 36px 22px 56px; }
  .hero__inner { min-height: 0; gap: 22px; }
  .hero__headline { font-size: clamp(26px, 7vw, 34px); max-width: none; }
  /* #56: lange Eyebrow darf umbrechen statt vom Hero-overflow:hidden abgeschnitten zu werden */
  .hero__mini-sub { white-space: normal; }
  .hero__sub { font-size: 15px; }
  .hero__split { grid-template-columns: 1fr; gap: 22px; }
  .hero__right { gap: 22px; }
  .hero__bullet { font-size: 14px; }
  .hero__cta { width: 100%; justify-content: center; padding: 16px 20px; }
  .hero__cta-wrap { width: 100%; }
  .hero__trust-strip {
    flex-direction: column;
    gap: 40px;
  }
  /* Logos vertikal stapeln (ohne Linien dazwischen, nur Abstand) */
  .hero__logos {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    gap: 24px;
    width: 100%;
    max-width: 260px;
    margin: 0 auto;
  }
  .hero__logos picture { display: flex; justify-content: center; width: 100%; }
  .hero__logo-img { height: 44px; }
  /* Beide vertikalen Trenner werden horizontal: Linien zwischen den Gruppen
     Logos / LinkedIn / Quellen */
  .hero__trust-divider {
    display: block;
    width: 100%;
    max-width: 260px;
    height: 1px;
    margin: 0 auto;
  }
}

/* ===== PROBLEM ===== */
.problem {
  background: #000;
  color: #fff;
  padding: 0;
  /* Sauberer, nahtloser Übergang vom Hero (#060708) ins reine Schwarz */
  position: relative;
}
.problem::before {
  /* weicher Top-Fade: Hero-Schwarz → reines Schwarz, keine sichtbare Kante */
  content: '';
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 160px;
  background: linear-gradient(180deg, #000 0%, rgba(0,0,0,0.92) 50%, #000 100%);
  pointer-events: none;
}
.problem__intro {
  padding: clamp(96px, 14vh, 160px) 32px clamp(64px, 9vh, 104px);
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.problem__intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(64px, 9vh, 96px);
  align-items: start;
}
.problem__intro-text {
  font-size: clamp(24px, 2.6vw, 36px);
  line-height: 1.3;
  color: #fff;
  font-family: var(--font-headline);
  font-weight: 400;
  letter-spacing: -0.01em;
  text-wrap: balance;
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
}
.problem__bullets {
  list-style: none;
  margin: 0 auto; padding: 0;
  max-width: 880px;
  display: flex; flex-direction: column;
  gap: 0;
}
.problem__bullet {
  position: relative;
  padding: clamp(28px, 4.5vh, 44px) 0 clamp(28px, 4.5vh, 44px) 52px;
}
.problem__bullet::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--severity-critical);
}
@media (max-width: 640px) {
  .problem__bullet {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .problem__bullet::before {
    position: static;
    top: auto;
    transform: none;
    width: 10px;
    height: 10px;
    margin-top: 0;
    flex-shrink: 0;
  }
  .problem__bullet-text { flex: 1; }
  /* CTA-Buttons dürfen auf schmalen Viewports umbrechen statt zu überlaufen
     (#56: nowrap + 30px-Padding erzeugte 422px-Buttons -> Page-Overflow -> iOS-Header-Streifen) */
  .btn-lg {
    max-width: 100%;
    white-space: normal;
    justify-content: center;
    text-align: center;
  }
}
.problem__bullet-text {
  font-size: clamp(19px, 1.7vw, 22px);
  line-height: 1.5;
  color: rgba(255,255,255,0.92);
  margin: 0;
  text-wrap: pretty;
}

.problem__outro {
  padding: clamp(64px, 9vh, 104px) 32px clamp(14px, 2vh, 24px);
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.problem__outro-text {
  font-family: var(--font-headline);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(36px, 4.2vw, 56px);
  line-height: 1.3;
  color: rgba(255,255,255,0.88);
  letter-spacing: -0.005em;
  margin: 0;
  text-wrap: balance;
}

/* ===== HYPOTHESE ===== */
.hypothese {
  background: linear-gradient(180deg, #000 0%, #2a3540 100%);
  color: #fff;
  padding: clamp(96px, 14vh, 160px) 32px;
}
.hypothese__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: clamp(48px, 6vw, 96px);
  align-items: start;
}
.hypothese__photo {
  margin: 0;
  padding: 17px 0 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.photo-card {
  background: transparent;
  padding: 0;
  margin: 0;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
  transform: none;
  width: 100%;
  max-width: none;
  display: block;
  border-radius: 4px;
  overflow: hidden;
}
.photo-card img {
  display: block;
  width: 100%;
  height: auto;
}
.hypothese__text {
  min-width: 0;
  padding-top: 0;
}
.hypothese__headline {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: clamp(40px, 6vw, 88px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 56px;
  text-wrap: balance;
}
.hypothese__headline em {
  font-style: normal;
  color: var(--color-bleu-ash);
}
.hypothese__body {
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.65;
  color: rgba(255,255,255,0.82);
  margin: 0 0 1.6em;
  max-width: 720px;
  text-wrap: pretty;
}
.hypothese__cliffhanger {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.65;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0;
  margin: 1.6em 0 0;
  max-width: 720px;
  border-left: 2px solid var(--color-bayside);
  padding-left: 18px;
}
.hypothese__cliffhanger sup { font-size: 0.6em; font-weight: 600; }
.hypothese__source {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.4;
  color: rgba(255,255,255,0.6);
  margin: 0.8em 0 0;
  padding-left: 18px;
  max-width: 720px;
}
.hypothese__source sup { font-size: 0.85em; margin-right: 2px; }
.hypothese__source a {
  color: inherit;
  transition: color var(--dur-base) var(--ease-standard), border-color var(--dur-base) var(--ease-standard);
}
.hypothese__source a:hover { color: #fff; border-bottom-color: currentColor; }
.hypothese__cta-wrap {
  margin-top: 48px;
  display: flex;
  justify-content: flex-start;
}

/* ===== WAHRHEIT ===== */
.wahrheit {
  background: linear-gradient(in oklch 180deg,
    #2a3540 0%,
    #2f3c49 12%,
    #354352 24%,
    #3b4a5b 36%,
    var(--color-filoli-iris) 50%,
    #2f6379 65%,
    #1a6e87 80%,
    var(--color-duron-cruising) 100%);
  color: #fff;
  padding: clamp(96px, 14vh, 160px) 32px;
}
.wahrheit__inner {
  max-width: 1180px;
  margin: 0 auto;
}
.wahrheit__headline {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 64px;
  text-wrap: balance;
  max-width: none;
}
.wahrheit__accent {
  color: var(--severity-critical);
  font-style: normal;
  font-weight: inherit;
}
.wahrheit__accent--white {
  color: #fff;
}
.wahrheit__num-inline {
  color: var(--color-bayside);
  font-weight: 700;
}

/* Stat tiles (kompakt) */
.wahrheit__tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 12px 0 56px;
  max-width: none;
  align-items: stretch;
}
.wahrheit__tile {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 6px;
  padding: 56px 28px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 22px;
  height: 100%;
  transition: border-color var(--dur-base) var(--ease-emphasis),
              background-color var(--dur-base) var(--ease-emphasis),
              transform var(--dur-base) var(--ease-emphasis);
}
.wahrheit__tile:hover {
  border-color: rgba(198,40,40,0.45);
  background-color: rgba(198,40,40,0.05);
  transform: translateY(-1px);
}
.wahrheit__tile:hover .wahrheit__tile-icon {
  color: var(--severity-critical);
}
.wahrheit__tile-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
  flex: 1;
}
.wahrheit__tile-icon {
  color: var(--severity-critical);
  width: 84px;
  height: 84px;
  flex-shrink: 0;
}
.wahrheit__tile-num {
  font-family: var(--font-helvetica);
  font-weight: 700;
  font-size: clamp(28px, 2.6vw, 36px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: #fff;
}
.wahrheit__tile-caption {
  font-size: 14px;
  line-height: 1.45;
  color: rgba(255,255,255,0.78);
  margin: 0;
  max-width: none;
  text-wrap: pretty;
}

/* Two-column sub-blocks with image placeholder */
.wahrheit__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin: 56px 0;
  max-width: none;
}
.wahrheit__split-text {
  display: flex;
  flex-direction: column;
}
.wahrheit__split-text .wahrheit__pullquote {
  margin-top: 0;
  margin-bottom: 24px;
}
.wahrheit__split-text .wahrheit__body:last-child {
  margin-bottom: 0;
}
.wahrheit__split-image {
  background-color: rgba(0,0,0,0.22);
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  aspect-ratio: 4 / 5;
  width: 100%;
  align-self: stretch;
  min-height: 320px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
}
.wahrheit__body {
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.65;
  color: rgba(255,255,255,0.86);
  margin: 0 0 1.6em;
  max-width: none;
  text-wrap: pretty;
}
.wahrheit__body strong {
  color: #fff;
  font-weight: 600;
}
.wahrheit__pullquote {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 48px 0;
  max-width: none;
  text-wrap: balance;
}
.wahrheit__warning {
  font-family: var(--font-headline);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.5;
  color: rgba(255,255,255,0.95);
  letter-spacing: -0.005em;
  margin: 0 0 1.6em;
  max-width: none;
}
.wahrheit__body sup {
  font-size: 0.6em;
  font-weight: 600;
  color: inherit;
  margin-left: 1px;
}
.wahrheit__inline-source {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.4;
  color: rgba(255,255,255,0.6);
  margin: -1.2em 0 0;
  max-width: none;
}
.wahrheit__inline-source sup { font-size: 0.85em; margin-right: 2px; }
.wahrheit__inline-source a {
  color: inherit;
  transition: color var(--dur-base) var(--ease-standard), border-color var(--dur-base) var(--ease-standard);
}
.wahrheit__inline-source a:hover { color: rgba(255,255,255,0.9); border-bottom-color: currentColor; }

/* ===== LÖSUNG / CTA ===== */
.loesung {
  background:
    linear-gradient(in oklch 180deg,
      var(--color-duron-cruising) 0%,
      #1f8499 11%,
      #3a8fa3 22%,
      #4ea8b3 33%,
      #62b1bb 44%,
      #80b9c1 55%,
      #95bfc6 64%,
      #a4c4ca 72%,
      var(--color-bleu-ash) 80%,
      #c4d3d8 87%,
      #dde4e7 92%,
      #ecf0f1 96%,
      #ffffff 100%) top center / 100% calc(100% - 180px) no-repeat,
    #ffffff;
  color: #fff;
  padding: clamp(96px, 14vh, 160px) 32px clamp(96px, 14vh, 160px);
}
.loesung > .loesung__inner > .cta-conv__inner {
  margin-top: clamp(56px, 8vh, 96px);
}
.loesung__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.loesung__eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin: 0 0 18px;
}
.loesung__headline {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: clamp(34px, 4.6vw, 60px);
  line-height: 1.07;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 42px;
  text-align: center;
  text-wrap: balance;
  max-width: none;
}
.loesung__headline em { font-style: normal; text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 6px; }
.loesung__intro {
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.65;
  color: rgba(255,255,255,0.92);
  margin: 0 0 clamp(56px, 7vh, 88px);
  max-width: none;
  text-align: center;
}
.loesung__transition {
  font-family: var(--font-headline);
  font-weight: 400;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.4;
  color: #fff;
  letter-spacing: -0.01em;
  margin: 56px 0 40px;
  max-width: none;
}
.loesung__steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin: 0 0 64px;
}
.loesung__step {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 4px;
  padding: 28px 24px;
  backdrop-filter: blur(8px);
  display: flex; flex-direction: column;
  min-height: 280px;
}
.loesung__step-num {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 32px;
  color: rgba(255,255,255,0.45);
  margin: 0 0 16px;
  letter-spacing: -0.02em;
  line-height: 1;
}
.loesung__step-title {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  margin: 0 0 12px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.loesung__step-body {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,0.82);
  margin: 0;
  text-wrap: pretty;
}

.loesung__claim {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: clamp(24px, 2.8vw, 36px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 64px 0 32px;
  max-width: 920px;
  text-wrap: balance;
}
.loesung__cta-line {
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.6;
  color: rgba(255,255,255,0.92);
  margin: 0 0 36px;
  max-width: 720px;
}
.loesung__cta-row {
  display: flex; flex-wrap: wrap; gap: 16px; align-items: center;
}
.loesung__cta-meta {
  font-size: 14px;
  color: rgba(255,255,255,0.78);
}

/* ===== S5 · Cyber-Hardening-Sprint Cards (DS-konform, Querformat untereinander) ===== */
.loesung__cards {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin: 0;
  max-width: 784px;
  margin-left: auto;
  margin-right: auto;
}
.loesung__card {
  background: #ffffff;
  border: 1px solid var(--color-pearl-gray);
  border-radius: 4px;
  padding: 32px 40px;
  min-height: 220px;
  display: grid;
  grid-template-columns: 120px 1fr;
  align-items: center;
  gap: 40px;
  transition: border-color var(--dur-base) var(--ease-emphasis),
              box-shadow var(--dur-base) var(--ease-emphasis),
              transform var(--dur-base) var(--ease-emphasis);
}
.loesung__card:hover {
  border-color: var(--color-bleu-ash);
  box-shadow: 0 12px 32px rgba(15, 30, 40, 0.08);
  transform: translateY(-1px);
}
.loesung__card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-filoli-iris);
}
.loesung__card-icon svg {
  width: 96px;
  height: 96px;
  display: block;
}
.loesung__card-text { display: block; }
.loesung__card-num {
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-duron-cruising);
  margin: 0 0 14px;
  line-height: 1;
}
.loesung__card-title {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--color-filoli-iris);
  margin: 0 0 10px;
  text-wrap: balance;
}
.loesung__card-body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-filoli-iris);
  margin: 0;
  text-wrap: pretty;
}

/* ===== S5b · CTA-CONVERSION ===== */
/* .cta-conv section removed — content is now inside .loesung */
.cta-conv__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-between;
  gap: clamp(32px, 5vw, 72px);
}
.cta-conv__quote {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.65;
  color: rgba(15, 23, 42, 0.82);
  letter-spacing: 0;
  margin: 0;
  max-width: 720px;
  flex: 1 1 auto;
  border-left: 2px solid var(--color-bayside);
  padding-left: 22px;
  text-align: left;
}
.cta-conv__cta-wrap {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}

/* ===== DIFFERENZIERUNG ===== */
/* ===== S5c · Kundenstimmen / Fallstudien ===== */
.testimonial-case {
  background: #ffffff;
  color: var(--color-filoli-iris);
  padding: clamp(96px, 14vh, 160px) 32px;
}
.testimonial-case__inner { max-width: 1280px; margin: 0 auto; }
.testimonial-case__head {
  text-align: center;
  margin-bottom: clamp(56px, 8vh, 96px);
}
.testimonial-case__headline {
  font-family: var(--font-headline);
  font-weight: 400;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--color-filoli-iris);
  margin: 0;
  text-wrap: balance;
}
.testimonial-case__pair {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(20px, 2.4vw, 28px);
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
  background: var(--color-pearl-gray);
  border-radius: 4px;
  box-shadow:
    0 2px 8px rgba(15, 30, 40, 0.06),
    0 16px 48px rgba(15, 30, 40, 0.12);
  padding: clamp(20px, 2.4vw, 32px);
}
.testimonial-case__card {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 800px;
}
.testimonial-case__photo-card {
  background: #0a0a0a;
  color: #fff;
  padding: 0;
  position: relative;
}
.testimonial-case__photo-frame {
  position: relative;
  flex: 1 1 auto;
  width: 100%;
  height: 100%;
  min-height: 620px;
  overflow: hidden;
  background: #0a0a0a;
}
.testimonial-case__photo-frame img {
  display: block;
  position: absolute;
  width: auto;
  height: 100%;
  left: -31%;
  top: -13%;
}
.testimonial-case__photo-content {
  position: absolute;
  inset: 0;
  padding: clamp(28px, 3.4vw, 44px) clamp(28px, 3.4vw, 44px) clamp(16px, 2vw, 22px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 16px;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,0) 50%,
    rgba(0,0,0,0.3) 58%,
    rgba(0,0,0,0.75) 64%,
    rgba(0,0,0,1) 68%,
    rgba(0,0,0,1) 100%
  );
  pointer-events: none;
}
.testimonial-case__quote {
  font-family: var(--font-headline);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 1.5;
  letter-spacing: -0.005em;
  color: #fff;
  margin: 0;
  text-wrap: pretty;
}
.testimonial-case__author { display: flex; flex-direction: column; gap: 6px; }
.testimonial-case__author-name {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  margin: 0;
  letter-spacing: -0.005em;
  line-height: 1.25;
}
.testimonial-case__author-firm {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  margin: 0;
  line-height: 1.25;
}
.testimonial-case__author-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin: 8px 0 0;
}
.testimonial-case__narrative {
  padding: clamp(32px, 3vw, 44px) clamp(32px, 3.4vw, 48px);
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 2.4vw, 32px);
  justify-content: space-between;
  overflow: hidden;
}
.testimonial-case__chapter { display: flex; flex-direction: column; gap: 14px; }
.testimonial-case__chapter-label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(18px, 1.4vw, 22px);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--color-filoli-iris);
  margin: 0;
  line-height: 1.25;
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.testimonial-case__chapter-label::before {
  content: attr(data-num);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: inherit;
  letter-spacing: 0.02em;
  color: var(--color-duron-cruising);
}
.testimonial-case__chapter-body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--fg-1);
  margin: 0;
  text-wrap: pretty;
}
@media (max-width: 860px) {
  .testimonial-case__pair { grid-template-columns: 1fr; gap: 20px; }
  .testimonial-case__card { height: auto; min-height: 0; }
  /* Foto-Karte: Foto oben (voll, Gesicht sichtbar, kein schwarzer Rand),
     Text als solider Block DARUNTER statt als Overlay über dem Gesicht */
  .testimonial-case__photo-frame {
    min-height: 0;
    aspect-ratio: auto;
    overflow: visible;
    display: flex;
    flex-direction: column;
  }
  .testimonial-case__photo-frame picture { display: block; width: 100%; line-height: 0; }
  .testimonial-case__photo-frame img {
    position: static;
    left: auto; top: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center 22%;
  }
  .testimonial-case__photo-content {
    position: static;
    inset: auto;
    background: #0a0a0a;
    padding: 24px 22px 26px;
    pointer-events: auto;
  }
  .testimonial-case__narrative { padding: 32px 24px; }
  .testimonial-case__quote { font-size: 16px; }
}

.diff {
  background: #ffffff;
  color: var(--color-filoli-iris);
  padding: clamp(96px, 14vh, 160px) 32px;
  margin-top: -1px;
}
.diff__inner { max-width: 1280px; margin: 0 auto; }
.diff__head {
  text-align: center;
  margin-bottom: clamp(56px, 8vh, 96px);
}
.diff__headline {
  font-family: var(--font-headline);
  font-weight: 400;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--color-filoli-iris);
  margin: 0;
  text-wrap: balance;
}
.diff__headline em {
  font-style: italic;
  color: inherit;
  text-decoration: underline;
  text-decoration-color: var(--color-apple-valley);
  text-decoration-thickness: 6px;
  text-underline-offset: 8px;
  text-decoration-skip-ink: none;
}

.diff__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto repeat(5, auto);
  column-gap: clamp(20px, 2.5vw, 32px);
  row-gap: 0;
  align-items: stretch;
}
.diff__card {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: 1 / span 6;
  border-radius: 4px;
  overflow: hidden;
}
.diff__card--standard {
  background: #f4f5f6;
  border: 1px solid var(--color-pearl-gray);
  --row-line: #e2e5e8;
}
.diff__card--nz {
  background: #fff;
  border: 1px solid var(--color-pearl-gray);
  box-shadow: 0 12px 40px rgba(15,30,40,.10);
  --row-line: var(--color-pearl-gray);
}

.diff__card-header {
  display: flex;
  align-items: end;
  justify-content: center;
  padding: clamp(28px, 3vw, 40px) clamp(28px, 3vw, 48px);
  text-align: center;
}
.diff__card--standard .diff__card-header {
  background: var(--color-filoli-iris);
}
.diff__card--nz .diff__card-header {
  background: var(--color-duron-cruising);
}
.diff__card-title {
  font-family: var(--font-headline);
  font-weight: 400;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1;
  margin: 0;
  letter-spacing: -0.005em;
  color: #fff;
  font-style: normal;
}
.diff__card-logo {
  display: block;
  height: clamp(22px, 2vw, 28px);
  width: auto;
  object-fit: contain;
}

.diff__row {
  position: relative;
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 18px;
  align-items: center;
  padding: clamp(20px, 2vw, 28px) clamp(28px, 3vw, 48px);
}
.diff__row + .diff__row::before {
  content: "";
  position: absolute;
  top: 0;
  left: clamp(28px, 3vw, 48px);
  right: clamp(28px, 3vw, 48px);
  height: 1px;
  background: var(--row-line);
}
.diff__card-header + .diff__row { padding-top: clamp(36px, 4vw, 56px); }
.diff__row:last-child { padding-bottom: clamp(36px, 4vw, 56px); }
.diff__icon { width: 22px; height: 22px; flex-shrink: 0; }
.diff__card--standard .diff__icon { color: var(--severity-critical); }
.diff__card--nz .diff__icon { color: var(--color-duron-cruising); }
.diff__row-title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.35;
  margin: 0 0 6px;
  letter-spacing: -0.005em;
  color: var(--color-filoli-iris);
}
.diff__card--standard .diff__row-title { opacity: 0.78; }
.diff__row-body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(13px, 1.05vw, 15px);
  line-height: 1.55;
  margin: 0;
  color: var(--fg-2);
  text-wrap: pretty;
}
.diff__card--standard .diff__row-body { opacity: 0.65; }

.diff__claim {
  margin: clamp(48px, 6vh, 72px) auto 0;
  max-width: 1280px;
  text-align: center;
  font-size: clamp(22px, 2.8vw, 28px);
  font-weight: 600;
  line-height: 1.4;
  color: var(--color-filoli-iris);
}

.diff__cta {
  margin-top: clamp(28px, 4vh, 44px);
  text-align: center;
}

/* ===== ABOUT ===== */
.about {
  background: #fff;
  color: var(--color-filoli-iris);
  padding: clamp(96px, 14vh, 160px) 32px;
}
.about__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}
.about__photo {
  aspect-ratio: 2 / 3;
  background: image-set(
    url('assets/images/business.avif') type('image/avif'),
    url('assets/images/business.webp') type('image/webp'),
    url('assets/images/business.jpg') type('image/jpeg')
  ) center/cover no-repeat;
  border-radius: 4px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
  margin-top: calc(33px + 0.196 * clamp(36px, 4.6vw, 56px));
}
.about__content { }
.about__headline {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: clamp(36px, 4.6vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--color-filoli-iris);
  margin: 14px 0 32px;
  text-wrap: balance;
}
.about__lead {
  font-family: var(--font-headline);
  font-weight: 400;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.4;
  color: var(--color-filoli-iris);
  letter-spacing: -0.01em;
  margin: 0 0 32px;
  text-wrap: balance;
  max-width: 720px;
}
.about__body {
  font-size: 17px;
  line-height: 1.65;
  color: var(--fg-2);
  margin: 0 0 1.4em;
  max-width: 640px;
  text-wrap: pretty;
}
.about__refs {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-top: 32px;
}
.about__ref {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--color-filoli-iris);
  background: var(--color-off-white);
  border: 1px solid var(--color-pearl-gray);
  padding: 8px 14px;
  border-radius: 2px;
  letter-spacing: 0.01em;
}

/* ===== FAQ ===== */
.faq {
  background: var(--color-off-white);
  padding: clamp(96px, 14vh, 160px) 32px;
}
.faq__inner {
  max-width: 920px;
  margin: 0 auto;
}
.faq__headline {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: clamp(36px, 4.6vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--color-filoli-iris);
  margin: 14px 0 56px;
  text-wrap: balance;
}
.faq__list { }
.faq__item {
  border-top: 1px solid var(--color-pearl-gray);
}
.faq__item:last-child { border-bottom: 1px solid var(--color-pearl-gray); }
.faq__q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 28px 0;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: clamp(18px, 1.6vw, 22px);
  color: var(--color-filoli-iris);
  letter-spacing: -0.005em;
  line-height: 1.3;
  transition: color var(--dur-base) var(--ease-standard);
}
.faq__q:hover { color: var(--color-duron-cruising); }
.faq__plus {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 28px;
  color: var(--color-duron-cruising);
  transition: transform var(--dur-slow) var(--ease-emphasis);
  flex-shrink: 0;
  line-height: 1;
}
.faq__item.is-open .faq__plus { transform: rotate(45deg); }
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur-slow) var(--ease-standard);
}
.faq__item.is-open .faq__a { max-height: 600px; }
.faq__a-inner {
  padding: 0 0 28px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--fg-2);
  max-width: 800px;
  text-wrap: pretty;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--color-pearl-gray);
  color: var(--color-filoli-iris);
  padding: 80px 32px 56px;
}
.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 56px;
}
.footer__copy {
  font-size: 12px;
  color: var(--color-filoli-iris);
  opacity: 0.7;
  margin-top: 18px;
}
.footer__cookies {
  display: inline-block;
  font-size: 12px;
  color: var(--color-filoli-iris);
  opacity: 0.7;
  text-decoration: none;
  border-bottom: none;
  margin-top: 8px;
  transition: opacity var(--dur-base) var(--ease-standard);
}
.footer__cookies:hover { opacity: 1; color: var(--color-duron-cruising); }
.footer__col-head {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-filoli-iris);
  margin: 0 0 18px;
}
.footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer__col a {
  color: var(--color-filoli-iris);
  text-decoration: none;
  border-bottom: none;
  font-size: 14px;
  transition: color var(--dur-base) var(--ease-standard);
}
.footer__col a:hover { color: var(--color-duron-cruising); }
/* Footer-Links: keine permanente Linie, Unterstreichung nur bei Hover */
.footer a { border-bottom: 1px solid transparent; }
.footer a:hover { border-bottom-color: currentColor; }

/* ===== RESPONSIVE ===== */
@media (max-width: 980px) {
  .about__inner {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .about__content { display: contents; }
  .about__inner > .about__photo { order: 2; max-width: 100%; aspect-ratio: 4 / 5; min-height: 420px; margin: 32px 0 32px; }
  .about__inner > .about__content > .eyebrow { order: 1; margin: 0 0 6px; }
  .about__inner > .about__content > .about__headline { order: 1; margin: 0; }
  .about__inner > .about__content > .about__lead { order: 3; margin: 0 0 20px; }
  .about__inner > .about__content > .about__body { order: 3; margin: 0 0 16px; }
  .about__inner > .about__content > .about__body:last-child { margin-bottom: 0; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .loesung__steps { grid-template-columns: 1fr 1fr; }
  .loesung__cards { gap: 16px; }
  .loesung__card {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 28px 24px;
    text-align: left;
  }
  .loesung__card-icon { justify-content: flex-start; }
  .loesung__card-icon svg { width: 64px; height: 64px; }
  .loesung__card-title { font-size: 22px; }
  .cta-conv__inner { flex-direction: column; align-items: flex-start; gap: 32px; }
  .cta-conv__cta-wrap { width: 100%; justify-content: flex-start; }
  .diff__cards { grid-template-columns: 1fr; grid-template-rows: none; row-gap: clamp(20px, 3vw, 32px); }
  .diff__card { display: block; grid-row: auto; }
  .hypothese__inner {
    display: flex;
    flex-direction: column;
    gap: 28px;
    align-items: stretch;
  }
  .hypothese__photo { display: contents; }
  .hypothese__text { display: contents; }
  .hypothese__inner > .hypothese__photo > .photo-card { order: 2; transform: none; max-width: 80%; margin: 0 auto; }
  .hypothese__inner > .hypothese__photo > .hypothese__cta-wrap { order: 4; margin-top: 12px; }
  .hypothese__inner > .hypothese__text > .hypothese__headline { order: 1; margin-bottom: 8px; }
  .hypothese__inner > .hypothese__text > .hypothese__body { order: 3; }
  .hypothese__inner > .hypothese__text > .hypothese__cliffhanger { order: 3; }
  .wahrheit__split { grid-template-columns: 1fr; gap: 32px; }
  .wahrheit__split--image-left .wahrheit__split-image { order: 2; }
  .wahrheit__split-image { aspect-ratio: 4 / 5; min-height: 380px; }
  .wahrheit__tiles { grid-template-columns: 1fr; gap: 14px; }
  /* #56: erlaubt Grid-Items, unter min-content zu schrumpfen -> kein 320px-Overflow */
  .wahrheit__tile, .wahrheit__tile-body, .wahrheit__split-text { min-width: 0; }
  /* #56: aspect-ratio 4/5 + min-height:380px implizierte 304px Mindestbreite
     -> drückte die Bild-Spalte über schmale Viewports (<348px). Breite bestimmt jetzt die Höhe. */
  .wahrheit__split-image { min-height: 0; }
}
@media (max-width: 640px) {
  .section, .hero, .hypothese, .wahrheit, .loesung, .cta-conv, .diff, .about, .faq { padding-left: 22px; padding-right: 22px; }
  .footer { padding-left: 22px; padding-right: 22px; }
  .footer__inner { grid-template-columns: 1fr; gap: 40px; }
  .loesung__steps { grid-template-columns: 1fr; }
  .problem__bullet { padding: 22px 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

/* Subpage chrome */
.subpage {
  background: #fff;
  color: var(--fg-1);
  min-height: 100vh;
}
.subpage__hero {
  background: #0a0a0a;
  color: #fff;
  padding: 72px 32px 56px;
}
.subpage__hero-inner {
  max-width: 920px; margin: 0 auto;
}
.subpage__hero h1 {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: -0.02em;
  margin: 8px 0 0;
  color: #fff;
}
.subpage__back {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-bayside);
  text-decoration: none;
  border-bottom: none;
  display: inline-flex; align-items: center; gap: 8px;
}
.subpage__back:hover { color: #fff; }
.subpage__content {
  max-width: 980px;
  margin: 0 auto;
  padding: 64px 40px 96px;
}
.subpage__content h2 {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 24px;
  margin: 40px 0 12px;
  color: var(--color-filoli-iris);
}
.subpage__content h2:first-child { margin-top: 0; }
.subpage__content p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--fg-2);
  margin: 0 0 1em;
  max-width: 72ch;
}
.subpage__content strong { color: var(--color-filoli-iris); }
.subpage__content h3 {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 18px;
  margin: 28px 0 8px;
  color: var(--color-filoli-iris);
}
.subpage__content ul {
  margin: 0 0 1em;
  padding-left: 1.2em;
  color: var(--fg-2);
  font-size: 16px;
  line-height: 1.65;
}
.subpage__content ul li { margin: 0 0 0.35em; }
.subpage__content a {
  text-decoration: none;
  border-bottom: 1px solid color-mix(in srgb, var(--link) 35%, transparent);
}
.subpage__content a:hover {
  border-bottom-color: var(--link-hover);
}
.subpage__lead {
  font-size: 16px;
  line-height: 1.65;
  color: var(--fg-3);
  margin: 0 0 32px;
}

/* Impressum two-column card */
.imp-wrap {
  max-width: 1440px;
  margin: 0 auto;
  padding: 56px 32px 96px;
}
.imp-card {
  background: #fff;
  border: 1px solid var(--color-pearl-gray);
  border-radius: 16px;
  box-shadow: var(--shadow-2);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}
.imp-card__body {
  padding: 56px 56px 56px 56px;
}
.imp-card__title {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: clamp(40px, 4.4vw, 56px);
  letter-spacing: -0.02em;
  margin: 0 0 40px;
  color: var(--color-filoli-iris);
  line-height: 1.05;
}
.imp-row {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 16px;
  margin: 0 0 32px;
}
.imp-row:last-child { margin-bottom: 0; }
.imp-row__icon {
  width: 24px; height: 24px;
  color: var(--fg-3);
  margin-top: 4px;
  flex: none;
}
.imp-row__icon svg {
  width: 100%; height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.imp-row__head {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 20px;
  margin: 0 0 6px;
  color: var(--color-filoli-iris);
  letter-spacing: -0.01em;
}
.imp-row__body {
  font-size: 15px;
  line-height: 1.6;
  color: var(--fg-2);
}
.imp-row__body a {
  color: var(--link);
  text-decoration: none;
  border-bottom: 1px solid color-mix(in srgb, var(--link) 35%, transparent);
}
.imp-row__body a:hover { color: var(--link-hover); border-bottom-color: var(--link-hover); }
.imp-card__photo {
  background-size: cover;
  background-position: center;
  min-height: 100%;
}
@media (max-width: 880px) {
  .imp-card { grid-template-columns: 1fr; }
  .imp-card__body { padding: 40px 28px; }
  .imp-card__title { font-size: clamp(32px, 8vw, 44px); margin-bottom: 28px; }
  .imp-card__photo { min-height: 320px; order: -1; }
  .imp-wrap { padding: 32px 16px 64px; }
}

/* ============ Referenzen-Strip (Marquee, Issue #30) ============ */
@keyframes nz-marquee-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes nz-marquee-right {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}
@media (prefers-reduced-motion: reduce) {
  .nz-track { animation: none !important; }
}

.refstrip {
  background: #fff;
  padding: clamp(64px, 9vh, 112px) 0;
}
.refstrip--nohead { padding-top: 8px; }
.refstrip__head {
  max-width: 1200px;
  margin: 0 auto 40px;
  padding: 0 32px;
}
.refstrip__head--centered {
  text-align: center;
  margin-bottom: 48px;
}
.refstrip__head--centered .refstrip__sub {
  margin-left: auto;
  margin-right: auto;
}
.refstrip__headline {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: clamp(36px, 4.6vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--color-filoli-iris);
  text-wrap: balance;
  margin: 0;
}
.refstrip__headline em {
  font-style: normal;
  color: var(--color-bayside);
}
.refstrip__pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px;
  border: 1px solid var(--color-bayside);
  color: var(--color-duron-cruising);
  background: rgba(87, 199, 194, 0.08);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}
.refstrip__pill-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--color-duron-cruising); }
.refstrip__sub {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--fg-2);
  max-width: 560px;
  margin: 14px 0 0;
  line-height: 1.55;
  text-wrap: pretty;
}

.refstrip__marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
}
.refstrip__marquee:hover .nz-track { animation-play-state: paused; }
.nz-track {
  display: flex;
  gap: 16px;
  width: max-content;
  padding-left: 16px;
  animation: nz-marquee-left 75s linear infinite;
}
.nz-track--right { animation-name: nz-marquee-right; }

.nz-card {
  background: #fff;
  border: 1px solid var(--color-pearl-gray);
  border-radius: 4px;
  width: 360px;
  height: 296px;
  padding: 24px 24px 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  position: relative;
  transition: border-color 200ms cubic-bezier(0.4,0,0.2,1), box-shadow 200ms cubic-bezier(0.4,0,0.2,1);
  color: var(--color-filoli-iris);
  font-family: var(--font-body);
}
.nz-card:hover {
  border-color: var(--color-bleu-ash);
  box-shadow: var(--shadow-2);
}
.nz-card__hook {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 18px;
  color: var(--color-filoli-iris);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.nz-card__quotemark {
  position: absolute;
  top: 56px;
  left: 14px;
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 80px;
  color: var(--color-bayside);
  opacity: 0.18;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.nz-card__quote {
  position: relative;
  font-size: 14px;
  line-height: 1.55;
  color: var(--fg-2);
  margin: 0;
  font-style: italic;
  font-weight: 400;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-wrap: pretty;
  padding-top: 20px;
  flex: 1;
}
.nz-card__footer {
  border-top: 1px solid var(--color-pearl-gray);
  margin-top: 14px;
  padding-top: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nz-card__photo {
  width: 32px; height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--color-pearl-gray);
  background: var(--color-pearl-gray);
  flex-shrink: 0;
}
.nz-card__meta { min-width: 0; }
.nz-card__name {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-filoli-iris);
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.nz-card__firm {
  font-size: 12px;
  color: var(--color-bleu-ash);
  margin-top: 1px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ───── VSL-Player ───── */
.vsl-player-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--color-filoli-iris);
  border-radius: 4px;
  overflow: hidden;
}

.plyr {
  --plyr-color-main: var(--color-bayside);
  --plyr-video-background: var(--color-filoli-iris);
  --plyr-video-control-color: #fff;
  --plyr-video-control-color-hover: var(--color-bayside);
  --plyr-video-control-background-hover: rgba(255, 255, 255, 0.08);
  --plyr-range-fill-background: var(--color-bayside);
  --plyr-captions-background: rgba(0, 0, 0, 0.7);
  --plyr-captions-text-color: #fff;
  --plyr-font-family: var(--font-body);
  --plyr-font-size-captions-base: 14px;
  --plyr-font-size-captions-small: 14px;
  --plyr-font-size-captions-medium: 16px;
  --plyr-font-size-captions-large: 18px;
  height: 100%;
}

.plyr__captions {
  font-size: 14px;
  line-height: 1.35;
  bottom: 8%;
  text-align: center;
  font-variant-numeric: normal; /* Plyr setzt tabular-nums global — bricht 100.000 zu "100 . 000" */
}

.plyr__caption {
  display: inline-block;
  max-width: 92%;
  padding: 4px 10px;
  line-height: 1.35;
  background: rgba(0, 0, 0, 0.72);
  white-space: nowrap; /* Single-Line erzwingen — Overflow wäre sichtbar statt unsichtbarem Wrap */
}

@media (min-width: 768px) {
  .plyr__captions { font-size: 16px; bottom: 10%; }
}

/* Fullscreen: deutlich größere Captions, knapp über Player-Controls.
   Plyr setzt selbst `transform: translateY(-40px)` zusätzlich auf .plyr__captions —
   das überschreiben wir hier, sonst landet der Text in der Mitte. */
.plyr:fullscreen .plyr__captions,
.plyr:-webkit-full-screen .plyr__captions,
.plyr--fullscreen-fallback .plyr__captions {
  font-size: clamp(28px, 2.6vw, 48px) !important;
  bottom: 8vh !important;
  line-height: 1.3;
  transform: none !important;
}
.plyr:fullscreen .plyr__caption,
.plyr:-webkit-full-screen .plyr__caption,
.plyr--fullscreen-fallback .plyr__caption {
  padding: 8px 18px;
}

.plyr--video,
.plyr__video-wrapper,
.plyr video {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

/* Fullscreen: Letterbox/Pillarbox statt Crop (gerade auf 21:9-Screens wichtig).
   Plyr nutzt natives :fullscreen, kein "--fullscreen-active"-Class. */
.plyr:fullscreen video,
.plyr:-webkit-full-screen video,
.plyr--fullscreen-fallback video {
  object-fit: contain;
  background: #000;
}
.plyr:fullscreen .plyr__video-wrapper,
.plyr:-webkit-full-screen .plyr__video-wrapper,
.plyr--fullscreen-fallback .plyr__video-wrapper {
  object-fit: contain;
  background: #000;
}

/* Settings-Menü: Back-Button im Quality-Submenu ausblenden (keine Home-Page) */
.vsl-player-wrap .plyr__menu__container .plyr__control--back {
  display: none;
}

/* Unmute-Hint — Wistia-Style: pulsierender Speaker oben rechts, Bubble bei Hover */
.vsl-unmute-hint[hidden] { display: none !important; }

.vsl-unmute-hint {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  margin: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  z-index: 5;
  font-family: var(--font-body);
  color: #fff;
}

.vsl-unmute-hint__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.78);
  color: #fff;
  flex-shrink: 0;
  animation: vsl-icon-pulse 1.5s ease-in-out infinite;
  transition: background 0.15s ease;
}

.vsl-unmute-hint:hover .vsl-unmute-hint__icon { background: #000; }

/* Sound-Wellen im Speaker animieren wie aktive Schallwellen */
.vsl-unmute-hint__icon svg path:nth-of-type(2) {
  animation: vsl-wave 1.5s ease-in-out infinite;
  transform-origin: 14px 12px;
}
.vsl-unmute-hint__icon svg path:nth-of-type(3) {
  animation: vsl-wave 1.5s ease-in-out infinite;
  animation-delay: 0.25s;
  transform-origin: 14px 12px;
}

.vsl-unmute-hint__bubble {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  background: rgba(0, 0, 0, 0.78);
  color: #fff;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(6px);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  order: 1;
}

.vsl-unmute-hint__icon { order: 2; }

.vsl-player-wrap:hover .vsl-unmute-hint__bubble,
.vsl-unmute-hint:focus-visible .vsl-unmute-hint__bubble {
  opacity: 1;
  transform: translateX(0);
}

@keyframes vsl-icon-pulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.08); }
}
@keyframes vsl-wave {
  0%, 100% { opacity: 0.35; }
  50%      { opacity: 1; }
}

@media (max-width: 600px) {
  .vsl-unmute-hint { top: 10px; right: 10px; }
  .vsl-unmute-hint__icon { width: 38px; height: 38px; }
  .vsl-unmute-hint__bubble { font-size: 0.75rem; padding: 6px 10px; }
}

/* Plyr-Controls + Big-Play-Button: nur sichtbar wenn Player gehovered (Wistia-Style) */
.vsl-player-wrap .plyr__controls,
.vsl-player-wrap .plyr__control--overlaid {
  transition: opacity 0.15s ease;
}
.vsl-player-wrap:not(:hover) .plyr__controls,
.vsl-player-wrap:not(:hover) .plyr--paused:not(.plyr--stopped) .plyr__control--overlaid {
  opacity: 0 !important;
  pointer-events: none !important;
}

/* ============================================================
   PRESSESPIEGEL · Pinboard (S2b) — Issue #53
   Gepinnte Presse-Ausschnitte realer DACH-Mittelstand-Hacks auf
   dunklem Board, Fasana als Feature-Clip. Vorlage: claude.ai/design,
   nachgebaut mit DS-Tokens (Filoli-Iris #415C6E = Text,
   Duron-Cruising #007994 = Akzent, Apple-Valley #E4D245 = Tape).
   Desktop/Tablet: feste 1440er-Bühne, per JS uniform skaliert.
   Mobile (<=760px): Spalten-Reflow, flach gelegt.
   ============================================================ */
.presse {
  /* Reines #000 wie .problem oben und der Gradient-Start von .hypothese unten
     -> nahtloser Schwarzlauf, kein helleres Band (body ist #0a0a0a). */
  background: #000;
  padding: clamp(1.5rem, 4vw, 3.5rem) 1rem clamp(1.5rem, 3vw, 2.5rem);
}
.presse__board {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.pb-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1440 / 1128;  /* reserviert Höhe -> kein CLS */
  overflow: hidden;
  background: transparent;    /* Board ohne eigenes Schwarz -> Seiten-BG scheint durch */
}
.pb-stage {
  position: absolute;
  top: 0;
  left: 0;
  width: 1440px;
  height: 1128px;
  transform-origin: top left;   /* JS setzt scale(); siehe Inline-Script */
}

/* --- Einzelner Ausschnitt --- */
.clip {
  position: absolute;
  box-sizing: border-box;
  padding: 16px 18px;
  color: var(--color-filoli-iris);
  background: var(--clip-bg, #fdfcf8);
  border-radius: 1px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35), 0 2px 6px rgba(0, 0, 0, 0.2);
  transform: rotate(var(--rot, 0deg));
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.clip--gray  { --clip-bg: #e3e1d8; }
.clip--paper { --clip-bg: #efe8db; }
.clip--cream { --clip-bg: #f6f1e5; }
.clip--white { --clip-bg: #fdfcf8; }

.clip__masthead {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  padding-bottom: 6px;
  margin-bottom: 8px;
  border-bottom: 1px solid rgba(65, 92, 110, 0.25);
}
.clip__outlet {
  font-family: var(--font-headline);
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
}
a.clip__outlet { color: inherit; text-decoration: none; }
a.clip__outlet:hover { text-decoration: underline; text-underline-offset: 2px; }
.clip__date {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.4px;
  opacity: 0.7;
  white-space: nowrap;
}
.clip__kicker {
  font-family: var(--font-helvetica);
  font-weight: 700;
  font-size: 9px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--color-duron-cruising);
  margin-bottom: 5px;
}
.clip__hl {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.18;
  letter-spacing: -0.18px;
  margin: 0;
}
.clip--sm .clip__hl {
  font-size: 14px;
  letter-spacing: -0.14px;
}
.clip__deck {
  font-style: italic;
  font-size: 12.5px;
  line-height: 1.45;
  margin: 8px 0 0;
}
/* Teaser: erster Satz des Artikels, mit "…" als Above-the-fold-Hook.
   Auf 2 Zeilen begrenzt -> kompaktere Clips, sauberere Verteilung. */
.clip__teaser {
  font-family: var(--font-body);
  font-size: 11.5px;
  line-height: 1.45;
  margin: 7px 0 0;
  color: rgba(65, 92, 110, 0.82);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.clip--sm .clip__teaser { font-size: 10.5px; }
.clip__body {
  font-family: var(--font-body);
  font-size: 11px;
  line-height: 1.5;
  margin-top: 10px;
}
.clip__body.cols-2 { column-count: 2; column-gap: 16px; }
.clip__footer {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;          /* mono-tag bricht um statt abzuschneiden */
  gap: 4px 10px;
  margin-top: 12px;
  padding-top: 8px;
  border-top: 1px solid rgba(65, 92, 110, 0.25);
}
.clip__byline {
  font-family: var(--font-headline);
  font-style: italic;
  font-size: 11px;
}
.clip__byline span { margin: 0 5px; opacity: 0.5; }
.mono-tag {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.4px;
  color: var(--color-duron-cruising);
  text-align: right;
}

/* --- Feature-Clip (Fasana) --- */
.clip--feature { padding: 22px 26px; }
.clip--feature .clip__nameplate {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  border-bottom: 2px solid var(--color-filoli-iris);
  padding-bottom: 8px;
  margin-bottom: 12px;
}
.clip--feature .clip__nameplate .clip__outlet { font-size: 22px; }
.clip--feature .clip__nameplate .clip__date {
  white-space: nowrap;
}
.clip__lead { display: flex; gap: 16px; align-items: flex-start; }
.clip__lead-text { flex: 1 1 auto; }
.clip--feature .clip__hl {
  font-size: 36px;
  line-height: 1.08;
  letter-spacing: -0.4px;
  margin-top: 4px;
}
.clip__figure {
  flex: 0 0 38%;
  margin: 4px 0 0;
  aspect-ratio: 4 / 3;
  background: #10161b;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.clip__figure img { width: 100%; height: 100%; object-fit: cover; display: block; }
.clip__figure figcaption {
  position: absolute;
  left: 8px;
  bottom: 6px;
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

/* --- Hover: nach vorne holen + dezenter Zoom (plastisch, kein Wackeln) --- */
.clip:hover {
  transform: rotate(var(--rot, 0deg)) scale(1.04);
  z-index: 40 !important;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5), 0 4px 10px rgba(0, 0, 0, 0.3);
}
@media (prefers-reduced-motion: reduce) {
  .clip { transition: none; }
  .clip:hover { transform: rotate(var(--rot, 0deg)); }
}

/* --- Mobile: Reflow zu Spalte --- */
@media (max-width: 760px) {
  .pb-wrap {
    aspect-ratio: auto;
    height: auto;
    overflow: visible;
    padding: 16px 12px;
  }
  .pb-stage {
    position: static;
    transform: none !important;
    width: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
  .clip {
    position: static !important;
    left: auto !important;
    top: auto !important;
    width: auto !important;
    z-index: auto !important;
    --rot: 0deg;
  }
  .clip--feature { order: -1; }
  .clip--feature .clip__hl { font-size: 26px; }
  .clip__lead { flex-direction: column; }
  .clip__figure { flex-basis: auto; width: 100%; }
  .clip__body.cols-2 { column-count: 1; }
}
