/* Cover V2 — redaktionelle Komposition.
   Gleicher Inhalt wie Cover V1. Zahlen und Bild tragen die Struktur,
   der Beleg bleibt sichtbarer Fliesstext. Schriftgrade bewusst zurückhaltend. */

:root {
  --creme: #f8f1e8;
  --creme-deep: #efe3d2;
  --paper: #fffdf9;
  --ink: #0e3a45;
  --ink-soft: #49656e;
  --ink-faint: #81969d;
  --teal: #17adce;
  --teal-deep: #08758d;
  --peach: #ffd4b3;
  --peach-soft: #ffe5d1;
  --red: #b04a3a;
  --rule: #d9cbb7;
  --font-sans: "Inter", ui-sans-serif, system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, Menlo, monospace;
  --shell: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--creme);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
.v2-shell {
  width: 100%;
  max-width: var(--shell);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.skip-link {
  position: absolute;
  z-index: 100;
  left: 16px;
  top: -60px;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--paper);
  font-weight: 700;
}
.skip-link:focus { top: 12px; }
a:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 4px;
}

/* Kopf */
.v2-header {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 34px;
  align-items: center;
  padding-top: 22px;
}
.v2-brand { display: flex; }
.v2-brand img { width: auto; height: 24px; }
.v2-nav {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.v2-nav a {
  padding-block: 4px;
  color: var(--ink-soft);
  text-decoration: none;
  border-bottom: 2px solid transparent;
}
.v2-nav a:hover,
.v2-nav a[aria-current="page"] {
  color: var(--ink);
  border-bottom-color: var(--teal);
}
.v2-start {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 2px solid var(--teal);
}

/* Hero — beide Spalten oben ausgerichtet, damit kein Leerraum über dem Text steht */
.v2-hero {
  position: relative;
  padding: clamp(30px, 3.4vw, 46px) 0 clamp(34px, 4.2vw, 56px);
  overflow: hidden;
}
.hero-orbit {
  position: absolute;
  top: -250px;
  right: -210px;
  width: min(700px, 62vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, var(--peach) 0 38%, var(--peach-soft) 58%, transparent 72%);
  opacity: .94;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0 22px;
  align-items: start;
}
.hero-copy {
  grid-column: 1 / 8;
  position: relative;
  z-index: 2;
}

/* Lockup wie in V1: Mono, Nummer als Plakette, Punkte als Trenner */
.v2-lockup {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--teal-deep);
}
.v2-lockup b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  height: 24px;
  padding: 0 7px;
  border-radius: 4px;
  background: var(--teal-deep);
  color: var(--creme);
  letter-spacing: .08em;
}
.lockup-dot { color: var(--ink-faint); letter-spacing: 0; }
.lockup-meta { color: var(--ink-soft); font-weight: 500; }

.hero-copy h1 {
  max-width: 13ch;
  margin: 20px 0 0;
  font-size: clamp(42px, 5.4vw, 74px);
  line-height: .98;
  letter-spacing: -.042em;
  font-weight: 800;
  text-wrap: pretty;
  hyphens: none;
}

/* Desktop: eine Byline. Mobil stapelt Name und Qualifikation. */
.hero-stamp {
  margin: 16px 0 0;
  padding-top: 10px;
  border-top: 1px dashed var(--rule);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -.01em;
  color: var(--ink);
}
.stamp-meta {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .02em;
  color: var(--ink-faint);
}
.stamp-meta::before {
  content: "· ";
}

.hero-motif {
  grid-column: 9 / 13;
  grid-row: 1;
  position: relative;
  z-index: 1;
  justify-self: end;
  width: 100%;
  max-width: 316px;
  /* Nach oben gezogen, damit Motiv und Textblock ungefähr gleich tief enden */
  margin: -34px -30px 0 0;
}
.hero-motif::after {
  content: "";
  position: absolute;
  inset: 8% 4% 5% 10%;
  border: 1px solid rgba(14, 58, 69, .15);
  border-radius: 50%;
  pointer-events: none;
}
.hero-motif img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  transform: scale(1.06);
  mix-blend-mode: multiply;
}

/* Der Beleg: dieselben Worte, in drei lesbare Spalten gesetzt */
.hero-proof {
  grid-column: 1 / 13;
  margin-top: clamp(24px, 2.6vw, 36px);
  border-top: 2px solid var(--ink);
}
.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.proof-line {
  padding: 18px clamp(20px, 2.4vw, 32px) 20px 0;
}
.proof-line + .proof-line {
  padding-left: clamp(20px, 2.4vw, 32px);
  border-left: 1px solid var(--rule);
}
.proof-index {
  display: block;
  margin-bottom: 9px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--teal);
}
.proof-line p {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: #2c4d57;
  text-wrap: pretty;
  hyphens: none;
}
.proof-line strong { color: var(--ink); font-weight: 700; }

