/* KI-Prozesscheck and print-ready example report. */

.page-prozesscheck main,
.page-entscheidungsbrief main { overflow: clip; }

.pc-kicker,
.eb-label {
  font-family: var(--font-brand);
  color: var(--accent);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.005em;
}

/* Hero */
.pc-hero {
  padding: clamp(72px, 9vw, 118px) 0 clamp(76px, 10vw, 126px);
  background: var(--paper);
}

.pc-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  gap: clamp(54px, 8vw, 110px);
  align-items: center;
}

.pc-hero-copy h1 {
  max-width: 820px;
  margin-top: 18px;
  font-size: clamp(48px, 6.5vw, 82px);
  font-weight: 570;
  line-height: 0.99;
  letter-spacing: -0.045em;
}

.pc-glow-word {
  position: relative;
  display: inline-block;
  z-index: 0;
}

.pc-glow-word::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0.08em -0.14em -0.08em;
  background:
    radial-gradient(62% 82% at 30% 58%, rgba(134, 197, 236, 0.68), transparent 72%),
    radial-gradient(54% 76% at 76% 50%, rgba(220, 173, 216, 0.48), transparent 74%);
  filter: blur(0.09em);
}

.pc-lede {
  max-width: 630px;
  margin-top: 28px;
  color: var(--ink-soft);
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.55;
}

.pc-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.pc-example {
  padding: clamp(22px, 3vw, 34px);
  border-radius: 22px;
  background: var(--paper-deep);
}

.pc-example-head {
  display: grid;
  gap: 5px;
  margin-bottom: 18px;
}

.pc-example-head span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
}

.pc-example-head b {
  font-family: var(--font-brand);
  font-size: clamp(21px, 2.5vw, 30px);
  font-weight: 570;
  letter-spacing: -0.025em;
}

.pc-example-flow {
  display: grid;
  gap: 10px;
  list-style: none;
}

.pc-example-flow li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px 18px;
  border-radius: 12px;
  transition: translate 0.45s var(--ease), filter 0.45s var(--ease);
}

.pc-example-flow li > span {
  padding-top: 3px;
  font-family: var(--font-brand);
  font-size: 11px;
  font-weight: 650;
}

.pc-example-flow li div { display: grid; gap: 2px; }
.pc-example-flow li b { font-family: var(--font-brand); font-size: 15px; font-weight: 590; }
.pc-example-flow li p { color: var(--ink-soft); font-size: 13.5px; line-height: 1.45; }
.pc-example-sand { background: var(--sand); }
.pc-example-slate { background: var(--slate); margin-left: 4%; }
.pc-example-lilac { background: var(--lilac); margin-left: 8%; }
.pc-example-flow .pc-example-night { background: var(--dark); color: var(--paper); margin-left: 12%; }
.pc-example-night p { color: rgba(244, 241, 234, 0.68) !important; }

/* The hero assembles in reading order while its layout remains stable. */
html.js .pc-hero-grid[data-reveal] {
  opacity: 1;
  transform: none;
}

html.js .pc-hero-grid[data-reveal] .pc-hero-copy > *,
html.js .pc-hero-grid[data-reveal] .pc-example-head,
html.js .pc-hero-grid[data-reveal] .pc-example-flow > li {
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.5s var(--ease) var(--pc-hero-delay, 0s),
    transform 0.5s var(--ease) var(--pc-hero-delay, 0s),
    translate 0.45s var(--ease) 0s,
    filter 0.45s var(--ease) 0s;
}

html.js .pc-hero-grid[data-reveal] .pc-hero-copy > :nth-child(2) { --pc-hero-delay: 0.06s; }
html.js .pc-hero-grid[data-reveal] .pc-hero-copy > :nth-child(3) { --pc-hero-delay: 0.12s; }
html.js .pc-hero-grid[data-reveal] .pc-hero-copy > :nth-child(4) { --pc-hero-delay: 0.18s; }
html.js .pc-hero-grid[data-reveal] .pc-example-head { --pc-hero-delay: 0.24s; }
html.js .pc-hero-grid[data-reveal] .pc-example-flow > li:nth-child(1) { --pc-hero-delay: 0.30s; }
html.js .pc-hero-grid[data-reveal] .pc-example-flow > li:nth-child(2) { --pc-hero-delay: 0.36s; }
html.js .pc-hero-grid[data-reveal] .pc-example-flow > li:nth-child(3) { --pc-hero-delay: 0.42s; }
html.js .pc-hero-grid[data-reveal] .pc-example-flow > li:nth-child(4) { --pc-hero-delay: 0.48s; }

