/*
 * Die Entscheidungsvorlage — magnet-specific layer.
 * site.css supplies chrome (.nav/.footer/.skip-link/.language-toggle),
 * tokens, .site-shell, .button/.button--light/.button--ghost (atelier
 * slide-fill pass, border-radius: 0) and .kicker (Verdana/bronze
 * !important pass). This file holds only what site.css does not already
 * provide for this page: the dark photographic hero, the light/dark
 * section palette, the numbered index, the sourced stat ledgers, the
 * client proof block, the dark CTA button variant and the full gate
 * (email-gated PDF) component. Shared by the DE and EN landing pages.
 */

* { margin: 0; padding: 0; }

body.die-entscheidungsvorlage-page {
  --label: Verdana, Geneva, sans-serif;
  font-weight: 300;
  color: var(--ink-soft);
  background: var(--bone);
}

/* Focus ring: site.css's default :focus-visible is already bronze, which
   is right for this page's light sections/gate. Only the dark hero and
   dark sections need the source's mint accent restored. */
.magnet-hero :focus-visible,
.section--dark :focus-visible {
  outline-color: #abffc0;
}

/* Kicker contrast: site.css's global .kicker pass (!important) is tuned
   for dark surfaces (#b59262) and only lists specific per-page selectors
   for the darker #755a36 tone used on light surfaces. This page's light
   sections aren't on that list, so it needs matching specificity here. */
.section--light .kicker.kicker.kicker {
  color: #755a36 !important;
}

/* ---------- Hero (site photography) ---------- */

.magnet-hero {
  background: #06110c;
  color: var(--bone);
  padding: clamp(110px, 14vw, 200px) 0 clamp(90px, 11vw, 160px);
  position: relative;
  overflow: hidden;
}

.magnet-hero__photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("../images/empty-boardroom.webp");
  background-position: center;
  background-size: cover;
  filter: saturate(0.64) contrast(1.05) brightness(0.72);
  transform: scale(1.02);
}

.magnet-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(6, 17, 12, 0.9) 0%, rgba(6, 17, 12, 0.54) 52%, rgba(6, 17, 12, 0.86) 100%),
    linear-gradient(180deg, rgba(6, 17, 12, 0.3) 0%, rgba(6, 17, 12, 0.82) 100%);
  pointer-events: none;
}

.magnet-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image:
    linear-gradient(rgba(244, 240, 232, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 240, 232, 0.08) 1px, transparent 1px);
  background-size: 96px 96px;
  opacity: 0.08;
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 1), transparent 70%);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 1), transparent 70%);
  pointer-events: none;
}

.magnet-hero .site-shell {
  position: relative;
  z-index: 3;
}

.magnet-hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(3.35rem, 5.6vw, 6.25rem);
  line-height: 0.98;
  letter-spacing: -0.012em;
  max-width: 18ch;
  margin-top: 26px;
}

.magnet-hero__lead {
  margin-top: 34px;
  max-width: 62ch;
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.65;
  color: rgba(244, 240, 232, 0.82);
}

.magnet-hero__actions {
  margin-top: 44px;
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 40px);
  flex-wrap: wrap;
}

.magnet-hero__meta {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 30px;
  font-family: var(--label);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(244, 240, 232, 0.56);
}

/* ---------- Sections: light/dark palette ---------- */

.section--light {
  background: var(--bone);
  color: var(--ink-soft);
}

.section--dark {
  background:
    radial-gradient(circle at 82% 12%, rgba(154, 122, 79, 0.08), transparent 28rem),
    linear-gradient(180deg, var(--builderz-green), var(--forest-atelier));
  color: var(--bone);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(260px, 0.45fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: end;
  margin-bottom: clamp(40px, 5vw, 72px);
}

.section-head h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.35rem, 4.2vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin-top: 18px;
  max-width: 16ch;
}

.section-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(23, 23, 20, 0.72);
  max-width: 44ch;
}

.section--dark .section-desc {
  color: var(--muted);
}