/* Zwei bewusst unterschiedliche Zahlenszenen */
.claim-scene { position: relative; }
.claim-grid {
  display: grid;
  grid-template-columns: minmax(250px, .78fr) minmax(0, 1.22fr);
  align-items: stretch;
  min-height: 460px;
  padding-top: clamp(48px, 5.6vw, 76px);
  padding-bottom: clamp(48px, 5.6vw, 76px);
}
.claim-number-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: clamp(28px, 4vw, 62px);
}
.claim-eyebrow {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.claim-number {
  display: block;
  margin-top: 10px;
  font-family: var(--font-mono);
  font-size: clamp(72px, 8vw, 116px);
  font-weight: 700;
  line-height: .84;
  letter-spacing: -.07em;
  white-space: nowrap;
}
.claim-number.is-long {
  font-size: clamp(48px, 5.4vw, 78px);
  letter-spacing: -.05em;
}
.is-zero .claim-number.is-long {
  font-size: clamp(56px, 6.4vw, 92px);
}
.claim-number-label {
  display: block;
  max-width: 25ch;
  margin-top: 20px;
  font-family: var(--font-mono);
  font-size: 11px;
  line-height: 1.5;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-wrap: balance;
}
.claim-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: clamp(28px, 4.4vw, 68px);
  border-left: 1px solid currentColor;
}
.claim-copy h2 {
  max-width: 15ch;
  margin: 0;
  font-size: clamp(28px, 3.1vw, 42px);
  line-height: 1.04;
  letter-spacing: -.038em;
  font-weight: 800;
  text-wrap: pretty;
  hyphens: none;
}
.claim-lead {
  max-width: 40ch;
  margin: 22px 0 0;
  font-size: clamp(17px, 1.4vw, 19.5px);
  line-height: 1.45;
  font-weight: 600;
  text-wrap: pretty;
  hyphens: none;
}
.is-rule { background: var(--ink); color: var(--creme); }
.is-rule .claim-eyebrow { color: #5bdbf4; }
.is-rule .claim-number { color: #56d3ec; }
.is-rule .claim-copy { border-color: rgba(248, 241, 232, .24); }
.is-zero { background: var(--peach); color: var(--ink); }
.is-zero .claim-grid { grid-template-columns: minmax(0, 1.22fr) minmax(230px, .78fr); }
.is-zero .claim-number-wrap {
  grid-column: 2;
  grid-row: 1;
  padding: 0 0 0 clamp(30px, 4.4vw, 68px);
  border-left: 1px solid rgba(14, 58, 69, .28);
}
.is-zero .claim-copy {
  grid-column: 1;
  grid-row: 1;
  padding: 0 clamp(30px, 4.4vw, 68px) 0 0;
  border-left: 0;
}
.is-zero .claim-number {
  font-size: clamp(96px, 11vw, 158px);
  color: var(--paper);
  text-shadow: 1px 0 var(--ink), -1px 0 var(--ink), 0 1px var(--ink), 0 -1px var(--ink);
}

/* V1-Leseteil direkt unter den Farbszenen */
.read-beats {
  background: var(--creme);
  border-top: 1px solid var(--rule);
}
.read-beat {
  padding: clamp(40px, 5.5vw, 76px) 0;
}
.read-beat + .read-beat { border-top: 1px solid var(--rule); }
.read-grid {
  display: grid;
  grid-template-columns: minmax(0, 240px) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 56px);
  align-items: start;
}
.read-zahl {
  font-family: var(--font-mono);
  font-size: clamp(40px, 4.6vw, 62px);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.045em;
  color: var(--teal-deep);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.read-zahl-label {
  margin: 12px 0 0;
  max-width: 22ch;
  font-size: 13px;
  line-height: 1.45;
  color: var(--ink-soft);
}
.read-beat h2 {
  margin: 0 0 14px;
  font-size: clamp(24px, 2.7vw, 34px);
  line-height: 1.14;
  letter-spacing: -0.025em;
  font-weight: 700;
}
.read-beat h2 + p {
  margin: 0;
  max-width: 60ch;
  color: #2c4d57;
  text-wrap: pretty;
  hyphens: none;
}

/* Abschnittskopf: Kicker links, Prüfangabe rechts, Titel darunter */
.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 4px clamp(20px, 3vw, 40px);
  align-items: baseline;
}
.v2-kicker {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--teal-deep);
}
.head-meta {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.section-head h2 {
  grid-column: 1 / -1;
  max-width: 20ch;
  margin: 11px 0 0;
  font-size: clamp(26px, 2.9vw, 40px);
  line-height: 1.02;
  letter-spacing: -.038em;
  font-weight: 800;
  text-wrap: balance;
}

/* Zahl, Quelle und Offenlegung als ein Beleg — Hauptzahl führt */
.proof-board-wrap {
  padding: clamp(54px, 6.6vw, 88px) 0;
  background: var(--paper);
}
.proof-board {
  margin-top: clamp(26px, 3.2vw, 42px);
  border-top: 2px solid var(--ink);
}
.fact {
  display: grid;
  grid-template-columns: minmax(0, 38%) minmax(0, 62%);
  gap: 6px clamp(24px, 3.4vw, 52px);
  align-items: baseline;
  padding: clamp(20px, 2.4vw, 30px) 0;
  border-bottom: 1px solid var(--rule);
}
.fact strong {
  font-family: var(--font-mono);
  font-size: clamp(22px, 2.1vw, 29px);
  line-height: 1;
  letter-spacing: -.04em;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.fact.is-primary strong { font-size: clamp(30px, 3.4vw, 48px); }
.fact-body { max-width: 48ch; }
.fact-body p {
  margin: 0;
  font-size: clamp(15.5px, 1.2vw, 17px);
  line-height: 1.4;
  font-weight: 600;
  text-wrap: pretty;
  hyphens: none;
}
.fact.is-primary .fact-body p { font-size: clamp(16.5px, 1.35vw, 19px); }
.fact-body span {
  display: block;
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .04em;
  color: var(--ink-faint);
}
.proof-disclosure {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 6px clamp(14px, 2vw, 24px);
  align-items: baseline;
  padding: 12px 0 4px;
  border-bottom: 1px solid var(--rule);
}
.proof-disclosure span {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--ink-faint);
}
.proof-disclosure p {
  margin: 0;
  max-width: 62ch;
  font-size: 13px;
  line-height: 1.45;
  color: var(--ink-soft);
}

/* Bildband — der Atemwechsel, wie in V1 */
.photo-band {
  position: relative;
  margin: 0;
  height: clamp(230px, 30vw, 380px);
  overflow: hidden;
}
.photo-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
}
.photo-band figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 44px var(--gutter) 16px;
  background: linear-gradient(to top, rgba(14, 58, 69, .72), rgba(14, 58, 69, 0));
  color: rgba(255, 255, 255, .92);
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .1em;
  line-height: 1.45;
  text-transform: uppercase;
  text-wrap: balance;
}