html.js .pc-hero-grid.is-revealed .pc-hero-copy > *,
html.js .pc-hero-grid.is-revealed .pc-example-head,
html.js .pc-hero-grid.is-revealed .pc-example-flow > li {
  opacity: 1;
  transform: none;
}

/* Interactive check */
.pc-check-section {
  padding: clamp(88px, 11vw, 142px) 0;
  background: var(--paper-deep);
}

.pc-check-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.31fr) minmax(0, 0.69fr);
  gap: clamp(52px, 8vw, 112px);
  align-items: start;
}

html.js .pc-check-layout[data-reveal] {
  opacity: 1;
  transform: none;
}

html.js .pc-check-layout[data-reveal] > * {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}

html.js .pc-check-layout[data-reveal] > :nth-child(2) { transition-delay: 0.07s; }

html.js .pc-check-layout.is-revealed > * {
  opacity: 1;
  transform: none;
}

.pc-check-intro { position: sticky; top: 102px; }
.pc-check-intro h2 {
  max-width: 360px;
  margin-top: 14px;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.02;
}
.pc-check-intro > p:last-of-type {
  max-width: 340px;
  margin-top: 18px;
  color: var(--stone);
}

.pc-step-index {
  display: grid;
  gap: 7px;
  margin-top: 32px;
  list-style: none;
}

.pc-step-index li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: center;
  min-height: 40px;
  color: var(--stone);
  font-family: var(--font-brand);
  font-size: 14px;
}

.pc-step-index li span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: rgba(33, 30, 26, 0.05);
  font-size: 10.5px;
  font-weight: 650;
}

.pc-step-index li.is-current { color: var(--ink); font-weight: 600; }
.pc-step-index li.is-current span { background: var(--dark); color: var(--paper); }
.pc-step-index li.is-complete { color: var(--accent); }
.pc-step-index li.is-complete span { background: var(--slate); color: var(--accent); }

.pc-workspace { min-width: 0; }

/* Fortschritt wie beim Readiness-Check (.rc2-bar): Aurora-Verlauf statt
   flachem Akzentblau, und ueber die BREITE gefahren, nicht ueber scaleX.
   Das ist kein Detail: ein Verlauf auf einem scaleX-Element wird
   mitgestaucht, die Farben wanderten also mit dem Fortschritt. Ueber die
   Breite bleibt der Verlauf an der Fuellung und liest wie drueben. */
.pc-progress {
  width: 100%;
  height: 6px;
  margin-bottom: 42px;
  overflow: hidden;
  border-radius: 999px;
  background: #efeae0;
}

.pc-progress i {
  display: block;
  width: 10%;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #d9f28e, #7ccdb2 45%, #85bdec 100%);
  transition: width 0.5s cubic-bezier(0.3, 1, 0.4, 1);
}

.pc-form { padding: 0; }
.pc-question {
  min-width: 0;
  border: 0;
  opacity: 1;
  transform: none;
}
.pc-question[hidden] { display: none; }

.pc-question.is-leaving-forward {
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.16s var(--ease-exit), transform 0.16s var(--ease-exit);
}

.pc-question.is-leaving-backward {
  opacity: 0;
  transform: translateX(8px);
  transition: opacity 0.16s var(--ease-exit), transform 0.16s var(--ease-exit);
}

.pc-question.is-entering-forward,
.pc-question.is-entering-backward {
  opacity: 0;
  transition: none;
}

.pc-question.is-entering-forward { transform: translateX(10px); }
.pc-question.is-entering-backward { transform: translateX(-10px); }

.pc-question.is-entered {
  opacity: 1;
  transform: none;
  transition: opacity 0.24s var(--ease), transform 0.24s var(--ease);
}