.section-body {
  max-width: 68ch;
  font-size: 1.05rem;
  line-height: 1.7;
}

.section-body + .section-body {
  margin-top: 22px;
}

.section--dark .section-body {
  color: rgba(244, 240, 232, 0.88);
}

/* ---------- Der Raum (three rooms this paper survives) ---------- */

.rooms {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 64px);
  margin-top: clamp(48px, 6vw, 80px);
}

.rooms article {
  border-top: 1px solid rgba(26, 26, 26, 0.2);
  padding-top: 22px;
}

.rooms h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1.15;
}

.rooms p {
  margin-top: 12px;
  font-size: 0.98rem;
  line-height: 1.65;
  color: rgba(23, 23, 20, 0.72);
}

/* ---------- Sourced stat ledger (dark, four numbers) ---------- */

.stat-ledger {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(34px, 4.6vw, 72px) clamp(34px, 5vw, 96px);
}

.stat-ledger article {
  border-top: 1px solid var(--atelier-line);
  padding-top: 24px;
}

.stat-ledger strong {
  display: block;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.9rem, 4.6vw, 5.2rem);
  letter-spacing: -0.03em;
  line-height: 0.92;
}

.stat-ledger strong em {
  font-style: italic;
  font-size: 0.52em;
  letter-spacing: 0;
  color: rgba(244, 240, 232, 0.6);
}

.stat-ledger .stat-label {
  display: block;
  margin-top: 14px;
  font-family: var(--label);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.5;
  text-transform: uppercase;
  color: var(--faint);
  max-width: 30ch;
}

.stat-ledger p {
  margin-top: 14px;
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(244, 240, 232, 0.74);
  max-width: 52ch;
}

.stat-note {
  margin-top: clamp(40px, 5vw, 64px);
  max-width: 68ch;
  font-size: 0.98rem;
  line-height: 1.7;
  color: rgba(244, 240, 232, 0.7);
}

/* ---------- Index ("Was die Vorlage enthält") ---------- */

.index {
  list-style: none;
}

.index li {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: clamp(18px, 3vw, 44px);
  padding: clamp(22px, 3vw, 34px) 0;
  border-top: 1px solid var(--builderz-line-light);
}

.index li:first-child {
  border-top: 1px solid rgba(26, 26, 26, 0.2);
}

.index__num {
  font-family: var(--label);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  color: var(--bronze);
  padding-top: 8px;
}

.index h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1.15;
}

.index p {
  margin-top: 10px;
  max-width: 64ch;
  color: rgba(23, 23, 20, 0.72);
}

/* ---------- Cost ledger + proof block (dark) ---------- */

.cost-ledger {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(34px, 5vw, 96px);
  margin-top: clamp(44px, 5.6vw, 72px);
}

.cost-ledger article {
  border-top: 1px solid var(--atelier-line);
  padding-top: 24px;
}

.cost-ledger strong {
  display: block;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.9rem, 4.6vw, 5.2rem);
  letter-spacing: -0.03em;
  line-height: 0.92;
}

.cost-ledger strong em {
  font-style: italic;
  font-size: 0.52em;
  letter-spacing: 0;
  color: rgba(244, 240, 232, 0.6);
}

.cost-ledger .stat-label {
  display: block;
  margin-top: 14px;
  font-family: var(--label);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.5;
  text-transform: uppercase;
  color: var(--faint);
  max-width: 30ch;
}

.cost-ledger p {
  margin-top: 14px;
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(244, 240, 232, 0.74);
  max-width: 52ch;
}

.proof {
  margin-top: clamp(64px, 8vw, 112px);
  border-top: 1px solid var(--atelier-line-strong);
  padding-top: clamp(36px, 4.6vw, 56px);
  max-width: 980px;
}

.proof blockquote {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 3rem);
  line-height: 1.16;
  letter-spacing: -0.012em;
  color: var(--bone);
  margin-top: clamp(24px, 3vw, 36px);
}