/* Einmal in Franken — Kontoauszug wie in V1 */
.ledger-section { padding: clamp(52px, 6.4vw, 84px) 0; }
.ledger-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 22px;
}
.ledger-head h2 {
  margin: 0;
  font-size: clamp(23px, 2.3vw, 31px);
  letter-spacing: -.03em;
  font-weight: 800;
}
.ledger-head .franken-meta {
  margin: 0;
  max-width: 46ch;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .08em;
  line-height: 1.45;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-wrap: pretty;
}
.ledger {
  max-width: 760px;
  padding: 6px clamp(18px, 2.4vw, 26px);
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 3px;
}
.ledger-row {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 15px 0;
  border-bottom: 1px solid var(--rule);
}
.ledger-row:last-child { border-bottom: 0; }
.ledger-label { font-weight: 600; }
.ledger-detail {
  display: block;
  margin-top: 2px;
  font-size: 13px;
  font-weight: 400;
  color: var(--ink-faint);
}
.ledger-fill {
  flex: 1;
  align-self: center;
  height: 1px;
  background-image: linear-gradient(to right, var(--rule) 40%, transparent 0%);
  background-size: 6px 1px;
  background-repeat: repeat-x;
}
.ledger-betrag {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 600;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.ledger-row.is-abzug .ledger-betrag { color: var(--red); }
.ledger-row.is-total {
  margin-top: 2px;
  padding-top: 19px;
  border-top: 2px solid var(--ink);
}
.ledger-row.is-total .ledger-label { font-size: 18px; font-weight: 700; }
.ledger-row.is-total .ledger-betrag {
  font-size: clamp(27px, 3vw, 40px);
  font-weight: 700;
  letter-spacing: -.035em;
  color: var(--teal-deep);
}
.ledger-fazit {
  margin: 16px 0 0;
  max-width: 56ch;
  color: var(--ink-soft);
  font-size: 15px;
  text-wrap: pretty;
  hyphens: none;
}

/* Kurz gesagt — ruhige Liste wie in V1 */
.verdicts {
  padding: clamp(38px, 4.6vw, 62px) 0;
  border-top: 1px solid var(--rule);
}
.verdicts ol {
  display: grid;
  gap: 14px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: verdict;
}
.verdicts li {
  counter-increment: verdict;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 14px;
  align-items: baseline;
  max-width: 62ch;
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.4;
  letter-spacing: -.015em;
  font-weight: 600;
  text-wrap: pretty;
  hyphens: none;
}
.verdicts li::before {
  content: counter(verdict, decimal-leading-zero);
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--teal);
}

