:root {
  --p02-ink: var(--mr-color-ink);
  --p02-copy: var(--mr-color-copy);
  --p02-line: var(--mr-color-line);
  --p02-soft: var(--mr-color-surface);
  --p02-blue: var(--mr-color-primary);
  --p02-blue-dark: var(--mr-color-primary-hover);
  --p02-blue-soft: var(--mr-color-primary-soft);
  --p02-green: var(--mr-color-success);
  --p02-green-soft: var(--mr-color-success-soft);
  --p02-red: var(--mr-color-danger);
  --p02-shadow: var(--mr-shadow-panel);
}

#P02-page main,
#P02-page main *,
#P02-page main *::before,
#P02-page main *::after { box-sizing: border-box; }

body.p02-page {
  margin: 0;
  min-width: 320px;
  color: var(--p02-ink);
  background: #fff;
  font-family: var(--mr-font-body);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

.p02-page a { color: inherit; }
.p02-page button,
.p02-page a { -webkit-tap-highlight-color: transparent; }

.p02-container {
  width: min(var(--mr-content-max), calc(100% - (var(--mr-content-gutter) * 2)));
  margin-inline: auto;
}

.p02-skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: #fff;
  background: var(--p02-ink);
  border-radius: 8px;
  transform: translateY(-160%);
}

.p02-skip-link:focus { transform: none; }
.p02-hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0 92px;
  background:
    radial-gradient(circle at 50% 72%, rgba(71, 89, 245, 0.07), transparent 31%),
    #fff;
}

.p02-hero::before {
  content: "";
  position: absolute;
  top: 45%;
  left: 50%;
  width: 760px;
  height: 420px;
  pointer-events: none;
  background: radial-gradient(ellipse, rgba(53, 179, 74, 0.055), transparent 66%);
  transform: translate(-50%, -50%);
}

.p02-hero__inner { position: relative; }

.p02-hero__copy {
  max-width: 1030px;
  margin-inline: auto;
  text-align: center;
}
.p02-hero h1 {
  max-width: 1040px;
  margin: 0 auto;
  font-family: "Stolzl Text", Arial, sans-serif;
  font-size: var(--mr-display-size);
  font-weight: var(--mr-weight-display);
  line-height: 1.12;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.p02-hero__lead {
  max-width: 835px;
  margin: 28px auto 0;
  color: var(--p02-copy);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.62;
  text-wrap: balance;
}

.p02-hero__support {
  max-width: 760px;
  margin: 6px auto 0;
  color: var(--p02-copy);
  font-size: 16px;
  line-height: 1.6;
}

.p02-hero__actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
}
.p02-hero__scope {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  margin: 20px auto 0;
  color: #737373;
  font-size: 13px;
  line-height: 1.5;
}

.p02-hero__scope span { display: inline-flex; align-items: center; }
.p02-hero__scope span:not(:last-child)::after { content: "·"; margin: 0 8px; color: #a5a5a5; }

.p02-hero__disclaimer {
  margin: 12px 0 0;
  color: #797979;
  font-size: 13px;
}

.p02-hero__visual {
  max-width: 1030px;
  margin: 52px auto 0;
}

.p02-recovery-map {
  position: relative;
  padding: 22px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #e1e4ec;
  border-radius: 22px;
  box-shadow: var(--p02-shadow);
}

.p02-recovery-map__topline {
  display: grid;
  grid-template-columns: minmax(215px, 1fr) minmax(92px, 0.42fr) minmax(215px, 1fr);
  align-items: center;
  gap: 18px;
  padding: 0 4px 18px;
}

.p02-state { display: flex; align-items: center; gap: 12px; }
.p02-state--ready { justify-self: end; }

.p02-state__icon {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 22px;
  font-weight: 400;
}

.p02-state--issue .p02-state__icon { color: var(--p02-red); border: 1.5px solid currentColor; }
.p02-state--ready .p02-state__icon { color: var(--p02-green); background: var(--p02-green-soft); }
.p02-state__icon svg { width: 22px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

.p02-state b,
.p02-state small { display: block; }
.p02-state b { font-size: 14px; font-weight: 500; line-height: 1.3; }
.p02-state small { margin-top: 3px; color: #828282; font-size: 11px; line-height: 1.35; }

.p02-recovery-map__progress {
  position: relative;
  height: 1px;
  overflow: hidden;
  background: #dce0e9;
}

.p02-recovery-map__progress::after {
  content: "";
  position: absolute;
  top: -3px;
  right: 0;
  width: 7px;
  height: 7px;
  border-top: 1px solid #c6cbd7;
  border-right: 1px solid #c6cbd7;
  transform: rotate(45deg);
}

.p02-recovery-map__progress i {
  position: absolute;
  inset: 0;
  background: var(--p02-blue);
  transform: translateX(-105%);
  transition: transform 520ms cubic-bezier(.4, 0, .2, 1);
}

.p02-recovery-map[data-state="ready"] .p02-recovery-map__progress i { transform: translateX(0); }
.p02-recovery-map[data-state="ready"] .p02-state--issue { opacity: 0.56; }
.p02-recovery-map .p02-state--ready { opacity: 0.42; transition: opacity 320ms ease; }
.p02-recovery-map[data-state="ready"] .p02-state--ready { opacity: 1; }

.p02-recovery-map__panel {
  padding: 20px;
  background: #f8f9fc;
  border: 1px solid #e5e7ee;
  border-radius: 16px;
}

.p02-recovery-map__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 14px;
  color: #3b3b3b;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.p02-recovery-map__counter {
  min-width: 48px;
  color: var(--p02-blue);
  text-align: right;
  letter-spacing: 0;
}

.p02-surfaces {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.p02-surface {
  position: relative;
  min-height: 148px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e1e4ec;
  border-radius: 12px;
  transition: border-color 260ms ease, box-shadow 260ms ease, transform 260ms ease;
}

.p02-surface::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 28%, rgba(71, 89, 245, 0.08) 48%, transparent 68%);
  transform: translateX(-120%);
}

.p02-surface.is-scanning {
  border-color: rgba(71, 89, 245, 0.45);
  box-shadow: 0 10px 26px rgba(71, 89, 245, 0.1);
  transform: translateY(-2px);
}

.p02-surface.is-scanning::before { animation: p02-scan 700ms ease forwards; }
.p02-surface.is-complete { border-color: rgba(53, 179, 74, 0.28); }

.p02-surface__icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--p02-blue);
  background: var(--p02-blue-soft);
  border-radius: 9px;
}

.p02-surface__icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.p02-surface__copy { margin-top: auto; padding-top: 18px; }
.p02-surface__copy b,
.p02-surface__copy small { display: block; }
.p02-surface__copy b { font-size: 13px; font-weight: 500; line-height: 1.3; }
.p02-surface__copy small { margin-top: 5px; color: #7b7b7b; font-size: 10.5px; line-height: 1.35; }

.p02-surface__status {
  position: absolute;
  top: 16px;
  right: 14px;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  color: var(--p02-green);
}

.p02-surface__status i {
  width: 6px;
  height: 6px;
  background: #c7ccd8;
  border-radius: 50%;
}

.p02-surface__status svg {
  position: absolute;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 220ms ease, transform 220ms ease;
}

.p02-surface.is-scanning .p02-surface__status i {
  width: 12px;
  height: 12px;
  background: transparent;
  border: 1.5px solid #dfe3ee;
  border-top-color: var(--p02-blue);
  animation: p02-spin 650ms linear infinite;
}

.p02-surface.is-complete .p02-surface__status i { opacity: 0; }
.p02-surface.is-complete .p02-surface__status svg { opacity: 1; transform: scale(1); }

.p02-recovery-map__caption {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 20px;
  margin: 14px 0 0;
  color: #777;
  font-size: 11px;
}

.p02-recovery-map__live {
  width: 6px;
  height: 6px;
  background: var(--p02-blue);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(71, 89, 245, 0.1);
}

.p02-recovery-map[data-state="ready"] .p02-recovery-map__live {
  background: var(--p02-green);
  box-shadow: 0 0 0 4px rgba(53, 179, 74, 0.1);
}

@keyframes p02-scan { to { transform: translateX(120%); } }
@keyframes p02-spin { to { transform: rotate(360deg); } }

@media (max-width: 900px) {
  .p02-hero { padding-top: 60px; }
  .p02-hero h1 { font-size: var(--mr-display-size); }
  .p02-recovery-map__topline { grid-template-columns: 1fr 70px 1fr; }
  .p02-surfaces { grid-template-columns: repeat(3, 1fr); }
  .p02-surface:nth-child(4), .p02-surface:nth-child(5) { min-height: 132px; }
}

@media (max-width: 640px) {
  .p02-container { width: min(var(--mr-content-max), calc(100% - (var(--mr-content-gutter) * 2))); }
.p02-hero { padding: 48px 0 64px; }
.p02-hero h1 { font-size: var(--mr-display-size); line-height: 1.12; letter-spacing: -0.02em; }
  .p02-hero__lead { margin-top: 22px; font-size: 16px; line-height: 1.55; }
  .p02-hero__support { margin-top: 9px; font-size: 14px; }
  .p02-hero__actions { flex-direction: column; gap: 10px; margin-top: 26px; }
.p02-hero__scope { margin-top: 18px; font-size: 11px; }
  .p02-hero__disclaimer { font-size: 11px; line-height: 1.45; }
  .p02-hero__visual { margin-top: 38px; }
  .p02-recovery-map { padding: 14px; border-radius: 17px; }
  .p02-recovery-map__topline { grid-template-columns: 1fr 42px 1fr; gap: 8px; padding: 0 0 14px; }
  .p02-state { gap: 8px; }
  .p02-state__icon { flex-basis: 32px; width: 32px; height: 32px; font-size: 18px; }
  .p02-state__icon svg { width: 18px; }
  .p02-state b { font-size: 11px; }
  .p02-state small { display: none; }
  .p02-recovery-map__panel { padding: 12px; border-radius: 12px; }
  .p02-recovery-map__heading { margin-bottom: 10px; font-size: 10px; }
  .p02-surfaces { grid-template-columns: 1fr; gap: 8px; }
  .p02-surface,
  .p02-surface:nth-child(4),
  .p02-surface:nth-child(5) {
    min-height: 70px;
    display: grid;
    grid-template-columns: 34px 1fr 20px;
    align-items: center;
    column-gap: 11px;
    padding: 11px 12px;
  }
  .p02-surface__icon { grid-column: 1; width: 34px; height: 34px; }
  .p02-surface__icon svg { width: 19px; height: 19px; }
  .p02-surface__copy { grid-column: 2; margin: 0; padding: 0; }
  .p02-surface__copy b { font-size: 12px; }
  .p02-surface__copy small { margin-top: 2px; font-size: 9.5px; }
  .p02-surface__status { position: relative; top: auto; right: auto; grid-column: 3; }
  .p02-recovery-map__caption { font-size: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  #P02-page main, #P02-page main *, #P02-page main *::before, #P02-page main *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

/* P02-B02 — service fit */
#P02-page #P02-B02 { scroll-margin-top: 96px; }

#P02-page .p02-fit {
  border-top: 1px solid var(--p02-line);
  border-bottom: 1px solid var(--p02-line);
}

#P02-page .p02-fit__heading {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: end;
  gap: clamp(42px, 7vw, 104px);
}

#P02-page .p02-fit__heading .mr-section-title { max-width: 560px; }

#P02-page .p02-fit__intro {
  max-width: 620px;
  justify-self: end;
}