.pc-question legend {
  max-width: 780px;
  font-family: var(--font-brand);
  font-size: clamp(34px, 4.6vw, 54px);
  font-weight: 560;
  letter-spacing: -0.035em;
  line-height: 1.04;
}

.pc-question-help {
  margin-top: 13px;
  color: var(--stone);
  font-size: 15px;
}

.pc-option-list,
.pc-option-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.pc-option {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 14px;
  align-items: start;
  min-height: 108px;
  padding: 20px;
  border: 1px solid transparent;
  border-radius: 14px;
  background: var(--paper);
  cursor: pointer;
  transition: background-color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.pc-option:has(input:checked) { border-color: var(--slate-line); background: var(--slate); }

.pc-option input {
  appearance: none;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  border: 1.5px solid var(--stone-faint);
  border-radius: 50%;
  background: var(--paper);
  cursor: pointer;
}

.pc-option input[type="checkbox"] { border-radius: 5px; }
.pc-option input::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: inherit;
  background: var(--accent);
  transform: scale(0);
  transition: transform 0.18s var(--ease);
}
.pc-option input:checked { border-color: var(--accent); }
.pc-option input:checked::after { transform: scale(1); }
.pc-option input:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.pc-option > span { display: grid; gap: 5px; }
.pc-option b { font-family: var(--font-brand); font-size: 16px; font-weight: 590; line-height: 1.3; }
.pc-option small { color: var(--stone); font-size: 13px; line-height: 1.45; }
.pc-option:has(input:checked) b { color: var(--accent); }
.pc-option-compact { min-height: 74px; align-items: center; }
.pc-option-compact input { margin-top: 0; }

.pc-form-nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
}
.pc-form-nav .btn { justify-self: end; }
.pc-back,
.pc-restart {
  min-height: 44px;
  border: 0;
  background: transparent;
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 550;
  cursor: pointer;
}
.pc-back { justify-self: start; }
.pc-back:disabled { opacity: 0.32; cursor: default; }
.pc-form-count { color: var(--stone); font-size: 13px; }
.pc-form-count b { color: var(--ink); }
.pc-form-error { margin-top: 12px; color: #8d3f3f; font-size: 13px; }
.pc-form .btn:disabled { opacity: 0.38; cursor: default; }

/* Result */
.pc-result {
  scroll-margin-top: 96px;
  padding: clamp(30px, 5vw, 52px);
  border-radius: 20px;
  background: var(--paper);
  outline: 0;
}

.pc-result.is-assembling .pc-result-head,
.pc-result.is-assembling .pc-result-route,
.pc-result.is-assembling .pc-result-grid > div,
.pc-result.is-assembling .pc-result-actions {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
  transition-delay: var(--pc-result-delay, 0s);
}

.pc-result.is-assembling .pc-result-route { --pc-result-delay: 0.08s; }
.pc-result.is-assembling .pc-result-grid > div:nth-child(1) { --pc-result-delay: 0.14s; }
.pc-result.is-assembling .pc-result-grid > div:nth-child(2) { --pc-result-delay: 0.19s; }
.pc-result.is-assembling .pc-result-grid > div:nth-child(3) { --pc-result-delay: 0.24s; }
.pc-result.is-assembling .pc-result-grid > div:nth-child(4) { --pc-result-delay: 0.29s; }
.pc-result.is-assembling .pc-result-grid > div:nth-child(5) { --pc-result-delay: 0.34s; }
.pc-result.is-assembling .pc-result-grid > div:nth-child(6) { --pc-result-delay: 0.39s; }
.pc-result.is-assembling .pc-result-actions { --pc-result-delay: 0.46s; }

.pc-result.is-assembled .pc-result-head,
.pc-result.is-assembled .pc-result-route,
.pc-result.is-assembled .pc-result-grid > div,
.pc-result.is-assembled .pc-result-actions {
  opacity: 1;
  transform: none;
}

.pc-result-head { display: flex; align-items: start; justify-content: space-between; gap: 24px; }
.pc-result-head h2 { max-width: 700px; margin-top: 10px; font-size: clamp(34px, 4.8vw, 58px); line-height: 1.02; }
.pc-result-status {
  flex: none;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--sand);
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 600;
}