.proof figcaption {
  font-family: var(--label);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-top: clamp(22px, 3vw, 34px);
}

.proof__fact {
  margin-top: clamp(24px, 3vw, 36px);
  max-width: 62ch;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(244, 240, 232, 0.78);
}

.proof__fact a {
  color: var(--bone);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}

.proof__fact a:hover {
  color: #abffc0;
}

/* ---------- Cred strip (dark, sitewide canon numbers) ---------- */

.ledger {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(34px, 7vw, 110px);
  margin-top: clamp(64px, 8vw, 112px);
}

.ledger article {
  border-top: 1px solid var(--atelier-line);
  padding-top: 26px;
  display: grid;
  gap: 18px;
  align-content: start;
}

.ledger strong {
  display: block;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(3rem, 4.8vw, 5.4rem);
  letter-spacing: -0.035em;
  line-height: 0.9;
}

.ledger span {
  max-width: 22ch;
  font-family: var(--label);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.5;
  text-transform: uppercase;
  color: var(--faint);
}

/* Buttons: .button--dark / .button--ghost-dark are canonical in site.css. */

/* ---------- Gate (email-gated PDF delivery) ---------- */

.gate__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.55fr) minmax(300px, 0.45fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}

.gate__intro h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.35rem, 4.2vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin-top: 18px;
  max-width: 14ch;
}

.gate__promise {
  margin-top: 26px;
  max-width: 52ch;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(23, 23, 20, 0.78);
}

.gate__form {
  display: grid;
  gap: 20px;
  padding: clamp(26px, 3.4vw, 40px);
  border: 1px solid rgba(26, 26, 26, 0.2);
  background: rgba(255, 255, 255, 0.5);
}

.gate__field {
  display: grid;
  gap: 8px;
}

.gate__field > span {
  font-family: var(--label);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(23, 23, 20, 0.7);
}

.gate__field input {
  width: 100%;
  min-height: 52px;
  padding: 13px 15px;
  border: 1px solid rgba(26, 26, 26, 0.3);
  background: #fff;
  color: var(--ink-soft);
  font: inherit;
}

.gate__field input:focus-visible {
  outline: 2px solid var(--bronze);
  outline-offset: 1px;
  border-color: var(--bronze);
}

.gate__consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
}

.gate__consent input {
  margin-top: 4px;
  width: 16px;
  height: 16px;
  accent-color: var(--bronze);
}

.gate__consent span {
  font-family: "Tiempos Text", Georgia, serif;
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(23, 23, 20, 0.62);
}

.gate__consent a {
  color: rgba(23, 23, 20, 0.78);
}

.gate__status {
  min-height: 1.2em;
  font-family: var(--label);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8f351e;
}

.gate__form .button {
  justify-self: start;
}

.gate__confirm {
  max-width: 760px;
}

.gate__confirm h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.1rem, 3.6vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-top: 18px;
  max-width: 20ch;
}

.gate__confirm-body {
  margin-top: 26px;
  max-width: 64ch;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(23, 23, 20, 0.8);
}

.gate__confirm:focus,
.gate__confirm:focus-visible {
  outline: none;
}

.gate__noscript {
  margin: 0;
  font-size: 0.88rem;
  opacity: 0.65;
}

/* ---------- Reveal on scroll (JS toggles html.reveal-ready) ---------- */

html.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 620ms var(--ease-atelier), transform 620ms var(--ease-atelier);
}

html.reveal-ready [data-reveal].is-revealed {
  opacity: 1;
  transform: none;
}

/* ---------- Responsive ---------- */