#P02-page .p02-fit__intro .mr-lead { color: var(--p02-ink); }
#P02-page .p02-fit__intro .mr-copy { margin-top: 14px; }

#P02-page .p02-fit__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 52px;
}

#P02-page .p02-fit-card {
  min-width: 0;
  padding: 30px 30px 32px;
  background: var(--mr-color-paper);
  border: 1px solid var(--p02-line);
  border-radius: var(--mr-radius-card);
  box-shadow: 0 12px 34px rgba(35, 45, 85, 0.055);
}

#P02-page .p02-fit-card--yes { border-top-color: rgba(53, 179, 74, 0.72); }
#P02-page .p02-fit-card--review { border-top-color: rgba(37, 98, 244, 0.72); }
#P02-page .p02-fit-card--no { border-top-color: rgba(207, 69, 40, 0.72); }

#P02-page .p02-fit-card__header {
  display: flex;
  align-items: center;
  gap: 16px;
}

#P02-page .p02-fit-card__icon {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
}

#P02-page .p02-fit-card__icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

#P02-page .p02-fit-card--yes .p02-fit-card__icon { color: var(--p02-green); background: var(--p02-green-soft); }
#P02-page .p02-fit-card--review .p02-fit-card__icon { color: var(--p02-blue); background: var(--p02-blue-soft); }
#P02-page .p02-fit-card--no .p02-fit-card__icon { color: var(--p02-red); background: #fff2ef; }

#P02-page .p02-fit-card__label {
  margin: 0 0 5px;
  color: var(--p02-copy);
  font-size: 10px;
  font-weight: var(--mr-weight-ui);
  line-height: 1.3;
  letter-spacing: 0.085em;
  text-transform: uppercase;
}

#P02-page .p02-fit-card h3 {
  margin: 0;
  color: var(--p02-ink);
  font-size: 20px;
  font-weight: var(--mr-weight-ui);
  line-height: 1.25;
  letter-spacing: -0.012em;
}

#P02-page .p02-fit-card__summary {
  min-height: 72px;
  margin: 24px 0 0;
  color: var(--p02-copy);
  font-size: 15px;
  line-height: 1.58;
}

#P02-page .p02-fit-card ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid var(--p02-line);
  list-style: none;
}

#P02-page .p02-fit-card li {
  position: relative;
  margin: 0;
  padding-left: 18px;
  color: #4f4f4f;
  font-size: 14px;
  line-height: 1.48;
}

#P02-page .p02-fit-card li::before {
  content: "";
  position: absolute;
  top: 0.63em;
  left: 1px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  transform: translateY(-50%);
}

#P02-page .p02-fit-card--yes li::before { color: var(--p02-green); }
#P02-page .p02-fit-card--review li::before { color: var(--p02-blue); }
#P02-page .p02-fit-card--no li::before { color: var(--p02-red); }

#P02-page .p02-fit__action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid var(--p02-line);
}

#P02-page .p02-fit__action > div { max-width: 720px; }

#P02-page .p02-fit__action-title {
  margin: 0 0 7px;
  color: var(--p02-ink);
  font-size: 18px;
  font-weight: var(--mr-weight-ui);
  line-height: 1.35;
}

#P02-page .p02-fit__action .mr-button { flex: 0 0 auto; }

@media (max-width: 1023px) {
  #P02-page .p02-fit__heading { grid-template-columns: 1fr; align-items: start; gap: 24px; }
  #P02-page .p02-fit__intro { max-width: 760px; justify-self: start; }
  #P02-page .p02-fit__grid { grid-template-columns: 1fr; gap: 14px; margin-top: 38px; }
  #P02-page .p02-fit-card { padding: 28px; }
  #P02-page .p02-fit-card__summary { min-height: 0; }
  #P02-page .p02-fit-card ul { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  #P02-page #P02-B02 { scroll-margin-top: 76px; }
  #P02-page .p02-fit__intro .mr-copy { margin-top: 10px; }
  #P02-page .p02-fit__grid { margin-top: 32px; }
  #P02-page .p02-fit-card { padding: 22px 20px 24px; }
  #P02-page .p02-fit-card__header { align-items: flex-start; gap: 13px; }
  #P02-page .p02-fit-card__icon { flex-basis: 42px; width: 42px; height: 42px; border-radius: 12px; }
  #P02-page .p02-fit-card__icon svg { width: 22px; height: 22px; }
  #P02-page .p02-fit-card h3 { font-size: 18px; }
  #P02-page .p02-fit-card__summary { margin-top: 19px; font-size: 14px; }
  #P02-page .p02-fit-card ul { grid-template-columns: 1fr; gap: 10px; margin-top: 19px; padding-top: 18px; }
  #P02-page .p02-fit-card li { font-size: 13px; }
  #P02-page .p02-fit__action { align-items: stretch; flex-direction: column; gap: 20px; margin-top: 28px; padding-top: 24px; }
  #P02-page .p02-fit__action .mr-button { width: 100%; }
}

/* P02-B03 — cross-surface cause map */
#P02-page #P02-B03 { scroll-margin-top: 96px; }

#P02-page .p02-cause__heading {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: end;
  gap: clamp(42px, 7vw, 104px);
}

#P02-page .p02-cause__heading .mr-section-title { max-width: 590px; }

#P02-page .p02-cause__intro {
  max-width: 630px;
  justify-self: end;
}

#P02-page .p02-cause__intro .mr-lead { color: var(--p02-ink); }
#P02-page .p02-cause__intro .mr-copy { margin-top: 14px; }

#P02-page .p02-cause-map {
  display: grid;
  grid-template-columns: minmax(0, 220px) 38px minmax(440px, 1fr) 38px minmax(0, 220px);
  align-items: stretch;
  margin-top: 54px;
}

#P02-page .p02-cause-map__state,
#P02-page .p02-cause-map__audit {
  min-width: 0;
  border: 1px solid var(--p02-line);
  border-radius: var(--mr-radius-card);
}

#P02-page .p02-cause-map__state {
  display: flex;
  flex-direction: column;
  padding: 26px 24px;
  background: var(--mr-color-paper);
}

#P02-page .p02-cause-map__state--issue { border-top-color: rgba(207, 69, 40, 0.72); }
#P02-page .p02-cause-map__state--ready { border-top-color: rgba(53, 179, 74, 0.72); }

#P02-page .p02-cause-map__state-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border-radius: 13px;
  font-size: 23px;
  line-height: 1;
}

#P02-page .p02-cause-map__state--issue .p02-cause-map__state-icon { color: var(--p02-red); background: #fff2ef; }
#P02-page .p02-cause-map__state--ready .p02-cause-map__state-icon { color: var(--p02-green); background: var(--p02-green-soft); }

#P02-page .p02-cause-map__state-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

#P02-page .p02-cause-map__kicker {
  margin: 0 0 8px;
  color: var(--p02-copy);
  font-size: 10px;
  font-weight: var(--mr-weight-ui);
  line-height: 1.35;
  letter-spacing: 0.085em;
  text-transform: uppercase;
}

#P02-page .p02-cause-map h3,
#P02-page .p02-evidence h3 {
  margin: 0;
  color: var(--p02-ink);
  font-size: 21px;
  font-weight: var(--mr-weight-ui);
  line-height: 1.28;
  letter-spacing: -0.014em;
}

#P02-page .p02-cause-map__state > p:not(.p02-cause-map__kicker) {
  margin: 17px 0 24px;
  color: var(--p02-copy);
  font-size: 14px;
  line-height: 1.58;
}

#P02-page .p02-cause-map__example {
  margin-top: auto;
  padding-top: 16px;
  color: #4b4b4b;
  border-top: 1px solid var(--p02-line);
  font-size: 11px;
  line-height: 1.45;
}

#P02-page .p02-cause-map__connector {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--p02-blue);
}

#P02-page .p02-cause-map__connector svg {
  width: 30px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

#P02-page .p02-cause-map__audit {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 26px;
  background: #f8faff;
  border-color: #dce4fb;
  box-shadow: 0 16px 42px rgba(37, 70, 160, 0.07);
}

#P02-page .p02-cause-map__audit-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

#P02-page .p02-cause-map__audit-heading > span {
  flex: 0 0 auto;
  padding: 7px 10px;
  color: var(--p02-blue);
  background: var(--p02-blue-soft);
  border-radius: 999px;
  font-size: 9px;
  font-weight: var(--mr-weight-ui);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

#P02-page .p02-cause-map__surfaces {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

#P02-page .p02-cause-map__surfaces li {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px;
  background: var(--mr-color-paper);
  border: 1px solid #e3e8f5;
  border-radius: 11px;
}

#P02-page .p02-cause-map__surfaces .p02-cause-map__surface--wide { grid-column: 1 / -1; }

#P02-page .p02-cause-map__surface-icon {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--p02-blue);
  background: var(--p02-blue-soft);
  border-radius: 9px;
}

#P02-page .p02-cause-map__surface-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

#P02-page .p02-cause-map__surfaces b,
#P02-page .p02-cause-map__surfaces small { display: block; }
#P02-page .p02-cause-map__surfaces b { color: var(--p02-ink); font-size: 12px; font-weight: var(--mr-weight-ui); line-height: 1.35; }
#P02-page .p02-cause-map__surfaces small { margin-top: 3px; color: var(--p02-copy); font-size: 9.5px; line-height: 1.35; }

#P02-page .p02-evidence {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: 38px;
  margin-top: 34px;
  padding: 34px;
  background: var(--p02-soft);
  border: 1px solid var(--p02-line);
  border-radius: var(--mr-radius-card);
}

#P02-page .p02-evidence__copy {
  align-self: center;
  max-width: 380px;
}

#P02-page .p02-evidence__copy .mr-copy { margin-top: 16px; font-size: 14px; }

#P02-page .p02-evidence__note {
  margin: 18px 0 0;
  padding-top: 16px;
  color: #818181;
  border-top: 1px solid var(--p02-line);
  font-size: 10.5px;
  line-height: 1.5;
}

#P02-page .p02-evidence__shots {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