.pc-result-route {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 7px;
  margin-top: 30px;
}
.pc-result-route i { display: block; height: 9px; border-radius: 4px; }
.pc-tone-sand { background: var(--sand); }
.pc-tone-slate { background: var(--slate); }
.pc-tone-clay { background: var(--clay); }
.pc-tone-lilac { background: var(--lilac); }
.pc-tone-night { background: var(--dark); }

.pc-result-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}
.pc-result-grid div { min-height: 124px; padding: 18px 20px; border-radius: 12px; background: var(--paper-deep); }
.pc-result-grid div:nth-child(2) { background: var(--slate); }
.pc-result-grid div:nth-child(4) { background: var(--lilac); }
.pc-result-grid div:nth-child(5) { background: var(--sage); }
.pc-result-grid dt { color: var(--accent); font-family: var(--font-brand); font-size: 12px; font-weight: 650; }
.pc-result-grid dd { margin-top: 7px; color: var(--ink-soft); font-size: 14px; line-height: 1.5; }
.pc-result-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-top: 26px; }
.pc-restart { margin-left: auto; }

/* Contrast and report sections */
.pc-proof-section {
  padding: clamp(90px, 12vw, 148px) 0;
  background: var(--dark);
  color: var(--paper-deep);
}

.pc-proof-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(56px, 9vw, 122px);
}

html.js .pc-proof-grid[data-reveal],
html.js .pc-specimen-inner[data-reveal] {
  opacity: 1;
  transform: none;
}

html.js .pc-proof-grid[data-reveal] > div:first-child,
html.js .pc-proof-grid[data-reveal] .pc-proof-list > article,
html.js .pc-specimen-inner[data-reveal] > * {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
  transition-delay: var(--pc-section-delay, 0s);
}

html.js .pc-proof-grid[data-reveal] .pc-proof-list > article:nth-child(1),
html.js .pc-specimen-inner[data-reveal] > :nth-child(2) { --pc-section-delay: 0.07s; }
html.js .pc-proof-grid[data-reveal] .pc-proof-list > article:nth-child(2) { --pc-section-delay: 0.14s; }
html.js .pc-proof-grid[data-reveal] .pc-proof-list > article:nth-child(3) { --pc-section-delay: 0.21s; }

html.js .pc-proof-grid.is-revealed > div:first-child,
html.js .pc-proof-grid.is-revealed .pc-proof-list > article,
html.js .pc-specimen-inner.is-revealed > * {
  opacity: 1;
  transform: none;
}
.pc-proof-grid .pc-kicker { color: #9fc3dc; }
.pc-proof-grid > div:first-child h2 {
  max-width: 560px;
  margin-top: 14px;
  font-size: clamp(36px, 4.8vw, 60px);
  line-height: 1.01;
}
.pc-proof-list { display: grid; gap: 12px; }
.pc-proof-list article {
  display: grid;
  grid-template-columns: 38px 0.8fr 1.2fr;
  gap: 20px;
  align-items: start;
  padding: 20px 0;
}
.pc-proof-list article > span { color: #9fc3dc; font-family: var(--font-brand); font-size: 12px; font-weight: 650; }
.pc-proof-list h3 { font-size: 18px; font-weight: 560; }
.pc-proof-list p { color: rgba(244, 241, 234, 0.66); font-size: 14px; }

.pc-specimen-band { padding: clamp(74px, 9vw, 110px) 0; background: var(--slate); }
.page-prozesscheck .site-footer { margin-top: 0; }
.pc-specimen-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 64px;
  align-items: center;
}
.pc-specimen-inner h2 { max-width: 720px; margin-top: 12px; font-size: clamp(36px, 4.8vw, 58px); line-height: 1.01; }
.pc-specimen-inner > div:first-child > p:last-child { max-width: 680px; margin-top: 17px; color: var(--ink-soft); }
.pc-specimen-actions { display: flex; flex-wrap: wrap; gap: 10px; justify-content: flex-end; }

/* Example report screen */
.page-entscheidungsbrief { background: var(--paper-deep); }
.page-entscheidungsbrief .fab { display: none; }
.eb-toolbar {
  position: sticky;
  top: 66px;
  z-index: 12;
  padding-top: 16px;
  padding-bottom: 16px;
}
.eb-toolbar-rail {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 10px 10px 10px 16px;
  border-radius: 15px;
  background: var(--paper);
  box-shadow: 0 12px 34px rgba(33, 30, 26, 0.09);
}
.eb-back {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: max-content;
  min-height: 40px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.25s var(--ease);
}
.eb-back svg { transform: rotate(180deg); transition: transform 0.25s var(--ease); }
.eb-toolbar-context { display: grid; justify-items: center; gap: 2px; line-height: 1.15; }
.eb-toolbar-context span { color: var(--stone); font-size: 11px; }
.eb-toolbar-context b { font-family: var(--font-brand); font-size: 14px; font-weight: 590; }
.eb-toolbar-actions {
  display: flex;
  justify-self: end;
  gap: 4px;
  padding: 4px;
  border-radius: 12px;
  background: var(--paper-deep);
}
.eb-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 14px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: var(--ink-soft);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 550;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.16s var(--ease), background-color 0.25s var(--ease), color 0.25s var(--ease);
}
.eb-action svg path {
  transform-box: fill-box;
  transform-origin: center;
  transition: transform 0.3s var(--ease), opacity 0.25s var(--ease);
}
.eb-action-primary { background: var(--ink); color: var(--paper); }
.eb-action:active { transform: scale(0.98); }
.eb-stage { padding: 18px var(--gutter) 90px; }
.eb-sheet {
  width: 210mm;
  min-height: 297mm;
  margin: 0 auto;
  padding: 15mm 16mm 12mm;
  border-radius: 12px;
  background: #fffdf9;
  color: var(--ink);
  box-shadow: 0 30px 80px rgba(33, 30, 26, 0.14);
}