@media (max-width: 980px) {
  .section-head {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .rooms {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .stat-ledger,
  .cost-ledger {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .ledger {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .gate__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .magnet-hero h1 {
    font-size: clamp(2.4rem, 10.5vw, 3.35rem);
    hyphens: auto;
    -webkit-hyphens: auto;
  }

  .section-head h2,
  .gate__intro h2 {
    font-size: clamp(2rem, 8.5vw, 2.35rem);
    hyphens: auto;
    -webkit-hyphens: auto;
  }

  .gate__confirm h2 {
    font-size: clamp(1.8rem, 7.5vw, 2.1rem);
    hyphens: auto;
    -webkit-hyphens: auto;
  }

  .stat-ledger strong,
  .cost-ledger strong {
    font-size: clamp(2.5rem, 12vw, 2.9rem);
  }

  .ledger strong {
    font-size: clamp(2.6rem, 13vw, 3rem);
  }

  .index li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .index__num {
    padding-top: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html.reveal-ready [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============================================================
   Profil-Check Scroll-Story (pc-*) — eigenstaendige Komponenten.
   Nutzt die site.css-Tokens (bone, bronze, builderz-green, serif/sans).
   ============================================================ */

/* ── Hero ─────────────────────────────────────────────────── */

.pc-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: var(--builderz-green-deep, #0b2419);
  overflow: hidden;
}

.pc-hero__bg {
  position: absolute;
  inset: 0;
  background: url("../images/cohort-glass-office.webp") center 38% / cover no-repeat;
  opacity: 0.42;
  transform: scale(1.04);
}

.pc-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 19, 13, 0.46) 0%, rgba(6, 19, 13, 0.72) 55%, rgba(6, 19, 13, 0.95) 100%);
}

.pc-hero .site-shell { position: relative; z-index: 2; padding-top: 120px; padding-bottom: 96px; }

.pc-hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.7rem, 6.4vw, 5rem);
  line-height: 1.04;
  letter-spacing: -0.015em;
  color: var(--bone);
  max-width: 15ch;
  margin: 0 0 26px;
}

.pc-hero__sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  color: rgba(244, 240, 232, 0.82);
  margin: 0 0 40px;
}

.pc-hero__actions { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; margin-bottom: 44px; }

.pc-chips { display: flex; flex-wrap: wrap; gap: 10px; }

.pc-chip {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244, 240, 232, 0.66);
  border: 1px solid rgba(244, 240, 232, 0.22);
  padding: 8px 14px;
  white-space: nowrap;
}

/* ── Scroll-Story ─────────────────────────────────────────── */

.pc-scrolly { background: var(--bone); color: var(--ink-soft); padding: var(--space-section) 0; }

.pc-scrolly .section-head { margin-bottom: clamp(40px, 6vw, 80px); }

.pc-scrolly__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(36px, 6vw, 110px);
  align-items: start;
}

.pc-sticky { position: sticky; top: 110px; }

/* Die Karte */

.pc-card {
  position: relative;
  background: #fdfbf7;
  border: 1px solid rgba(23, 23, 20, 0.14);
  box-shadow: 0 24px 60px rgba(10, 24, 17, 0.12);
  min-height: 420px;
  max-width: 520px;
}

.pc-card__view { position: absolute; inset: 0; padding: 0; opacity: 0; transition: opacity 0.45s var(--ease-atelier, ease); pointer-events: none; }

.pc-card[data-state="s1"] .pc-card__view--profil,
.pc-card[data-state="s2"] .pc-card__view--profil,
.pc-card[data-state="s4"] .pc-card__view--profil { opacity: 1; }
.pc-card[data-state="s3"] .pc-card__view--dm { opacity: 1; }