#P02-page .p02-evidence figure {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: var(--mr-color-paper);
  border: 1px solid var(--p02-line);
  border-radius: 12px;
}

#P02-page .p02-evidence__image {
  aspect-ratio: 1 / 0.83;
  overflow: hidden;
  background: #f1f3f8;
  border-bottom: 1px solid var(--p02-line);
}

#P02-page .p02-evidence__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
}

#P02-page .p02-evidence figcaption { position: relative; padding: 14px 13px 15px 36px; }
#P02-page .p02-evidence figcaption > span { position: absolute; top: 15px; left: 13px; color: var(--p02-blue); font-size: 9px; font-weight: var(--mr-weight-ui); }
#P02-page .p02-evidence figcaption b,
#P02-page .p02-evidence figcaption small { display: block; }
#P02-page .p02-evidence figcaption b { color: var(--p02-ink); font-size: 11px; font-weight: var(--mr-weight-ui); line-height: 1.35; }
#P02-page .p02-evidence figcaption small { margin-top: 4px; color: var(--p02-copy); font-size: 9px; line-height: 1.4; }

#P02-page .p02-cause__answer {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 26px;
  padding: 22px 26px;
  background: var(--p02-green-soft);
  border: 1px solid #d3edd8;
  border-radius: 13px;
}

#P02-page .p02-cause__answer-icon {
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--p02-green);
  background: var(--mr-color-paper);
  border-radius: 50%;
}

#P02-page .p02-cause__answer-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

#P02-page .p02-cause__answer p { margin: 0; color: #3f4a41; font-size: 15px; line-height: 1.55; }
#P02-page .p02-cause__answer strong { color: var(--p02-ink); font-weight: var(--mr-weight-ui); }

@media (max-width: 1120px) {
  #P02-page .p02-cause-map { grid-template-columns: minmax(0, 190px) 30px minmax(390px, 1fr) 30px minmax(0, 190px); }
  #P02-page .p02-cause-map__state { padding: 22px 20px; }
  #P02-page .p02-cause-map__audit { padding: 22px; }
}

@media (max-width: 1023px) {
  #P02-page .p02-cause__heading { grid-template-columns: 1fr; align-items: start; gap: 24px; }
  #P02-page .p02-cause__intro { max-width: 760px; justify-self: start; }
  #P02-page .p02-cause-map { grid-template-columns: 1fr; gap: 12px; margin-top: 40px; }
  #P02-page .p02-cause-map__connector { height: 30px; }
  #P02-page .p02-cause-map__connector svg { transform: rotate(90deg); }
  #P02-page .p02-cause-map__state { min-height: 0; }
  #P02-page .p02-cause-map__state-icon { margin-bottom: 18px; }
  #P02-page .p02-cause-map__state > p:not(.p02-cause-map__kicker) { margin-bottom: 18px; }
  #P02-page .p02-evidence { grid-template-columns: 1fr; }
  #P02-page .p02-evidence__copy { max-width: 700px; }
}

@media (max-width: 640px) {
  #P02-page #P02-B03 { scroll-margin-top: 76px; }
  #P02-page .p02-cause__intro .mr-copy { margin-top: 10px; }
  #P02-page .p02-cause-map { margin-top: 32px; }
  #P02-page .p02-cause-map__state,
  #P02-page .p02-cause-map__audit { padding: 21px 19px; }
  #P02-page .p02-cause-map__audit-heading { align-items: flex-start; flex-direction: column; gap: 12px; }
  #P02-page .p02-cause-map__surfaces { grid-template-columns: 1fr; }
  #P02-page .p02-cause-map__surfaces .p02-cause-map__surface--wide { grid-column: auto; }
  #P02-page .p02-evidence { gap: 24px; margin-top: 26px; padding: 22px 19px; }
  #P02-page .p02-evidence__shots {
    grid-template-columns: repeat(3, minmax(238px, 76vw));
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
  }
  #P02-page .p02-evidence figure { scroll-snap-align: start; }
  #P02-page .p02-evidence__image { aspect-ratio: 1 / 0.78; }
  #P02-page .p02-cause__answer { align-items: flex-start; gap: 13px; padding: 20px 18px; }
  #P02-page .p02-cause__answer p { font-size: 13px; }
}

/* P02-B04 — recovery scope */
#P02-page #P02-B04 { scroll-margin-top: 96px; border-top: 1px solid var(--p02-line); border-bottom: 1px solid var(--p02-line); }

#P02-page .p02-scope__heading {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: end;
  gap: clamp(42px, 7vw, 104px);
}

#P02-page .p02-scope__heading .mr-section-title { max-width: 560px; }
#P02-page .p02-scope__intro { max-width: 630px; justify-self: end; }
#P02-page .p02-scope__intro .mr-lead { color: var(--p02-ink); }
#P02-page .p02-scope__intro .mr-copy { margin-top: 14px; }

#P02-page .p02-scope__panel {
  margin-top: 52px;
  overflow: hidden;
  background: var(--mr-color-paper);
  border: 1px solid var(--p02-line);
  border-radius: var(--mr-radius-card);
  box-shadow: 0 18px 48px rgba(35, 45, 85, 0.06);
}

#P02-page .p02-scope-row {
  display: grid;
  grid-template-columns: minmax(210px, 0.95fr) minmax(0, 2.45fr);
}

#P02-page .p02-scope__columns {
  display: grid;
  grid-template-columns: minmax(210px, 0.95fr) repeat(3, minmax(0, 0.816fr));
  padding: 18px 26px;
  color: #7d8190;
  background: #f7f8fb;
  border-bottom: 1px solid var(--p02-line);
  font-size: 10px;
  font-weight: var(--mr-weight-ui);
  line-height: 1.35;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

#P02-page .p02-scope__columns span:first-child { padding-left: 52px; }

#P02-page .p02-scope__list { margin: 0; padding: 0; list-style: none; counter-reset: scope; }

#P02-page .p02-scope-row {
  align-items: stretch;
  min-height: 138px;
  border-bottom: 1px solid var(--p02-line);
}

#P02-page .p02-scope-row:last-child { border-bottom: 0; }

#P02-page .p02-scope-row__title {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 26px;
  background: #fcfcfd;
  border-right: 1px solid var(--p02-line);
}

#P02-page .p02-scope-row__icon {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--p02-blue);
  background: var(--p02-blue-soft);
  border-radius: 11px;
}

#P02-page .p02-scope-row__icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

#P02-page .p02-scope-row__title > div > span {
  display: block;
  margin-bottom: 6px;
  color: var(--p02-blue);
  font-size: 9px;
  font-weight: var(--mr-weight-ui);
  letter-spacing: 0.07em;
}

#P02-page .p02-scope-row h3 {
  margin: 0;
  color: var(--p02-ink);
  font-size: 16px;
  font-weight: var(--mr-weight-ui);
  line-height: 1.35;
}

#P02-page .p02-scope-row__flow {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

#P02-page .p02-scope-row__flow > div {
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 25px;
  border-right: 1px solid var(--p02-line);
}

#P02-page .p02-scope-row__flow > div:last-child { border-right: 0; background: #fbfcff; }

#P02-page .p02-scope-row__flow span {
  display: none;
  margin-bottom: 7px;
  color: #7d8190;
  font-size: 9px;
  font-weight: var(--mr-weight-ui);
  line-height: 1.3;
  letter-spacing: 0.065em;
  text-transform: uppercase;
}

#P02-page .p02-scope-row__flow p {
  margin: 0;
  color: var(--p02-copy);
  font-size: 13px;
  line-height: 1.52;
}

#P02-page .p02-scope-row__flow > div:last-child p { color: #3d4658; font-weight: 450; }

#P02-page .p02-scope-boundary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 1.25fr);
  align-items: center;
  gap: 44px;
  margin-top: 28px;
  padding: 28px 30px;
  background: var(--mr-color-paper);
  border: 1px solid var(--p02-line);
  border-radius: var(--mr-radius-card);
}

#P02-page .p02-scope-boundary__label {
  margin: 0 0 7px;
  color: var(--p02-copy);
  font-size: 9px;
  font-weight: var(--mr-weight-ui);
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

#P02-page .p02-scope-boundary h3 { margin: 0; color: var(--p02-ink); font-size: 20px; font-weight: var(--mr-weight-ui); line-height: 1.35; }
#P02-page .p02-scope-boundary > div > p:last-child { margin: 10px 0 0; color: var(--p02-copy); font-size: 13px; line-height: 1.55; }

#P02-page .p02-scope-boundary ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

#P02-page .p02-scope-boundary li {
  position: relative;
  padding: 11px 12px 11px 30px;
  color: #505050;
  background: #f7f8fa;
  border: 1px solid #eaebee;
  border-radius: 9px;
  font-size: 12px;
  line-height: 1.4;
}

#P02-page .p02-scope-boundary li::before {
  content: "+";
  position: absolute;
  top: 50%;
  left: 12px;
  color: var(--p02-blue);
  font-size: 15px;
  transform: translateY(-52%);
}

#P02-page .p02-scope__action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  margin-top: 30px;
  padding-top: 28px;
  border-top: 1px solid var(--p02-line);
}

#P02-page .p02-scope__action p { max-width: 760px; margin: 0; color: var(--p02-copy); font-size: 14px; line-height: 1.55; }
#P02-page .p02-scope__action strong { color: var(--p02-ink); font-weight: var(--mr-weight-ui); }
#P02-page .p02-scope__action .mr-button { flex: 0 0 auto; }

@media (max-width: 1023px) {
  #P02-page .p02-scope__heading { grid-template-columns: 1fr; align-items: start; gap: 24px; }
  #P02-page .p02-scope__intro { max-width: 760px; justify-self: start; }
  #P02-page .p02-scope__panel { margin-top: 40px; overflow: visible; background: transparent; border: 0; border-radius: 0; box-shadow: none; }
  #P02-page .p02-scope__columns { display: none; }
  #P02-page .p02-scope__list { display: grid; gap: 14px; }
  #P02-page .p02-scope-row { grid-template-columns: 1fr; min-height: 0; overflow: hidden; background: var(--mr-color-paper); border: 1px solid var(--p02-line); border-radius: 13px; }
  #P02-page .p02-scope-row:last-child { border-bottom: 1px solid var(--p02-line); }
  #P02-page .p02-scope-row__title { padding: 22px; border-right: 0; border-bottom: 1px solid var(--p02-line); }
  #P02-page .p02-scope-row__flow span { display: block; }
  #P02-page .p02-scope-boundary { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 640px) {
  #P02-page #P02-B04 { scroll-margin-top: 76px; }
  #P02-page .p02-scope__intro .mr-copy { margin-top: 10px; }
  #P02-page .p02-scope__panel { margin-top: 32px; }
  #P02-page .p02-scope-row__title { padding: 19px; }
  #P02-page .p02-scope-row__icon { flex-basis: 38px; width: 38px; height: 38px; }
  #P02-page .p02-scope-row h3 { font-size: 15px; }
  #P02-page .p02-scope-row__flow { grid-template-columns: 1fr; }
  #P02-page .p02-scope-row__flow > div { padding: 17px 19px; border-right: 0; border-bottom: 1px solid var(--p02-line); }
  #P02-page .p02-scope-row__flow > div:last-child { border-bottom: 0; }
  #P02-page .p02-scope-row__flow p { font-size: 12.5px; }
  #P02-page .p02-scope-boundary { gap: 20px; margin-top: 22px; padding: 22px 19px; }
  #P02-page .p02-scope-boundary h3 { font-size: 18px; }
  #P02-page .p02-scope-boundary ul { grid-template-columns: 1fr; }
  #P02-page .p02-scope__action { align-items: stretch; flex-direction: column; gap: 20px; margin-top: 24px; padding-top: 24px; }
  #P02-page .p02-scope__action .mr-button { width: 100%; }
}