.v2-related { padding: 0 0 clamp(28px, 3.6vw, 44px); }
.v2-related .v2-kicker { margin-bottom: 14px; }
.v2-related a {
  display: block;
  max-width: 42ch;
  margin-top: 10px;
  font-size: clamp(16px, 1.35vw, 18px);
  font-weight: 650;
  line-height: 1.35;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.v2-related a:hover { border-bottom-color: var(--teal); }

/* Schluss — zentriert wie in V1 */
.v2-conclusion {
  padding: clamp(42px, 5.4vw, 72px) 0;
  background: var(--ink);
  color: var(--creme);
  text-align: center;
}
.v2-conclusion p {
  margin: 0 auto;
  max-width: 18ch;
  font-size: clamp(26px, 3.4vw, 42px);
  line-height: 1.06;
  letter-spacing: -.032em;
  font-weight: 800;
  text-wrap: balance;
  hyphens: none;
}
.v2-conclusion a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 100%;
  margin-top: 24px;
  padding: 14px 24px;
  border-radius: 999px;
  background: var(--teal);
  color: #fff;
  font-size: 14.5px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: transform .16s ease, background .16s ease;
}
.v2-conclusion a:hover { transform: translateY(-2px); background: #1fbfe0; }
.v2-conclusion span {
  display: block;
  margin-top: 20px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(248, 241, 232, .55);
}

.v2-footer {
  padding: 36px 0 52px;
  background: #092931;
  color: rgba(248, 241, 232, .7);
  font-size: 13px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr .7fr;
  gap: 36px;
}
.v2-footer img { width: auto; height: 20px; }
.v2-footer p { margin: 10px 0 0; font-weight: 600; }
.v2-footer nav { display: grid; gap: 6px; align-content: start; }
.v2-footer a { color: inherit; text-decoration: none; font-weight: 600; }
.v2-footer a:hover { color: #fff; }

@media (max-width: 980px) {
  .v2-nav { display: none; }
  .v2-header { grid-template-columns: 1fr auto; }
  .hero-copy { grid-column: 1 / 8; }
  .hero-motif { grid-column: 8 / 13; max-width: 300px; margin-right: -24px; opacity: .9; }
  .claim-grid { min-height: 420px; }
  .proof-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .proof-line:nth-child(3) {
    grid-column: 1 / -1;
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid var(--rule);
  }
  .fact { grid-template-columns: minmax(0, 44%) minmax(0, 56%); }
}

@media (max-width: 700px) {
  body { font-size: 16px; }
  .v2-header { padding-top: 16px; padding-bottom: 4px; }
  .v2-brand img { height: 21px; }
  .v2-start { font-size: 10px; }
  /* overflow visible: sonst schneidet die Hero-Kante den Glow hart
     unter dem Logo ab — genau der Streifen im Header. */
  .v2-hero {
    padding-top: 24px;
    padding-bottom: 30px;
    overflow: visible;
  }
  .hero-orbit {
    top: -168px;
    right: 18px;
    width: 260px;
    opacity: .9;
    background: radial-gradient(
      circle closest-side,
      var(--peach) 0 36%,
      var(--peach-soft) 54%,
      transparent 100%
    );
  }
  .hero-grid { display: flex; flex-direction: column; }
  .hero-copy { position: relative; z-index: 3; }
  /* Lockup muss auf eine Zeile passen, sonst bricht der Kopf um */
  .v2-lockup { gap: 7px; font-size: 9.5px; letter-spacing: .1em; }
  .v2-lockup b { min-width: 24px; height: 20px; padding: 0 5px; }
  .hero-copy h1 {
    max-width: none;
    margin-top: 16px;
    font-size: clamp(34px, 9vw, 44px);
    line-height: 1.02;
    letter-spacing: -.036em;
  }
  .hero-copy h1.is-long-title {
    font-size: clamp(30px, 8vw, 36px);
    letter-spacing: -.042em;
  }
  .hero-stamp {
    position: relative;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
    margin-top: 12px;
    padding-top: 8px;
    font-size: 12px;
  }
  .stamp-meta { font-size: 9.5px; }
  .stamp-meta::before { content: none; }
  /* Motiv-Regel (Handy): gleiches Luftmass über und unter dem Bild.
     Oben = Stempel, unten = Beleg-Linie. Kein Unterschieben unter den Stempel.
     Jedes Hero-Motiv bekommt dasselbe — keine per-Bild-Ausnahme. */
  .hero-motif {
    --motif-air: 22px;
    position: relative;
    align-self: stretch;
    width: auto;
    max-width: none;
    margin: var(--motif-air) calc(var(--gutter) * -1);
    opacity: 1;
  }
  .hero-motif::after { display: none; }
  .hero-motif::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(
      to bottom,
      var(--creme) 0%,
      rgba(248, 241, 232, 0) 18%,
      rgba(248, 241, 232, 0) 82%,
      var(--creme) 100%
    );
  }
  .hero-motif img {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 0;
    object-fit: cover;
    object-position: center center;
    transform: none;
    mix-blend-mode: multiply;
    -webkit-mask-image: linear-gradient(
      to bottom,
      transparent 0%,
      #000 16%,
      #000 84%,
      transparent 100%
    );
    mask-image: linear-gradient(
      to bottom,
      transparent 0%,
      #000 16%,
      #000 84%,
      transparent 100%
    );
  }
  .hero-proof { margin-top: 0; }
  .proof-strip { grid-template-columns: minmax(0, 1fr); }
  .proof-line { padding: 15px 0; }
  .proof-line + .proof-line {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid var(--rule);
  }
  .proof-line p { font-size: 15.5px; }

  .claim-grid,
  .is-zero .claim-grid {
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding-top: 46px;
    padding-bottom: 50px;
  }
  .claim-number-wrap,
  .is-zero .claim-number-wrap {
    order: 1;
    padding: 0 0 26px;
    border: 0;
  }
  .claim-copy,
  .is-zero .claim-copy {
    order: 2;
    padding: 26px 0 0;
    border: 0;
    border-top: 1px solid currentColor;
  }
  .claim-number { font-size: clamp(76px, 25vw, 104px); }
  .is-zero .claim-number { font-size: clamp(104px, 34vw, 142px); }
  .claim-number.is-long { font-size: clamp(54px, 15.5vw, 70px); }
  .is-zero .claim-number.is-long { font-size: clamp(58px, 16.5vw, 76px); }
  .claim-number-label { max-width: none; margin-top: 12px; }
  .claim-copy h2 { max-width: 13ch; font-size: 31px; }
  .claim-lead { margin-top: 18px; font-size: 17px; }
  .read-grid { grid-template-columns: minmax(0, 1fr); gap: 14px; }
  .read-zahl { font-size: 46px; }
  .read-beat .read-zahl-label { max-width: none; margin-bottom: 6px; }

  .section-head {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 4px 12px;
  }
  .head-meta {
    margin-left: auto;
    font-size: 9.5px;
    letter-spacing: .05em;
  }
  .section-head h2 {
    flex: 1 0 100%;
    max-width: 16ch;
    margin-top: 6px;
    font-size: 30px;
  }
  .proof-board-wrap { padding-block: 50px; }
  .fact {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
    padding: 20px 0;
  }
  .fact strong { font-size: 28px; }
  .fact.is-primary strong { font-size: 36px; }
  .proof-disclosure { grid-template-columns: minmax(0, 1fr); padding: 12px 0 4px; }

  .ledger { padding: 4px 16px; }
  .ledger-head .franken-meta { letter-spacing: .045em; }
  .ledger-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 4px 12px;
  }
  .ledger-fill { display: none; }
  .ledger-betrag { margin-left: 0; }
  .ledger-row.is-total {
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
  }
  .ledger-row.is-total .ledger-betrag {
    justify-self: end;
    font-size: 28px;
  }

  .verdicts li {
    grid-template-columns: 26px minmax(0, 1fr);
    gap: 10px;
    font-size: 17px;
  }
  .v2-conclusion p {
    max-width: 22ch;
    font-size: clamp(26px, 7.2vw, 32px);
  }
  .v2-conclusion span { color: rgba(248, 241, 232, .62); }
  .photo-band figcaption {
    letter-spacing: .07em;
    padding: 36px var(--gutter) 14px;
  }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .v2-footer nav { gap: 10px; }
}

@media (max-width: 360px) {
  .v2-lockup { font-size: 8.75px; letter-spacing: .07em; gap: 6px; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition-duration: .01ms !important; }
}