.pc-card__banner { height: 88px; background: linear-gradient(120deg, var(--builderz-green) 0%, var(--builderz-green-deep, #0b2419) 100%); }

.pc-card__avatar {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: #d8d2c4;
  border: 4px solid #fdfbf7;
  margin: -46px 0 0 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.5rem;
  color: rgba(23, 23, 20, 0.55);
}

.pc-card__body { padding: 14px 28px 26px; }

.pc-card__name { font-family: var(--serif); font-size: 1.35rem; margin: 0 0 6px; color: var(--ink-soft); }

.pc-headline { position: relative; font-family: var(--sans); font-size: 0.98rem; line-height: 1.5; color: rgba(23, 23, 20, 0.78); margin: 0 0 14px; }

.pc-headline--bad { display: none; }
.pc-headline--good { display: none; }
.pc-card[data-state="s1"] .pc-headline--bad,
.pc-card[data-state="s2"] .pc-headline--bad { display: block; }
.pc-card[data-state="s4"] .pc-headline--good { display: block; }

.pc-headline--bad mark {
  background: transparent;
  color: inherit;
  box-shadow: inset 0 -2px 0 0 rgba(147, 64, 47, 0.75);
}

.pc-headline--good mark {
  background: transparent;
  color: inherit;
  box-shadow: inset 0 -2px 0 0 rgba(46, 92, 70, 0.7);
}

.pc-card__meta { font-family: var(--sans); font-size: 0.8rem; color: rgba(23, 23, 20, 0.45); margin: 0; }

.pc-stamp {
  position: absolute;
  top: 118px;
  right: 22px;
  transform: rotate(7deg);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #93402f;
  border: 2px solid rgba(147, 64, 47, 0.85);
  padding: 8px 12px;
  opacity: 0;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.pc-card[data-state="s2"] .pc-stamp { opacity: 1; transform: rotate(-6deg); }

.pc-verdicts { display: none; margin: 16px 0 0; padding: 0; list-style: none; }
.pc-card[data-state="s4"] .pc-verdicts { display: block; }

.pc-verdicts li {
  position: relative;
  font-family: var(--sans);
  font-size: 0.86rem;
  color: rgba(23, 23, 20, 0.7);
  padding: 6px 0 6px 26px;
}

.pc-verdicts li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 12px;
  height: 7px;
  border-left: 2px solid #2e5c46;
  border-bottom: 2px solid #2e5c46;
  transform: rotate(-45deg);
}

/* DM-Ansicht */

.pc-card__view--dm { display: flex; flex-direction: column; justify-content: center; padding: 34px 30px; }

.pc-dm__label { font-family: var(--sans); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(23, 23, 20, 0.4); margin: 0 0 14px; }

.pc-dm__bubble {
  background: #efe9dc;
  border: 1px solid rgba(23, 23, 20, 0.1);
  padding: 18px 20px;
  font-family: var(--sans);
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(23, 23, 20, 0.75);
  max-width: 88%;
}

.pc-dm__actions { display: flex; gap: 22px; margin-top: 18px; font-family: var(--sans); font-size: 0.85rem; }
.pc-dm__actions .loeschen { color: #93402f; font-weight: 600; }
.pc-dm__actions .antworten { color: rgba(23, 23, 20, 0.35); text-decoration: line-through; }

.pc-dm__note { margin-top: 22px; font-family: var(--serif); font-style: italic; font-size: 0.95rem; color: rgba(23, 23, 20, 0.55); }

/* Schritte */

.pc-steps { display: flex; flex-direction: column; }

.pc-step { min-height: 58vh; display: flex; align-items: center; }

.pc-step__inner {
  border-left: 2px solid rgba(168, 131, 85, 0.35);
  padding: 6px 0 6px 26px;
  opacity: 0.3;
  transform: translateY(6px);
  transition: opacity 0.4s ease, transform 0.4s ease, border-color 0.4s ease;
}

.pc-step.is-active .pc-step__inner { opacity: 1; transform: none; border-left-color: var(--bronze); }

.pc-step .kicker { margin-bottom: 10px; }

.pc-step p {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.1vw, 1.7rem);
  line-height: 1.42;
  color: var(--ink-soft);
  margin: 0;
  max-width: 24ch;
}

/* ── Bild-Band ────────────────────────────────────────────── */

.pc-band { position: relative; min-height: 52vh; display: flex; align-items: center; overflow: hidden; }

.pc-band__bg { position: absolute; inset: 0; background: url("../images/mandat background new.webp") center 30% / cover no-repeat; }

.pc-band::after { content: ""; position: absolute; inset: 0; background: rgba(6, 19, 13, 0.62); }

.pc-band blockquote {
  position: relative;
  z-index: 2;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3.6vw, 3rem);
  line-height: 1.2;
  color: var(--bone);
  max-width: 22ch;
}

/* ── Loesung ──────────────────────────────────────────────── */

.pc-solution { background: var(--bone); color: var(--ink-soft); padding: var(--space-section) 0; }

.pc-tools {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 36px);
  margin: clamp(36px, 5vw, 64px) 0 0;
}

.pc-tool { background: #fdfbf7; border: 1px solid rgba(23, 23, 20, 0.14); display: flex; flex-direction: column; }

.pc-tool__media { position: relative; background: var(--builderz-green-deep, #0b2419); height: 380px; overflow: hidden; display: flex; align-items: center; justify-content: center; }

.pc-tool__media img { max-height: 82%; width: auto; max-width: 74%; box-shadow: 0 18px 44px rgba(0, 0, 0, 0.35); transform: rotate(-2deg); display: block; }

.pc-chat { width: 84%; display: flex; flex-direction: column; gap: 12px; padding: 30px 0; }

.pc-chat__msg { font-family: var(--sans); font-size: 0.82rem; line-height: 1.55; padding: 12px 15px; max-width: 92%; }

.pc-chat__msg--user { align-self: flex-end; background: rgba(244, 240, 232, 0.12); color: rgba(244, 240, 232, 0.75); border: 1px solid rgba(244, 240, 232, 0.18); }

.pc-chat__msg--gpt { align-self: flex-start; background: var(--bone); color: rgba(23, 23, 20, 0.82); }

.pc-chat__msg--gpt strong { font-weight: 600; color: var(--ink-soft); }

.pc-tool__body { padding: 26px 28px 30px; display: flex; flex-direction: column; gap: 10px; }

.pc-tool__body h3 { font-family: var(--serif); font-weight: 400; font-size: 1.5rem; margin: 0; color: var(--ink-soft); }

.pc-tool__body p { font-family: var(--sans); font-size: 0.98rem; line-height: 1.6; color: rgba(23, 23, 20, 0.66); margin: 0; }

.pc-tool__tag { font-family: var(--sans); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--bronze); }

.pc-checkrow { display: flex; flex-wrap: wrap; gap: 10px; margin-top: clamp(30px, 4vw, 48px); }

.pc-checkrow .pc-chip { color: rgba(23, 23, 20, 0.6); border-color: rgba(23, 23, 20, 0.18); }

.pc-checkrow__note { width: 100%; font-family: var(--serif); font-style: italic; font-size: 1rem; color: rgba(23, 23, 20, 0.5); margin: 6px 0 0; }

/* ── Trust-Zeile ──────────────────────────────────────────── */

.pc-trust { display: flex; align-items: center; gap: 18px; margin-top: clamp(40px, 5vw, 64px); padding-top: 28px; border-top: 1px solid rgba(23, 23, 20, 0.14); }

.pc-trust img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; }

.pc-trust p { font-family: var(--sans); font-size: 0.95rem; color: rgba(23, 23, 20, 0.62); margin: 0; }

.pc-trust a { color: var(--ink-soft); }

/* ── Responsive ───────────────────────────────────────────── */

@media (max-width: 900px) {
  .pc-hero { min-height: 78vh; }
  .pc-hero .site-shell { padding-top: 96px; padding-bottom: 64px; }
  .pc-scrolly__grid { grid-template-columns: 1fr; }
  .pc-sticky { top: 70px; z-index: 3; }
  .pc-card { min-height: 350px; margin: 0 auto; }
  .pc-step { min-height: 52vh; }
  .pc-step p { max-width: none; }
  .pc-tools { grid-template-columns: 1fr; }
  .pc-band { min-height: 40vh; }
}

@media (prefers-reduced-motion: reduce) {
  .pc-card__view, .pc-stamp, .pc-step__inner { transition: none; }
}