/* P02-B05 — applicable 147-check methodology */
#P02-page #P02-B05 { scroll-margin-top: 96px; }

#P02-page .p02-checks__heading {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  align-items: end;
  gap: clamp(48px, 7vw, 104px);
}

#P02-page .p02-checks__copy { max-width: 660px; }
#P02-page .p02-checks__copy .mr-lead { margin-top: 24px; }

#P02-page .p02-checks__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  background: var(--mr-color-paper);
  border: 1px solid var(--p02-line);
  border-radius: var(--mr-radius-card);
}

#P02-page .p02-checks__stats > div {
  min-height: 98px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 20px 24px;
}

#P02-page .p02-checks__stats > div:nth-child(odd) { border-right: 1px solid var(--p02-line); }
#P02-page .p02-checks__stats > div:nth-child(-n+2) { border-bottom: 1px solid var(--p02-line); }
#P02-page .p02-checks__stats strong { color: var(--p02-ink); font-size: 29px; font-weight: var(--mr-weight-display); line-height: 1; }
#P02-page .p02-checks__stats > div:first-child strong { color: var(--p02-blue); }
#P02-page .p02-checks__stats span { color: var(--p02-copy); font-size: 12px; line-height: 1.35; }

#P02-page .p02-checks__body {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.82fr);
  align-items: stretch;
  gap: 20px;
  margin-top: 46px;
}

#P02-page .p02-checks-directions,
#P02-page .p02-checks-filter,
#P02-page .p02-report-example {
  border: 1px solid var(--p02-line);
  border-radius: var(--mr-radius-card);
}

#P02-page .p02-checks-directions { padding: 28px 30px; background: var(--mr-color-paper); }

#P02-page .p02-checks-directions__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--p02-line);
}

#P02-page .p02-checks__label {
  margin: 0 0 7px;
  color: var(--p02-copy);
  font-size: 9px;
  font-weight: var(--mr-weight-ui);
  line-height: 1.35;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

#P02-page .p02-checks-directions h3,
#P02-page .p02-checks-filter h3,
#P02-page .p02-report-example h3 {
  margin: 0;
  color: var(--p02-ink);
  font-size: 21px;
  font-weight: var(--mr-weight-ui);
  line-height: 1.3;
  letter-spacing: -0.014em;
}

#P02-page .p02-checks-directions__head > span {
  color: var(--p02-blue);
  font-size: 11px;
  font-weight: var(--mr-weight-ui);
  font-variant-numeric: tabular-nums;
}

#P02-page .p02-checks-directions ol { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; }
#P02-page .p02-checks-directions li { padding: 20px 0; border-bottom: 1px solid var(--p02-line); }
#P02-page .p02-checks-directions li:last-child { padding-bottom: 0; border-bottom: 0; }

#P02-page .p02-checks-direction__title {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
}

#P02-page .p02-checks-direction__title span { color: #929292; font-size: 9px; font-weight: var(--mr-weight-ui); letter-spacing: 0.06em; }
#P02-page .p02-checks-direction__title b { color: var(--p02-ink); font-size: 14px; font-weight: var(--mr-weight-ui); }
#P02-page .p02-checks-direction__title strong { color: var(--p02-blue); font-size: 17px; font-weight: var(--mr-weight-ui); font-variant-numeric: tabular-nums; }

#P02-page .p02-checks-direction__bar {
  height: 3px;
  margin: 11px 0 11px 38px;
  overflow: hidden;
  background: #edf0f6;
  border-radius: 999px;
}

#P02-page .p02-checks-direction__bar i {
  width: var(--p02-check-width);
  height: 100%;
  display: block;
  background: var(--p02-blue);
  border-radius: inherit;
}

#P02-page .p02-checks-directions li > p { margin: 0 0 0 38px; color: var(--p02-copy); font-size: 11px; line-height: 1.5; }

#P02-page .p02-checks-filter {
  display: flex;
  flex-direction: column;
  padding: 28px 30px;
  background: #f8faff;
  border-color: #dce4fb;
}

#P02-page .p02-checks-filter > p:not(.p02-checks__label) { margin: 14px 0 0; color: var(--p02-copy); font-size: 13px; line-height: 1.55; }

#P02-page .p02-checks-filter__steps { display: grid; gap: 9px; margin-top: 22px; }

#P02-page .p02-checks-filter__steps > div {
  position: relative;
  min-height: 58px;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: center;
  column-gap: 10px;
  padding: 10px 12px;
  background: var(--mr-color-paper);
  border: 1px solid #e2e7f5;
  border-radius: 10px;
}

#P02-page .p02-checks-filter__steps span { grid-row: 1 / 3; color: var(--p02-blue); font-size: 9px; font-weight: var(--mr-weight-ui); }
#P02-page .p02-checks-filter__steps b { color: var(--p02-ink); font-size: 12px; font-weight: var(--mr-weight-ui); line-height: 1.3; }
#P02-page .p02-checks-filter__steps small { color: var(--p02-copy); font-size: 9px; line-height: 1.35; }

#P02-page .p02-checks-filter__result {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 20px;
}

#P02-page .p02-checks-filter__result > span {
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--p02-green);
  background: var(--p02-green-soft);
  border-radius: 50%;
}

#P02-page .p02-checks-filter__result svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
#P02-page .p02-checks-filter__result p { margin: 0; }
#P02-page .p02-checks-filter__result b,
#P02-page .p02-checks-filter__result small { display: block; }
#P02-page .p02-checks-filter__result b { color: var(--p02-ink); font-size: 12px; font-weight: var(--mr-weight-ui); line-height: 1.35; }
#P02-page .p02-checks-filter__result small { margin-top: 3px; color: var(--p02-copy); font-size: 9.5px; line-height: 1.4; }

#P02-page .p02-report-example {
  margin-top: 20px;
  overflow: hidden;
  background: var(--mr-color-paper);
}

#P02-page .p02-report-example__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 24px 28px;
  border-bottom: 1px solid var(--p02-line);
}

#P02-page .p02-report-example h3 span { margin-right: 9px; color: var(--p02-blue); font-size: 13px; letter-spacing: 0.04em; }

#P02-page .p02-report-example__status {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  color: #a33b27;
  background: #fff2ef;
  border-radius: 999px;
  font-size: 10px;
  font-weight: var(--mr-weight-ui);
}

#P02-page .p02-report-example__status i { width: 6px; height: 6px; display: block; background: var(--p02-red); border-radius: 50%; }

#P02-page .p02-report-example__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

#P02-page .p02-report-example__grid > div {
  min-width: 0;
  padding: 23px 25px;
  border-right: 1px solid var(--p02-line);
}

#P02-page .p02-report-example__grid > div:last-child { border-right: 0; }
#P02-page .p02-report-example__grid span { display: block; margin-bottom: 8px; color: #858585; font-size: 9px; font-weight: var(--mr-weight-ui); letter-spacing: 0.07em; text-transform: uppercase; }
#P02-page .p02-report-example__grid p { margin: 0; color: var(--p02-copy); font-size: 12px; line-height: 1.5; }
#P02-page .p02-report-example__result { background: #fbfcff; }
#P02-page .p02-report-example__result p { color: #3f485a; font-weight: 450; }

#P02-page .p02-report-example__foot {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 14px 28px;
  color: #777;
  background: #f8f8f9;
  border-top: 1px solid var(--p02-line);
  font-size: 9.5px;
  line-height: 1.4;
}

#P02-page .p02-report-example__foot p { margin: 0 auto 0 0; }
#P02-page .p02-report-example__foot b { color: #4d4d4d; font-weight: var(--mr-weight-ui); }

#P02-page .p02-checks__action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--p02-line);
}

#P02-page .p02-checks__action p { max-width: 760px; margin: 0; color: var(--p02-copy); font-size: 13px; line-height: 1.55; }
#P02-page .p02-checks__action .mr-button { flex: 0 0 auto; }

@media (max-width: 1023px) {
  #P02-page .p02-checks__heading { grid-template-columns: 1fr; align-items: start; gap: 34px; }
  #P02-page .p02-checks__stats { max-width: 650px; }
  #P02-page .p02-checks__body { grid-template-columns: 1fr; }
  #P02-page .p02-checks-filter__result { margin-top: 22px; }
  #P02-page .p02-report-example__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  #P02-page .p02-report-example__grid > div:nth-child(2) { border-right: 0; }
  #P02-page .p02-report-example__grid > div:nth-child(-n+2) { border-bottom: 1px solid var(--p02-line); }
}

@media (max-width: 640px) {
  #P02-page #P02-B05 { scroll-margin-top: 76px; }
  #P02-page .p02-checks__copy .mr-lead { margin-top: 18px; }
  #P02-page .p02-checks__heading { gap: 28px; }
  #P02-page .p02-checks__stats > div { min-height: 82px; padding: 16px; }
  #P02-page .p02-checks__stats strong { font-size: 24px; }
  #P02-page .p02-checks__body { margin-top: 30px; }
  #P02-page .p02-checks-directions,
  #P02-page .p02-checks-filter { padding: 22px 19px; }
  #P02-page .p02-checks-direction__title { grid-template-columns: 24px minmax(0, 1fr) auto; gap: 8px; }
  #P02-page .p02-checks-direction__bar,
  #P02-page .p02-checks-directions li > p { margin-left: 32px; }
  #P02-page .p02-report-example__head { align-items: flex-start; flex-direction: column; gap: 14px; padding: 21px 19px; }
  #P02-page .p02-report-example__grid { grid-template-columns: 1fr; }
  #P02-page .p02-report-example__grid > div { padding: 18px 19px; border-right: 0; border-bottom: 1px solid var(--p02-line); }
  #P02-page .p02-report-example__grid > div:nth-child(2) { border-right: 0; }
  #P02-page .p02-report-example__grid > div:nth-child(-n+2) { border-bottom: 1px solid var(--p02-line); }
  #P02-page .p02-report-example__grid > div:last-child { border-bottom: 0; }
  #P02-page .p02-report-example__foot { align-items: flex-start; flex-direction: column; gap: 6px; padding: 15px 19px; }
  #P02-page .p02-report-example__foot p { margin: 0 0 4px; }
  #P02-page .p02-checks__action { align-items: stretch; flex-direction: column; gap: 20px; margin-top: 24px; padding-top: 24px; }
  #P02-page .p02-checks__action .mr-button { width: 100%; }
}