@media (hover: hover) and (pointer: fine) {
  html.js .pc-hero-grid.is-revealed .pc-example-flow > li:hover {
    translate: 0 -3px;
    filter: saturate(1.16) brightness(1.02);
    transition: translate 0.25s var(--ease), filter 0.25s var(--ease);
  }
  .pc-back:not(:disabled):hover,
  .pc-restart:hover { color: var(--ink); }
  .eb-back:hover { color: var(--ink); }
  .eb-back:hover svg { transform: rotate(180deg) translateX(3px); }
  .eb-action-download:hover { background: var(--slate); color: var(--accent); }
  .eb-action-primary:hover { background: #322e28; }
}
.eb-head { display: flex; align-items: start; justify-content: space-between; gap: 20mm; padding-bottom: 6mm; border-bottom: 0.25mm solid var(--hairline-strong); }
.eb-wordmark { display: flex; align-items: center; gap: 2.6mm; font-family: var(--font-brand); font-size: 4.7mm; font-weight: 610; letter-spacing: -0.03em; }
.eb-wordmark svg { width: 4.4mm; height: 4.4mm; }
.eb-meta { display: grid; justify-items: end; gap: 1mm; color: var(--stone); font-size: 2.6mm; line-height: 1.35; }
.eb-title-block { padding: 10mm 0 7mm; }
.eb-title-block > p:first-child { color: var(--accent); font-family: var(--font-brand); font-size: 2.8mm; font-weight: 620; }
.eb-title-block h1 { max-width: 160mm; margin-top: 3mm; font-size: 12.3mm; line-height: 0.98; letter-spacing: -0.045em; }
.eb-summary { max-width: 158mm; margin-top: 4mm; color: var(--ink-soft); font-size: 3.45mm; line-height: 1.48; }
.eb-route { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: 5mm; padding: 3mm 0 7mm; }
.eb-route-track { position: absolute; top: 7.2mm; left: 7mm; right: 7mm; height: 0.25mm; background: var(--hairline-strong); }
.eb-route-stop { position: relative; z-index: 1; display: grid; justify-items: center; gap: 1.4mm; font-family: var(--font-brand); }
.eb-route-stop span { display: grid; place-items: center; width: 9mm; height: 9mm; border: 1.4mm solid #fffdf9; border-radius: 2.4mm; font-size: 2.4mm; font-weight: 650; }
.eb-route-stop b { font-size: 2.7mm; font-weight: 570; }
.eb-route-sand span { background: var(--sand); }
.eb-route-slate span { background: var(--slate); }
.eb-route-lilac span { background: var(--lilac); }
.eb-route-sage span { background: var(--sage); }
.eb-route-night span { background: var(--dark); color: var(--paper); }
.eb-main-grid { display: grid; grid-template-columns: 1.12fr 0.88fr; gap: 4mm; }
.eb-main-grid > section { padding: 5.5mm; border-radius: 3mm; background: var(--paper-deep); }
.eb-decision { background: var(--sand) !important; }
.eb-label { font-size: 2.6mm; }
.eb-decision h2 { margin-top: 2.5mm; font-size: 5.8mm; line-height: 1.14; }
.eb-status { display: inline-flex; align-items: center; gap: 2mm; margin-top: 4mm; padding: 1.7mm 2.6mm; border-radius: 99px; background: rgba(255, 253, 249, 0.72); font-size: 2.6mm; font-weight: 550; }
.eb-status i { width: 2mm; height: 2mm; border-radius: 50%; background: #9c7d3d; }
.eb-scope dl { display: grid; gap: 1.6mm; margin-top: 2.5mm; }
.eb-scope dl div { display: grid; grid-template-columns: 17mm 1fr; gap: 3mm; }
.eb-scope dt { color: var(--stone); font-size: 2.5mm; }
.eb-scope dd { font-size: 2.75mm; line-height: 1.38; }
.eb-evidence-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4mm; padding: 5mm 0; }
.eb-evidence { min-height: 49mm; padding: 5mm; border-radius: 3mm; }
.eb-evidence-slate { background: var(--slate); }
.eb-evidence-lilac { background: var(--lilac); }
.eb-evidence-sage { background: var(--sage); }
.eb-evidence ul { margin: 3mm 0 0 4mm; }
.eb-evidence li { margin-top: 1mm; font-size: 2.85mm; line-height: 1.34; }
.eb-evidence-lead { margin-top: 3mm; font-family: var(--font-brand); font-size: 3.2mm; font-weight: 560; line-height: 1.34; }
.eb-note { margin-top: 3.5mm; color: var(--ink-soft); font-size: 2.5mm; line-height: 1.38; }
.eb-open { padding-top: 1mm; }
.eb-open-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.5mm 4mm; margin-top: 2.5mm; }
.eb-open-grid p { display: grid; grid-template-columns: 6mm 1fr; gap: 2mm; min-height: 14mm; padding: 3mm; border-radius: 2mm; background: var(--paper-deep); font-size: 2.65mm; line-height: 1.32; }
.eb-open-grid span { color: var(--accent); font-family: var(--font-brand); font-size: 2.4mm; font-weight: 650; }
.eb-foot { display: flex; justify-content: space-between; gap: 10mm; margin-top: 4mm; padding-top: 4mm; border-top: 0.25mm solid var(--hairline-strong); color: var(--stone); font-size: 2.35mm; line-height: 1.4; }
.eb-foot span { white-space: nowrap; }

@media (max-width: 960px) {
  .pc-hero-grid { grid-template-columns: 1fr; }
  .pc-example { width: min(100%, 620px); }
  .pc-check-layout { grid-template-columns: 1fr; }
  .pc-check-intro { position: static; }
  .pc-check-intro > p:last-of-type { max-width: 620px; }
  .pc-step-index { grid-template-columns: repeat(5, 1fr); }
  .pc-step-index li { grid-template-columns: 32px 1fr; }
  .pc-proof-grid { grid-template-columns: 1fr; }
  .pc-specimen-inner { grid-template-columns: 1fr; gap: 34px; }
  .pc-specimen-actions { justify-content: flex-start; }
  .eb-stage { overflow-x: auto; }
}

@media (max-width: 700px) {
  .pc-hero { padding-top: 58px; }
  .pc-hero-copy h1 { font-size: clamp(43px, 13vw, 62px); }
  .pc-hero-actions { display: grid; }
  .pc-hero-actions .btn { justify-content: center; }
  .pc-example { padding: 18px; border-radius: 16px; }
  .pc-example-flow li { margin-left: 0; }
  .pc-check-section { padding-top: 76px; }
  .pc-step-index { grid-template-columns: repeat(5, minmax(42px, 1fr)); }
  .pc-step-index li { grid-template-columns: 1fr; justify-items: center; gap: 3px; font-size: 0; }
  .pc-step-index li span { font-size: 10.5px; }
  .pc-progress { margin-bottom: 28px; }
  .pc-question legend { font-size: clamp(34px, 10vw, 46px); }
  .pc-option-list,
  .pc-option-grid { grid-template-columns: 1fr; gap: 9px; margin-top: 24px; }
  .pc-option { min-height: 0; padding: 17px; }
  .pc-option-compact { min-height: 66px; }
  .pc-form-nav { grid-template-columns: auto 1fr; }
  .pc-form-count { justify-self: end; }
  .pc-form-nav .btn { grid-column: 1 / -1; width: 100%; justify-content: center; }
  .pc-result { scroll-margin-top: 76px; padding: 28px 20px; border-radius: 16px; }
  .pc-result-head { display: grid; }
  .pc-result-status { justify-self: start; }
  .pc-result-grid { grid-template-columns: 1fr; }
  .pc-result-grid div { min-height: 0; }
  .pc-result-actions { display: grid; }
  .pc-result-actions .btn { justify-content: center; }
  .pc-restart { margin-left: 0; justify-self: center; }
  .pc-proof-list article { grid-template-columns: 30px 1fr; padding: 10px 0 20px; }
  .pc-proof-list article p { grid-column: 2; }
  .pc-specimen-actions { display: grid; }
  .pc-specimen-actions .btn { justify-content: center; }
  .eb-toolbar { top: 60px; padding-top: 10px; padding-bottom: 10px; }
  .eb-toolbar-rail { grid-template-columns: auto 1fr; gap: 10px; padding: 7px; border-radius: 13px; }
  .eb-back { width: 42px; justify-content: center; }
  .eb-back span,
  .eb-toolbar-context { display: none; }
  .eb-toolbar-actions { width: 100%; }
  .eb-action { flex: 1; padding-inline: 11px; }
}

@media (prefers-reduced-motion: reduce) {
  .pc-progress i,
  .pc-option,
  .pc-option input::after { transition: none; }
  .pc-option,
  .eb-back svg,
  .eb-action,
  .eb-action svg path { transition: none; }

  .pc-example-flow li,
  .pc-example-flow li:hover { translate: none; filter: none; }
  html.js .pc-hero-grid[data-reveal] .pc-hero-copy > *,
  html.js .pc-hero-grid[data-reveal] .pc-example-head,
  html.js .pc-hero-grid[data-reveal] .pc-example-flow > li,
  html.js .pc-check-layout[data-reveal] > *,
  html.js .pc-proof-grid[data-reveal] > div:first-child,
  html.js .pc-proof-grid[data-reveal] .pc-proof-list > article,
  html.js .pc-specimen-inner[data-reveal] > *,
  .pc-question.is-leaving-forward,
  .pc-question.is-leaving-backward,
  .pc-question.is-entering-forward,
  .pc-question.is-entering-backward,
  .pc-question.is-entered,
  .pc-result.is-assembling .pc-result-head,
  .pc-result.is-assembling .pc-result-route,
  .pc-result.is-assembling .pc-result-grid > div,
  .pc-result.is-assembling .pc-result-actions {
    transform: none;
    transition-property: opacity;
    transition-duration: 0.12s;
    transition-delay: 0s;
  }
}

@media print {
  @page { size: A4 portrait; margin: 0; }
  html, body { width: 210mm; height: 297mm; background: #fffdf9 !important; }
  .page-entscheidungsbrief .site-header,
  .page-entscheidungsbrief .nav-scrim,
  .page-entscheidungsbrief .eb-toolbar,
  .page-entscheidungsbrief .site-footer,
  .page-entscheidungsbrief .fab,
  .page-entscheidungsbrief .skip-link { display: none !important; }
  .page-entscheidungsbrief main { overflow: visible; }
  .eb-stage { padding: 0; overflow: visible; }
  .eb-sheet {
    width: 210mm;
    height: 297mm;
    min-height: 297mm;
    margin: 0;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    border-radius: 0;
    box-shadow: none;
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
    break-after: avoid;
    page-break-after: avoid;
  }
}