/* P02-B06 — recovery project workflow */
#P02-page #P02-B06 {
  scroll-margin-top: 96px;
  background: var(--p02-soft);
}

#P02-page .p02-workflow__heading {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(470px, 0.95fr);
  align-items: end;
  gap: clamp(48px, 7vw, 104px);
}

#P02-page .p02-workflow__copy { max-width: 680px; }
#P02-page .p02-workflow__copy .mr-lead { margin-top: 24px; }

#P02-page .p02-workflow-phases {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  background: var(--mr-color-paper);
  border: 1px solid var(--p02-line);
  border-radius: var(--mr-radius-card);
}

#P02-page .p02-workflow-phases > div {
  min-height: 94px;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-content: center;
  column-gap: 10px;
  padding: 18px 20px;
}

#P02-page .p02-workflow-phases > div:nth-child(odd) { border-right: 1px solid var(--p02-line); }
#P02-page .p02-workflow-phases > div:nth-child(-n+2) { border-bottom: 1px solid var(--p02-line); }
#P02-page .p02-workflow-phases span { grid-row: 1 / 3; align-self: center; color: var(--p02-blue); font-size: 10px; font-weight: var(--mr-weight-ui); font-variant-numeric: tabular-nums; }
#P02-page .p02-workflow-phases b { color: var(--p02-ink); font-size: 12px; font-weight: var(--mr-weight-ui); line-height: 1.3; }
#P02-page .p02-workflow-phases small { margin-top: 3px; color: var(--p02-copy); font-size: 9.5px; line-height: 1.35; }

#P02-page .p02-workflow-table {
  margin-top: 46px;
  overflow: hidden;
  background: var(--mr-color-paper);
  border: 1px solid var(--p02-line);
  border-radius: var(--mr-radius-card);
  box-shadow: var(--p02-shadow);
}

#P02-page .p02-workflow-table__head,
#P02-page .p02-workflow-list > li {
  display: grid;
  grid-template-columns: 96px minmax(0, 1.34fr) minmax(210px, 0.82fr) minmax(230px, 0.9fr);
}

#P02-page .p02-workflow-table__head {
  min-height: 62px;
  align-items: center;
  color: #7f8290;
  border-bottom: 1px solid var(--p02-line);
  font-size: 9px;
  font-weight: var(--mr-weight-ui);
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

#P02-page .p02-workflow-table__head span { padding: 0 22px; }
#P02-page .p02-workflow-table__head span:first-child { padding-left: 28px; }

#P02-page .p02-workflow-list { margin: 0; padding: 0; list-style: none; }
#P02-page .p02-workflow-list > li { min-height: 132px; border-bottom: 1px solid var(--p02-line); }
#P02-page .p02-workflow-list > li:last-child { border-bottom: 0; }

#P02-page .p02-workflow-step,
#P02-page .p02-workflow-main,
#P02-page .p02-workflow-meta,
#P02-page .p02-workflow-result {
  min-width: 0;
  padding: 25px 22px;
}

#P02-page .p02-workflow-step {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 11px;
  padding-inline: 18px;
  border-right: 1px solid var(--p02-line);
}

#P02-page .p02-workflow-step::after {
  content: "";
  position: absolute;
  right: -1px;
  top: 0;
  width: 2px;
  height: 100%;
  background: var(--p02-blue);
  opacity: 0.14;
}

#P02-page .p02-workflow-step span { color: var(--p02-blue); font-size: 10px; font-weight: var(--mr-weight-ui); letter-spacing: 0.055em; font-variant-numeric: tabular-nums; }
#P02-page .p02-workflow-step svg { width: 25px; height: 25px; fill: none; stroke: var(--p02-blue); stroke-width: 1.35; stroke-linecap: round; stroke-linejoin: round; }

#P02-page .p02-workflow-main,
#P02-page .p02-workflow-meta,
#P02-page .p02-workflow-result {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--p02-line);
}

#P02-page .p02-workflow-result { background: #fbfcff; border-right: 0; }
#P02-page .p02-workflow-main > span,
#P02-page .p02-workflow-meta > span,
#P02-page .p02-workflow-result > span { display: none; margin-bottom: 7px; color: #858895; font-size: 9px; font-weight: var(--mr-weight-ui); letter-spacing: 0.07em; text-transform: uppercase; }
#P02-page .p02-workflow-main h3 { margin: 0; color: var(--p02-ink); font-size: 16px; font-weight: var(--mr-weight-ui); line-height: 1.35; letter-spacing: -0.01em; }
#P02-page .p02-workflow-main p,
#P02-page .p02-workflow-meta p,
#P02-page .p02-workflow-result p { margin: 8px 0 0; color: var(--p02-copy); font-size: 11.5px; line-height: 1.52; }
#P02-page .p02-workflow-meta p,
#P02-page .p02-workflow-result p { margin-top: 0; }
#P02-page .p02-workflow-result p { position: relative; padding-left: 17px; color: #3e4758; font-weight: 450; }
#P02-page .p02-workflow-result p::before { content: ""; position: absolute; top: 0.55em; left: 0; width: 7px; height: 7px; background: var(--p02-green); border-radius: 50%; box-shadow: 0 0 0 4px var(--p02-green-soft); }
#P02-page .p02-workflow-list__final .p02-workflow-step span,
#P02-page .p02-workflow-list__final .p02-workflow-step svg { color: var(--p02-green); stroke: var(--p02-green); }
#P02-page .p02-workflow-list__final .p02-workflow-step::after { background: var(--p02-green); opacity: 0.3; }

#P02-page .p02-workflow__action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-top: 28px;
  padding: 26px 28px;
  background: var(--mr-color-paper);
  border: 1px solid var(--p02-line);
  border-radius: var(--mr-radius-card);
}

#P02-page .p02-workflow__action > div { max-width: 790px; }
#P02-page .p02-workflow__action-label { margin: 0 0 7px !important; color: var(--p02-blue) !important; font-size: 9px !important; font-weight: var(--mr-weight-ui); letter-spacing: 0.075em; text-transform: uppercase; }
#P02-page .p02-workflow__action p { margin: 0; color: var(--p02-copy); font-size: 13px; line-height: 1.55; }
#P02-page .p02-workflow__action strong { color: var(--p02-ink); font-weight: var(--mr-weight-ui); }
#P02-page .p02-workflow__action .mr-button { flex: 0 0 auto; }

@media (max-width: 1023px) {
  #P02-page .p02-workflow__heading { grid-template-columns: 1fr; align-items: start; gap: 34px; }
  #P02-page .p02-workflow-phases { max-width: 650px; }
  #P02-page .p02-workflow-table { margin-top: 38px; overflow: visible; background: transparent; border: 0; border-radius: 0; box-shadow: none; }
  #P02-page .p02-workflow-table__head { display: none; }
  #P02-page .p02-workflow-list { display: grid; gap: 14px; }
  #P02-page .p02-workflow-list > li { grid-template-columns: 82px minmax(0, 1fr) minmax(220px, 0.85fr); min-height: 0; overflow: hidden; background: var(--mr-color-paper); border: 1px solid var(--p02-line); border-radius: 13px; }
  #P02-page .p02-workflow-list > li:last-child { border-bottom: 1px solid var(--p02-line); }
  #P02-page .p02-workflow-step { grid-row: 1 / 3; }
  #P02-page .p02-workflow-main { border-right: 1px solid var(--p02-line); border-bottom: 1px solid var(--p02-line); }
  #P02-page .p02-workflow-meta { grid-column: 2; border-right: 1px solid var(--p02-line); }
  #P02-page .p02-workflow-result { grid-column: 3; grid-row: 1 / 3; }
  #P02-page .p02-workflow-main > span,
  #P02-page .p02-workflow-meta > span,
  #P02-page .p02-workflow-result > span { display: block; }
}

@media (max-width: 640px) {
  #P02-page #P02-B06 { scroll-margin-top: 76px; }
  #P02-page .p02-workflow__copy .mr-lead { margin-top: 18px; }
  #P02-page .p02-workflow__heading { gap: 28px; }
  #P02-page .p02-workflow-phases > div { min-height: 84px; grid-template-columns: 34px minmax(0, 1fr); padding: 15px 14px; }
  #P02-page .p02-workflow-table { margin-top: 30px; }
  #P02-page .p02-workflow-list > li { grid-template-columns: 1fr; }
  #P02-page .p02-workflow-step { grid-row: auto; align-items: center; flex-direction: row; justify-content: flex-start; padding: 16px 18px; border-right: 0; border-bottom: 1px solid var(--p02-line); }
  #P02-page .p02-workflow-step::after { top: auto; right: 0; bottom: -1px; width: 100%; height: 2px; }
  #P02-page .p02-workflow-step svg { width: 22px; height: 22px; }
  #P02-page .p02-workflow-main,
  #P02-page .p02-workflow-meta,
  #P02-page .p02-workflow-result { grid-column: auto; grid-row: auto; padding: 19px 18px; border-right: 0; border-bottom: 1px solid var(--p02-line); }
  #P02-page .p02-workflow-result { border-bottom: 0; }
  #P02-page .p02-workflow-main h3 { font-size: 15px; }
  #P02-page .p02-workflow__action { align-items: stretch; flex-direction: column; gap: 20px; padding: 22px 19px; }
  #P02-page .p02-workflow__action .mr-button { width: 100%; }
}

/* P02 complete page — navigation, progressive disclosure and B07–B13 */
#P02-page .p02-breadcrumbs { margin-bottom: 22px; }
#P02-page .p02-breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; color: #7d7d7d; list-style: none; font-size: 11px; line-height: 1.4; }
#P02-page .p02-breadcrumbs li + li::before { content: "/"; margin-right: 8px; color: #b0b0b0; }
#P02-page .p02-breadcrumbs a { color: inherit; text-decoration: none; }
#P02-page .p02-breadcrumbs a:hover { color: var(--p02-blue); }

#P02-page .p02-disclosure { margin-top: 34px; }
#P02-page .p02-disclosure > summary { min-height: 66px; display: grid; grid-template-columns: minmax(0,1fr) auto 28px; align-items: center; gap: 18px; padding: 16px 20px; color: var(--p02-ink); background: var(--mr-color-paper); border: 1px solid var(--p02-line); border-radius: 12px; cursor: pointer; list-style: none; }
#P02-page .p02-disclosure > summary::-webkit-details-marker { display: none; }
#P02-page .p02-disclosure > summary span { font-size: 13px; font-weight: var(--mr-weight-ui); }
#P02-page .p02-disclosure > summary small { color: var(--p02-copy); font-size: 10px; }
#P02-page .p02-disclosure > summary i { position: relative; width: 28px; height: 28px; display: block; border: 1px solid #d9dce5; border-radius: 50%; }
#P02-page .p02-disclosure > summary i::before, #P02-page .p02-disclosure > summary i::after { content: ""; position: absolute; top: 50%; left: 50%; width: 10px; height: 1.25px; background: var(--p02-blue); transform: translate(-50%,-50%); }
#P02-page .p02-disclosure > summary i::after { transform: translate(-50%,-50%) rotate(90deg); transition: transform .2s ease; }
#P02-page .p02-disclosure[open] > summary i::after { transform: translate(-50%,-50%) rotate(0); }
#P02-page .p02-disclosure[open] > summary { border-color: #d6dcfb; }
#P02-page .p02-disclosure .p02-scope__panel, #P02-page .p02-disclosure .p02-checks__body, #P02-page .p02-disclosure .p02-workflow-table { margin-top: 14px; }

#P02-page .p02-section-heading--split { display: grid; grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr); align-items: end; gap: clamp(44px,7vw,104px); }
#P02-page .p02-section-heading--split .mr-lead { margin: 0; }

#P02-page #P02-B07, #P02-page #P02-B08, #P02-page #P02-B09, #P02-page #P02-B10, #P02-page #P02-B11, #P02-page #P02-B12, #P02-page #P02-B13 { scroll-margin-top: 154px; }
#P02-page .p02-deliverables__layout { display: grid; grid-template-columns: minmax(330px,.78fr) minmax(0,1.22fr); align-items: stretch; gap: 22px; margin-top: 46px; }
#P02-page .p02-deliverables__visual { position: relative; min-width: 0; margin: 0; padding: 26px; overflow: hidden; background: #f7f8fb; border: 1px solid var(--p02-line); border-radius: var(--mr-radius-card); }
#P02-page .p02-deliverables__visual picture { height: 100%; min-height: 430px; display: flex; align-items: center; justify-content: center; }
#P02-page .p02-deliverables__visual img { width: 100%; max-height: 500px; display: block; object-fit: contain; border-radius: 10px; box-shadow: 0 16px 38px rgba(35,41,65,.1); }
#P02-page .p02-demo-badge { position: absolute; top: 18px; left: 18px; z-index: 1; padding: 7px 10px; color: #fff; background: var(--p02-ink); border-radius: 999px; font-size: 9px; font-weight: var(--mr-weight-ui); letter-spacing: .05em; text-transform: uppercase; }
#P02-page .p02-deliverables__visual figcaption { margin-top: 14px; color: var(--p02-copy); font-size: 9.5px; line-height: 1.45; }
#P02-page .p02-deliverables__list { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); overflow: hidden; background: var(--mr-color-paper); border: 1px solid var(--p02-line); border-radius: var(--mr-radius-card); }
#P02-page .p02-deliverables__list article { min-height: 132px; display: grid; grid-template-columns: 32px minmax(0,1fr); align-content: center; gap: 12px; padding: 22px; border-right: 1px solid var(--p02-line); border-bottom: 1px solid var(--p02-line); }
#P02-page .p02-deliverables__list article:nth-child(even) { border-right: 0; }
#P02-page .p02-deliverables__list article:nth-last-child(-n+2) { border-bottom: 0; }
#P02-page .p02-deliverables__list article > span { color: var(--p02-blue); font-size: 9px; font-weight: var(--mr-weight-ui); }
#P02-page .p02-deliverables__list h3 { margin: 0; color: var(--p02-ink); font-size: 14px; font-weight: var(--mr-weight-ui); line-height: 1.35; }
#P02-page .p02-deliverables__list p { margin: 7px 0 0; color: var(--p02-copy); font-size: 10.5px; line-height: 1.5; }
#P02-page .p02-result-note { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-top: 22px; padding: 20px 24px; background: var(--p02-green-soft); border: 1px solid rgba(53,179,74,.18); border-radius: 12px; }
#P02-page .p02-result-note strong { color: #225e30; font-size: 12px; }
#P02-page .p02-result-note span { color: #4f6c57; font-size: 10px; }

#P02-page .p02-packages, #P02-page .p02-timing, #P02-page .p02-faq { background: var(--p02-soft); }
#P02-page .p02-inline-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 16px; color: var(--p02-blue); text-decoration: none; font-size: 11px; font-weight: var(--mr-weight-ui); }
#P02-page .p02-inline-link::after { content: "→"; font-size: 15px; }
#P02-page .p02-package-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; margin-top: 46px; }
#P02-page .p02-package-card { position: relative; min-width: 0; display: flex; flex-direction: column; padding: 28px; background: var(--mr-color-paper); border: 1px solid var(--p02-line); border-radius: var(--mr-radius-card); }
#P02-page .p02-package-card--featured { border-color: var(--p02-blue); box-shadow: 0 20px 48px rgba(71,89,245,.12); transform: translateY(-8px); }
#P02-page .p02-package-card__badge { position: absolute; top: 0; left: 28px; padding: 7px 11px; color: #fff; background: var(--p02-blue); border-radius: 0 0 9px 9px; font-size: 8.5px; font-weight: var(--mr-weight-ui); letter-spacing: .04em; text-transform: uppercase; }
#P02-page .p02-package-card__eyebrow { margin: 0 0 10px; color: var(--p02-blue); font-size: 9px; font-weight: var(--mr-weight-ui); letter-spacing: .07em; text-transform: uppercase; }
#P02-page .p02-package-card--featured .p02-package-card__eyebrow { margin-top: 18px; }
#P02-page .p02-package-card h3 { margin: 0; color: var(--p02-ink); font-size: 22px; font-weight: var(--mr-weight-display); line-height: 1.2; letter-spacing: -.02em; }
#P02-page .p02-package-card__for { min-height: 60px; margin: 14px 0 0; color: var(--p02-copy); font-size: 11px; line-height: 1.5; }
#P02-page .p02-package-card__outcome { margin-top: 22px; padding: 16px; background: #f7f8fb; border-radius: 10px; }
#P02-page .p02-package-card__outcome span, #P02-page .p02-package-card__outcome strong { display: block; }
#P02-page .p02-package-card__outcome span { color: #838690; font-size: 8.5px; font-weight: var(--mr-weight-ui); letter-spacing: .06em; text-transform: uppercase; }
#P02-page .p02-package-card__outcome strong { margin-top: 5px; color: var(--p02-ink); font-size: 12px; line-height: 1.4; }
#P02-page .p02-package-card ul { display: grid; gap: 10px; margin: 22px 0 0; padding: 0; list-style: none; }
#P02-page .p02-package-card li { position: relative; padding-left: 20px; color: #505050; font-size: 10.5px; line-height: 1.4; }
#P02-page .p02-package-card li::before { content: ""; position: absolute; top: .48em; left: 1px; width: 7px; height: 7px; background: var(--p02-green); border-radius: 50%; box-shadow: 0 0 0 3px var(--p02-green-soft); }
#P02-page .p02-package-card__boundary { margin: 22px 0; padding-top: 18px; color: var(--p02-copy); border-top: 1px solid var(--p02-line); font-size: 9.5px; line-height: 1.5; }
#P02-page .p02-package-card__boundary b { color: var(--p02-ink); }
#P02-page .p02-package-card .mr-button { width: 100%; margin-top: auto; }
#P02-page .p02-package-complex { display: flex; align-items: center; justify-content: space-between; gap: 32px; margin-top: 26px; padding: 24px 28px; background: var(--mr-color-paper); border: 1px solid var(--p02-line); border-radius: var(--mr-radius-card); }
#P02-page .p02-package-complex p { margin: 0 0 6px; color: var(--p02-blue); font-size: 9px; font-weight: var(--mr-weight-ui); letter-spacing: .06em; text-transform: uppercase; }
#P02-page .p02-package-complex h3 { margin: 0; color: var(--p02-ink); font-size: 17px; font-weight: var(--mr-weight-ui); }
#P02-page .p02-package-complex span { display: block; max-width: 800px; margin-top: 7px; color: var(--p02-copy); font-size: 10.5px; line-height: 1.45; }
#P02-page .p02-pricing-note { margin: 16px 0 0; color: #797979; font-size: 9.5px; line-height: 1.45; }

#P02-page .p02-access-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 20px; margin-top: 46px; }
#P02-page .p02-access-card { padding: 30px; border: 1px solid var(--p02-line); border-radius: var(--mr-radius-card); }
#P02-page .p02-access-card--safe { background: #f7fbf7; border-color: rgba(53,179,74,.2); }
#P02-page .p02-access-card--boundary { background: #fbfbfc; }
#P02-page .p02-access-card__head { display: flex; align-items: center; gap: 15px; padding-bottom: 20px; border-bottom: 1px solid rgba(120,120,120,.16); }
#P02-page .p02-access-card__head > span { flex: 0 0 44px; width: 44px; height: 44px; display: grid; place-items: center; color: var(--p02-blue); background: var(--mr-color-paper); border-radius: 12px; }
#P02-page .p02-access-card--safe .p02-access-card__head > span { color: var(--p02-green); }
#P02-page .p02-access-card__head svg { width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-width: 1.35; stroke-linecap: round; stroke-linejoin: round; }
#P02-page .p02-access-card__head p { margin: 0 0 4px; color: var(--p02-copy); font-size: 9px; font-weight: var(--mr-weight-ui); letter-spacing: .06em; text-transform: uppercase; }
#P02-page .p02-access-card h3 { margin: 0; color: var(--p02-ink); font-size: 19px; font-weight: var(--mr-weight-ui); }
#P02-page .p02-access-card ul { display: grid; gap: 12px; margin: 24px 0; padding: 0; list-style: none; }
#P02-page .p02-access-card li { position: relative; padding-left: 22px; color: #505050; font-size: 11px; line-height: 1.45; }
#P02-page .p02-access-card li::before { content: ""; position: absolute; top: .5em; left: 2px; width: 7px; height: 7px; border: 1.5px solid var(--p02-blue); border-radius: 50%; }
#P02-page .p02-access-card--safe li::before { border-color: var(--p02-green); }
#P02-page .p02-access-card > p { margin: 0; color: var(--p02-copy); font-size: 10px; line-height: 1.45; }
#P02-page .p02-access-card > p strong { color: var(--p02-ink); }
#P02-page .p02-source-note { margin: 18px 0 0; color: #777; font-size: 9.5px; line-height: 1.5; }
#P02-page .p02-source-note a { color: var(--p02-blue); }

#P02-page .p02-timing-table { margin-top: 46px; overflow: hidden; background: var(--mr-color-paper); border: 1px solid var(--p02-line); border-radius: var(--mr-radius-card); }
#P02-page .p02-timing-table__head, #P02-page .p02-timing-table li { display: grid; grid-template-columns: 100px repeat(2,minmax(0,1fr)); }
#P02-page .p02-timing-table__head { min-height: 58px; align-items: center; color: #858895; border-bottom: 1px solid var(--p02-line); font-size: 9px; font-weight: var(--mr-weight-ui); letter-spacing: .07em; text-transform: uppercase; }
#P02-page .p02-timing-table__head span, #P02-page .p02-timing-table li > * { padding: 20px 24px; }
#P02-page .p02-timing-table ol { margin: 0; padding: 0; list-style: none; }
#P02-page .p02-timing-table li { min-height: 112px; border-bottom: 1px solid var(--p02-line); }
#P02-page .p02-timing-table li:last-child { border-bottom: 0; }
#P02-page .p02-timing-table li > span { display: flex; align-items: center; color: var(--p02-blue); border-right: 1px solid var(--p02-line); font-size: 10px; font-weight: var(--mr-weight-ui); }
#P02-page .p02-timing-table li > div { display: flex; flex-direction: column; justify-content: center; border-right: 1px solid var(--p02-line); }
#P02-page .p02-timing-table li > div:last-child { background: #fbfcff; border-right: 0; }
#P02-page .p02-timing-table b { color: var(--p02-ink); font-size: 12px; font-weight: var(--mr-weight-ui); }
#P02-page .p02-timing-table p { margin: 7px 0 0; color: var(--p02-copy); font-size: 10.5px; line-height: 1.48; }

#P02-page .p02-related-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); overflow: hidden; margin-top: 46px; background: var(--mr-color-paper); border: 1px solid var(--p02-line); border-radius: var(--mr-radius-card); }
#P02-page .p02-related-grid a { min-height: 150px; display: grid; grid-template-columns: 28px minmax(0,1fr) 24px; align-items: center; gap: 12px; padding: 26px; color: inherit; border-right: 1px solid var(--p02-line); border-bottom: 1px solid var(--p02-line); text-decoration: none; transition: background .2s ease; }
#P02-page .p02-related-grid a:nth-child(3n) { border-right: 0; }
#P02-page .p02-related-grid a:nth-last-child(-n+3) { border-bottom: 0; }
#P02-page .p02-related-grid a:hover { background: #f8f9fd; }
#P02-page .p02-related-grid a > span { align-self: start; color: var(--p02-blue); font-size: 9px; font-weight: var(--mr-weight-ui); }
#P02-page .p02-related-grid h3 { margin: 0; color: var(--p02-ink); font-size: 14px; font-weight: var(--mr-weight-ui); line-height: 1.35; }
#P02-page .p02-related-grid p { margin: 8px 0 0; color: var(--p02-copy); font-size: 10.5px; line-height: 1.45; }
#P02-page .p02-related-grid i { justify-self: end; color: var(--p02-blue); font-size: 18px; font-style: normal; transition: transform .2s ease; }
#P02-page .p02-related-grid a:hover i { transform: translateX(3px); }

#P02-page .p02-faq__layout { display: grid; grid-template-columns: minmax(300px,.72fr) minmax(0,1.28fr); align-items: start; gap: clamp(50px,8vw,118px); }
#P02-page .p02-faq__heading { position: sticky; top: 180px; }
#P02-page .p02-faq__heading .mr-lead { margin-top: 22px; }
#P02-page .p02-faq__heading .mr-button { margin-top: 28px; }
#P02-page .p02-faq__list { overflow: hidden; background: var(--mr-color-paper); border: 1px solid var(--p02-line); border-radius: var(--mr-radius-card); }
#P02-page .p02-faq__list details { border-bottom: 1px solid var(--p02-line); }
#P02-page .p02-faq__list details:last-child { border-bottom: 0; }
#P02-page .p02-faq__list summary { min-height: 72px; display: grid; grid-template-columns: minmax(0,1fr) 24px; align-items: center; gap: 18px; padding: 18px 22px; color: var(--p02-ink); cursor: pointer; list-style: none; }
#P02-page .p02-faq__list summary::-webkit-details-marker { display: none; }
#P02-page .p02-faq__list summary span { font-size: 13px; font-weight: var(--mr-weight-ui); line-height: 1.4; }
#P02-page .p02-faq__list summary i { position: relative; width: 24px; height: 24px; display: block; }
#P02-page .p02-faq__list summary i::before, #P02-page .p02-faq__list summary i::after { content: ""; position: absolute; top: 50%; left: 50%; width: 12px; height: 1.25px; background: var(--p02-blue); transform: translate(-50%,-50%); }
#P02-page .p02-faq__list summary i::after { transform: translate(-50%,-50%) rotate(90deg); transition: transform .2s ease; }
#P02-page .p02-faq__list details[open] summary i::after { transform: translate(-50%,-50%) rotate(0); }
#P02-page .p02-faq__list details[open] summary { color: var(--p02-blue); }
#P02-page .p02-faq__list details > div { padding: 0 58px 22px 22px; }
#P02-page .p02-faq__list p { margin: 0; color: var(--p02-copy); font-size: 11px; line-height: 1.65; }

#P02-page .p02-final { padding: clamp(76px,8vw,118px) 0; color: #fff; background: #111; }
#P02-page .p02-final__layout { display: grid; grid-template-columns: minmax(0,1.08fr) minmax(360px,.72fr); align-items: center; gap: clamp(55px,9vw,130px); }
#P02-page .p02-final .mr-eyebrow { color: #aeb3ff; }
#P02-page .p02-final h2 { max-width: 720px; margin: 12px 0 0; color: #fff; font-size: clamp(38px,4.1vw,64px); font-weight: var(--mr-weight-display); line-height: 1.08; letter-spacing: -.035em; }
#P02-page .p02-final__copy > p:not(.mr-eyebrow) { max-width: 700px; margin: 24px 0 0; color: #b9b9bf; font-size: 14px; line-height: 1.65; }
#P02-page .p02-final__copy .mr-button { margin-top: 30px; }
#P02-page .p02-final__checklist { padding: 28px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.13); border-radius: var(--mr-radius-card); }
#P02-page .p02-final__checklist > p { margin: 0; color: #fff; font-size: 13px; font-weight: var(--mr-weight-ui); }
#P02-page .p02-final__checklist ul { display: grid; gap: 12px; margin: 22px 0; padding: 0; list-style: none; }
#P02-page .p02-final__checklist li { position: relative; padding-left: 22px; color: #c8c8cc; font-size: 11px; }
#P02-page .p02-final__checklist li::before { content: ""; position: absolute; top: .45em; left: 1px; width: 7px; height: 7px; background: var(--p02-green); border-radius: 50%; box-shadow: 0 0 0 3px rgba(53,179,74,.16); }
#P02-page .p02-final__checklist > span { display: flex; align-items: center; gap: 10px; padding-top: 18px; color: #aeb1ba; border-top: 1px solid rgba(255,255,255,.12); font-size: 9.5px; line-height: 1.45; }
#P02-page .p02-final__checklist svg { flex: 0 0 22px; width: 22px; height: 22px; fill: none; stroke: var(--p02-green); stroke-width: 1.45; stroke-linecap: round; stroke-linejoin: round; }

@media (max-width: 1023px) {

  #P02-page .p02-section-heading--split { grid-template-columns: 1fr; align-items: start; gap: 24px; }
  #P02-page .p02-deliverables__layout { grid-template-columns: 1fr; }
  #P02-page .p02-deliverables__visual picture { min-height: 0; }
  #P02-page .p02-package-grid { grid-template-columns: 1fr; }
  #P02-page .p02-package-card--featured { transform: none; }
  #P02-page .p02-package-card__for { min-height: 0; }
  #P02-page .p02-related-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  #P02-page .p02-related-grid a:nth-child(3n) { border-right: 1px solid var(--p02-line); }
  #P02-page .p02-related-grid a:nth-child(even) { border-right: 0; }
  #P02-page .p02-related-grid a:nth-last-child(-n+3) { border-bottom: 1px solid var(--p02-line); }
  #P02-page .p02-related-grid a:nth-last-child(-n+2) { border-bottom: 0; }
  #P02-page .p02-faq__layout { grid-template-columns: 1fr; gap: 34px; }
  #P02-page .p02-faq__heading { position: static; }
  #P02-page .p02-final__layout { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  #P02-page #P02-B07, #P02-page #P02-B08, #P02-page #P02-B09, #P02-page #P02-B10, #P02-page #P02-B11, #P02-page #P02-B12, #P02-page #P02-B13 { scroll-margin-top: 126px; }
  #P02-page .p02-breadcrumbs { margin-bottom: 18px; }

  #P02-page .p02-disclosure { margin-top: 26px; }
  #P02-page .p02-disclosure > summary { grid-template-columns: minmax(0,1fr) 28px; gap: 12px; padding: 14px 16px; }
  #P02-page .p02-disclosure > summary small { display: none; }
  #P02-page .p02-disclosure .p02-scope__panel, #P02-page .p02-disclosure .p02-checks__body, #P02-page .p02-disclosure .p02-workflow-table { margin-top: 12px; }
  #P02-page .p02-deliverables__layout, #P02-page .p02-package-grid, #P02-page .p02-access-grid, #P02-page .p02-related-grid { margin-top: 32px; }
  #P02-page .p02-deliverables__visual { padding: 18px; }
  #P02-page .p02-deliverables__list { grid-template-columns: 1fr; }
  #P02-page .p02-deliverables__list article, #P02-page .p02-deliverables__list article:nth-child(even), #P02-page .p02-deliverables__list article:nth-last-child(-n+2) { min-height: 0; border-right: 0; border-bottom: 1px solid var(--p02-line); }
  #P02-page .p02-deliverables__list article:last-child { border-bottom: 0; }
  #P02-page .p02-result-note { align-items: flex-start; flex-direction: column; gap: 6px; padding: 18px; }
  #P02-page .p02-package-card { padding: 24px 20px; }
  #P02-page .p02-package-card__badge { left: 20px; }
  #P02-page .p02-package-complex { align-items: flex-start; flex-direction: column; padding: 22px 20px; }
  #P02-page .p02-access-grid { grid-template-columns: 1fr; }
  #P02-page .p02-access-card { padding: 22px 19px; }
  #P02-page .p02-timing-table { margin-top: 32px; overflow: visible; background: transparent; border: 0; border-radius: 0; }
  #P02-page .p02-timing-table__head { display: none; }
  #P02-page .p02-timing-table ol { display: grid; gap: 12px; }
  #P02-page .p02-timing-table li { grid-template-columns: 52px minmax(0,1fr); overflow: hidden; background: var(--mr-color-paper); border: 1px solid var(--p02-line); border-radius: 12px; }
  #P02-page .p02-timing-table li:last-child { border-bottom: 1px solid var(--p02-line); }
  #P02-page .p02-timing-table li > span { grid-row: 1 / 3; padding: 18px 14px; }
  #P02-page .p02-timing-table li > div { grid-column: 2; padding: 18px; border-right: 0; border-bottom: 1px solid var(--p02-line); }
  #P02-page .p02-timing-table li > div:last-child { border-bottom: 0; }
  #P02-page .p02-related-grid { grid-template-columns: 1fr; }
  #P02-page .p02-related-grid a, #P02-page .p02-related-grid a:nth-child(3n), #P02-page .p02-related-grid a:nth-child(even), #P02-page .p02-related-grid a:nth-last-child(-n+3), #P02-page .p02-related-grid a:nth-last-child(-n+2) { min-height: 126px; border-right: 0; border-bottom: 1px solid var(--p02-line); }
  #P02-page .p02-related-grid a:last-child { border-bottom: 0; }
  #P02-page .p02-faq__list summary { min-height: 66px; padding: 16px 18px; }
  #P02-page .p02-faq__list summary span { font-size: 12px; }
  #P02-page .p02-faq__list details > div { padding: 0 46px 19px 18px; }
  #P02-page .p02-final { padding-block: 70px; }
  #P02-page .p02-final h2 { font-size: clamp(34px,11vw,46px); }
  #P02-page .p02-final__checklist { padding: 22px 19px; }
}

@media (prefers-reduced-motion: reduce) {
  #P02-page .p02-disclosure > summary i::after, #P02-page .p02-faq__list summary i::after, #P02-page .p02-related-grid i { transition: none; }
}
/* P02 premium unification — 2026-09-22 */

/* The hero now uses the same primitives and pacing as the approved P01. */
#P02-page .p02-hero { padding: 64px 0 72px; }
#P02-page .p02-hero .mr-eyebrow { margin-bottom: 16px; }
#P02-page .p02-hero__lead { margin-top: 24px; }
#P02-page .p02-hero__support { margin-top: 4px; }
#P02-page .p02-hero__actions { margin-top: 28px; }
#P02-page .p02-hero__visual { margin-top: 40px; }
#P02-page .p02-breadcrumbs { margin-bottom: 18px; }
#P02-page .p02-breadcrumbs ol { font-size: 13px; line-height: 1.45; }

#P02-page #P02-B02, #P02-page #P02-B03, #P02-page #P02-B04, #P02-page #P02-B05, #P02-page #P02-B06, #P02-page #P02-B07, #P02-page #P02-B08, #P02-page #P02-B09, #P02-page #P02-B10, #P02-page #P02-B11, #P02-page #P02-B12, #P02-page #P02-B13 { scroll-margin-top: 24px; }

/* Four visual chapters replace mechanical zebra striping. */
#P02-page #P02-B02, #P02-page #P02-B03 { background: #fff; }
#P02-page #P02-B04, #P02-page #P02-B05, #P02-page #P02-B06 { background: var(--p02-soft); }
#P02-page #P02-B07, #P02-page #P02-B08 { background: #fff; }
#P02-page #P02-B09, #P02-page #P02-B10 { background: var(--p02-soft); }
#P02-page #P02-B11, #P02-page #P02-B12 { background: #fff; }
#P02-page #P02-B03, #P02-page #P02-B05, #P02-page #P02-B06, #P02-page #P02-B08, #P02-page #P02-B10, #P02-page #P02-B12 { border-top: 1px solid var(--p02-line); }
#P02-page #P02-B04 { border-top: 0; }

/* P01-aligned readable typography. */
#P02-page .p02-fit-card h3, #P02-page .p02-cause-map h3, #P02-page .p02-evidence h3, #P02-page .p02-access-card h3 { font-size: 20px; }
#P02-page .p02-fit-card__summary, #P02-page .p02-fit-card li { font-size: 14px; line-height: 1.55; }
#P02-page .p02-cause-map__surfaces b { font-size: 14px; }
#P02-page .p02-cause-map__surfaces small { font-size: 12px; }
#P02-page .p02-evidence figcaption b { font-size: 14px; }
#P02-page .p02-evidence figcaption small { font-size: 12px; }
#P02-page .p02-disclosure > summary span { font-size: 15px; }
#P02-page .p02-disclosure > summary small { font-size: 12px; }
#P02-page .p02-checks-direction__title span, #P02-page .p02-checks-filter__steps span, #P02-page .p02-report-example__grid span, #P02-page .p02-workflow-action-label { font-size: 11px; }
#P02-page .p02-checks-direction__title b { font-size: 15px; }
#P02-page .p02-checks-directions li > p { font-size: 13px; }
#P02-page .p02-checks-filter__steps b, #P02-page .p02-checks-filter__result b { font-size: 14px; }
#P02-page .p02-checks-filter__steps small, #P02-page .p02-checks-filter__result small { font-size: 12px; }
#P02-page .p02-report-example__grid p { font-size: 14px; }
#P02-page .p02-workflow-phases b { font-size: 14px; }
#P02-page .p02-workflow-phases small { font-size: 12px; }
#P02-page .p02-workflow-main h3 { font-size: 19px; }
#P02-page .p02-workflow-main p, #P02-page .p02-workflow-meta p, #P02-page .p02-workflow-result p { font-size: 14px; line-height: 1.55; }
#P02-page .p02-workflow-main > span, #P02-page .p02-workflow-meta > span, #P02-page .p02-workflow-result > span { font-size: 11px; }
#P02-page .p02-deliverables__list h3 { font-size: 18px; }
#P02-page .p02-deliverables__list p { font-size: 14px; line-height: 1.55; }
#P02-page .p02-deliverables__visual figcaption { font-size: 12px; }
#P02-page .p02-result-note strong { font-size: 14px; }
#P02-page .p02-result-note span { font-size: 12px; }
#P02-page .p02-inline-link { font-size: 13px; }

/* Commercial cards read as premium service choices, not dashboard widgets. */
#P02-page .p02-package-card { padding: 30px; }
#P02-page .p02-package-card__badge { font-size: 10px; }
#P02-page .p02-package-card__eyebrow { font-size: 11px; }
#P02-page .p02-package-card h3 { font-size: 23px; }
#P02-page .p02-package-card__for { min-height: 70px; font-size: 14px; line-height: 1.55; }
#P02-page .p02-package-card__outcome span { font-size: 10px; }
#P02-page .p02-package-card__outcome strong { font-size: 14px; }
#P02-page .p02-package-card__price { margin: 14px 0 0; color: var(--p02-ink); font-size: 15px; font-weight: var(--mr-weight-ui); }
#P02-page .p02-package-card li { font-size: 14px; line-height: 1.5; }
#P02-page .p02-package-card__boundary { font-size: 12px; line-height: 1.55; }
#P02-page .p02-package-complex p { font-size: 11px; }
#P02-page .p02-package-complex h3 { font-size: 19px; }
#P02-page .p02-package-complex span { font-size: 14px; line-height: 1.55; }
#P02-page .p02-pricing-note { font-size: 12px; line-height: 1.55; }

/* Trust, timing, related links and FAQ share P01 readability. */
#P02-page .p02-access-card__head p { font-size: 11px; }
#P02-page .p02-access-card li { font-size: 14px; line-height: 1.55; }
#P02-page .p02-access-card > p { font-size: 13px; }
#P02-page .p02-source-note { font-size: 12px; line-height: 1.6; }
#P02-page .p02-timing-table__head { font-size: 11px; }
#P02-page .p02-timing-table b { font-size: 15px; }
#P02-page .p02-timing-table p { font-size: 13px; line-height: 1.55; }
#P02-page .p02-related { padding-block: 72px; }
#P02-page .p02-related-grid a { min-height: 138px; }
#P02-page .p02-related-grid h3 { font-size: 18px; }
#P02-page .p02-related-grid p { font-size: 14px; line-height: 1.5; }
#P02-page .p02-faq__heading { position: static; top: auto; }
#P02-page .p02-faq__list summary { min-height: 78px; padding: 20px 24px; }
#P02-page .p02-faq__list summary span { font-size: 19px; line-height: 1.45; }
#P02-page .p02-faq__list details > div { padding: 0 62px 26px 24px; }
#P02-page .p02-faq__list p { font-size: 15px; line-height: 1.65; }
#P02-page .p02-final__copy > p:not(.mr-eyebrow) { font-size: 16px; }
#P02-page .p02-final__checklist > p { font-size: 15px; }
#P02-page .p02-final__checklist li { font-size: 14px; line-height: 1.5; }
#P02-page .p02-final__checklist > span { font-size: 12px; }

@media (max-width: 1023px) {

  #P02-page .p02-package-card--featured { transform: none; }
}

@media (max-width: 767px) {
  #P02-page .p02-hero { padding: 48px 0 56px; }
  #P02-page .p02-hero__visual { margin-top: 34px; }

  #P02-page .p02-package-card__for { min-height: 0; }
  #P02-page .p02-related { padding-block: 56px; }
  #P02-page .p02-related-grid a { min-height: 0; }
  #P02-page .p02-faq__list summary span { font-size: 17px; }
  #P02-page .p02-faq__list details > div { padding-right: 24px; }
  #P02-page .p02-faq__list p { font-size: 14px; }
}

/* P02 breadcrumb correction, 2026-09-23. */
#P02-page .p02-breadcrumbs {
  width: 100%;
  margin: 0 auto 22px;
  text-align: center;
}

#P02-page .p02-breadcrumbs ol {
  display: inline-flex;
  width: auto;
  max-width: 100%;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 0;
  padding: 0;
  color: #858585;
  list-style: none;
  font-size: 12px;
  line-height: 1.4;
  white-space: nowrap;
}

#P02-page .p02-breadcrumbs li {
  display: inline-flex;
  width: auto;
  min-width: 0;
  flex: 0 0 auto;
  align-items: center;
  margin: 0;
  padding: 0;
}

#P02-page .p02-breadcrumbs li + li::before {
  content: "/";
  margin: 0 11px;
  color: #b8b8b8;
}

#P02-page .p02-breadcrumbs a {
  color: #696969;
  text-decoration: none;
  transition: color var(--mr-motion-fast, 180ms);
}

#P02-page .p02-breadcrumbs a:hover { color: var(--mr-color-primary, #2562f4); }
#P02-page .p02-breadcrumbs [aria-current="page"] { color: #858585; }

@media (max-width: 420px) {
  #P02-page .p02-breadcrumbs ol { font-size: 11px; }
  #P02-page .p02-breadcrumbs li + li::before { margin-inline: 8px; }
}
