/* =========================================================
   PREMIUM LIGHT ASSESSMENT / GATE STYLES
   Report styles begin separately at --np variables.
   ========================================================= */

:root {
  --rla-ink: #07111f;
  --rla-muted: #5e6d82;
  --rla-line: #d9e3f0;
  --rla-soft-line: #e7eef7;
  --rla-bg: #f6f9ff;
  --rla-card: #ffffff;
  --rla-blue: #2b5cff;
  --rla-blue-dark: #2148c8;
  --rla-green: #16a34a;
  --rla-green-soft: #eaf8ef;
  --rla-shadow: 0 26px 80px rgba(35, 63, 112, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 6%, rgba(43, 92, 255, 0.10), transparent 30%),
    radial-gradient(circle at 88% 4%, rgba(43, 92, 255, 0.07), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, var(--rla-bg) 100%);
  color: var(--rla-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.rla {
  min-height: 100vh;
  padding: clamp(28px, 4vw, 56px);
  overflow-x: hidden;
}

.rla-shell {
  width: min(1280px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(400px, 0.95fr) minmax(520px, 1.05fr);
  gap: clamp(40px, 5vw, 76px);
  align-items: center;
}

.rla-left {
  color: var(--rla-ink);
}

.rla-eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  padding: 9px 0 10px;
  border-top: 1px solid var(--rla-blue);
  border-bottom: 1px solid var(--rla-blue);
  color: var(--rla-blue);
  font-size: 11px;
  line-height: 1.1;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.rla-left h1 {
  max-width: 560px;
  margin: 34px 0 24px;
  color: var(--rla-ink);
  font-size: clamp(46px, 5.1vw, 74px);
  line-height: 0.92;
  letter-spacing: -0.078em;
  font-weight: 950;
}

.rla-lead {
  max-width: 520px;
  margin: 0;
  color: var(--rla-muted);
  font-size: clamp(18px, 1.45vw, 21px);
  line-height: 1.44;
  letter-spacing: -0.03em;
  font-weight: 650;
}

.rla-proof {
  display: none;
}

.rla-mini-proof {
  width: min(540px, 100%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 38px;
  border-top: 1px solid var(--rla-line);
  border-bottom: 1px solid var(--rla-line);
}

.rla-mini-proof span {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 14px;
  text-align: center;
  color: #4d5b70;
  font-size: clamp(10px, 0.82vw, 12px);
  line-height: 1.2;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.rla-mini-proof span + span {
  border-left: 1px solid var(--rla-line);
}

.rla-start {
  width: min(540px, 100%);
  min-height: 72px;
  margin-top: 36px;
  padding: 18px 24px;
  border: 0;
  border-radius: 0;
  background: var(--rla-blue);
  color: #ffffff;
  font-size: clamp(13px, 1.1vw, 17px);
  line-height: 1.12;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 22px 54px rgba(43, 92, 255, 0.20);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.rla-start:hover,
.business-name-submit:hover,
.rla-gate form button:hover,
.rla-question > button:hover {
  transform: translateY(-2px);
}

.rla-card {
  width: 100%;
  min-height: 520px;
  padding: clamp(34px, 3.2vw, 48px);
  border: 1px solid rgba(142, 160, 190, 0.32);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--rla-shadow);
  backdrop-filter: blur(16px);
}

.rla-progress {
  margin-bottom: 28px;
}

.rla-progress span {
  display: block;
  margin-bottom: 12px;
  color: var(--rla-blue);
  font-size: 11px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.rla-progress > div {
  height: 5px;
  overflow: hidden;
  background: #e8eef8;
}

.rla-progress i {
  display: block;
  width: 0%;
  height: 100%;
  background: var(--rla-blue);
  transition: width 0.35s ease;
}

.rla-question,
.rla-analysis,
.rla-gate,
.rla-report {
  display: none;
}

.rla-question.active,
.rla-analysis.is-visible,
.rla-gate.is-visible,
.rla-report.is-visible {
  display: block;
}

/* Gate containment guard: report stays hidden until valid email unlock */
#rlaReport:not(.is-visible) {
  display: none !important;
}

#rlaReport.is-visible {
  display: block;
}


.rla-question > span {
  display: block;
  margin-bottom: 16px;
  color: var(--rla-blue);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.rla-question h2,
.rla-analysis h2,
.rla-gate h2 {
  max-width: 680px;
  margin: 0 0 28px;
  color: var(--rla-ink);
  font-size: clamp(31px, 3vw, 46px);
  line-height: 0.98;
  letter-spacing: -0.06em;
  font-weight: 950;
}

.rla-interlude h2 {
  font-size: clamp(32px, 3.3vw, 50px);
}

.rla-interlude p {
  margin: 12px 0 0;
  color: var(--rla-muted);
  font-size: 17px;
  line-height: 1.45;
  font-weight: 650;
}

.rla-question > button:not(.business-name-submit) {
  width: 100%;
  margin: 10px 0 0;
  padding: 16px 18px;
  border: 1px solid var(--rla-line);
  border-radius: 0;
  background: #ffffff;
  color: var(--rla-ink);
  text-align: left;
  font-size: 16px;
  line-height: 1.28;
  font-weight: 760;
  letter-spacing: -0.018em;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.rla-question > button:not(.business-name-submit):hover,
.rla-question > button.is-selected {
  border-color: rgba(43, 92, 255, 0.48);
  background: #f7faff;
  box-shadow: 0 12px 28px rgba(43, 92, 255, 0.08);
}

.rla-custom-value-option {
  margin-top: 12px;
  padding: 16px 18px;
  border: 1px solid var(--rla-line);
  background: #ffffff;
  transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.rla-custom-value-option.is-active {
  border-color: rgba(43, 92, 255, 0.48);
  background: #f7faff;
  box-shadow: 0 12px 28px rgba(43, 92, 255, 0.08);
}

.rla-custom-value-option label {
  display: block;
  margin-bottom: 10px;
  color: var(--rla-ink);
  font-size: 16px;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: -0.018em;
}

.rla-custom-value-input-wrap {
  display: flex;
  align-items: center;
  min-height: 56px;
  border: 1px solid var(--rla-line);
  background: #ffffff;
}

.rla-custom-value-input-wrap span {
  padding: 0 0 0 16px;
  color: var(--rla-ink);
  font-size: 18px;
  font-weight: 850;
}

.rla-custom-value-input-wrap input {
  width: 100%;
  min-height: 54px;
  padding: 0 16px 0 8px;
  border: 0;
  outline: none;
  background: transparent;
  color: var(--rla-ink);
  font-size: 18px;
  font-weight: 750;
}

.rla-custom-value-input-wrap:focus-within {
  border-color: rgba(43, 92, 255, 0.62);
  box-shadow: 0 0 0 4px rgba(43, 92, 255, 0.09);
}

.rla-custom-value-apply {
  width: 100%;
  margin: 10px 0 0;
  padding: 13px 16px;
  border: 1px solid rgba(43, 92, 255, 0.36);
  background: #f7faff;
  color: var(--rla-blue);
  font-size: 14px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.rla-custom-value-option p {
  margin: 10px 0 0;
  color: var(--rla-muted);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 650;
}

.business-name-input,
.rla-gate form input {
  width: 100%;
  min-height: 62px;
  padding: 0 18px;
  border: 1px solid var(--rla-line);
  border-radius: 0;
  outline: none;
  background: #ffffff;
  color: var(--rla-ink);
  font-size: 17px;
  font-weight: 650;
}

.business-name-input:focus,
.rla-gate form input:focus {
  border-color: rgba(43, 92, 255, 0.62);
  box-shadow: 0 0 0 4px rgba(43, 92, 255, 0.09);
}

.business-name-error {
  display: none;
  margin: 10px 0 0;
  color: #b42318;
  font-size: 13px;
  font-weight: 800;
}

.business-name-error.is-visible {
  display: block;
}

.business-name-submit,
.rla-gate form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 64px;
  margin-top: 18px;
  padding: 0 22px;
  border: 0;
  border-radius: 0;
  background: var(--rla-blue);
  color: #ffffff;
  font-size: 14px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 18px 38px rgba(43, 92, 255, 0.18);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.business-name-submit:hover,
.rla-start:hover,
.rla-gate form button:hover {
  background: var(--rla-blue-dark);
  box-shadow: 0 22px 48px rgba(43, 92, 255, 0.24);
}

.rla-analysis {
  padding: 10px 0 4px;
}

.rla-analysis h2 {
  margin-bottom: 24px;
}

#rlaChecks {
  display: grid;
  gap: 11px;
}

#rlaChecks p {
  position: relative;
  margin: 0;
  padding: 15px 18px 15px 48px;
  border: 1px solid var(--rla-soft-line);
  background: #f8fbff;
  color: var(--rla-muted);
  font-size: 15px;
  line-height: 1.35;
  font-weight: 760;
  transition: background 0.28s ease, border-color 0.28s ease, color 0.28s ease, transform 0.28s ease;
}

#rlaChecks p::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 14px;
  height: 14px;
  border: 2px solid #b8c4d6;
  border-radius: 50%;
  transform: translateY(-50%);
  background: #ffffff;
  transition: background 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

#rlaChecks p.is-complete {
  background: var(--rla-green-soft);
  border-color: rgba(22, 163, 74, 0.36);
  color: #14532d;
  transform: translateX(3px);
}

#rlaChecks p.is-complete::before {
  background: var(--rla-green);
  border-color: var(--rla-green);
  box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.12);
}

#rlaChecks p.is-complete::after {
  content: "✓";
  position: absolute;
  left: 21px;
  top: 50%;
  transform: translateY(-55%);
  color: #ffffff;
  font-size: 10px;
  font-weight: 950;
}

.rla-gate {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.gate-complete-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 22px;
  padding: 9px 0 10px;
  border-top: 1px solid var(--rla-blue);
  border-bottom: 1px solid var(--rla-blue);
  color: var(--rla-blue);
  font-size: 10px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.gate-lead {
  max-width: 560px;
  margin: -10px auto 24px;
  color: var(--rla-muted);
  font-size: 18px;
  line-height: 1.4;
  font-weight: 750;
}

.gate-lead p {
  margin: 0;
}

.gate-lead p + p {
  margin-top: 14px;
}

.gate-more-leads-line,
.gate-preview-label {
  max-width: 560px;
  margin: 0 auto 16px;
  color: var(--rla-ink);
  font-size: 15px;
  line-height: 1.42;
  font-weight: 850;
}

.gate-preview-label {
  margin-top: 22px;
  margin-bottom: -10px;
  color: var(--rla-blue);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}


.gate-engine-hidden {
  margin: 0 auto 24px;
  padding: 18px;
  border-top: 1px solid var(--rla-line);
  border-bottom: 1px solid var(--rla-line);
  background: #f8fbff;
  color: var(--rla-ink);
  font-size: 15px;
  line-height: 1.45;
  font-weight: 760;
}

.gate-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 28px 0;
  border-top: 1px solid var(--rla-line);
  border-bottom: 1px solid var(--rla-line);
}

.rla-preview {
  min-height: 130px;
  padding: 20px 16px;
  background: #ffffff;
}

.rla-preview + .rla-preview {
  border-left: 1px solid var(--rla-line);
}

.rla-preview span,
.gate-capacity-line {
  color: var(--rla-muted);
}

.rla-preview span {
  display: block;
  min-height: 30px;
  font-size: 9px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.rla-preview strong {
  display: block;
  margin-top: 12px;
  color: var(--rla-ink);
  font-size: clamp(18px, 1.8vw, 23px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-weight: 950;
}

.gate-capacity-line {
  max-width: 560px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.42;
  font-weight: 650;
}

.gate-capacity-line strong {
  color: var(--rla-ink);
}

.rla-gate form {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.rla-gate form small {
  color: var(--rla-muted);
  font-size: 12px;
  font-weight: 750;
}

.rla-shell:has(.rla-gate.is-visible) {
  width: min(780px, 100%);
  grid-template-columns: 1fr;
}

.rla-shell:has(.rla-gate.is-visible) .rla-left {
  display: none;
}

.rla-shell:has(.rla-gate.is-visible) .rla-card {
  min-height: auto;
}

.rla-shell:has(.rla-gate.is-visible) .rla-progress {
  display: none;
}

.rla-shell:has(.rla-report.is-visible),
.rla-shell.report-mode {
  width: 100%;
  max-width: none;
  grid-template-columns: 1fr;
}

.rla-shell:has(.rla-report.is-visible) .rla-left,
.rla-shell.report-mode .rla-left {
  display: none;
}

.rla-shell:has(.rla-report.is-visible) .rla-progress,
.rla-shell.report-mode .rla-progress {
  display: none;
}

.rla-shell:has(.rla-report.is-visible) .rla-card,
.rla-shell.report-mode .rla-card {
  width: 100%;
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.rla-report.is-visible {
  width: 100%;
  margin: 0;
}

@media (max-height: 830px) and (min-width: 900px) {
  .rla {
    padding: 30px 48px 42px;
  }

  .rla-shell {
    grid-template-columns: minmax(380px, 0.95fr) minmax(500px, 1.05fr);
    gap: clamp(34px, 4vw, 64px);
  }

  .rla-left h1 {
    margin: 28px 0 20px;
    font-size: clamp(43px, 4.4vw, 62px);
  }

  .rla-lead {
    font-size: 17px;
    line-height: 1.42;
  }

  .rla-mini-proof {
    margin-top: 30px;
  }

  .rla-mini-proof span {
    min-height: 68px;
  }

  .rla-start {
    min-height: 66px;
    margin-top: 30px;
  }

  .rla-card {
    min-height: 470px;
    padding: 34px 40px 38px;
  }

  .rla-question h2,
  .rla-analysis h2,
  .rla-gate h2 {
    font-size: clamp(30px, 2.6vw, 40px);
    margin-bottom: 24px;
  }

  .rla-question > button:not(.business-name-submit) {
    padding: 14px 17px;
  }
}

@media (max-width: 1100px) {
  .rla {
    padding: 38px 22px 52px;
  }

  .rla-shell {
    grid-template-columns: 1fr;
    gap: 34px;
    align-items: start;
  }

  .rla-left,
  .rla-card {
    max-width: 760px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .rla-mini-proof {
    grid-template-columns: 1fr;
  }

  .rla-mini-proof span {
    min-height: auto;
    padding: 17px;
  }

  .rla-mini-proof span + span {
    border-left: 0;
    border-top: 1px solid var(--rla-line);
  }

  .gate-preview-grid {
    grid-template-columns: 1fr;
  }

  .rla-preview + .rla-preview {
    border-left: 0;
    border-top: 1px solid var(--rla-line);
  }
}

@media (max-width: 620px) {
  .rla {
    padding: 18px;
  }

  .rla-left h1 {
    margin: 28px 0 18px;
    font-size: 42px;
  }

  .rla-lead {
    font-size: 18px;
  }

  .rla-card {
    min-height: auto;
    padding: 28px 22px;
  }

  .rla-question h2,
  .rla-analysis h2,
  .rla-gate h2 {
    font-size: 31px;
  }

  .rla-start {
    min-height: 78px;
    font-size: 15px;
  }

  .rla-question > button:not(.business-name-submit) {
    font-size: 15px;
  }
}


:root {
--np-ink: #050b18;
--np-muted: #667386;
--np-line: #d8dee8;
--np-blue: #2b5cff;
--np-bg: #f5f8fd;
}

* {
box-sizing: border-box;
}

.np-report-top {
min-height: 100vh;
padding: 56px 6vw 72px;
background:
radial-gradient(circle at top right, rgba(43, 92, 255, 0.08), transparent 30%),
linear-gradient(180deg, #ffffff 0%, #f5f8fd 100%);
font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
color: var(--np-ink);
}

.np-report-wrap {
max-width: 1120px;
margin: 0 auto;
}

.np-report-meta {
display: flex;
justify-content: space-between;
align-items: flex-start;
gap: 24px;
margin-bottom: 48px;
}

.np-report-kicker {
color: var(--np-blue);
font-size: 11px;
font-weight: 950;
letter-spacing: 0.16em;
text-transform: uppercase;
}

.np-prepared {
text-align: right;
}

.np-prepared span {
display: block;
margin-bottom: 5px;
color: var(--np-blue);
font-size: 10px;
font-weight: 950;
letter-spacing: 0.15em;
text-transform: uppercase;
}

.np-prepared strong {
display: block;
font-size: 16px;
color: var(--np-ink);
}

.np-report-title {
max-width: 1040px;
margin: 0;
font-size: clamp(46px, 6.8vw, 86px);
line-height: 0.92;
letter-spacing: -0.075em;
font-weight: 950;
color: var(--np-ink);
}

.np-report-title span {
color: var(--np-blue);
}

.np-report-lede {
max-width: 920px;
margin: 40px 0 0;
color: var(--np-muted);
font-size: clamp(22px, 2.6vw, 34px);
line-height: 1.18;
letter-spacing: -0.045em;
font-weight: 800;
}

.np-report-lede strong {
color: var(--np-ink);
font-weight: 950;
}

.np-respect-note {
max-width: 820px;
margin: 26px 0 0;
color: var(--np-muted);
font-size: 17px;
line-height: 1.55;
font-weight: 600;
}

.np-respect-note strong {
color: var(--np-ink);
font-weight: 900;
}

.np-diagnostic-note {
max-width: 820px;
margin: 28px 0 0;
padding-left: 18px;
border-left: 2px solid var(--np-blue);
color: var(--np-muted);
font-size: 15px;
line-height: 1.5;
font-weight: 700;
}

.np-line {
height: 1px;
width: 100%;
margin: 54px 0 0;
background: var(--np-line);
}

.np-accordion {
margin-top: 0;
border-bottom: 1px solid var(--np-line);
}

.np-accordion-item {
border-top: 1px solid var(--np-line);
}

.np-accordion-button {
width: 100%;
display: grid;
grid-template-columns: 140px 1fr 42px;
gap: 28px;
align-items: center;
padding: 28px 0;
border: 0;
background: transparent;
text-align: left;
cursor: pointer;
color: var(--np-ink);
}

.np-accordion-number {
color: var(--np-blue);
font-size: 11px;
font-weight: 950;
letter-spacing: 0.14em;
text-transform: uppercase;
}

.np-accordion-title {
margin: 0;
font-size: clamp(26px, 3.2vw, 44px);
line-height: 0.98;
letter-spacing: -0.06em;
font-weight: 950;
}

.np-plus {
width: 42px;
height: 42px;
display: grid;
place-items: center;
border: 1px solid var(--np-line);
border-radius: 50%;
color: var(--np-blue);
font-size: 30px;
line-height: 1;
font-weight: 400;
transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.np-accordion-button:hover .np-plus {
background: var(--np-blue);
border-color: var(--np-blue);
color: #ffffff;
}

.np-accordion-item.is-open .np-plus {
transform: rotate(45deg);
background: var(--np-blue);
border-color: var(--np-blue);
color: #ffffff;
}

.np-accordion-panel {
display: grid;
grid-template-columns: 140px 1fr 42px;
gap: 28px;
max-height: 0;
overflow: hidden;
opacity: 0;
transition: max-height 0.28s ease, opacity 0.22s ease;
}

.np-accordion-item.is-open .np-accordion-panel {
max-height: 330px;
opacity: 1;
}

.np-accordion-copy {
grid-column: 2 / 3;
padding: 0 0 30px;
}

.np-accordion-copy p {
max-width: 760px;
margin: 0;
color: var(--np-muted);
font-size: 18px;
line-height: 1.48;
letter-spacing: -0.018em;
font-weight: 600;
}

.np-accordion-copy strong {
color: var(--np-ink);
font-weight: 950;
}

.np-secondary-signal {
display: none;
margin-top: 34px;
padding: 24px 0;
border-top: 1px solid var(--np-line);
border-bottom: 1px solid var(--np-line);
}

.np-secondary-signal.is-visible {
display: block;
}

.np-secondary-signal span {
display: block;
margin-bottom: 8px;
color: var(--np-blue);
font-size: 11px;
font-weight: 950;
letter-spacing: 0.15em;
text-transform: uppercase;
}

.np-secondary-signal p {
max-width: 820px;
margin: 0;
color: var(--np-muted);
font-size: 18px;
line-height: 1.5;
font-weight: 650;
}

.np-secondary-signal strong {
color: var(--np-ink);
font-weight: 950;
}

.np-black-band {
margin-top: 46px;
padding: 36px 0;
border-top: 1px solid var(--np-ink);
border-bottom: 1px solid var(--np-ink);
display: grid;
grid-template-columns: 0.85fr 1.15fr;
gap: 52px;
align-items: start;
}

.np-black-band span {
display: block;
margin-bottom: 12px;
color: var(--np-blue);
font-size: 11px;
font-weight: 950;
letter-spacing: 0.15em;
text-transform: uppercase;
}

.np-black-band h3 {
margin: 0;
font-size: clamp(34px, 4vw, 56px);
line-height: 0.94;
letter-spacing: -0.07em;
font-weight: 950;
}

.np-black-band p {
margin: 0;
color: var(--np-ink);
font-size: clamp(20px, 2.4vw, 30px);
line-height: 1.12;
letter-spacing: -0.045em;
font-weight: 820;
}

.np-black-band p strong {
color: var(--np-blue);
font-weight: 950;
}

.np-summary-strip {
margin-top: 36px;
display: grid;
grid-template-columns: repeat(3, 1fr);
border-top: 1px solid var(--np-line);
border-bottom: 1px solid var(--np-line);
}

.np-summary-item {
padding: 22px 24px 24px;
border-right: 1px solid var(--np-line);
}

.np-summary-item:last-child {
border-right: 0;
}

.np-summary-item span {
display: block;
margin-bottom: 8px;
color: var(--np-blue);
font-size: 10px;
font-weight: 950;
letter-spacing: 0.14em;
text-transform: uppercase;
}

.np-summary-item strong {
display: block;
color: var(--np-ink);
font-size: 22px;
line-height: 1.05;
letter-spacing: -0.035em;
font-weight: 950;
}

@media (max-width: 900px) {
.np-report-meta,
.np-black-band {
display: grid;
grid-template-columns: 1fr;
}

.np-prepared {
text-align: left;
}

.np-accordion-button,
.np-accordion-panel {
grid-template-columns: 1fr 40px;
gap: 16px;
}

.np-accordion-number {
grid-column: 1 / 3;
}

.np-accordion-title {
grid-column: 1 / 2;
}

.np-plus {
grid-column: 2 / 3;
grid-row: 2;
}

.np-accordion-copy {
grid-column: 1 / 3;
}

.np-summary-strip {
grid-template-columns: 1fr;
}

.np-summary-item {
border-right: 0;
border-bottom: 1px solid var(--np-line);
}

.np-summary-item:last-child {
border-bottom: 0;
}
}

@media (max-width: 560px) {
.np-report-top {
padding: 38px 20px 54px;
}

.np-report-title {
font-size: 44px;
letter-spacing: -0.065em;
}

.np-report-lede {
font-size: 23px;
}

.np-accordion-title {
font-size: 30px;
}

.np-accordion-copy p {
font-size: 17px;
}

.np-black-band p {
font-size: 22px;
}
}

  .np-patient-section {
    padding: 72px 6vw 84px;
    background: #ffffff;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--np-ink);
  }

  .np-patient-wrap {
    max-width: 1120px;
    margin: 0 auto;
  }

  .np-section-kicker {
    color: var(--np-blue);
    font-size: 11px;
    font-weight: 950;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 24px;
  }

  .np-patient-title {
    max-width: 980px;
    margin: 0;
    font-size: clamp(44px, 6vw, 78px);
    line-height: 0.94;
    letter-spacing: -0.075em;
    font-weight: 950;
    color: var(--np-ink);
  }

  .np-patient-copy {
    max-width: 820px;
    margin: 38px 0 0;
    color: var(--np-muted);
    font-size: clamp(21px, 2.35vw, 31px);
    line-height: 1.18;
    letter-spacing: -0.045em;
    font-weight: 800;
  }

  .np-patient-copy strong {
    color: var(--np-ink);
    font-weight: 950;
  }

  .np-counted-list {
    margin: 46px 0 0;
    border-top: 1px solid var(--np-line);
    border-bottom: 1px solid var(--np-line);
  }

  .np-counted-row {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 28px;
    padding: 24px 0;
    border-bottom: 1px solid var(--np-line);
  }

  .np-counted-row:last-child {
    border-bottom: 0;
  }

  .np-counted-row span {
    color: var(--np-blue);
    font-size: 11px;
    font-weight: 950;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .np-counted-row strong {
    color: var(--np-ink);
    font-size: clamp(24px, 3vw, 38px);
    line-height: 1;
    letter-spacing: -0.055em;
    font-weight: 950;
  }

  .np-patient-story {
    margin-top: 52px;
    padding: 38px 0;
    border-top: 1px solid var(--np-ink);
    border-bottom: 1px solid var(--np-ink);
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 52px;
    align-items: start;
  }

  .np-patient-story span {
    display: block;
    margin-bottom: 12px;
    color: var(--np-blue);
    font-size: 11px;
    font-weight: 950;
    letter-spacing: 0.15em;
    text-transform: uppercase;
  }

  .np-patient-story h3 {
    margin: 0;
    font-size: clamp(34px, 4vw, 56px);
    line-height: 0.94;
    letter-spacing: -0.07em;
    font-weight: 950;
  }

  .np-patient-story p {
    margin: 0;
    color: var(--np-muted);
    font-size: 19px;
    line-height: 1.52;
    letter-spacing: -0.018em;
    font-weight: 650;
  }

  .np-patient-story p strong {
    color: var(--np-ink);
    font-weight: 950;
  }

  .np-patient-accordion {
    margin-top: 54px;
    border-bottom: 1px solid var(--np-line);
  }

  .np-patient-accordion-item {
    border-top: 1px solid var(--np-line);
  }

  .np-patient-accordion-button {
    width: 100%;
    display: grid;
    grid-template-columns: 140px 1fr 42px;
    gap: 28px;
    align-items: center;
    padding: 28px 0;
    border: 0;
    background: transparent;
    text-align: left;
    cursor: pointer;
    color: var(--np-ink);
  }

  .np-patient-accordion-number {
    color: var(--np-blue);
    font-size: 11px;
    font-weight: 950;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .np-patient-accordion-title {
    margin: 0;
    font-size: clamp(25px, 3vw, 42px);
    line-height: 0.98;
    letter-spacing: -0.06em;
    font-weight: 950;
  }

  .np-patient-plus {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid var(--np-line);
    border-radius: 50%;
    color: var(--np-blue);
    font-size: 30px;
    line-height: 1;
    font-weight: 400;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
  }

  .np-patient-accordion-button:hover .np-patient-plus {
    background: var(--np-blue);
    border-color: var(--np-blue);
    color: #ffffff;
  }

  .np-patient-accordion-item.is-open .np-patient-plus {
    transform: rotate(45deg);
    background: var(--np-blue);
    border-color: var(--np-blue);
    color: #ffffff;
  }

  .np-patient-accordion-panel {
    display: grid;
    grid-template-columns: 140px 1fr 42px;
    gap: 28px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.28s ease, opacity 0.22s ease;
  }

  .np-patient-accordion-item.is-open .np-patient-accordion-panel {
    max-height: 360px;
    opacity: 1;
  }

  .np-patient-accordion-copy {
    grid-column: 2 / 3;
    padding: 0 0 30px;
  }

  .np-patient-accordion-copy p {
    max-width: 760px;
    margin: 0;
    color: var(--np-muted);
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: -0.018em;
    font-weight: 600;
  }

  .np-patient-accordion-copy strong {
    color: var(--np-ink);
    font-weight: 950;
  }

  .np-patient-punch {
    margin-top: 52px;
    padding: 38px 0;
    border-top: 1px solid var(--np-ink);
    border-bottom: 1px solid var(--np-ink);
  }

  .np-patient-punch span {
    display: block;
    margin-bottom: 14px;
    color: var(--np-blue);
    font-size: 11px;
    font-weight: 950;
    letter-spacing: 0.15em;
    text-transform: uppercase;
  }

  .np-patient-punch h3 {
    max-width: 980px;
    margin: 0;
    color: var(--np-ink);
    font-size: clamp(34px, 4.8vw, 66px);
    line-height: 0.95;
    letter-spacing: -0.075em;
    font-weight: 950;
  }

  .np-patient-punch p {
    max-width: 820px;
    margin: 24px 0 0;
    color: var(--np-muted);
    font-size: clamp(20px, 2.4vw, 30px);
    line-height: 1.14;
    letter-spacing: -0.045em;
    font-weight: 820;
  }

  .np-patient-summary {
    margin-top: 36px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--np-line);
    border-bottom: 1px solid var(--np-line);
  }

  .np-patient-summary-item {
    padding: 22px 24px 24px;
    border-right: 1px solid var(--np-line);
  }

  .np-patient-summary-item:last-child {
    border-right: 0;
  }

  .np-patient-summary-item span {
    display: block;
    margin-bottom: 8px;
    color: var(--np-blue);
    font-size: 10px;
    font-weight: 950;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .np-patient-summary-item strong {
    display: block;
    color: var(--np-ink);
    font-size: 22px;
    line-height: 1.05;
    letter-spacing: -0.035em;
    font-weight: 950;
  }

  .np-patient-transition {
    max-width: 820px;
    margin: 46px 0 0;
    color: var(--np-muted);
    font-size: 20px;
    line-height: 1.42;
    letter-spacing: -0.025em;
    font-weight: 700;
  }

  .np-patient-transition strong {
    color: var(--np-ink);
    font-weight: 950;
  }

  @media (max-width: 900px) {
    .np-patient-story,
    .np-patient-accordion-button,
    .np-patient-accordion-panel {
      grid-template-columns: 1fr 40px;
      gap: 16px;
    }

    .np-patient-story {
      display: grid;
      grid-template-columns: 1fr;
    }

    .np-patient-accordion-number {
      grid-column: 1 / 3;
    }

    .np-patient-accordion-title {
      grid-column: 1 / 2;
    }

    .np-patient-plus {
      grid-column: 2 / 3;
      grid-row: 2;
    }

    .np-patient-accordion-copy {
      grid-column: 1 / 3;
    }

    .np-counted-row {
      grid-template-columns: 1fr;
      gap: 10px;
    }

    .np-patient-summary {
      grid-template-columns: 1fr;
    }

    .np-patient-summary-item {
      border-right: 0;
      border-bottom: 1px solid var(--np-line);
    }

    .np-patient-summary-item:last-child {
      border-bottom: 0;
    }
  }

  @media (max-width: 560px) {
    .np-patient-section {
      padding: 54px 20px 64px;
    }

    .np-patient-title {
      font-size: 42px;
      letter-spacing: -0.065em;
    }

    .np-patient-copy {
      font-size: 23px;
    }

    .np-patient-accordion-title {
      font-size: 29px;
    }

    .np-patient-accordion-copy p {
      font-size: 17px;
    }
  }

  .np-break-section {
  padding: 72px 6vw 84px;
  background:
    radial-gradient(circle at top left, rgba(43, 92, 255, 0.06), transparent 28%),
    #f8fbfc;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--np-ink);
}

.np-break-wrap {
  max-width: 1120px;
  margin: 0 auto;
}

.np-break-title {
  max-width: 980px;
  margin: 0;
  font-size: clamp(44px, 6vw, 78px);
  line-height: 0.94;
  letter-spacing: -0.075em;
  font-weight: 950;
  color: var(--np-ink);
}

.np-break-copy {
  max-width: 840px;
  margin: 38px 0 0;
  color: var(--np-muted);
  font-size: clamp(21px, 2.35vw, 31px);
  line-height: 1.18;
  letter-spacing: -0.045em;
  font-weight: 800;
}

.np-break-copy strong {
  color: var(--np-ink);
  font-weight: 950;
}

.np-break-punch {
  margin-top: 52px;
  padding: 38px 0;
  border-top: 1px solid var(--np-ink);
  border-bottom: 1px solid var(--np-ink);
}

.np-break-punch span,
.np-break-story span {
  display: block;
  margin-bottom: 12px;
  color: var(--np-blue);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.np-break-punch h3 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(34px, 4.8vw, 66px);
  line-height: 0.95;
  letter-spacing: -0.075em;
  font-weight: 950;
  color: var(--np-ink);
}

.np-break-punch p {
  max-width: 820px;
  margin: 24px 0 0;
  color: var(--np-muted);
  font-size: clamp(20px, 2.4vw, 30px);
  line-height: 1.14;
  letter-spacing: -0.045em;
  font-weight: 820;
}

.np-break-story {
  margin-top: 52px;
  padding: 38px 0;
  border-top: 1px solid var(--np-line);
  border-bottom: 1px solid var(--np-line);
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 52px;
  align-items: start;
}

.np-break-story h3 {
  margin: 0;
  font-size: clamp(32px, 3.8vw, 54px);
  line-height: 0.96;
  letter-spacing: -0.07em;
  font-weight: 950;
}

.np-break-story p {
  margin: 0;
  color: var(--np-muted);
  font-size: 19px;
  line-height: 1.52;
  letter-spacing: -0.018em;
  font-weight: 650;
}

.np-break-story p strong {
  color: var(--np-ink);
  font-weight: 950;
}

.np-break-accordion {
  margin-top: 54px;
  border-bottom: 1px solid var(--np-line);
}

.np-break-accordion-item {
  border-top: 1px solid var(--np-line);
}

.np-break-accordion-button {
  width: 100%;
  display: grid;
  grid-template-columns: 140px 1fr 42px;
  gap: 28px;
  align-items: center;
  padding: 28px 0;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  color: var(--np-ink);
}

.np-break-accordion-number {
  color: var(--np-blue);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.np-break-accordion-title {
  margin: 0;
  font-size: clamp(25px, 3vw, 42px);
  line-height: 0.98;
  letter-spacing: -0.06em;
  font-weight: 950;
}

.np-break-plus {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--np-line);
  border-radius: 50%;
  color: var(--np-blue);
  font-size: 30px;
  line-height: 1;
  font-weight: 400;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.np-break-accordion-button:hover .np-break-plus {
  background: var(--np-blue);
  border-color: var(--np-blue);
  color: #ffffff;
}

.np-break-accordion-item.is-open .np-break-plus {
  transform: rotate(45deg);
  background: var(--np-blue);
  border-color: var(--np-blue);
  color: #ffffff;
}

.np-break-accordion-panel {
  display: grid;
  grid-template-columns: 140px 1fr 42px;
  gap: 28px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.28s ease, opacity 0.22s ease;
}

.np-break-accordion-item.is-open .np-break-accordion-panel {
  max-height: 380px;
  opacity: 1;
}

.np-break-accordion-copy {
  grid-column: 2 / 3;
  padding: 0 0 30px;
}

.np-break-accordion-copy p {
  max-width: 760px;
  margin: 0;
  color: var(--np-muted);
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: -0.018em;
  font-weight: 600;
}

.np-break-accordion-copy strong {
  color: var(--np-ink);
  font-weight: 950;
}

.np-break-summary {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--np-line);
  border-bottom: 1px solid var(--np-line);
}

.np-break-summary-item {
  padding: 22px 24px 24px;
  border-right: 1px solid var(--np-line);
}

.np-break-summary-item:last-child {
  border-right: 0;
}

.np-break-summary-item span {
  display: block;
  margin-bottom: 8px;
  color: var(--np-blue);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.np-break-summary-item strong {
  display: block;
  color: var(--np-ink);
  font-size: 22px;
  line-height: 1.05;
  letter-spacing: -0.035em;
  font-weight: 950;
}

.np-break-transition {
  max-width: 840px;
  margin: 46px 0 0;
  color: var(--np-muted);
  font-size: 20px;
  line-height: 1.42;
  letter-spacing: -0.025em;
  font-weight: 700;
}

.np-break-transition strong {
  color: var(--np-ink);
  font-weight: 950;
}

@media (max-width: 900px) {
  .np-break-story,
  .np-break-accordion-button,
  .np-break-accordion-panel {
    grid-template-columns: 1fr 40px;
    gap: 16px;
  }

  .np-break-story {
    display: grid;
    grid-template-columns: 1fr;
  }

  .np-break-accordion-number {
    grid-column: 1 / 3;
  }

  .np-break-accordion-title {
    grid-column: 1 / 2;
  }

  .np-break-plus {
    grid-column: 2 / 3;
    grid-row: 2;
  }

  .np-break-accordion-copy {
    grid-column: 1 / 3;
  }

  .np-break-summary {
    grid-template-columns: 1fr;
  }

  .np-break-summary-item {
    border-right: 0;
    border-bottom: 1px solid var(--np-line);
  }

  .np-break-summary-item:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 560px) {
  .np-break-section {
    padding: 54px 20px 64px;
  }

  .np-break-title {
    font-size: 42px;
    letter-spacing: -0.065em;
  }

  .np-break-copy {
    font-size: 23px;
  }

  .np-break-accordion-title {
    font-size: 29px;
  }

  .np-break-accordion-copy p {
    font-size: 17px;
  }
}

/* =========================================================
   REPORT SECTIONS 4–8 RESTORE
   ========================================================= */

.np-cost-section,
.np-fix-section,
.np-system-section,
.np-cta-section,
.np-visibility-section {
  padding: 72px 6vw 84px;
  background: #f8fbfc;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--np-ink);
}

.np-cost-section,
.np-system-section {
  background:
    radial-gradient(circle at top right, rgba(43, 92, 255, 0.06), transparent 28%),
    #ffffff;
}

.np-cta-section {
  background:
    radial-gradient(circle at top left, rgba(43, 92, 255, 0.08), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f5f8fd 100%);
}

.np-visibility-section {
  display: none;
  background: #ffffff;
  border-top: 1px solid var(--np-line);
}

.np-visibility-section.is-visible {
  display: block;
}

.np-cost-wrap,
.np-fix-wrap,
.np-system-wrap,
.np-cta-wrap,
.np-visibility-wrap {
  max-width: 1120px;
  margin: 0 auto;
}

.np-cost-title,
.np-fix-title,
.np-system-title,
.np-cta-title,
.np-visibility-title {
  max-width: 1040px;
  margin: 0;
  font-size: clamp(44px, 6vw, 78px);
  line-height: 0.94;
  letter-spacing: -0.075em;
  font-weight: 950;
  color: var(--np-ink);
}

.np-cost-copy,
.np-fix-copy,
.np-system-copy,
.np-cta-copy {
  max-width: 880px;
  margin: 38px 0 0;
  color: var(--np-muted);
  font-size: clamp(21px, 2.35vw, 31px);
  line-height: 1.18;
  letter-spacing: -0.045em;
  font-weight: 800;
}

.np-cost-copy strong,
.np-fix-copy strong,
.np-system-copy strong,
.np-cta-copy strong {
  color: var(--np-ink);
  font-weight: 950;
}

.np-cost-black {
  margin-top: 52px;
  padding: 38px 0;
  border-top: 1px solid var(--np-ink);
  border-bottom: 1px solid var(--np-ink);
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 52px;
  align-items: start;
}

.np-cost-black span,
.np-cost-diagnosis span,
.np-fix-side span,
.np-system-prescription span,
.np-system-included span,
.np-cta-price-card span,
.np-cta-math span,
.np-visibility-wrap .np-section-kicker {
  display: block;
  margin-bottom: 12px;
  color: var(--np-blue);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.np-cost-black h3 {
  margin: 0;
  font-size: clamp(34px, 4.5vw, 60px);
  line-height: 0.94;
  letter-spacing: -0.07em;
  font-weight: 950;
}

.np-cost-black p {
  margin: 0;
  color: var(--np-ink);
  font-size: clamp(20px, 2.4vw, 30px);
  line-height: 1.14;
  letter-spacing: -0.045em;
  font-weight: 820;
}

.np-cost-diagnosis,
.np-system-prescription {
  margin-top: 52px;
  padding: 38px 0;
  border-top: 1px solid var(--np-line);
  border-bottom: 1px solid var(--np-line);
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 52px;
  align-items: start;
}

.np-cost-diagnosis h3,
.np-system-prescription h3 {
  margin: 0;
  font-size: clamp(32px, 3.8vw, 54px);
  line-height: 0.96;
  letter-spacing: -0.07em;
  font-weight: 950;
}

.np-cost-diagnosis p,
.np-system-prescription p {
  margin: 0;
  color: var(--np-muted);
  font-size: 19px;
  line-height: 1.52;
  letter-spacing: -0.018em;
  font-weight: 650;
}

.np-roi-grid,
.np-fix-summary,
.np-cta-math {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--np-line);
  border-bottom: 1px solid var(--np-line);
}

.np-cta-math {
  grid-template-columns: repeat(2, 1fr);
}

.np-roi-card,
.np-fix-summary-item,
.np-cta-math div {
  padding: 24px;
  background: #ffffff;
  border-right: 1px solid var(--np-line);
}

.np-roi-card:last-child,
.np-fix-summary-item:last-child,
.np-cta-math div:last-child {
  border-right: 0;
}

.np-roi-card span,
.np-fix-summary-item span {
  display: block;
  margin-bottom: 8px;
  color: var(--np-blue);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.np-roi-card strong,
.np-fix-summary-item strong,
.np-cta-math strong {
  display: block;
  color: var(--np-ink);
  font-size: clamp(26px, 3.2vw, 44px);
  line-height: 1;
  letter-spacing: -0.045em;
  font-weight: 950;
}

.np-roi-investment strong,
.np-cta-math div:last-child strong {
  color: var(--np-blue);
}

.np-roi-card p {
  margin: 12px 0 0;
  color: var(--np-muted);
  font-size: 15px;
  line-height: 1.45;
  font-weight: 650;
}

.np-diagnosis-copy {
  display: none;
  margin-top: 28px;
  padding: 22px 24px;
  border-left: 3px solid var(--np-blue);
  background: #ffffff;
  color: var(--np-muted);
  font-size: 17px;
  line-height: 1.55;
  font-weight: 650;
}

.np-diagnosis-copy strong {
  color: var(--np-ink);
  font-weight: 950;
}

.np-cost-transition,
.np-fix-transition,
.np-system-transition,
.np-cta-final {
  max-width: 840px;
  margin: 46px 0 0;
  color: var(--np-muted);
  font-size: 20px;
  line-height: 1.42;
  letter-spacing: -0.025em;
  font-weight: 700;
}

.np-cost-transition strong,
.np-fix-transition strong,
.np-system-transition strong,
.np-cta-final strong {
  color: var(--np-ink);
  font-weight: 950;
}

.np-fix-comparison {
  margin-top: 52px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--np-line);
  border-top: 1px solid var(--np-line);
  border-bottom: 1px solid var(--np-line);
}

.np-fix-side {
  background: #ffffff;
  padding: 34px;
}

.np-fix-side-muted {
  background: #f8fbfc;
}

.np-fix-side h3 {
  margin: 0;
  font-size: clamp(30px, 3.4vw, 48px);
  line-height: 0.98;
  letter-spacing: -0.065em;
  font-weight: 950;
}

.np-fix-side p {
  margin: 20px 0 0;
  color: var(--np-muted);
  font-size: 18px;
  line-height: 1.52;
  letter-spacing: -0.018em;
  font-weight: 650;
}

.np-layer-stack {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--np-line);
  border: 1px solid var(--np-line);
}

.np-layer-card {
  background: #ffffff;
  padding: 28px 24px 30px;
  min-height: 260px;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.np-layer-card.is-primary {
  background:
    radial-gradient(circle at top right, rgba(43, 92, 255, 0.10), transparent 40%),
    #ffffff;
  box-shadow: inset 0 0 0 2px var(--np-blue);
  transform: translateY(-4px);
}

.np-layer-card span {
  display: block;
  margin-bottom: 16px;
  color: var(--np-blue);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.np-layer-card h3 {
  margin: 0;
  color: var(--np-ink);
  font-size: clamp(25px, 2.6vw, 36px);
  line-height: 1;
  letter-spacing: -0.055em;
  font-weight: 950;
}

.np-layer-card p {
  margin: 18px 0 0;
  color: var(--np-muted);
  font-size: 16px;
  line-height: 1.48;
  font-weight: 650;
}

.np-system-included {
  margin-top: 36px;
  padding: 26px 0;
  border-top: 1px solid var(--np-line);
  border-bottom: 1px solid var(--np-line);
}

.np-system-included div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--np-line);
  border: 1px solid var(--np-line);
}

.np-system-included strong {
  display: block;
  background: #ffffff;
  padding: 18px;
  color: var(--np-ink);
  font-size: 16px;
  line-height: 1.2;
  font-weight: 850;
}

.np-cta-wrap {
  text-align: center;
}

.np-cta-title,
.np-cta-copy,
.np-cta-final {
  margin-left: auto;
  margin-right: auto;
}

.np-cta-price-card {
  max-width: 620px;
  margin: 46px auto 0;
  padding: 34px 28px;
  background: var(--np-ink);
  color: #ffffff;
}

.np-cta-price-card span {
  color: #9fb6ff;
}

.np-cta-price-card strong {
  display: block;
  color: #ffffff;
  font-size: clamp(44px, 6vw, 76px);
  line-height: 0.95;
  letter-spacing: -0.065em;
  font-weight: 950;
}

.np-cta-price-card p {
  max-width: 460px;
  margin: 14px auto 0;
  color: #dce5ff;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 650;
}

.np-cta-belief {
  max-width: 840px;
  margin: 34px auto 0;
  padding: 26px 0;
  border-top: 1px solid var(--np-line);
  border-bottom: 1px solid var(--np-line);
}

.np-cta-belief p {
  margin: 0;
  color: var(--np-muted);
  font-size: 20px;
  line-height: 1.42;
  letter-spacing: -0.025em;
  font-weight: 700;
}

.np-cta-button {
  width: min(100%, 620px);
  min-height: 68px;
  margin: 34px auto 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--np-blue);
  color: #ffffff;
  text-decoration: none;
  border-radius: 0;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 0.18s ease, background 0.18s ease;
}

.np-cta-button:hover {
  transform: translateY(-2px);
  background: #1744ee;
}

.np-cta-wrap small {
  display: block;
  margin-top: 14px;
  color: var(--np-muted);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.np-visibility-wrap p {
  max-width: 900px;
  margin: 34px 0 0;
  color: var(--np-muted);
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: -0.025em;
  font-weight: 700;
}

.np-visibility-note {
  max-width: 900px;
  margin-top: 28px;
  padding: 24px;
  border-left: 3px solid var(--np-blue);
  background: #f8fbfc;
  color: var(--np-muted);
  font-size: 17px;
  line-height: 1.55;
  font-weight: 650;
}

.np-visibility-note strong {
  color: var(--np-ink);
  font-weight: 950;
}

@media (max-width: 1000px) {
  .np-layer-stack,
  .np-system-included div {
    grid-template-columns: repeat(2, 1fr);
  }

  .np-cost-black,
  .np-cost-diagnosis,
  .np-system-prescription {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .np-cost-section,
  .np-fix-section,
  .np-system-section,
  .np-cta-section,
  .np-visibility-section {
    padding: 54px 20px 64px;
  }

  .np-cost-title,
  .np-fix-title,
  .np-system-title,
  .np-cta-title,
  .np-visibility-title {
    font-size: 42px;
    letter-spacing: -0.065em;
  }

  .np-cost-copy,
  .np-fix-copy,
  .np-system-copy,
  .np-cta-copy {
    font-size: 23px;
  }

  .np-roi-grid,
  .np-fix-summary,
  .np-cta-math,
  .np-fix-comparison,
  .np-layer-stack,
  .np-system-included div {
    grid-template-columns: 1fr;
  }

  .np-roi-card,
  .np-fix-summary-item,
  .np-cta-math div {
    border-right: 0;
    border-bottom: 1px solid var(--np-line);
  }

  .np-roi-card:last-child,
  .np-fix-summary-item:last-child,
  .np-cta-math div:last-child {
    border-bottom: 0;
  }

  .np-layer-card.is-primary {
    transform: none;
  }
}

.np-cost-simulator {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--np-line);
  border: 1px solid var(--np-line);
  margin: 34px 0;
}

.np-cost-simulator-controls,
.np-cost-simulator-results > div {
  background: #fff;
  padding: 28px;
}

.np-cost-simulator-controls span,
.np-cost-simulator-results span,
.np-cost-state-comparison span,
.np-cost-break-even th {
  display: block;
  color: var(--np-blue);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 10.5px;
  line-height: 1.2;
  font-weight: 850;
  margin-bottom: 12px;
}

.np-cost-simulator-controls h3,
.np-cost-state-comparison h3,
.np-cost-break-even h3 {
  margin: 0 0 22px;
  color: var(--np-ink);
}

.np-cost-slider-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  margin: 18px 0 28px;
}

.np-cost-slider-line input {
  width: 100%;
  accent-color: var(--np-blue);
}

.np-cost-slider-line strong {
  white-space: nowrap;
}

.np-cost-value-buttons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.np-cost-value-buttons button {
  border: 1px solid var(--np-line);
  background: #fff;
  color: var(--np-ink);
  padding: 12px 10px;
  font-weight: 850;
  cursor: pointer;
}

.np-cost-value-buttons button.active,
.np-cost-value-buttons button:hover {
  background: var(--np-ink);
  border-color: var(--np-ink);
  color: #fff;
}

.np-cost-simulator-results {
  display: grid;
  gap: 1px;
  background: var(--np-line);
}

.np-cost-simulator-results strong {
  display: block;
  color: var(--np-blue);
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 10px;
}

.np-cost-simulator-results p {
  margin: 0;
  color: var(--np-muted);
}

.np-cost-state-comparison {
  border: 1px solid var(--np-line);
  padding: 28px;
  margin: 34px 0;
  background: #fff;
}

.np-cost-state-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--np-line);
  border: 1px solid var(--np-line);
  margin: 20px 0;
}

.np-cost-state-grid > div {
  background: #fff;
  padding: 24px;
  text-align: center;
}

.np-cost-state-grid strong,
.np-cost-state-grid b {
  display: block;
  color: var(--np-ink);
}

.np-cost-state-grid i {
  display: block;
  font-style: normal;
  color: var(--np-blue);
  font-size: 28px;
  font-weight: 900;
  margin: 12px 0;
}

.np-cost-break-even {
  border: 1px solid var(--np-line);
  padding: 28px;
  margin: 34px 0;
  background: #fff;
}

.np-cost-break-even table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0;
}

.np-cost-break-even th,
.np-cost-break-even td {
  border-bottom: 1px solid var(--np-line);
  padding: 15px 0;
  text-align: left;
}

.np-cost-break-even th:last-child,
.np-cost-break-even td:last-child {
  text-align: right;
}

.np-cost-break-even td:last-child {
  font-weight: 900;
  color: var(--np-blue);
}

@media (max-width: 900px) {
  .np-cost-simulator,
  .np-cost-state-grid {
    grid-template-columns: 1fr;
  }

  .np-cost-value-buttons {
    grid-template-columns: 1fr 1fr;
  }

  .np-cost-slider-line {
    grid-template-columns: 1fr;
  }

  .np-cost-break-even th:last-child,
  .np-cost-break-even td:last-child {
    text-align: left;
  }
}

/* =========================================================
   SECTION 04 — ALMOST-PATIENT ROI SIMULATOR
   Scoped to existing np-cost section styles
   Add to bottom of styles.css
   ========================================================= */

.np-cost-section .np-cost-simulator {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 1px;
  background: var(--np-line, #dbe3ef);
  border: 1px solid var(--np-line, #dbe3ef);
  margin: 36px 0;
}

.np-cost-section .np-cost-simulator-controls,
.np-cost-section .np-cost-simulator-results > div {
  background: #ffffff;
  padding: 28px;
}

.np-cost-section .np-cost-simulator-controls > span,
.np-cost-section .np-cost-simulator-results span,
.np-cost-section .np-cost-state-comparison span,
.np-cost-section .np-cost-break-even th {
  display: block;
  color: var(--np-blue, #2f66ff);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 10.5px;
  line-height: 1.2;
  font-weight: 850;
  margin-bottom: 12px;
}

.np-cost-section .np-cost-simulator-controls h3,
.np-cost-section .np-cost-state-comparison h3,
.np-cost-section .np-cost-break-even h3 {
  color: var(--np-ink, #07111f);
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1;
  letter-spacing: -0.04em;
  margin: 0 0 24px;
  font-weight: 900;
}

.np-cost-section .np-cost-simulator-controls label {
  display: block;
  color: var(--np-ink, #07111f);
  font-size: 16px;
  line-height: 1.35;
  font-weight: 850;
  margin: 0 0 14px;
}

.np-cost-section .np-cost-slider-line {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin: 0 0 28px;
}

.np-cost-section .np-cost-slider-line input {
  width: 100%;
  accent-color: var(--np-blue, #2f66ff);
}

.np-cost-section .np-cost-slider-line strong {
  color: var(--np-ink, #07111f);
  font-size: 22px;
  line-height: 1;
  font-weight: 900;
  white-space: nowrap;
}

.np-cost-section .np-cost-value-buttons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 12px;
}

.np-cost-section .np-cost-value-buttons button {
  appearance: none;
  border: 1px solid var(--np-line, #dbe3ef);
  background: #ffffff;
  color: var(--np-ink, #07111f);
  border-radius: 0;
  padding: 12px 10px;
  font-size: 14px;
  line-height: 1;
  font-weight: 850;
  cursor: pointer;
  transition: 0.16s ease;
}

.np-cost-section .np-cost-value-buttons button:hover,
.np-cost-section .np-cost-value-buttons button.active {
  background: var(--np-ink, #07111f);
  border-color: var(--np-ink, #07111f);
  color: #ffffff;
}

.np-cost-section .np-cost-simulator-results {
  display: grid;
  gap: 1px;
  background: var(--np-line, #dbe3ef);
}

.np-cost-section .np-cost-simulator-results strong {
  display: block;
  color: var(--np-blue, #2f66ff);
  font-size: clamp(32px, 4.2vw, 54px);
  line-height: 0.95;
  letter-spacing: -0.055em;
  font-weight: 950;
  margin: 0 0 10px;
}

.np-cost-section .np-cost-simulator-results p {
  color: var(--np-muted, #657286);
  font-size: 14px;
  line-height: 1.5;
  font-weight: 750;
  margin: 0;
}

.np-cost-section .np-cost-state-comparison {
  background: #ffffff;
  border: 1px solid var(--np-line, #dbe3ef);
  padding: 28px;
  margin: 36px 0;
}

.np-cost-section .np-cost-state-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--np-line, #dbe3ef);
  border: 1px solid var(--np-line, #dbe3ef);
  margin: 22px 0;
}

.np-cost-section .np-cost-state-grid > div {
  background: #ffffff;
  padding: 26px;
  text-align: center;
}

.np-cost-section .np-cost-state-grid strong {
  display: block;
  color: var(--np-ink, #07111f);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1;
  letter-spacing: -0.045em;
  font-weight: 950;
}

.np-cost-section .np-cost-state-grid i {
  display: block;
  font-style: normal;
  color: var(--np-blue, #2f66ff);
  font-size: 30px;
  line-height: 1;
  font-weight: 950;
  margin: 14px 0;
}

.np-cost-section .np-cost-state-grid b {
  display: block;
  color: var(--np-ink, #07111f);
  font-size: 18px;
  line-height: 1.25;
  font-weight: 900;
}

.np-cost-section .np-cost-state-comparison p {
  color: var(--np-muted, #657286);
  font-size: 17px;
  line-height: 1.5;
  font-weight: 750;
  margin: 0;
}

.np-cost-section .np-cost-break-even {
  background: #ffffff;
  border: 1px solid var(--np-line, #dbe3ef);
  padding: 28px;
  margin: 36px 0;
}

.np-cost-section .np-cost-break-even table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0 22px;
}

.np-cost-section .np-cost-break-even th,
.np-cost-section .np-cost-break-even td {
  border-bottom: 1px solid var(--np-line, #dbe3ef);
  padding: 15px 0;
  text-align: left;
}

.np-cost-section .np-cost-break-even th:last-child,
.np-cost-section .np-cost-break-even td:last-child {
  text-align: right;
}

.np-cost-section .np-cost-break-even td {
  color: var(--np-ink, #07111f);
  font-size: 16px;
  line-height: 1.35;
  font-weight: 800;
}

.np-cost-section .np-cost-break-even td:last-child {
  color: var(--np-blue, #2f66ff);
  font-weight: 950;
}

.np-cost-section .np-cost-break-even p {
  color: var(--np-ink, #07111f);
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.25;
  letter-spacing: -0.04em;
  font-weight: 900;
  margin: 0;
}

@media (max-width: 900px) {
  .np-cost-section .np-cost-simulator,
  .np-cost-section .np-cost-state-grid {
    grid-template-columns: 1fr;
  }

  .np-cost-section .np-cost-value-buttons {
    grid-template-columns: 1fr 1fr;
  }

  .np-cost-section .np-cost-slider-line {
    grid-template-columns: 1fr;
  }

  .np-cost-section .np-cost-break-even th:last-child,
  .np-cost-section .np-cost-break-even td:last-child {
    text-align: left;
  }
}

@media (max-width: 560px) {
  .np-cost-section .np-cost-value-buttons {
    grid-template-columns: 1fr;
  }

  .np-cost-section .np-cost-simulator-controls,
  .np-cost-section .np-cost-simulator-results > div,
  .np-cost-section .np-cost-state-comparison,
  .np-cost-section .np-cost-break-even {
    padding: 22px;
  }
}

.np-almost-timeline {
  margin: 34px 0;
  padding: 28px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: 24px;
  background:
    radial-gradient(circle at top left, rgba(245, 158, 11, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(248, 250, 252, 0.96), rgba(255, 255, 255, 0.98));
  overflow: hidden;
}

.np-timeline-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.np-timeline-track::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 7%;
  right: 7%;
  height: 3px;
  background: linear-gradient(
    90deg,
    rgba(37, 99, 235, 0.28),
    rgba(245, 158, 11, 0.55),
    rgba(239, 68, 68, 0.42)
  );
}

.np-timeline-step {
  position: relative;
  z-index: 1;
  padding: 18px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.05);
}

.np-timeline-dot {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: #2563eb;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.np-timeline-step:nth-child(3) .np-timeline-dot {
  background: #f59e0b;
}

.np-timeline-step:nth-child(4) .np-timeline-dot,
.np-timeline-step-final .np-timeline-dot {
  background: #ef4444;
}

.np-timeline-content h3 {
  margin: 0 0 8px;
  font-size: 17px;
  line-height: 1.1;
}

.np-timeline-content p {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  color: rgba(15, 23, 42, 0.68);
}

.np-timeline-step:nth-child(3) {
  border-color: rgba(245, 158, 11, 0.28);
  box-shadow: 0 18px 44px rgba(245, 158, 11, 0.10);
}

.np-timeline-step:nth-child(4),
.np-timeline-step-final {
  border-color: rgba(239, 68, 68, 0.22);
  box-shadow: 0 18px 44px rgba(239, 68, 68, 0.09);
}

@media (max-width: 900px) {
  .np-timeline-track {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .np-timeline-track::before {
    top: 0;
    bottom: 0;
    left: 28px;
    right: auto;
    width: 3px;
    height: auto;
    background: linear-gradient(
      180deg,
      rgba(37, 99, 235, 0.28),
      rgba(245, 158, 11, 0.55),
      rgba(239, 68, 68, 0.42)
    );
  }

  .np-timeline-step {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 16px;
    align-items: start;
  }

  .np-timeline-dot {
    margin-bottom: 0;
  }
}

/* =========================================================
   NO-REGRESSION PATCH — VISUAL REPORT MODULES
   Surgical additions for Almost-Patient Report™ only.
   ========================================================= */

.np-almost-path,
.np-break-map,
.np-first-fix-contrast,
.np-system-before-after,
.np-implementation-proof,

/* Section 06 15/10 completion: diagnosis bridge and proof image */
.np-system-diagnosis-bridge {
  margin: 30px 0;
  padding: 26px 28px;
  border: 1px solid rgba(47, 102, 255, 0.16);
  border-radius: 24px;
  background:
    radial-gradient(circle at top left, rgba(47, 102, 255, 0.10), transparent 34%),
    #ffffff;
}

.np-system-diagnosis-bridge p {
  margin: 0 0 14px;
  color: var(--np-muted, #5f6f86);
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.55;
  font-weight: 750;
}

.np-system-diagnosis-bridge p:last-child {
  margin-bottom: 0;
}

.np-system-diagnosis-bridge strong {
  color: var(--np-ink, #07111f);
  font-weight: 950;
}

.np-system-diagnosed-moment-card {
  margin-top: 34px;
  margin-bottom: 18px;
  border-color: rgba(47, 102, 255, 0.32);
  box-shadow: 0 22px 56px rgba(34, 80, 150, 0.10);
}

.np-diagnosed-moment-label,
.np-layer-stack-note {
  display: block;
  color: var(--np-blue, #2b5cff);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.np-system-diagnosed-moment-card h3 {
  margin: 10px 0 12px;
  color: var(--np-ink, #07111f);
  font-size: clamp(30px, 3.1vw, 46px);
  line-height: 0.98;
  letter-spacing: -0.06em;
  font-weight: 950;
}

.np-system-diagnosed-moment-card p {
  max-width: 860px;
  color: var(--np-ink, #07111f);
}

.np-layer-stack-note {
  margin: 18px 0 -30px;
  color: var(--np-muted, #5f6f86);
  letter-spacing: 0.11em;
}

.np-system-proof-figure {
  margin: 24px 0 0;
}

.np-system-proof-image {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid #d7e6ff;
  border-radius: 16px;
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.08);
  background: #ffffff;
}

.np-system-proof-figure figcaption {
  margin-top: 12px;
  color: var(--np-muted, #5f6f86);
  font-size: 14px;
  line-height: 1.35;
  font-weight: 800;
}

.np-proof-interpretation {
  margin: 18px 0 0;
  padding: 18px 20px;
  border-radius: 18px;
  background: #f7faff;
  color: var(--np-ink, #07111f);
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.5;
  font-weight: 800;
}

.np-decision-snapshot {
  background: #ffffff;
  border: 1px solid var(--np-line, #dbe3ef);
  margin: 34px 0;
}

.np-almost-path,
.np-break-map,
.np-system-before-after,
.np-implementation-proof {
  padding: 28px;
}

.np-visual-kicker,
.np-process-label,
.np-proof-metric-label {
  display: block;
  color: var(--np-blue, #2f66ff);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 10.5px;
  line-height: 1.2;
  font-weight: 900;
  margin-bottom: 12px;
}

.np-visual-title {
  color: var(--np-ink, #07111f);
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  font-weight: 950;
  max-width: 940px;
  margin: 0 0 20px;
}

.np-visual-copy,
.np-proof-copy {
  color: var(--np-muted, #657286);
  font-size: 17px;
  line-height: 1.55;
  font-weight: 750;
  max-width: 860px;
  margin: 0 0 18px;
}

.np-path-row,
.np-break-map-row {
  display: flex;
  align-items: stretch;
  gap: 10px;
  margin-top: 18px;
}


.np-path-step,
.np-break-map-step {
  flex: 1 1 0;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--np-line, #dbe3ef);
  background: #f8fbff;
  color: var(--np-ink, #07111f);
  text-align: center;
  padding: 14px;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 900;
}

.np-path-step {
  cursor: pointer;
  user-select: none;
}

.np-path-step:focus-visible {
  outline: 3px solid rgba(47, 102, 255, 0.26);
  outline-offset: 3px;
}

.np-path-step.is-active {
  border-color: rgba(47, 102, 255, 0.52);
  background: #eef4ff;
  box-shadow: 0 14px 28px rgba(47, 102, 255, 0.10);
}

.np-path-step-final.is-active {
  background: var(--np-ink, #07111f);
  border-color: var(--np-ink, #07111f);
  color: #ffffff;
}

.np-path-subtitle {
  margin: -4px 0 0;
  color: var(--np-muted, #657286);
  font-size: 15px;
  line-height: 1.45;
  font-weight: 750;
}

.np-path-detail {
  margin-top: 16px;
  padding: 16px 18px;
  border: 1px solid rgba(47, 102, 255, 0.18);
  border-radius: 18px;
  background: #f8fbff;
}

.np-path-detail span {
  display: block;
  margin-bottom: 6px;
  color: var(--np-blue, #2f66ff);
  font-size: 11px;
  line-height: 1.2;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.np-path-detail p {
  margin: 0;
  color: var(--np-ink, #07111f);
  font-size: 16px;
  line-height: 1.45;
  font-weight: 800;
}

.np-path-step-final,
.np-break-map-step-active {
  background: var(--np-ink, #07111f);
  border-color: var(--np-ink, #07111f);
  color: #ffffff;
}

.np-path-arrow,
.np-break-map-arrow,
.np-process-arrow {
  color: var(--np-blue, #2f66ff);
  font-size: 24px;
  line-height: 1;
  font-weight: 950;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.np-break-map-note {
  color: var(--np-muted, #657286);
  font-size: 13px;
  line-height: 1.4;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 16px;
}

.np-first-fix-contrast {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--np-line, #dbe3ef);
}

.np-first-fix-column {
  background: #ffffff;
  padding: 28px;
}

.np-visual-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.np-visual-list li {
  border: 1px solid var(--np-line, #dbe3ef);
  background: #f8fbff;
  color: var(--np-ink, #07111f);
  padding: 15px;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 850;
}

.np-first-fix-start .np-visual-list li {
  background: #f4fbf6;
  border-color: #bbf7d0;
}

.np-process-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--np-line, #dbe3ef);
  border: 1px solid var(--np-line, #dbe3ef);
  margin: 28px 0;
}

.np-process-column {
  background: #ffffff;
  padding: 28px;
  display: grid;
  gap: 12px;
  text-align: center;
}

.np-process-step {
  border: 1px solid var(--np-line, #dbe3ef);
  background: #f8fbff;
  color: var(--np-ink, #07111f);
  padding: 15px;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 850;
}

.np-protected-process .np-process-step {
  background: #f4fbf6;
  border-color: #bbf7d0;
}

.np-system-note,
.np-proof-bridge {
  border-left: 4px solid var(--np-blue, #2f66ff);
  padding: 20px 0 20px 24px;
  margin-top: 28px;
}

.np-note-line {
  color: var(--np-ink, #07111f);
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.2;
  letter-spacing: -0.045em;
  font-weight: 900;
  margin: 0 0 10px;
}

.np-note-line-strong {
  margin-bottom: 0;
}

.np-system-activity-snapshot {
  width: 100%;
  margin: 22px 0 28px;
}

.np-statbar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  gap: 28px;
  width: 100%;
  background: #ffffff;
  border: 1px solid #e6eaf0;
  border-radius: 14px;
  padding: 22px 34px;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.04);
}

.np-statbar-item {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.np-statbar-icon {
  width: 58px;
  height: 58px;
  min-width: 58px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}

.np-statbar-icon-blue {
  color: #1d6df2;
  background: #edf5ff;
}

.np-statbar-icon-green {
  color: #079455;
  background: #eaf8f0;
}

.np-statbar-icon-purple {
  color: #6d28d9;
  background: #f3eefe;
}

.np-statbar-icon-mint {
  color: #079455;
  background: #eaf8f0;
}

.np-statbar-label {
  font-size: 15px;
  line-height: 1.15;
  font-weight: 700;
  color: #111827;
  margin-bottom: 5px;
  white-space: nowrap;
}

.np-statbar-value {
  font-size: 32px;
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: -0.035em;
  margin-bottom: 6px;
  white-space: nowrap;
}

.np-statbar-gbp {
  font-size: 30px;
}

.np-statbar-blue {
  color: #155eef;
}

.np-statbar-green {
  color: #079455;
}

.np-statbar-purple {
  color: #6d28d9;
}

.np-statbar-sub {
  font-size: 14px;
  line-height: 1.2;
  color: #667085;
  white-space: nowrap;
}

.np-statbar-stars {
  color: #f8b400;
  font-size: 17px;
  line-height: 1.1;
  letter-spacing: 1px;
  white-space: nowrap;
}

@media (max-width: 980px) {
  .np-statbar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    padding: 24px;
  }
}

@media (max-width: 560px) {
  .np-statbar {
    grid-template-columns: 1fr;
  }
}

.np-decision-snapshot {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--np-line, #dbe3ef);
  margin: 34px 0;
}

.np-decision-snapshot-item {
  background: #ffffff;
  padding: 24px;
}

.np-decision-snapshot-wide {
  grid-column: 1 / -1;
}

.np-decision-value {
  color: var(--np-ink, #07111f);
  font-size: clamp(20px, 2.4vw, 30px);
  line-height: 1.12;
  letter-spacing: -0.04em;
  font-weight: 950;
}

@media (max-width: 900px) {
  .np-first-fix-contrast,
  .np-process-comparison,
  .np-decision-snapshot {
    grid-template-columns: 1fr;
  }

  .np-path-row,
  .np-break-map-row {
    flex-direction: column;
  }

  .np-path-arrow,
  .np-break-map-arrow {
    transform: rotate(90deg);
  }

  .np-almost-path,
  .np-break-map,
  .np-system-before-after,
  .np-implementation-proof,
  .np-first-fix-column,
  .np-process-column,
  .np-decision-snapshot-item {
    padding: 22px;
  }

  .np-decision-snapshot-wide {
    grid-column: auto;
  }
}

.np-almost-timeline {
  margin: 34px 0;
  padding: 28px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: 24px;
  background:
    radial-gradient(circle at top left, rgba(245, 158, 11, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(248, 250, 252, 0.96), rgba(255, 255, 255, 0.98));
  overflow: hidden;
}

.np-timeline-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.np-timeline-track::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 7%;
  right: 7%;
  height: 3px;
  background: linear-gradient(
    90deg,
    rgba(37, 99, 235, 0.28),
    rgba(245, 158, 11, 0.55),
    rgba(239, 68, 68, 0.42)
  );
}

.np-timeline-step {
  position: relative;
  z-index: 1;
  padding: 18px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.05);
}

.np-timeline-dot {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: #2563eb;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.np-timeline-step:nth-child(3) .np-timeline-dot {
  background: #f59e0b;
}

.np-timeline-step:nth-child(4) .np-timeline-dot,
.np-timeline-step-final .np-timeline-dot {
  background: #ef4444;
}

.np-timeline-content h3 {
  margin: 0 0 8px;
  font-size: 17px;
  line-height: 1.1;
}

.np-timeline-content p {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  color: rgba(15, 23, 42, 0.68);
}

.np-timeline-step:nth-child(3) {
  border-color: rgba(245, 158, 11, 0.28);
  box-shadow: 0 18px 44px rgba(245, 158, 11, 0.10);
}

.np-timeline-step:nth-child(4),
.np-timeline-step-final {
  border-color: rgba(239, 68, 68, 0.22);
  box-shadow: 0 18px 44px rgba(239, 68, 68, 0.09);
}

@media (max-width: 900px) {
  .np-timeline-track {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .np-timeline-track::before {
    top: 0;
    bottom: 0;
    left: 28px;
    right: auto;
    width: 3px;
    height: auto;
    background: linear-gradient(
      180deg,
      rgba(37, 99, 235, 0.28),
      rgba(245, 158, 11, 0.55),
      rgba(239, 68, 68, 0.42)
    );
  }

  .np-timeline-step {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 16px;
    align-items: start;
  }

  .np-timeline-dot {
    margin-bottom: 0;
  }
}
/* =========================================================
   Patient You Never Saw — Spacious Visual Upgrade
   Safe additive styles only
   ========================================================= */

.np-patient-section .np-patient-wrap {
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.np-patient-copy-lead {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.35;
  color: #07111f;
  font-weight: 700;
  max-width: 760px;
  margin-bottom: -10px;
}

.np-counted-list {
  background: #f5f7fa;
  border: 1px solid rgba(7, 17, 31, 0.08);
  border-radius: 24px;
  padding: 18px;
  gap: 12px;
}

.np-counted-row:last-child {
  background: #ffffff;
  border: 1px solid rgba(31, 111, 139, 0.22);
  box-shadow: 0 18px 45px rgba(20, 48, 72, 0.08);
}

.np-patient-punch-card {
  background:
    radial-gradient(circle at 92% 0%, rgba(31, 111, 139, 0.26), transparent 34%),
    linear-gradient(135deg, #07111f 0%, #0d2033 100%);
  color: #ffffff;
  border-radius: 30px;
  padding: clamp(26px, 4vw, 42px);
  box-shadow: 0 30px 80px rgba(7, 17, 31, 0.22);
}

.np-patient-punch-card span {
  display: block;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.np-patient-punch-card strong {
  display: block;
  max-width: 760px;
  font-size: clamp(1.45rem, 2.7vw, 2.35rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.np-almost-path {
  background:
    linear-gradient(180deg, #f6fafb 0%, #ffffff 100%);
  border: 1px solid rgba(31, 111, 139, 0.16);
  border-radius: 28px;
  padding: 30px;
  margin-top: 6px;
}

.np-path-step-final {
  background: #07111f;
  color: #ffffff;
  border-color: #07111f;
}

.np-patient-accordion {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* =========================================================
   Diagnostic Leak Profile — Editorial Report Version
   Replaces the softer rounded dashboard treatment
   ========================================================= */

.np-gap-profile {
  margin: 46px 0 52px;
  padding: clamp(28px, 4vw, 44px) 0 0;
  border-top: 1px solid rgba(7, 17, 31, 0.14);
  border-bottom: 1px solid rgba(7, 17, 31, 0.14);
  background: transparent;
  box-shadow: none;
}

.np-gap-profile-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  margin-bottom: 34px;
}

.np-gap-profile-head h2 {
  margin: 10px 0 0;
  max-width: 760px;
  color: #07111f;
  font-size: clamp(1.75rem, 3.4vw, 3.25rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.np-gap-profile-head p {
  margin: 0;
  max-width: 420px;
  color: #667386;
  font-size: 1rem;
  line-height: 1.65;
}

.np-gap-chart {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(7, 17, 31, 0.10);
}

.np-gap-row {
  display: grid;
  grid-template-columns: 220px minmax(180px, 1fr) 150px;
  gap: 24px;
  align-items: center;
  padding: 22px 0;
  border: 0;
  border-bottom: 1px solid rgba(7, 17, 31, 0.10);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.np-gap-label {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.np-gap-label span {
  display: block;
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  color: #2b5cff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.np-gap-label strong {
  color: #07111f;
  font-size: 1.02rem;
  line-height: 1.1;
  letter-spacing: -0.015em;
}

.np-gap-track {
  height: 8px;
  border-radius: 0;
  background: rgba(102, 115, 134, 0.14);
  overflow: hidden;
}

.np-gap-fill {
  height: 100%;
  border-radius: 0;
  background: #8aa6b7;
}

.np-gap-score {
  color: #667386;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: right;
}

.np-gap-row.is-active {
  border-color: rgba(7, 17, 31, 0.16);
  background: transparent;
  box-shadow: none;
}

.np-gap-row.is-active .np-gap-label span {
  background: transparent;
  color: #07111f;
}

.np-gap-row.is-active .np-gap-label strong {
  color: #07111f;
}

.np-gap-row.is-active .np-gap-fill {
  background: #07111f;
}

.np-gap-row.is-active .np-gap-score {
  color: #07111f;
}

.np-gap-profile-note {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: 0;
  padding: 24px 0 30px;
  border-radius: 0;
  background: transparent;
  color: #07111f;
  border-bottom: 0;
}

.np-gap-profile-note span {
  color: #667386;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.np-gap-profile-note strong {
  color: #07111f;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

@media (max-width: 860px) {
  .np-gap-profile-head,
  .np-gap-row,
  .np-gap-profile-note {
    grid-template-columns: 1fr;
  }

  .np-gap-row {
    gap: 14px;
  }

  .np-gap-score {
    text-align: left;
  }

  .np-gap-profile-note {
    gap: 10px;
  }
}

/* Primary leak display accent — scoped, display-only */
[data-primary-diagnosis="trust"] .np-gap-row.is-active,
[data-primary-diagnosis="review"] .np-gap-row.is-active,
[data-primary-diagnosis="response"] .np-gap-row.is-active,
[data-primary-diagnosis="followup"] .np-gap-row.is-active,
[data-primary-diagnosis="system"] .np-gap-row.is-active {
  border-color: rgba(239, 68, 68, 0.26);
  background: rgba(239, 68, 68, 0.08);
}

[data-primary-diagnosis="trust"] .np-gap-row.is-active .np-gap-fill,
[data-primary-diagnosis="review"] .np-gap-row.is-active .np-gap-fill,
[data-primary-diagnosis="response"] .np-gap-row.is-active .np-gap-fill,
[data-primary-diagnosis="followup"] .np-gap-row.is-active .np-gap-fill,
[data-primary-diagnosis="system"] .np-gap-row.is-active .np-gap-fill {
  background: #ef4444;
}

[data-primary-diagnosis="trust"] .np-gap-row.is-active .np-gap-score,
[data-primary-diagnosis="review"] .np-gap-row.is-active .np-gap-score,
[data-primary-diagnosis="response"] .np-gap-row.is-active .np-gap-score,
[data-primary-diagnosis="followup"] .np-gap-row.is-active .np-gap-score,
[data-primary-diagnosis="system"] .np-gap-row.is-active .np-gap-score {
  color: #ef4444;
}

[data-primary-diagnosis="trust"] .np-gap-profile-note strong,
[data-primary-diagnosis="review"] .np-gap-profile-note strong,
[data-primary-diagnosis="response"] .np-gap-profile-note strong,
[data-primary-diagnosis="followup"] .np-gap-profile-note strong,
[data-primary-diagnosis="system"] .np-gap-profile-note strong {
  color: #ef4444;
}



/* Section 01 emotional clarity + personalization modules — scoped, display-only */



.np-hero-verdict {
  margin: 18px 0 30px;
  padding: 26px;
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.16), transparent 34%),
    radial-gradient(circle at bottom left, rgba(245, 158, 11, 0.13), transparent 30%),
    linear-gradient(135deg, rgba(239, 246, 255, 0.98), rgba(255, 255, 255, 0.98));
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.08);
}

.np-hero-verdict span {
  display: block;
  margin-bottom: 10px;
  color: rgba(15, 23, 42, 0.58);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.np-hero-verdict strong {
  display: block;
  color: #2563eb;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.np-hero-verdict p {
  max-width: 760px;
  margin: 16px 0 0;
  color: rgba(15, 23, 42, 0.72);
  font-size: 17px;
  line-height: 1.55;
}


.np-invisible-equation span,
.np-more-attention-warning span {
  display: block;
  margin-bottom: 10px;
  color: rgba(15, 23, 42, 0.56);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}


.np-more-attention-warning p {
  max-width: 820px;
  margin: 0;
  color: rgba(15, 23, 42, 0.72);
  font-size: 17px;
  line-height: 1.55;
}

.np-invisible-equation {
  margin: 24px 0 30px;
  padding: 24px;
  border: 1px solid rgba(239, 68, 68, 0.18);
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(239, 68, 68, 0.12), transparent 32%),
    linear-gradient(135deg, rgba(255, 241, 242, 0.88), rgba(255, 255, 255, 0.98));
}

.np-equation-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1.15fr);
  gap: 12px;
  align-items: stretch;
}

.np-equation-row strong {
  display: flex;
  align-items: center;
  min-height: 74px;
  padding: 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  background: #ffffff;
  color: #020617;
  font-size: 16px;
  line-height: 1.2;
}

.np-equation-row b {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ef4444;
  font-size: 28px;
  line-height: 1;
}


.np-more-attention-warning {
  margin: 28px 0;
  padding: 22px 24px;
  border-left: 4px solid #f59e0b;
  border-radius: 18px;
  background: rgba(245, 158, 11, 0.10);
}

[data-primary-diagnosis="trust"] .np-hero-verdict,
[data-primary-diagnosis="review"] .np-hero-verdict,
[data-primary-diagnosis="response"] .np-hero-verdict,
[data-primary-diagnosis="followup"] .np-hero-verdict,
[data-primary-diagnosis="system"] .np-hero-verdict {
  border-color: rgba(239, 68, 68, 0.26);
  background:
    radial-gradient(circle at top right, rgba(239, 68, 68, 0.16), transparent 34%),
    radial-gradient(circle at bottom left, rgba(245, 158, 11, 0.12), transparent 30%),
    linear-gradient(135deg, rgba(255, 241, 242, 0.98), rgba(255, 255, 255, 0.98));
}

[data-primary-diagnosis="trust"] .np-hero-verdict strong,
[data-primary-diagnosis="review"] .np-hero-verdict strong,
[data-primary-diagnosis="response"] .np-hero-verdict strong,
[data-primary-diagnosis="followup"] .np-hero-verdict strong,
[data-primary-diagnosis="system"] .np-hero-verdict strong {
  color: #ef4444;
}


@media (max-width: 860px) {
  .np-equation-row {
    grid-template-columns: 1fr;
  }

  .np-equation-row b {
    min-height: 20px;
  }

  .np-invisible-equation,
  .np-hero-verdict {
    padding: 22px;
  }

  .np-more-attention-warning p {
    font-size: 16px;
  }
}

.np-equation-punch {
  margin: -10px 0 30px;
  padding: 20px 22px;
  border-left: 4px solid #ef4444;
  border-radius: 18px;
  background: rgba(239, 68, 68, 0.08);
  color: #0f172a;
  font-size: 18px;
  line-height: 1.55;
  font-weight: 700;
  white-space: pre-line;
}


/* =========================================================
   SECTION 07/08 — INTERACTIVE DECISION + FAQ UPGRADE
   ========================================================= */

:root {
  --np-green: #079455;
  --np-green-soft: #ecfdf3;
  --np-green-line: #bbf7d0;
}

.np-price-logic-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  padding: 10px 14px;
  border: 1px solid rgba(7, 148, 85, 0.22);
  border-radius: 999px;
  background: rgba(236, 253, 243, 0.92);
  color: var(--np-green);
  font-size: 14px;
  line-height: 1.25;
  font-weight: 900;
}

.np-decision-path {
  display: grid;
  grid-template-columns: minmax(130px, 0.9fr) minmax(160px, 1.12fr) minmax(170px, 1.16fr) minmax(135px, 0.92fr) minmax(190px, 1.34fr);
  gap: 12px;
  align-items: stretch;
  padding: 16px;
  border-radius: 22px;
  border: 1px solid var(--np-line, #dbe3ef);
  background:
    linear-gradient(180deg, rgba(236, 253, 243, 0.58), rgba(255,255,255,0.96));
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.06);
}

.np-decision-path-item {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  min-height: 0;
  padding: 18px 14px;
  border: 1px solid rgba(7, 148, 85, 0.16);
  border-radius: 18px;
  background: #ffffff;
}

.np-decision-step {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--np-green);
  color: #ffffff;
  font-size: 13px;
  line-height: 1;
  font-weight: 950;
  box-shadow: 0 10px 22px rgba(7, 148, 85, 0.22);
}

.np-decision-path .np-visual-kicker {
  color: var(--np-green);
  margin-bottom: 8px;
  font-size: 10px;
  letter-spacing: 0.18em;
}

.np-decision-path .np-decision-value {
  color: var(--np-ink, #07111f);
  font-size: clamp(16px, 1.18vw, 20px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 950;
  overflow-wrap: normal;
  word-break: normal;
}

.np-decision-support {
  margin: 8px 0 0;
  color: var(--np-muted, #657286);
  font-size: 13px;
  line-height: 1.28;
  font-weight: 760;
  letter-spacing: -0.015em;
}

.np-decision-path-arrow {
  display: none;
}

.np-easy-math {
  border-radius: 24px;
  border: 1px solid rgba(7, 148, 85, 0.16);
  background:
    radial-gradient(circle at top right, rgba(7, 148, 85, 0.08), transparent 32%),
    #ffffff;
  box-shadow: 0 22px 70px rgba(15, 23, 42, 0.055);
}

.np-easy-math-header {
  max-width: 820px;
}

.np-easy-math-header .np-visual-kicker {
  color: var(--np-green);
}

.np-easy-math-header p {
  margin: -8px 0 22px;
  color: var(--np-muted, #657286);
  font-size: 17px;
  line-height: 1.5;
  font-weight: 750;
}

.np-patient-value-selector {
  display: grid;
  gap: 18px;
  margin: 24px 0 26px;
  padding: 20px;
  border: 1px solid rgba(7, 148, 85, 0.18);
  border-radius: 18px;
  background: rgba(236, 253, 243, 0.58);
}

.np-patient-value-selector strong {
  display: block;
  color: var(--np-ink, #07111f);
  font-size: 19px;
  line-height: 1.15;
  font-weight: 950;
  letter-spacing: -0.035em;
}

.np-patient-value-selector p {
  margin: 6px 0 0;
  color: var(--np-muted, #657286);
  font-size: 15px;
  line-height: 1.4;
  font-weight: 700;
}

.np-value-selector-buttons {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.np-value-selector-buttons button {
  border: 1px solid rgba(7, 148, 85, 0.22);
  border-radius: 999px;
  background: #ffffff;
  color: var(--np-ink, #07111f);
  padding: 12px 14px;
  font-size: 15px;
  line-height: 1;
  font-weight: 950;
  cursor: pointer;
  transition: border-color .18s ease, background .18s ease, color .18s ease, transform .18s ease;
}

.np-value-selector-buttons button:hover,
.np-value-selector-buttons button.is-active {
  border-color: var(--np-green);
  background: var(--np-green);
  color: #ffffff;
  transform: translateY(-1px);
}

.np-custom-value-label {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--np-muted, #657286);
  font-size: 15px;
  line-height: 1.3;
  font-weight: 850;
}

.np-custom-value-input-wrap {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(7, 148, 85, 0.26);
  border-radius: 999px;
  background: #ffffff;
  padding: 10px 14px;
  color: var(--np-green);
  font-weight: 950;
}

.np-custom-value-input-wrap input {
  width: 142px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--np-ink, #07111f);
  font-size: 15px;
  line-height: 1;
  font-weight: 900;
}

.np-easy-math table {
  overflow: hidden;
  border-radius: 18px;
}

.np-easy-math td:last-child {
  color: var(--np-green);
}

.np-easy-math-takeaway {
  margin-top: 22px;
  padding: clamp(24px, 3vw, 34px);
  border-radius: 22px;
  background: var(--np-green);
  color: #ffffff;
  font-size: clamp(24px, 2.5vw, 38px);
  line-height: 1.08;
  letter-spacing: -0.052em;
  font-weight: 950;
  text-align: center;
  box-shadow: 0 22px 56px rgba(7, 148, 85, 0.22);
}

.np-easy-math-takeaway span {
  color: #ffffff;
}

.np-cost-of-waiting {
  margin: 28px 0 0;
  padding: 28px;
  border: 1px solid rgba(7, 148, 85, 0.22);
  border-left: 5px solid var(--np-green);
  border-radius: 20px;
  background:
    linear-gradient(90deg, rgba(236, 253, 243, 0.82), rgba(255,255,255,0.96));
}

.np-cost-of-waiting span {
  display: block;
  margin-bottom: 12px;
  color: var(--np-green);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 10.5px;
  line-height: 1.2;
  font-weight: 950;
}

.np-cost-of-waiting p {
  margin: 0 0 18px;
  color: var(--np-muted, #657286);
  font-size: 18px;
  line-height: 1.5;
  font-weight: 760;
}

.np-cost-of-waiting strong {
  display: block;
  color: var(--np-ink, #07111f);
  font-size: 20px;
  line-height: 1.34;
  letter-spacing: -0.035em;
  font-weight: 950;
}

.np-cost-of-waiting strong span {
  display: inline;
  margin: 0;
  color: var(--np-green);
  text-transform: none;
  letter-spacing: -0.035em;
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
}

.np-faq-section {
  display: block;
  padding: 72px 6vw 84px;
  background:
    radial-gradient(circle at top right, rgba(7, 148, 85, 0.06), transparent 28%),
    #ffffff;
  border-top: 1px solid var(--np-line, #dbe3ef);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--np-ink, #07111f);
}

.np-faq-wrap {
  max-width: 1120px;
  margin: 0 auto;
}

.np-faq-title {
  max-width: 1040px;
  margin: 0;
  font-size: clamp(44px, 6vw, 78px);
  line-height: 0.94;
  letter-spacing: -0.075em;
  font-weight: 950;
  color: var(--np-ink, #07111f);
}

.np-faq-intro {
  max-width: 880px;
  margin: 34px 0 0;
  color: var(--np-muted, #657286);
  font-size: clamp(20px, 2.25vw, 29px);
  line-height: 1.18;
  letter-spacing: -0.045em;
  font-weight: 800;
}

.np-faq-list {
  display: grid;
  gap: 14px;
  margin-top: 42px;
}

.np-faq-item {
  border: 1px solid var(--np-line, #dbe3ef);
  border-radius: 18px;
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 14px 44px rgba(15, 23, 42, 0.035);
}

.np-faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--np-ink, #07111f);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  cursor: pointer;
  text-align: left;
  font: inherit;
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.15;
  letter-spacing: -0.045em;
  font-weight: 950;
  transition: color .18s ease, background .18s ease;
}

.np-faq-item.is-open .np-faq-question {
  color: var(--np-green);
  background: rgba(236, 253, 243, 0.62);
}

.np-faq-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(7, 148, 85, 0.08);
  color: var(--np-green);
  font-size: 22px;
  line-height: 1;
  font-weight: 950;
}

.np-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .24s ease;
}

.np-faq-item.is-open .np-faq-answer {
  max-height: 900px;
}

.np-faq-answer p {
  margin: 0;
  padding: 0 24px 18px;
  color: var(--np-muted, #657286);
  font-size: 17px;
  line-height: 1.56;
  font-weight: 700;
}

.np-faq-answer p:first-child {
  padding-top: 2px;
}

.np-final-reassurance,
.np-final-diagnostic-close {
  margin-top: 34px;
  padding: 30px;
  border-radius: 22px;
  border: 1px solid rgba(7, 148, 85, 0.20);
  background:
    linear-gradient(180deg, rgba(236, 253, 243, 0.78), rgba(255,255,255,0.98));
}

.np-final-reassurance h3 {
  margin: 0 0 18px;
  color: var(--np-ink, #07111f);
  font-size: clamp(28px, 3.2vw, 46px);
  line-height: 0.98;
  letter-spacing: -0.06em;
  font-weight: 950;
}

.np-final-reassurance p,
.np-final-diagnostic-close p {
  margin: 0 0 14px;
  color: var(--np-muted, #657286);
  font-size: 18px;
  line-height: 1.52;
  font-weight: 740;
}

.np-final-diagnostic-close p:first-child,
.np-final-diagnostic-close p:nth-child(2) {
  color: var(--np-ink, #07111f);
  font-weight: 950;
}

.np-final-diagnostic-close p:last-child {
  margin-bottom: 0;
  color: var(--np-green);
  font-weight: 950;
}

@media (max-width: 1080px) {
  .np-decision-path {
    grid-template-columns: 1fr;
  }

  .np-decision-path-item {
    min-height: auto;
  }

  .np-decision-path-arrow {
    display: none;
  }
}

@media (max-width: 760px) {
  .np-faq-section {
    padding: 54px 20px 64px;
  }

  .np-faq-title {
    font-size: 42px;
    letter-spacing: -0.065em;
  }

  .np-faq-intro {
    font-size: 23px;
  }

  .np-value-selector-buttons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .np-faq-question {
    padding: 20px;
  }

  .np-faq-answer p {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* Lightweight Section 05 → Section 06 reality-check bridge */
.np-reality-check {
  margin: clamp(24px, 4vw, 44px) 0;
}

.np-reality-card {
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 24px;
  padding: clamp(22px, 4vw, 34px);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
}

.np-reality-title {
  margin: 8px 0 12px;
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.np-reality-intro,
.np-reality-support,
.np-reality-message {
  color: rgba(15, 23, 42, 0.76);
  line-height: 1.6;
}

.np-reality-value {
  display: inline-flex;
  align-items: center;
  margin: 8px 0 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.06);
  color: rgba(15, 23, 42, 0.82);
  font-weight: 700;
  font-size: 0.92rem;
}

.np-reality-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0;
}

.np-reality-option {
  width: 100%;
  min-height: 112px;
  border: 1px solid rgba(15, 23, 42, 0.14);
  border-radius: 18px;
  background: rgba(248, 250, 252, 0.95);
  color: rgba(15, 23, 42, 0.86);
  padding: 16px;
  text-align: left;
  font: inherit;
  font-weight: 700;
  line-height: 1.35;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.np-reality-option:hover,
.np-reality-option:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(15, 23, 42, 0.32);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.10);
  outline: none;
}

.np-reality-option.is-selected {
  border-color: rgba(15, 23, 42, 0.55);
  background: rgba(15, 23, 42, 0.06);
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.20), 0 14px 28px rgba(15, 23, 42, 0.08);
}

.np-reality-message {
  margin: 12px 0 18px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.05);
}

.np-reality-message.is-confirmed {
  color: rgba(15, 23, 42, 0.9);
  font-weight: 800;
}

.np-reality-scroll {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 13px 18px;
  background: #111827;
  color: #ffffff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(17, 24, 39, 0.18);
}

.np-reality-scroll:hover,
.np-reality-scroll:focus-visible {
  outline: none;
  transform: translateY(-1px);
}

@media (max-width: 820px) {
  .np-reality-options {
    grid-template-columns: 1fr;
  }

  .np-reality-option {
    min-height: auto;
  }
}


/* Assessment-value confirmation displays for Section 04 and Section 07 */
.np-assessment-value-display {
  display: grid;
  gap: 8px;
  margin-top: 22px;
  padding: 18px 20px;
  border: 1px solid var(--np-line, #d7deea);
  border-radius: 16px;
  background: #ffffff;
}

.np-assessment-value-display span,
.np-value-confirmation-kicker {
  color: var(--np-blue, #2f5cf6);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.np-assessment-value-display strong {
  display: block;
  color: var(--np-ink, #07111f);
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1;
  letter-spacing: -0.045em;
  font-weight: 950;
}

.np-assessment-value-display p {
  margin: 0;
  color: var(--np-muted, #657286);
  font-weight: 800;
  line-height: 1.4;
}

.np-value-confirmation {
  display: grid;
  gap: 10px;
  margin: 24px 0 18px;
  padding: 22px;
  border: 1px solid rgba(7, 148, 85, 0.18);
  border-radius: 20px;
  background: rgba(236, 253, 243, 0.62);
  text-align: center;
}

.np-value-confirmation h3 {
  margin: 0;
  color: var(--np-ink, #07111f);
  font-size: clamp(22px, 2.2vw, 34px);
  line-height: 1.05;
  letter-spacing: -0.045em;
  font-weight: 950;
}

.np-value-confirmation-number {
  color: var(--np-green, #079455);
  font-size: clamp(38px, 5vw, 68px);
  line-height: 0.95;
  letter-spacing: -0.055em;
  font-weight: 950;
}

.np-value-confirmation p {
  margin: 0 auto;
  max-width: 680px;
  color: var(--np-muted, #657286);
  font-size: 15px;
  line-height: 1.45;
  font-weight: 750;
}

.np-value-edit-toggle {
  justify-self: center;
  border: 0;
  background: transparent;
  color: var(--np-green, #079455);
  font-size: 14px;
  line-height: 1;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
}

.np-value-edit-panel[hidden] {
  display: none !important;
}

.np-value-edit-panel {
  margin: 0 0 22px;
}



/* Why Your Report Chose This diagnostic card */
.np-why-chosen {
  margin: 28px 0 30px;
  padding: 24px 26px;
  border: 1px solid #d8e7f3;
  border-left: 5px solid #079455;
  border-radius: 18px;
  background: #f8fbff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.05);
}

.np-why-chosen-kicker {
  display: block;
  margin-bottom: 10px;
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #079455;
}

.np-why-chosen-title {
  margin: 0 0 10px;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.035em;
  color: #07101f;
}

.np-why-chosen-body,
.np-why-chosen-evidence {
  margin: 0;
  max-width: 860px;
  font-size: 17px;
  line-height: 1.58;
  color: #344054;
}

.np-why-chosen-evidence {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(7, 148, 85, 0.18);
  font-weight: 800;
  color: #102a43;
}

@media (max-width: 640px) {
  .np-why-chosen {
    padding: 20px;
    border-radius: 16px;
  }

  .np-why-chosen-body,
  .np-why-chosen-evidence {
    font-size: 16px;
  }
}




/* =========================================================
   SECTION 07 — PREMIUM CTA UPGRADE
   Scoped to the checkout section. Math block selectors remain untouched.
   ========================================================= */

.np-cta-section {
  background:
    radial-gradient(circle at top right, rgba(7, 148, 85, 0.08), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.np-cta-section .np-section-seven-premium {
  max-width: 1180px;
  text-align: left;
}

.np-cta-section .np-premium-hero {
  max-width: 990px;
  margin: 0 auto 54px;
  text-align: center;
}

.np-cta-section .np-section-kicker,
.np-cta-section .np-premium-label {
  display: inline-flex;
  align-items: center;
  color: var(--np-blue, #2f5cff);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.np-cta-section .np-cta-title {
  max-width: 980px;
  margin: 18px auto 22px;
  color: var(--np-ink, #07111f);
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.9;
  letter-spacing: -0.078em;
  font-weight: 950;
}

.np-cta-section .np-cta-lead {
  max-width: 790px;
  margin: 0 auto;
  color: var(--np-muted, #657286);
  font-size: clamp(22px, 2.35vw, 32px);
  line-height: 1.28;
  letter-spacing: -0.045em;
  font-weight: 820;
}

.np-cta-section .np-moment-reveal {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 28px;
  align-items: stretch;
  margin: 0 0 30px;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(7, 148, 85, 0.22);
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(7, 148, 85, 0.10), transparent 34%),
    linear-gradient(180deg, rgba(236, 253, 243, 0.88), #ffffff 100%);
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.07);
}

.np-cta-section .np-moment-copy h3 {
  max-width: 540px;
  margin: 16px 0 14px;
  color: var(--np-ink, #07111f);
  font-size: clamp(38px, 5vw, 70px);
  line-height: 0.92;
  letter-spacing: -0.068em;
  font-weight: 950;
}

.np-cta-section .np-moment-copy p {
  max-width: 520px;
  margin: 0;
  color: var(--np-muted, #657286);
  font-size: 20px;
  line-height: 1.45;
  letter-spacing: -0.025em;
  font-weight: 690;
}

.np-cta-section .np-moment-flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 56px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.np-cta-section .np-flow-card {
  min-height: 190px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.035);
}

.np-cta-section .np-flow-card small {
  margin-bottom: 12px;
  color: var(--np-muted, #657286);
  font-size: 11px;
  line-height: 1.2;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.np-cta-section .np-flow-card-protected {
  border-color: rgba(7, 148, 85, 0.24);
  background: #ffffff;
}

.np-cta-section .np-flow-card-protected small {
  color: var(--np-green, #079455);
}

.np-cta-section .np-flow-card strong {
  color: var(--np-ink, #07111f);
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  font-weight: 950;
}

.np-cta-section .np-flow-arrow {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--np-green, #079455);
  color: #ffffff;
  font-size: 30px;
  line-height: 1;
  font-weight: 950;
  box-shadow: 0 18px 36px rgba(7, 148, 85, 0.22);
}

.np-cta-section .np-premium-statement {
  margin: 30px 0 34px;
  padding: clamp(34px, 5vw, 64px);
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(47, 92, 255, 0.18), transparent 35%),
    #07111f;
  color: #ffffff;
  box-shadow: 0 30px 90px rgba(15, 23, 42, 0.18);
}

.np-cta-section .np-premium-statement .np-premium-label {
  color: #9fb6ff;
}

.np-cta-section .np-premium-statement h3 {
  max-width: 980px;
  margin: 16px 0 0;
  color: #ffffff;
  font-size: clamp(34px, 4.6vw, 64px);
  line-height: 0.98;
  letter-spacing: -0.062em;
  font-weight: 950;
}

.np-cta-section .np-premium-statement p {
  max-width: 860px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(20px, 2.2vw, 31px);
  line-height: 1.24;
  letter-spacing: -0.025em;
  font-weight: 750;
}

.np-cta-section .np-decision-path {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
  margin: 0 0 54px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.np-cta-section .np-decision-path-item {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  min-height: 184px;
  padding: 24px;
  border: 1px solid rgba(43, 92, 255, 0.16);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 18px 55px rgba(15, 23, 42, 0.055);
}

.np-cta-section .np-decision-path-item:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--np-blue, #2f5cff);
  color: #ffffff;
  font-size: 18px;
  line-height: 1;
  font-weight: 950;
  box-shadow: 0 14px 28px rgba(47, 92, 255, 0.20);
}

.np-cta-section .np-decision-step {
  width: 42px;
  height: 42px;
  margin: 0;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(47, 92, 255, 0.10);
  color: var(--np-blue, #2f5cff);
  font-size: 15px;
  line-height: 1;
  font-weight: 950;
  box-shadow: none;
}

.np-cta-section .np-decision-path-item .np-premium-label {
  color: var(--np-blue, #2f5cff);
  font-size: 10.5px;
  letter-spacing: 0.16em;
}

.np-cta-section .np-decision-path-item .np-decision-value {
  display: block;
  margin-top: 10px;
  color: var(--np-ink, #07111f);
  font-size: clamp(20px, 1.85vw, 28px);
  line-height: 1.04;
  letter-spacing: -0.048em;
  font-weight: 950;
  overflow-wrap: normal;
  word-break: normal;
}

.np-cta-section .np-math-transition {
  max-width: 880px;
  margin: 56px auto 28px;
  text-align: center;
}

.np-cta-section .np-math-transition h3 {
  margin: 14px 0 0;
  color: var(--np-ink, #07111f);
  font-size: clamp(34px, 4.5vw, 62px);
  line-height: 0.95;
  letter-spacing: -0.062em;
  font-weight: 950;
}

.np-cta-section .np-objection-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 28px 0 62px;
}

.np-cta-section .np-objection-strip div {
  padding: 24px;
  border: 1px solid rgba(43, 92, 255, 0.14);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 16px 46px rgba(15, 23, 42, 0.045);
}

.np-cta-section .np-objection-strip strong {
  display: block;
  margin-bottom: 8px;
  color: var(--np-ink, #07111f);
  font-size: 21px;
  line-height: 1.1;
  letter-spacing: -0.04em;
  font-weight: 950;
}

.np-cta-section .np-objection-strip p {
  margin: 0;
  color: var(--np-muted, #657286);
  font-size: 16px;
  line-height: 1.45;
  font-weight: 650;
}

.np-cta-section .np-cost-of-waiting {
  margin: 0 0 34px;
  padding: clamp(34px, 5vw, 64px);
  border: 0;
  border-radius: 38px;
  background:
    radial-gradient(circle at top right, rgba(7, 148, 85, 0.16), transparent 34%),
    #07111f;
  color: #ffffff;
  box-shadow: 0 30px 90px rgba(15, 23, 42, 0.20);
}

.np-cta-section .np-cost-of-waiting > .np-premium-label {
  display: inline-flex;
  color: #9fb6ff;
  margin-bottom: 0;
}

.np-cta-section .np-cost-of-waiting h3 {
  max-width: 850px;
  margin: 16px 0 14px;
  color: #ffffff;
  font-size: clamp(40px, 5.5vw, 78px);
  line-height: 0.9;
  letter-spacing: -0.072em;
  font-weight: 950;
}

.np-cta-section .np-cost-waiting-lead {
  max-width: 760px;
  margin: 0 0 32px;
  color: rgba(255,255,255,0.72);
  font-size: 22px;
  line-height: 1.4;
  letter-spacing: -0.028em;
  font-weight: 690;
}

.np-cta-section .np-cost-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.np-cta-section .np-cost-proof > div {
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 26px;
  background: rgba(255,255,255,0.07);
}

.np-cta-section .np-cost-proof strong {
  display: block;
  margin-bottom: 10px;
  color: #ffffff;
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -0.04em;
  font-weight: 950;
}

.np-cta-section .np-cost-proof p {
  margin: 0;
  color: rgba(255,255,255,0.70);
  font-size: 17px;
  line-height: 1.5;
  font-weight: 580;
}

.np-cta-section .np-cost-proof span {
  display: inline;
  margin: 0;
  color: #86efac;
  font-size: inherit;
  line-height: inherit;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: none;
}

.np-cta-section .np-final-cta-card {
  padding: clamp(38px, 6vw, 76px);
  border: 1px solid rgba(7, 148, 85, 0.22);
  border-radius: 40px;
  background:
    radial-gradient(circle at top right, rgba(7, 148, 85, 0.10), transparent 34%),
    linear-gradient(180deg, rgba(236, 253, 243, 0.90) 0%, #ffffff 100%);
  text-align: center;
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.08);
}

.np-cta-section .np-final-cta-card h3 {
  max-width: 920px;
  margin: 0 auto 16px;
  color: var(--np-ink, #07111f);
  font-size: clamp(40px, 5.8vw, 82px);
  line-height: 0.92;
  letter-spacing: -0.072em;
  font-weight: 950;
}

.np-cta-section .np-final-cta-card p {
  max-width: 720px;
  margin: 0 auto 30px;
  color: var(--np-muted, #657286);
  font-size: 22px;
  line-height: 1.4;
  letter-spacing: -0.03em;
  font-weight: 690;
}

.np-cta-section .np-final-cta-card .np-cta-button {
  width: min(100%, 660px);
  min-height: 66px;
  margin: 0 auto;
  padding: 0 36px;
  border-radius: 999px;
  background: var(--np-green, #079455);
  color: #ffffff;
  font-size: 13px;
  line-height: 1.1;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 20px 44px rgba(7, 148, 85, 0.26);
}

.np-cta-section .np-final-cta-card .np-cta-button:hover {
  background: #067647;
  box-shadow: 0 26px 58px rgba(7, 148, 85, 0.34);
}

.np-cta-section .np-final-cta-card small {
  max-width: 760px;
  margin: 16px auto 0;
  color: var(--np-muted, #657286);
  font-size: 12px;
  line-height: 1.4;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .np-cta-section .np-premium-hero {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
  }

  .np-cta-section .np-cta-title,
  .np-cta-section .np-cta-lead {
    margin-left: 0;
    margin-right: 0;
  }

  .np-cta-section .np-moment-reveal,
  .np-cta-section .np-moment-flow,
  .np-cta-section .np-decision-path,
  .np-cta-section .np-objection-strip,
  .np-cta-section .np-cost-proof {
    grid-template-columns: 1fr;
  }

  .np-cta-section .np-flow-arrow {
    margin: 0 auto;
    transform: rotate(90deg);
  }

  .np-cta-section .np-decision-path {
    gap: 24px;
  }

  .np-cta-section .np-decision-path-item {
    min-height: auto;
  }

  .np-cta-section .np-decision-path-item:not(:last-child)::after {
    content: "↓";
    right: auto;
    left: 28px;
    top: auto;
    bottom: -24px;
    transform: none;
  }

  .np-cta-section .np-final-cta-card {
    text-align: left;
  }

  .np-cta-section .np-final-cta-card h3,
  .np-cta-section .np-final-cta-card p,
  .np-cta-section .np-final-cta-card small {
    margin-left: 0;
    margin-right: 0;
  }
}

@media (max-width: 760px) {
  .np-cta-section .np-section-seven-premium {
    max-width: 100%;
  }

  .np-cta-section .np-cta-title {
    font-size: 44px;
    letter-spacing: -0.068em;
  }

  .np-cta-section .np-cta-lead {
    font-size: 22px;
  }

  .np-cta-section .np-moment-reveal,
  .np-cta-section .np-premium-statement,
  .np-cta-section .np-cost-of-waiting,
  .np-cta-section .np-final-cta-card {
    border-radius: 28px;
  }

  .np-cta-section .np-flow-card {
    min-height: auto;
  }

  .np-cta-section .np-math-transition {
    margin-top: 42px;
    text-align: left;
  }

  .np-cta-section .np-final-cta-card .np-cta-button {
    min-height: 62px;
    padding: 0 22px;
    text-align: center;
  }
}


/* Section 06 premium intro upgrade */
.np-system-intro {
  margin-top: 38px;
}

.np-system-lead {
  max-width: 940px;
  margin: 0;
  color: var(--np-muted);
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.18;
  letter-spacing: -0.045em;
  font-weight: 800;
}

.np-system-reality-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.np-system-reality-card {
  padding: 26px 24px 28px;
  border: 1px solid var(--np-line);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 18px 55px rgba(15, 23, 42, 0.055);
}

.np-system-reality-card span,
.np-system-hard-truth span {
  display: block;
  margin-bottom: 14px;
  color: var(--np-blue);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.np-system-reality-card h3 {
  margin: 0 0 10px;
  color: var(--np-ink);
  font-size: clamp(26px, 3vw, 40px);
  line-height: 0.96;
  letter-spacing: -0.055em;
  font-weight: 950;
}

.np-system-reality-card p {
  margin: 0;
  color: var(--np-muted);
  font-size: 17px;
  line-height: 1.45;
  font-weight: 650;
}

.np-system-hard-truth {
  margin-top: 18px;
  padding: clamp(28px, 4vw, 46px);
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(16, 185, 129, 0.13), transparent 34%),
    #061026;
  color: #ffffff;
  box-shadow: 0 26px 74px rgba(15, 23, 42, 0.16);
}

.np-system-hard-truth span {
  color: #93c5fd;
}

.np-system-hard-truth h3 {
  max-width: 960px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(34px, 4.8vw, 68px);
  line-height: 0.96;
  letter-spacing: -0.065em;
  font-weight: 950;
}

@media (max-width: 900px) {
  .np-system-reality-grid {
    grid-template-columns: 1fr;
  }

  .np-system-reality-card {
    border-radius: 24px;
  }

  .np-system-hard-truth {
    border-radius: 28px;
  }
}


/* =========================================================
   SECTION 01 — PREMIUM READABILITY UPGRADE
   Makes the opening diagnosis easier to scan without altering later sections.
   ========================================================= */

.np-report-top .np-report-lede {
  max-width: 860px;
  margin-top: 34px;
  color: #5f6f85;
  font-size: clamp(21px, 2.2vw, 30px);
  line-height: 1.28;
  letter-spacing: -0.035em;
}

.np-report-top .np-section1-digest {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr 0.95fr;
  gap: 16px;
  margin: 38px 0 34px;
}

.np-report-top .np-s1-digest-card {
  min-height: 250px;
  padding: clamp(22px, 2.8vw, 32px);
  border: 1px solid rgba(47, 92, 255, 0.14);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.055);
}

.np-report-top .np-s1-digest-card-primary {
  border-color: rgba(7, 148, 85, 0.28);
  background:
    radial-gradient(circle at top right, rgba(7, 148, 85, 0.10), transparent 38%),
    #ffffff;
}

.np-report-top .np-s1-digest-card span,
.np-report-top .np-section1-punch-card span,
.np-report-top .np-section1-reality-card span {
  display: inline-flex;
  margin-bottom: 14px;
  color: #2f5cff;
  font-size: 11px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.np-report-top .np-s1-digest-card-primary span {
  color: #079455;
}

.np-report-top .np-s1-digest-card h2 {
  margin: 0 0 12px;
  color: #061026;
  font-size: clamp(27px, 3vw, 42px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  font-weight: 950;
}

.np-report-top .np-s1-digest-card-primary h2 {
  color: #079455;
  font-size: clamp(34px, 4vw, 58px);
}

.np-report-top .np-s1-digest-card p {
  margin: 0;
  color: #667386;
  font-size: 17px;
  line-height: 1.5;
  font-weight: 650;
}

.np-report-top .np-section1-punch-card {
  margin: 22px 0 28px;
  padding: clamp(24px, 3.2vw, 38px);
  border: 1px solid rgba(239, 68, 68, 0.18);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(254, 242, 242, 0.92), rgba(255, 255, 255, 0.96));
  box-shadow: 0 18px 55px rgba(15, 23, 42, 0.05);
}

.np-report-top .np-section1-punch-card span {
  color: #dc2626;
}

.np-report-top .np-section1-punch-card .np-equation-punch {
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #0f172a;
  font-size: clamp(22px, 2.5vw, 34px);
  line-height: 1.22;
  letter-spacing: -0.04em;
  font-weight: 900;
}

.np-report-top .np-section1-reality-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 28px 0 32px;
}

.np-report-top .np-section1-reality-card {
  padding: 22px 24px;
  border: 1px solid rgba(216, 231, 243, 0.95);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.045);
}

.np-report-top .np-section1-reality-card-wide {
  grid-column: 1 / -1;
  background:
    radial-gradient(circle at top left, rgba(47, 92, 255, 0.07), transparent 34%),
    #ffffff;
}

.np-report-top .np-section1-reality-card p,
.np-report-top .np-section1-reality-card .np-diagnostic-note,
.np-report-top .np-section1-reality-card .np-respect-note {
  max-width: none;
  margin: 0;
  padding: 0;
  border: 0;
  color: #526173;
  font-size: 16px;
  line-height: 1.55;
  font-weight: 700;
}

.np-report-top .np-why-chosen {
  margin: 32px 0 34px;
  padding: clamp(24px, 3.4vw, 38px);
  border: 1px solid rgba(7, 148, 85, 0.22);
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(7, 148, 85, 0.10), transparent 34%),
    #f8fbff;
  box-shadow: 0 18px 55px rgba(15, 23, 42, 0.055);
}

.np-report-top .np-why-chosen-content {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(300px, 1.12fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
}

.np-report-top .np-why-chosen-title {
  margin: 0;
  font-size: clamp(30px, 3.9vw, 54px);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.np-report-top .np-why-chosen-copy {
  display: grid;
  gap: 14px;
}

.np-report-top .np-why-chosen-body,
.np-report-top .np-why-chosen-evidence {
  max-width: none;
  margin: 0;
  color: #526173;
  font-size: 17px;
  line-height: 1.55;
}

.np-report-top .np-why-chosen-evidence {
  padding: 16px 18px;
  border: 1px solid rgba(7, 148, 85, 0.16);
  border-radius: 18px;
  background: rgba(236, 253, 243, 0.72);
  color: #102a43;
  font-weight: 850;
}

@media (max-width: 920px) {
  .np-report-top .np-section1-digest,
  .np-report-top .np-section1-reality-grid,
  .np-report-top .np-why-chosen-content {
    grid-template-columns: 1fr;
  }

  .np-report-top .np-s1-digest-card {
    min-height: auto;
  }

  .np-report-top .np-section1-reality-card-wide {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  .np-report-top .np-section1-digest {
    margin-top: 28px;
  }

  .np-report-top .np-s1-digest-card,
  .np-report-top .np-section1-punch-card,
  .np-report-top .np-section1-reality-card,
  .np-report-top .np-why-chosen {
    border-radius: 22px;
  }
}


/* =========================================================
   PREMIUM READABILITY POLISH — KEY INSIGHT SYSTEM
   Scoped to report sections; does not target math/calculator blocks.
========================================================= */

.rla-report .np-key-insight {
  margin: clamp(22px, 3vw, 34px) 0 clamp(26px, 4vw, 42px);
  padding: clamp(24px, 4vw, 42px);
  border-radius: 32px;
  border: 1px solid rgba(37, 99, 235, 0.16);
  background:
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.08), transparent 35%),
    linear-gradient(180deg, #eff6ff 0%, #ffffff 100%);
  box-shadow: 0 22px 70px rgba(15, 23, 42, 0.055);
}

.rla-report .np-key-insight-green {
  border-color: rgba(5, 150, 105, 0.18);
  background:
    radial-gradient(circle at top right, rgba(5, 150, 105, 0.09), transparent 35%),
    linear-gradient(180deg, #ecfdf5 0%, #ffffff 100%);
}

.rla-report .np-key-insight > span {
  display: inline-flex;
  margin-bottom: 14px;
  color: #2563eb;
  font-size: 12px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.rla-report .np-key-insight-green > span {
  color: #059669;
}

.rla-report .np-key-insight h3 {
  max-width: 940px;
  margin: 0 0 12px;
  color: #020617;
  font-size: clamp(30px, 4vw, 56px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  font-weight: 950;
}

.rla-report .np-key-insight p {
  max-width: 780px;
  margin: 0;
  color: #64748b;
  font-size: clamp(17px, 1.65vw, 21px);
  line-height: 1.45;
  font-weight: 650;
}

/* Patch 47B: scoped Section 4 intro paragraph rhythm */
.rla-report #npKeyInsight4Body.np-section-4-intro-body {
  max-width: 780px;
  color: #64748b;
  font-size: clamp(17px, 1.65vw, 21px);
  line-height: 1.45;
  font-weight: 650;
}

.rla-report #npKeyInsight4Body.np-section-4-intro-body p {
  max-width: 780px;
  margin: 0 0 0.9rem;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
}

.rla-report #npKeyInsight4Body.np-section-4-intro-body p:last-child {
  margin-bottom: 0;
}

.rla-report .np-report-lede-card {
  margin-top: 24px;
}

.rla-report .np-report-lede-card .np-report-lede {
  margin: 0;
}

.rla-report .np-cta-key-insight {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.rla-report .np-cta-key-insight p {
  max-width: 720px;
}

/* Section 03: cleaner disappearance timeline */
.rla-report .np-break-timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin: clamp(28px, 4vw, 44px) 0;
}

.rla-report .np-break-timeline-item {
  position: relative;
  padding: 22px;
  border: 1px solid rgba(219, 234, 254, 0.95);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 16px 46px rgba(15, 23, 42, 0.045);
}

.rla-report .np-break-timeline-item:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -20px;
  top: 34px;
  z-index: 2;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #2563eb;
  color: #ffffff;
  font-size: 16px;
  font-weight: 950;
}

.rla-report .np-break-timeline-item span,
.rla-report .np-reassurance-card span {
  display: inline-flex;
  margin-bottom: 12px;
  color: #2563eb;
  font-size: 11px;
  line-height: 1.15;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.rla-report .np-break-timeline-item h3 {
  margin: 0 0 10px;
  color: #020617;
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  font-weight: 900;
}

.rla-report .np-break-timeline-item p {
  margin: 0;
  color: #64748b;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 600;
}

/* Section 05: strategic fork refinement */
.rla-report .np-fix-fork {
  margin-top: 26px;
}

.rla-report .np-fix-fork .np-fix-side p {
  line-height: 1.5;
}

/* Section 08: fast reassurance grid */
.rla-report .np-reassurance-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: clamp(28px, 4vw, 46px) 0;
}

.rla-report .np-reassurance-card {
  padding: 24px;
  border: 1px solid rgba(219, 234, 254, 0.95);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 16px 46px rgba(15, 23, 42, 0.045);
}

.rla-report .np-reassurance-card h3 {
  margin: 0 0 10px;
  color: #020617;
  font-size: clamp(19px, 1.8vw, 25px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  font-weight: 900;
}

.rla-report .np-reassurance-card p {
  margin: 0;
  color: #64748b;
  font-size: 16px;
  line-height: 1.48;
  font-weight: 600;
}

.rla-report .np-final-diagnostic-close {
  display: grid;
  gap: 10px;
}

.rla-report .np-final-diagnostic-close p {
  margin: 0;
}

@media (max-width: 1100px) {
  .rla-report .np-break-timeline,
  .rla-report .np-reassurance-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rla-report .np-break-timeline-item:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 720px) {
  .rla-report .np-key-insight {
    border-radius: 24px;
  }

  .rla-report .np-key-insight h3 {
    font-size: clamp(28px, 9vw, 42px);
    line-height: 1;
  }

  .rla-report .np-break-timeline,
  .rla-report .np-reassurance-grid {
    grid-template-columns: 1fr;
  }

  .rla-report .np-break-timeline-item,
  .rla-report .np-reassurance-card {
    border-radius: 22px;
  }
}

.rla-report .np-key-insight p br,
.rla-report .np-reassurance-card p br {
  display: none;
}


/* Offer tangibility + Key Insight reading cue polish */
:root {
  --np-cerulean: #2a9df4;
  --np-cerulean-deep: #1677c8;
  --np-cerulean-soft: rgba(42, 157, 244, 0.055);
  --np-cerulean-border: rgba(42, 157, 244, 0.62);
}

.rla-report .np-key-insight,
.rla-report .np-key-insight-blue,
.rla-report .np-key-insight-green {
  position: relative;
  overflow: hidden;
  border: 1.5px solid var(--np-cerulean-border);
  background:
    radial-gradient(circle at top right, rgba(42, 157, 244, 0.075), transparent 34%),
    linear-gradient(180deg, var(--np-cerulean-soft) 0%, #ffffff 74%);
  box-shadow: 0 20px 62px rgba(15, 23, 42, 0.055);
}

.rla-report .np-key-insight::before,
.rla-report .np-key-insight-blue::before,
.rla-report .np-key-insight-green::before {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  top: 0;
  height: 4px;
  border-radius: 0 0 999px 999px;
  background: var(--np-cerulean);
}

.rla-report .np-key-insight > span,
.rla-report .np-key-insight-blue > span,
.rla-report .np-key-insight-green > span {
  color: var(--np-cerulean-deep);
}

.np-cta-section .np-final-cta-card-with-system {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: clamp(26px, 4vw, 54px);
  align-items: center;
  text-align: left;
}

.np-cta-section .np-final-cta-copy {
  min-width: 0;
}

.np-cta-section .np-final-cta-card-with-system h3,
.np-cta-section .np-final-cta-card-with-system p,
.np-cta-section .np-final-cta-card-with-system small {
  margin-left: 0;
  margin-right: 0;
}

.np-cta-section .np-final-cta-card-with-system .np-cta-button {
  margin-left: 0;
  margin-right: 0;
}

.np-final-system-preview {
  margin: 0;
  padding: clamp(16px, 2vw, 22px);
  border: 1px solid rgba(42, 157, 244, 0.18);
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(42, 157, 244, 0.08), transparent 36%),
    rgba(255, 255, 255, 0.76);
  box-shadow: 0 22px 62px rgba(15, 23, 42, 0.075);
}

.np-final-system-preview img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 22px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.10);
}

.np-final-system-preview figcaption {
  display: grid;
  gap: 6px;
  margin-top: 16px;
}

.np-final-system-preview figcaption strong {
  color: var(--np-ink, #07111f);
  font-size: 18px;
  line-height: 1.1;
  letter-spacing: -0.025em;
  font-weight: 950;
}

.np-final-system-preview figcaption span {
  color: var(--np-muted, #657286);
  font-size: 14px;
  line-height: 1.35;
  font-weight: 750;
}

@media (max-width: 980px) {
  .np-cta-section .np-final-cta-card-with-system {
    grid-template-columns: 1fr;
  }

  .np-final-system-preview {
    max-width: 560px;
  }
}

@media (max-width: 760px) {
  .rla-report .np-key-insight::before,
  .rla-report .np-key-insight-blue::before,
  .rla-report .np-key-insight-green::before {
    left: 22px;
    right: 22px;
  }

  .np-cta-section .np-final-cta-card-with-system {
    gap: 24px;
  }

  .np-final-system-preview {
    padding: 14px;
    border-radius: 24px;
  }

  .np-final-system-preview img {
    border-radius: 18px;
  }
}

/* =========================================================
   SHARP PREMIUM KEY INSIGHT REFINEMENT
   CSS-only pass. Key Insight/main-point modules only.
   Does not target math, calculator, value selector, form, or CTA logic.
========================================================= */

:root {
  --np-sharp-insight-blue: #22a8c6;
  --np-sharp-insight-blue-deep: #1784a0;
  --np-sharp-insight-border: rgba(34, 168, 198, 0.72);
  --np-sharp-insight-wash: rgba(34, 168, 198, 0.035);
}

.rla-report .np-key-insight,
.rla-report .np-key-insight-blue,
.rla-report .np-key-insight-green {
  position: relative;
  overflow: hidden;
  border: 1.5px solid var(--np-sharp-insight-border) !important;
  border-radius: 4px !important;
  background:
    linear-gradient(180deg, var(--np-sharp-insight-wash) 0%, #ffffff 58%) !important;
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.035) !important;
}

/* Thin report-style rule: sharp, not rounded or decorative */
.rla-report .np-key-insight::before,
.rla-report .np-key-insight-blue::before,
.rla-report .np-key-insight-green::before {
  content: "";
  position: absolute;
  left: 0 !important;
  right: 0 !important;
  top: 0;
  height: 3px;
  border-radius: 0 !important;
  background: var(--np-sharp-insight-blue) !important;
}

/* Small left registration mark for a structured diagnostic/report feel */
.rla-report .np-key-insight::after,
.rla-report .np-key-insight-blue::after,
.rla-report .np-key-insight-green::after {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  bottom: 0;
  width: 3px;
  background: rgba(34, 168, 198, 0.22);
}

.rla-report .np-key-insight > span,
.rla-report .np-key-insight-blue > span,
.rla-report .np-key-insight-green > span {
  color: var(--np-sharp-insight-blue-deep) !important;
}

@media (max-width: 720px) {
  .rla-report .np-key-insight,
  .rla-report .np-key-insight-blue,
  .rla-report .np-key-insight-green {
    border-radius: 4px !important;
  }

  .rla-report .np-key-insight::before,
  .rla-report .np-key-insight-blue::before,
  .rla-report .np-key-insight-green::before {
    left: 0 !important;
    right: 0 !important;
    border-radius: 0 !important;
  }
}


/* Seen / Unseen label inset adjustment — Section 02 comparison module only */
.np-counted-row {
  padding-left: 32px;
  padding-right: 32px;
}

.np-counted-row span {
  display: block;
}

@media (max-width: 560px) {
  .np-counted-row {
    padding-left: 24px;
    padding-right: 24px;
  }
}


/* =========================================================
   v11 TARGETED VISUAL / UI POLISH
   Narrow selectors only. No math, checkout, form, or scoring changes.
   ========================================================= */

:root {
  --np-warning-red: #d92d20;
  --np-warning-red-deep: #7f1d1d;
  --np-warning-red-soft: #fff1f2;
  --np-warning-red-line: rgba(217, 45, 32, 0.28);
  --np-green-deep: #047a47;
}

/* Compact premium tooltips for leak labels and path/map steps */
.np-tooltip-trigger {
  position: relative;
  cursor: help;
  outline: none;
}

.np-tooltip-trigger::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 12px);
  transform: translateX(-50%) translateY(4px);
  z-index: 50;
  width: min(280px, 78vw);
  padding: 12px 14px;
  border: 1px solid rgba(47, 102, 255, 0.22);
  border-radius: 8px;
  background: #ffffff;
  color: var(--np-ink, #07111f);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.16);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 750;
  letter-spacing: 0;
  text-transform: none;
  text-align: left;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
}

.np-tooltip-trigger:hover::after,
.np-tooltip-trigger:focus-visible::after {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* Seen / Unseen label inset only */
.rla-report .np-seen-unseen .np-seen-label {
  padding-left: clamp(24px, 3vw, 40px);
  padding-right: clamp(24px, 3vw, 40px);
}

/* Break Point Map warning treatment only */
.rla-report .np-break-map {
  border-color: var(--np-warning-red-line);
  background:
    radial-gradient(circle at top left, rgba(217, 45, 32, 0.10), transparent 34%),
    #ffffff;
}

.rla-report .np-break-map .np-break-map-arrow,
.rla-report .np-break-map .np-break-map-note {
  color: var(--np-warning-red);
}

.rla-report .np-break-map .np-break-map-step-active {
  background: var(--np-warning-red-deep);
  border-color: var(--np-warning-red-deep);
  color: #ffffff;
}

/* Moment being protected: green copy treatment only in this module */
.rla-report .np-moment-reveal .np-premium-label,
.rla-report .np-moment-reveal h3,
.rla-report .np-moment-reveal p,
.rla-report .np-moment-reveal small,
.rla-report .np-moment-reveal strong,
.rla-report .np-moment-reveal .np-flow-arrow {
  color: var(--np-green, #079455);
}

/* Visible vs Invisible losses warning treatment only */
.rla-report .np-cost-state-comparison .np-cost-state-grid {
  border-color: var(--np-warning-red-line);
  background: var(--np-warning-red-line);
}

.rla-report .np-cost-state-comparison .np-cost-state-grid > div:first-child {
  background: #fff7f7;
  border-color: var(--np-warning-red-line);
}

.rla-report .np-cost-state-comparison .np-cost-state-grid > div:first-child span,
.rla-report .np-cost-state-comparison .np-cost-state-grid > div:first-child strong,
.rla-report .np-cost-state-comparison .np-cost-state-grid > div:first-child b,
.rla-report .np-cost-state-comparison .np-cost-state-grid > div:first-child i {
  color: var(--np-warning-red);
}

.rla-report .np-cost-state-comparison .np-cost-state-grid > div:last-child {
  background: #fff1f2;
  border-color: rgba(127, 29, 29, 0.30);
}

.rla-report .np-cost-state-comparison .np-cost-state-grid > div:last-child span,
.rla-report .np-cost-state-comparison .np-cost-state-grid > div:last-child strong,
.rla-report .np-cost-state-comparison .np-cost-state-grid > div:last-child b,
.rla-report .np-cost-state-comparison .np-cost-state-grid > div:last-child i {
  color: var(--np-warning-red-deep);
}

.rla-report .np-cost-state-comparison .np-cost-state-grid > div:last-child b {
  font-size: clamp(16px, 1.55vw, 22px);
  line-height: 1.22;
}

/* "Do Not Start Here" risk section warning treatment only */
.rla-report .np-first-fix-contrast {
  border-color: var(--np-warning-red-line);
  background: linear-gradient(90deg, rgba(217, 45, 32, 0.16), rgba(217, 45, 32, 0.06));
}

.rla-report .np-first-fix-avoid {
  background: var(--np-warning-red-soft);
}

.rla-report .np-first-fix-avoid .np-visual-kicker,
.rla-report .np-first-fix-avoid li {
  color: var(--np-warning-red-deep);
}

.rla-report .np-first-fix-avoid li {
  border-color: var(--np-warning-red-line);
  background: #fffafa;
}

/* Red emphasis for specific risk sentence and phrase */
.rla-report .np-red-emphasis,
.rla-report .np-red-emphasis-text {
  color: var(--np-warning-red) !important;
  font-weight: 900;
}

/* Specific green takeaway hover state */
.rla-report .np-easy-math-takeaway {
  transition: background-color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.rla-report .np-easy-math-takeaway:hover {
  background: var(--np-green-deep);
  box-shadow: 0 18px 42px rgba(7, 148, 85, 0.22);
}

/* FAQ accordion: collapsed by default, answer takes no space until opened */
.rla-report .np-faq-accordion {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.rla-report .np-faq-item {
  padding: 0;
  overflow: hidden;
  border-radius: 12px;
}

.rla-report .np-faq-question {
  appearance: none;
  width: 100%;
  border: 0;
  background: transparent;
  padding: 22px 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  text-align: left;
  cursor: pointer;
}

.rla-report .np-faq-question span {
  grid-column: 1 / -1;
  margin: 0 0 2px;
}

.rla-report .np-faq-question strong {
  color: #020617;
  font-size: clamp(18px, 1.65vw, 23px);
  line-height: 1.06;
  letter-spacing: -0.035em;
  font-weight: 950;
}

.rla-report .np-faq-question em {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(47, 102, 255, 0.22);
  border-radius: 999px;
  color: #2563eb;
  font-style: normal;
  font-weight: 950;
}

.rla-report .np-faq-answer {
  padding: 0 24px 24px;
}

.rla-report .np-faq-answer[hidden] {
  display: none !important;
}

@media (max-width: 760px) {
  .rla-report .np-faq-accordion {
    grid-template-columns: 1fr;
  }

  .np-tooltip-trigger::after {
    left: 0;
    transform: translateY(4px);
  }

  .np-tooltip-trigger:hover::after,
  .np-tooltip-trigger:focus-visible::after {
    transform: translateY(0);
  }
}


/* Actual Section 2 Seen / Unseen label inset */
.rla-report .np-counted-list .np-counted-row span {
  padding-left: clamp(24px, 3vw, 40px);
  padding-right: clamp(24px, 3vw, 40px);
  display: block;
}


/* Section 6 unprotected memory path warning treatment */
.rla-report .np-current-process .np-process-label,
.rla-report .np-current-process .np-process-arrow {
  color: var(--np-warning-red);
}

.rla-report .np-current-process .np-process-step {
  border-color: var(--np-warning-red-line);
  background: #fff7f7;
  color: var(--np-warning-red-deep);
}

/* v12: Section 03 journey cards converted to premium accordions */
.rla-report .np-break-timeline-accordion {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: clamp(28px, 4vw, 44px) 0;
}

.rla-report .np-break-timeline-accordion .np-break-accordion-item {
  border-radius: 8px;
  padding: 0;
  border: 1.5px solid rgba(37, 99, 235, 0.18);
  background:
    linear-gradient(180deg, rgba(37, 99, 235, 0.035), #ffffff 74%);
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.045);
  overflow: hidden;
}

.rla-report .np-break-timeline-accordion .np-break-accordion-item:not(:last-child)::after {
  display: none;
}

.rla-report .np-break-accordion-summary {
  list-style: none;
  cursor: pointer;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: clamp(18px, 2.6vw, 26px);
}

.rla-report .np-break-accordion-summary::-webkit-details-marker {
  display: none;
}

.rla-report .np-break-accordion-summary::marker {
  content: "";
}

.rla-report .np-break-accordion-summary:hover {
  background: rgba(37, 99, 235, 0.035);
}

.rla-report .np-break-accordion-heading {
  display: grid;
  gap: 8px;
}

.rla-report .np-break-timeline-accordion .np-break-accordion-heading span {
  margin: 0;
}

.rla-report .np-break-timeline-accordion .np-break-accordion-heading h3 {
  margin: 0;
  font-size: clamp(22px, 2.1vw, 32px);
}

.rla-report .np-break-accordion-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #2563eb;
  color: #ffffff;
  font-weight: 950;
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.22);
  flex: 0 0 auto;
}

.rla-report .np-break-accordion-icon::before {
  content: "+";
  transform: translateY(-1px);
}

.rla-report .np-break-accordion-item[open] .np-break-accordion-icon::before {
  content: "–";
}

.rla-report .np-break-timeline-accordion .np-break-accordion-panel {
  display: block;
  grid-template-columns: initial;
  max-height: none;
  opacity: 1;
  overflow: visible;
  transition: none;
  padding: 0 clamp(18px, 2.6vw, 26px) clamp(20px, 2.6vw, 28px);
  border-top: 1px solid rgba(219, 234, 254, 0.95);
}

.rla-report .np-break-timeline-accordion .np-break-accordion-panel p {
  margin: 16px 0 0;
  max-width: 920px;
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.5;
}

@media (max-width: 720px) {
  .rla-report .np-break-timeline-accordion .np-break-accordion-item {
    border-radius: 6px;
  }

  .rla-report .np-break-accordion-summary {
    grid-template-columns: 1fr;
  }

  .rla-report .np-break-accordion-icon {
    justify-self: start;
  }
}

/* =========================================================
   Accessibility micro-safety: focus visibility + reduced motion
   ========================================================= */

.rla-question button:focus-visible,
.business-name-input:focus-visible,
.business-name-submit:focus-visible,
#rlaEmail:focus-visible,
#rlaEmailForm button:focus-visible,
#npCtaButton:focus-visible,
.np-accordion-button:focus-visible,
.np-faq-question:focus-visible,
.np-reality-option:focus-visible,
.np-reality-scroll:focus-visible,
.np-tooltip-trigger:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.72);
  outline-offset: 3px;
}

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

/* =========================================================
   PATCH 1 — Patient Leak Protection™ offer bridge only
   Scoped to Section 07 so approved leak copy and report logic stay intact.
   ========================================================= */

.np-cta-section .np-plp-offer,
.np-cta-section .np-plp-money-frame,
.np-cta-section .np-plp-urgency,
.np-cta-section .np-plp-protection-areas {
  margin: 30px 0 34px;
  padding: clamp(32px, 5vw, 62px);
  border-radius: 34px;
  border: 1px solid rgba(43, 92, 255, 0.14);
  background:
    radial-gradient(circle at top right, rgba(47, 92, 255, 0.10), transparent 34%),
    #ffffff;
  box-shadow: 0 24px 76px rgba(15, 23, 42, 0.065);
}

.np-cta-section .np-plp-offer h3,
.np-cta-section .np-plp-money-frame h3,
.np-cta-section .np-plp-urgency h3,
.np-cta-section .np-plp-protection-areas h3,
.np-cta-section .np-plp-plan h3,
.np-cta-section .np-plp-ladder h3 {
  max-width: 900px;
  margin: 16px 0 16px;
  color: var(--np-ink, #07111f);
  font-size: clamp(34px, 4.8vw, 68px);
  line-height: 0.94;
  letter-spacing: -0.068em;
  font-weight: 950;
}

.np-cta-section .np-plp-subheadline {
  max-width: 760px;
  margin: 0 0 26px;
  color: var(--np-ink, #07111f);
  font-size: clamp(22px, 2.5vw, 34px);
  line-height: 1.18;
  letter-spacing: -0.04em;
  font-weight: 850;
}

.np-cta-section .np-plp-copy {
  display: grid;
  gap: 14px;
  max-width: 850px;
}

.np-cta-section .np-plp-copy p,
.np-cta-section .np-plp-money-frame p,
.np-cta-section .np-plp-urgency p,
.np-cta-section .np-plp-protection-areas p,
.np-cta-section .np-plp-plan p,
.np-cta-section .np-plp-ladder span {
  margin: 0;
  color: var(--np-muted, #657286);
  font-size: 19px;
  line-height: 1.5;
  letter-spacing: -0.022em;
  font-weight: 690;
}

.np-cta-section .np-plp-copy strong,
.np-cta-section .np-plp-money-stack {
  color: var(--np-ink, #07111f);
  font-weight: 950;
}

.np-cta-section .np-plp-plan-ladder {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
  margin: 0 0 34px;
}

.np-cta-section .np-plp-plan,
.np-cta-section .np-plp-ladder {
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgba(7, 148, 85, 0.16);
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(7, 148, 85, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(236, 253, 243, 0.78) 0%, #ffffff 100%);
  box-shadow: 0 20px 64px rgba(15, 23, 42, 0.055);
}

.np-cta-section .np-plp-plan h3,
.np-cta-section .np-plp-ladder h3 {
  font-size: clamp(30px, 3.6vw, 52px);
}

.np-cta-section .np-plp-plan ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.np-cta-section .np-plp-plan li,
.np-cta-section .np-plp-protection-list li {
  position: relative;
  padding-left: 24px;
  color: var(--np-ink, #07111f);
  font-size: 16px;
  line-height: 1.42;
  letter-spacing: -0.018em;
  font-weight: 800;
}

.np-cta-section .np-plp-plan li::before,
.np-cta-section .np-plp-protection-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--np-green, #079455);
}

.np-cta-section .np-plp-ladder-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.np-cta-section .np-plp-ladder-list div {
  display: grid;
  gap: 6px;
  padding: 16px;
  border: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.74);
}

.np-cta-section .np-plp-ladder-list strong {
  color: var(--np-green, #079455);
  font-size: 13px;
  line-height: 1.1;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  font-weight: 950;
}

.np-cta-section .np-plp-protection-areas {
  border-color: rgba(42, 157, 244, 0.16);
  background:
    radial-gradient(circle at top right, rgba(42, 157, 244, 0.09), transparent 34%),
    #ffffff;
}

.np-cta-section .np-plp-protection-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  margin: 22px 0 24px;
  padding: 0;
  list-style: none;
}

.np-cta-section .np-plp-result-note {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(7, 148, 85, 0.12);
}

.np-cta-section .np-plp-money-frame {
  border-color: rgba(7, 148, 85, 0.20);
  background:
    radial-gradient(circle at top right, rgba(7, 148, 85, 0.13), transparent 34%),
    #07111f;
}

.np-cta-section .np-plp-money-frame .np-premium-label,
.np-cta-section .np-plp-money-frame h3 {
  color: #ffffff;
}

.np-cta-section .np-plp-money-frame p {
  max-width: 790px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.74);
}

.np-cta-section .np-plp-money-frame .np-plp-money-stack {
  color: #86efac;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.28;
  letter-spacing: -0.04em;
}

.np-cta-section .np-plp-urgency {
  margin-top: -4px;
  border-color: rgba(244, 63, 94, 0.18);
  background:
    radial-gradient(circle at top right, rgba(244, 63, 94, 0.08), transparent 34%),
    #ffffff;
}

.np-cta-section .np-plp-urgency p {
  max-width: 820px;
  margin-top: 12px;
}

@media (max-width: 980px) {
  .np-cta-section .np-plp-plan-ladder {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .np-cta-section .np-plp-offer,
  .np-cta-section .np-plp-money-frame,
  .np-cta-section .np-plp-urgency,
  .np-cta-section .np-plp-protection-areas,
  .np-cta-section .np-plp-plan,
  .np-cta-section .np-plp-ladder {
    border-radius: 26px;
  }

  .np-cta-section .np-plp-copy p,
  .np-cta-section .np-plp-money-frame p,
  .np-cta-section .np-plp-urgency p,
  .np-cta-section .np-plp-protection-areas p,
  .np-cta-section .np-plp-plan p,
  .np-cta-section .np-plp-ladder span {
    font-size: 17px;
  }

  .np-cta-section .np-plp-protection-list {
    grid-template-columns: 1fr;
  }
}

.np-cta-section .np-plp-secondary-note {
  margin-top: 18px;
  padding: 16px 18px;
  border: 1px solid rgba(42, 157, 244, 0.16);
  border-radius: 18px;
  background: rgba(42, 157, 244, 0.06);
  color: rgba(15, 23, 42, 0.76);
  font-size: 15px;
  line-height: 1.55;
}

.np-cta-section .np-plp-secondary-note[hidden] {
  display: none;
}

/* =========================================================
   PATCH 4 — Dedicated Patient Leak Protection™ sales page
   Additive-only, scoped to plp-sales-* classes.
   ========================================================= */

.plp-sales-body {
  background:
    radial-gradient(circle at 12% 6%, rgba(43, 92, 255, 0.10), transparent 30%),
    radial-gradient(circle at 88% 4%, rgba(43, 92, 255, 0.07), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, var(--rla-bg) 100%);
}

.plp-sales-page {
  min-height: 100vh;
  color: var(--rla-ink);
  overflow-x: hidden;
}

.plp-sales-shell {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.plp-sales-narrow {
  width: min(820px, calc(100% - 40px));
}

.plp-sales-hero {
  padding: clamp(58px, 8vw, 104px) 0 clamp(44px, 6vw, 78px);
}

.plp-sales-hero-grid,
.plp-sales-split,
.plp-sales-two-cards {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.78fr);
  gap: clamp(28px, 5vw, 62px);
  align-items: center;
}

.plp-sales-hero-copy {
  max-width: 760px;
}

.plp-sales-kicker {
  width: fit-content;
  margin: 0 0 18px;
  padding: 8px 0 9px;
  border-top: 1px solid var(--rla-blue);
  border-bottom: 1px solid var(--rla-blue);
  color: var(--rla-blue);
  font-size: 11px;
  line-height: 1.1;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.plp-sales-page h1,
.plp-sales-page h2,
.plp-sales-page h3,
.plp-sales-page p {
  letter-spacing: -0.03em;
}

.plp-sales-page h1 {
  max-width: 880px;
  margin: 0 0 26px;
  font-size: clamp(46px, 7vw, 86px);
  line-height: 0.92;
  letter-spacing: -0.078em;
  font-weight: 950;
}

.plp-sales-page h2 {
  margin: 0 0 18px;
  font-size: clamp(32px, 4.2vw, 56px);
  line-height: 0.98;
  letter-spacing: -0.065em;
  font-weight: 950;
}

.plp-sales-page h3 {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.12;
  font-weight: 900;
}

.plp-sales-page p,
.plp-sales-page li,
.plp-sales-page details {
  color: var(--rla-muted);
  font-size: 17px;
  line-height: 1.55;
  font-weight: 650;
}

.plp-sales-lead {
  max-width: 690px;
  margin: 0;
  font-size: clamp(19px, 1.8vw, 23px) !important;
  line-height: 1.38 !important;
  font-weight: 700 !important;
}

.plp-sales-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.plp-sales-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 16px 22px;
  border-radius: 999px;
  border: 1px solid var(--rla-blue);
  background: var(--rla-blue);
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -0.02em;
  box-shadow: 0 18px 42px rgba(43, 92, 255, 0.20);
}

.plp-sales-button:hover,
.plp-sales-button:focus-visible {
  background: var(--rla-blue-dark);
  border-color: var(--rla-blue-dark);
}

.plp-sales-button-secondary {
  background: #ffffff;
  color: var(--rla-blue);
  box-shadow: none;
}

.plp-sales-button-secondary:hover,
.plp-sales-button-secondary:focus-visible {
  background: #f4f7ff;
  color: var(--rla-blue-dark);
}

.plp-sales-microcopy {
  margin: 16px 0 0;
  color: #59697f !important;
  font-size: 13px !important;
  line-height: 1.35 !important;
  font-weight: 850 !important;
}

.plp-sales-hero-card,
.plp-sales-card,
.plp-sales-check-card,
.plp-sales-fit-card,
.plp-sales-price-card {
  border: 1px solid var(--rla-line);
  background: rgba(255, 255, 255, 0.88);
  border-radius: 28px;
  box-shadow: var(--rla-shadow);
}

.plp-sales-hero-card {
  padding: clamp(28px, 3.2vw, 42px);
}

.plp-sales-card-label,
.plp-sales-price-chip {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--rla-green-soft);
  color: var(--rla-green);
  font-size: 12px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: 0.02em;
}

.plp-sales-price-chip {
  margin: 14px 0 0;
  background: #eef3ff;
  color: var(--rla-blue);
}

.plp-sales-section {
  padding: clamp(46px, 7vw, 86px) 0;
}

.plp-sales-tint {
  background: rgba(255, 255, 255, 0.56);
  border-top: 1px solid rgba(217, 227, 240, 0.75);
  border-bottom: 1px solid rgba(217, 227, 240, 0.75);
}

.plp-sales-pain p,
.plp-sales-copy-stack p {
  margin: 0 0 18px;
}

.plp-sales-break-list,
.plp-sales-mini-list,
.plp-sales-recovery-list {
  display: grid;
  gap: 10px;
  margin: 24px 0;
}

.plp-sales-break-list span,
.plp-sales-mini-list span,
.plp-sales-recovery-list span {
  display: block;
  padding: 12px 16px;
  border: 1px solid var(--rla-soft-line);
  border-radius: 16px;
  background: #ffffff;
  color: var(--rla-ink);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.plp-sales-section-heading {
  width: min(780px, 100%);
  margin: 0 auto 34px;
  text-align: center;
}

.plp-sales-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.plp-sales-card {
  padding: 24px;
  box-shadow: none;
}

.plp-sales-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.45;
}

.plp-sales-center-note {
  width: min(760px, 100%);
  margin: 30px auto 0;
  text-align: center;
  color: var(--rla-ink) !important;
  font-weight: 850 !important;
}

.plp-sales-side-note {
  margin-top: 24px;
  color: var(--rla-ink) !important;
  font-weight: 850 !important;
}

.plp-sales-check-card,
.plp-sales-fit-card {
  padding: clamp(26px, 3.4vw, 40px);
}

.plp-sales-check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.plp-sales-check-list li {
  position: relative;
  padding-left: 26px;
  color: var(--rla-ink);
  font-size: 15px;
  line-height: 1.42;
  font-weight: 850;
}

.plp-sales-check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--rla-green);
}

.plp-sales-timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.plp-sales-timeline article {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--rla-line);
  border-radius: 24px;
  background: #ffffff;
}

.plp-sales-timeline span {
  display: block;
  margin-bottom: 18px;
  color: var(--rla-blue);
  font-size: 12px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.plp-sales-timeline p {
  margin: 0;
  color: var(--rla-ink);
  font-size: 15px;
  line-height: 1.45;
  font-weight: 850;
}

.plp-sales-money {
  background:
    radial-gradient(circle at 20% 20%, rgba(43, 92, 255, 0.10), transparent 32%),
    rgba(255, 255, 255, 0.62);
  border-top: 1px solid rgba(217, 227, 240, 0.75);
  border-bottom: 1px solid rgba(217, 227, 240, 0.75);
}

.plp-sales-emphasis,
.plp-sales-bold-line {
  color: var(--rla-ink) !important;
  font-weight: 950 !important;
}

.plp-sales-two-cards {
  align-items: stretch;
}

.plp-sales-not-card {
  background: rgba(255, 255, 255, 0.70);
  box-shadow: none;
}

.plp-sales-pricing {
  padding: clamp(54px, 7vw, 92px) 0;
}

.plp-sales-price-card {
  width: min(760px, 100%);
  margin: 0 auto;
  padding: clamp(34px, 5vw, 58px);
  text-align: center;
}

.plp-sales-price {
  margin: 14px 0 18px;
  color: var(--rla-ink);
  font-size: clamp(54px, 8vw, 86px);
  line-height: 0.9;
  font-weight: 950;
  letter-spacing: -0.08em;
}

.plp-sales-price span {
  margin-left: 6px;
  color: var(--rla-muted);
  font-size: 18px;
  letter-spacing: -0.03em;
}

.plp-sales-faq {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.plp-sales-faq details {
  border: 1px solid var(--rla-line);
  border-radius: 18px;
  background: #ffffff;
  padding: 0;
}

.plp-sales-faq summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--rla-ink);
  font-size: 16px;
  font-weight: 950;
  letter-spacing: -0.03em;
}

.plp-sales-faq details p {
  margin: 0;
  padding: 0 20px 20px;
  font-size: 15px;
}

.plp-sales-final {
  padding-bottom: clamp(66px, 8vw, 110px);
  text-align: center;
}

@media (max-width: 940px) {
  .plp-sales-hero-grid,
  .plp-sales-split,
  .plp-sales-two-cards {
    grid-template-columns: 1fr;
  }

  .plp-sales-card-grid,
  .plp-sales-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .plp-sales-shell,
  .plp-sales-narrow {
    width: min(100% - 28px, 1120px);
  }

  .plp-sales-hero {
    padding-top: 42px;
  }

  .plp-sales-page h1 {
    font-size: clamp(40px, 13vw, 58px);
  }

  .plp-sales-page h2 {
    font-size: clamp(30px, 9vw, 42px);
  }

  .plp-sales-actions {
    flex-direction: column;
  }

  .plp-sales-button {
    width: 100%;
  }

  .plp-sales-card-grid,
  .plp-sales-timeline {
    grid-template-columns: 1fr;
  }

  .plp-sales-timeline article {
    min-height: 0;
  }
}

/* =========================================================
   PATIENT LEAK PROTECTION CHECKOUT DECISION PAGE
   Scoped additive styles only. Does not alter report/quiz/gate.
========================================================= */

.plp-checkout-body {
  background:
    radial-gradient(circle at 14% 4%, rgba(43, 92, 255, 0.10), transparent 30%),
    radial-gradient(circle at 86% 8%, rgba(43, 92, 255, 0.06), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, var(--rla-bg) 100%);
}

.plp-checkout-page {
  min-height: 100vh;
  color: var(--rla-ink);
}

.plp-checkout-shell {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.plp-checkout-narrow {
  width: min(760px, calc(100% - 40px));
}

.plp-checkout-hero {
  padding: clamp(54px, 8vw, 112px) 0 clamp(42px, 6vw, 82px);
}

.plp-checkout-hero-grid,
.plp-checkout-two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
}

.plp-checkout-kicker {
  margin: 0 0 16px;
  color: var(--rla-blue);
  font-size: 11px;
  line-height: 1.1;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.plp-checkout-page h1,
.plp-checkout-page h2,
.plp-checkout-page h3 {
  margin: 0;
  color: var(--rla-ink);
  font-weight: 950;
  letter-spacing: -0.065em;
}

.plp-checkout-page h1 {
  max-width: 780px;
  font-size: clamp(48px, 6.6vw, 88px);
  line-height: 0.91;
}

.plp-checkout-page h2 {
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 0.96;
}

.plp-checkout-page h3 {
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1;
}

.plp-checkout-lead,
.plp-checkout-page p {
  color: var(--rla-muted);
  font-size: clamp(16px, 1.28vw, 19px);
  line-height: 1.55;
  letter-spacing: -0.035em;
  font-weight: 680;
}

.plp-checkout-lead {
  max-width: 700px;
  margin: 24px 0 0;
  font-size: clamp(18px, 1.55vw, 22px);
}

.plp-checkout-microcopy {
  margin: 18px 0 0;
  color: var(--rla-ink) !important;
  font-size: 13px !important;
  line-height: 1.35 !important;
  font-weight: 850 !important;
  letter-spacing: 0.02em !important;
}

.plp-checkout-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  margin-top: 26px;
  padding: 18px 26px;
  background: var(--rla-blue);
  color: #ffffff;
  border: 0;
  border-radius: 0;
  text-decoration: none;
  font-size: 13px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 22px 54px rgba(43, 92, 255, 0.20);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.plp-checkout-button:hover {
  transform: translateY(-2px);
  background: var(--rla-blue-dark);
  box-shadow: 0 26px 60px rgba(43, 92, 255, 0.25);
}

.plp-checkout-summary-card,
.plp-checkout-card,
.plp-checkout-risk-card {
  border: 1px solid rgba(142, 160, 190, 0.32);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--rla-shadow);
}

.plp-checkout-summary-card {
  padding: clamp(28px, 3.6vw, 42px);
}

.plp-checkout-summary-card span {
  display: block;
  margin-bottom: 18px;
  color: var(--rla-blue);
  font-size: 11px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.plp-checkout-price,
.plp-checkout-price-small {
  color: var(--rla-ink);
  font-weight: 950;
  letter-spacing: -0.075em;
}

.plp-checkout-price {
  margin: 18px 0 18px;
  font-size: clamp(52px, 7vw, 82px);
  line-height: 0.9;
}

.plp-checkout-price span {
  margin-left: 6px;
  color: var(--rla-muted);
  font-size: 18px;
  letter-spacing: -0.03em;
}

.plp-checkout-price-small {
  margin: 12px 0 18px;
  font-size: clamp(32px, 3vw, 46px);
  line-height: 0.95;
}

.plp-checkout-section {
  padding: clamp(48px, 7vw, 86px) 0;
}

.plp-checkout-tint {
  background: rgba(255, 255, 255, 0.56);
  border-top: 1px solid rgba(217, 227, 240, 0.75);
  border-bottom: 1px solid rgba(217, 227, 240, 0.75);
}

.plp-checkout-money {
  background:
    radial-gradient(circle at 20% 20%, rgba(43, 92, 255, 0.10), transparent 32%),
    rgba(255, 255, 255, 0.62);
  border-top: 1px solid rgba(217, 227, 240, 0.75);
  border-bottom: 1px solid rgba(217, 227, 240, 0.75);
}

.plp-checkout-card,
.plp-checkout-risk-card {
  padding: clamp(28px, 4vw, 46px);
}

.plp-checkout-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.plp-checkout-list li {
  position: relative;
  padding-left: 26px;
  color: var(--rla-ink);
  font-size: 15px;
  line-height: 1.42;
  font-weight: 850;
}

.plp-checkout-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--rla-green);
}

.plp-checkout-emphasis {
  color: var(--rla-ink) !important;
  font-weight: 950 !important;
}

.plp-checkout-proof-list,
.plp-checkout-mini-list {
  display: grid;
  gap: 10px;
  margin: 24px 0;
}

.plp-checkout-proof-list {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.plp-checkout-mini-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.plp-checkout-proof-list span,
.plp-checkout-mini-list span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70px;
  padding: 14px;
  border: 1px solid var(--rla-soft-line);
  border-radius: 16px;
  background: #ffffff;
  color: var(--rla-ink);
  text-align: center;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.plp-checkout-risk-card {
  text-align: center;
}

.plp-checkout-final-cta {
  text-align: center;
  background: #ffffff;
  border-top: 1px solid rgba(217, 227, 240, 0.75);
  border-bottom: 1px solid rgba(217, 227, 240, 0.75);
}

.plp-checkout-faq {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.plp-checkout-faq details {
  border: 1px solid var(--rla-line);
  border-radius: 18px;
  background: #ffffff;
  padding: 0;
}

.plp-checkout-faq summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--rla-ink);
  font-size: 16px;
  font-weight: 950;
  letter-spacing: -0.03em;
}

.plp-checkout-faq details p {
  margin: 0;
  padding: 0 20px 20px;
  font-size: 15px;
}

@media (max-width: 940px) {
  .plp-checkout-hero-grid,
  .plp-checkout-two-column {
    grid-template-columns: 1fr;
  }

  .plp-checkout-proof-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .plp-checkout-mini-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .plp-checkout-shell,
  .plp-checkout-narrow {
    width: min(100% - 28px, 1120px);
  }

  .plp-checkout-hero {
    padding-top: 42px;
  }

  .plp-checkout-page h1 {
    font-size: clamp(40px, 13vw, 58px);
  }

  .plp-checkout-page h2 {
    font-size: clamp(30px, 9vw, 42px);
  }

  .plp-checkout-button {
    width: 100%;
  }

  .plp-checkout-proof-list {
    grid-template-columns: 1fr;
  }
}

/* Patch 10 — Assessment-Style Premium Patient Leak Protection Sales Page
   Strict assessment-page visual carryover: typography, buttons, spacing, borders, and electric-blue accent system.
   These overrides are scoped to plp-sales only. */
.plp-sales-body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 6%, rgba(43, 92, 255, 0.10), transparent 30%),
    radial-gradient(circle at 88% 4%, rgba(43, 92, 255, 0.07), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
  color: var(--rla-ink, #07111f);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.plp-sales-page {
  color: var(--rla-ink, #07111f);
  overflow: hidden;
}

.plp-sales-shell {
  width: min(1280px, calc(100% - 56px));
}

.plp-sales-narrow {
  width: min(900px, calc(100% - 56px));
}

.plp-sales-hero {
  padding: clamp(46px, 5vw, 74px) 0 clamp(54px, 6vw, 88px);
}

.plp-sales-hero::before {
  inset: 24px max(28px, calc((100vw - 1280px) / 2)) auto;
  background: var(--rla-line, #d9e3f0);
}

.plp-sales-hero-grid {
  grid-template-columns: minmax(420px, 0.98fr) minmax(500px, 1.02fr);
  gap: clamp(44px, 5vw, 76px);
}

.plp-sales-kicker {
  width: fit-content;
  max-width: 100%;
  min-height: 36px;
  padding: 10px 0;
  border-top: 1px solid var(--rla-blue, #2b5cff);
  border-bottom: 1px solid var(--rla-blue, #2b5cff);
  color: var(--rla-blue, #2b5cff);
  font-size: 11px;
  line-height: 1.1;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.plp-sales-kicker::before {
  display: none;
}

.plp-sales-hero h1 {
  max-width: 650px;
  margin-top: 30px;
  color: var(--rla-ink, #07111f);
  font-size: clamp(50px, 5.6vw, 82px);
  line-height: 0.90;
  letter-spacing: -0.078em;
  font-weight: 950;
}

.plp-sales-lead {
  max-width: 620px;
  color: var(--rla-muted, #5e6d82);
  font-size: clamp(18px, 1.38vw, 21px);
  line-height: 1.44;
  letter-spacing: -0.03em;
  font-weight: 650;
}

.plp-sales-lead-large {
  color: var(--rla-ink, #07111f);
  font-size: clamp(24px, 2.55vw, 36px);
  line-height: 1.02;
  letter-spacing: -0.062em;
  font-weight: 950;
}

.plp-sales-actions {
  width: min(620px, 100%);
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 36px;
}

.plp-sales-button {
  min-height: 72px;
  padding: 18px 24px;
  border: 0;
  border-radius: 0;
  background: var(--rla-blue, #2b5cff);
  box-shadow: 0 22px 54px rgba(43, 92, 255, 0.20);
  color: #fff;
  font-size: clamp(13px, 1.02vw, 16px);
  line-height: 1.12;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.plp-sales-button:hover {
  background: var(--rla-blue-dark, #2148c8);
  box-shadow: 0 24px 64px rgba(43, 92, 255, 0.26);
}

.plp-sales-button-secondary {
  background: #ffffff;
  color: var(--rla-blue, #2b5cff);
  border: 1px solid var(--rla-line, #d9e3f0);
  box-shadow: none;
}

.plp-sales-microcopy {
  margin-top: 18px;
  color: var(--rla-muted, #5e6d82);
  font-size: 12px;
  line-height: 1.25;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.plp-sales-dashboard-card,
.plp-sales-hero-card {
  min-height: 520px;
  padding: clamp(34px, 3.2vw, 48px);
  border: 1px solid rgba(142, 160, 190, 0.32);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--rla-shadow, 0 26px 80px rgba(35, 63, 112, 0.12));
  backdrop-filter: blur(16px);
}

.plp-sales-dashboard-card::after {
  display: none;
}

.plp-sales-dashboard-topline {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--rla-line, #d9e3f0);
}

.plp-sales-card-label,
.plp-sales-status-pill {
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--rla-blue, #2b5cff);
  font-size: 11px;
  line-height: 1.1;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.plp-sales-status-pill {
  color: var(--rla-green, #16a34a);
}

.plp-sales-hero-card h2 {
  margin: 26px 0 18px;
  color: var(--rla-ink, #07111f);
  font-size: clamp(30px, 3vw, 48px);
  line-height: 0.96;
  letter-spacing: -0.064em;
  font-weight: 950;
}

.plp-sales-price-chip {
  width: 100%;
  justify-content: center;
  margin: 4px 0 26px;
  padding: 16px 18px;
  border: 1px solid var(--rla-blue, #2b5cff);
  border-radius: 0;
  background: #fff;
  color: var(--rla-ink, #07111f);
  font-size: 12px;
  line-height: 1.1;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  box-shadow: none;
}

.plp-sales-status-stack {
  gap: 0;
  margin: 24px 0;
  border-top: 1px solid var(--rla-line, #d9e3f0);
  border-bottom: 1px solid var(--rla-line, #d9e3f0);
}

.plp-sales-status-stack div {
  min-height: 92px;
  padding: 18px 12px;
  border: 0;
  border-radius: 0;
  background: transparent;
  text-align: center;
}

.plp-sales-status-stack div + div {
  border-left: 1px solid var(--rla-line, #d9e3f0);
}

.plp-sales-status-stack small {
  color: var(--rla-muted, #5e6d82);
  font-size: 10px;
  letter-spacing: 0.13em;
}

.plp-sales-status-stack strong {
  margin-top: 8px;
  color: var(--rla-ink, #07111f);
  font-size: 16px;
  letter-spacing: -0.035em;
}

.plp-sales-hero-chips {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 24px 0;
  border: 1px solid var(--rla-line, #d9e3f0);
}

.plp-sales-hero-chips span {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 12px;
  border: 0;
  border-radius: 0;
  background: #fff;
  color: #4d5b70;
  text-align: center;
  font-size: 11px;
  line-height: 1.15;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.plp-sales-hero-chips span:nth-child(odd) {
  border-right: 1px solid var(--rla-line, #d9e3f0);
}

.plp-sales-hero-chips span:nth-child(n+3) {
  border-top: 1px solid var(--rla-line, #d9e3f0);
}

.plp-sales-mini-flow {
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  padding: 0;
  border: 1px solid var(--rla-line, #d9e3f0);
  border-radius: 0;
  background: #fff;
}

.plp-sales-mini-flow span {
  min-height: 64px;
  border-radius: 0;
  background: transparent;
  color: var(--rla-ink, #07111f);
  font-size: 11px;
  line-height: 1.1;
  font-weight: 950;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  box-shadow: none;
}

.plp-sales-mini-flow em {
  padding: 0 12px;
  color: var(--rla-blue, #2b5cff);
}

.plp-sales-section {
  padding: clamp(70px, 8vw, 116px) 0;
}

.plp-sales-tint {
  background:
    radial-gradient(circle at 4% 0%, rgba(43, 92, 255, 0.07), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
  border-top: 1px solid var(--rla-line, #d9e3f0);
  border-bottom: 1px solid var(--rla-line, #d9e3f0);
}

.plp-sales-section-heading {
  margin-bottom: clamp(34px, 4vw, 56px);
}

.plp-sales-section h2,
.plp-sales-final h2,
.plp-sales-price-card h2 {
  color: var(--rla-ink, #07111f);
  font-size: clamp(42px, 4.9vw, 74px);
  line-height: 0.92;
  letter-spacing: -0.078em;
  font-weight: 950;
}

.plp-sales-section-heading p:not(.plp-sales-kicker),
.plp-sales-copy-stack p,
.plp-sales-section p,
.plp-sales-fit-card p,
.plp-sales-faq p {
  color: var(--rla-muted, #5e6d82);
  font-size: clamp(17px, 1.18vw, 20px);
  line-height: 1.48;
  letter-spacing: -0.03em;
  font-weight: 650;
}

.plp-sales-patient-thought-grid,
.plp-sales-card-grid,
.plp-sales-two-cards,
.plp-sales-install-card {
  gap: 18px;
}

.plp-sales-thought-card,
.plp-sales-card,
.plp-sales-fit-card,
.plp-sales-check-card,
.plp-sales-premium-copy-card,
.plp-sales-warning-card,
.plp-sales-diagnostic-callout,
.plp-sales-safety-net-visual,
.plp-sales-value-anchor,
.plp-sales-price-card,
.plp-sales-final-panel,
.plp-sales-faq details {
  border: 1px solid rgba(142, 160, 190, 0.32);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 20px 60px rgba(35, 63, 112, 0.08);
}

.plp-sales-thought-card,
.plp-sales-card,
.plp-sales-fit-card,
.plp-sales-check-card,
.plp-sales-premium-copy-card,
.plp-sales-warning-card {
  padding: clamp(26px, 2.8vw, 38px);
}

.plp-sales-thought-card {
  border-top: 4px solid rgba(239, 68, 68, 0.42);
}

.plp-sales-thought-card span,
.plp-sales-card small,
.plp-sales-timeline article span,
.plp-sales-check-group h3 {
  display: block;
  color: var(--rla-blue, #2b5cff);
  font-size: 11px;
  line-height: 1.1;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.plp-sales-thought-card p {
  margin-top: 18px;
  color: var(--rla-ink, #07111f);
  font-size: clamp(23px, 2vw, 31px);
  line-height: 1.04;
  letter-spacing: -0.055em;
  font-weight: 950;
}

.plp-sales-diagnostic-callout {
  display: grid;
  grid-template-columns: minmax(240px, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  margin-top: 28px;
  padding: clamp(32px, 4vw, 54px);
  border-top: 4px solid var(--rla-blue, #2b5cff);
}

.plp-sales-diagnostic-callout h3,
.plp-sales-value-anchor h3 {
  margin: 0;
  color: var(--rla-ink, #07111f);
  font-size: clamp(38px, 5vw, 72px);
  line-height: .9;
  letter-spacing: -0.078em;
  font-weight: 950;
}

.plp-sales-diagnostic-callout p {
  color: var(--rla-ink, #07111f);
  font-size: clamp(20px, 1.5vw, 25px);
  line-height: 1.32;
  letter-spacing: -0.045em;
  font-weight: 750;
}

.plp-sales-mini-list,
.plp-sales-recovery-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--rla-line, #d9e3f0);
  background: #fff;
}

.plp-sales-mini-list span,
.plp-sales-recovery-list span {
  min-height: 62px;
  display: flex;
  align-items: center;
  padding: 16px 18px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #4d5b70;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.plp-sales-mini-list span:nth-child(odd),
.plp-sales-recovery-list span:nth-child(odd) {
  border-right: 1px solid var(--rla-line, #d9e3f0);
}

.plp-sales-mini-list span:nth-child(n+3),
.plp-sales-recovery-list span:nth-child(n+3) {
  border-top: 1px solid var(--rla-line, #d9e3f0);
}

.plp-sales-warning-card {
  border-left: 4px solid var(--rla-blue, #2b5cff);
}

.plp-sales-warning-card strong,
.plp-sales-emphasis {
  color: var(--rla-ink, #07111f);
  font-weight: 950;
}

.plp-sales-safety-net-visual {
  margin-top: clamp(44px, 5vw, 70px);
  padding: clamp(34px, 4vw, 56px);
  border-top: 4px solid var(--rla-blue, #2b5cff);
}

.plp-sales-net-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--rla-line, #d9e3f0);
  background: #fff;
}

.plp-sales-net-arrow {
  display: none;
}

.plp-sales-net-step {
  min-height: 230px;
  padding: 28px 22px;
  border-radius: 0;
  border: 0;
  background: #fff;
  box-shadow: none;
}

.plp-sales-net-step + .plp-sales-net-step,
.plp-sales-net-step:nth-of-type(n+2) {
  border-left: 1px solid var(--rla-line, #d9e3f0);
}

.plp-sales-net-step small {
  color: var(--rla-blue, #2b5cff);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.18em;
}

.plp-sales-net-step strong {
  display: block;
  margin-top: 24px;
  color: var(--rla-ink, #07111f);
  font-size: clamp(23px, 2.1vw, 32px);
  line-height: 0.98;
  letter-spacing: -0.058em;
  font-weight: 950;
}

.plp-sales-net-step span {
  display: block;
  margin-top: 16px;
  color: var(--rla-muted, #5e6d82);
  font-size: 15px;
  line-height: 1.42;
  font-weight: 700;
}

.plp-sales-net-step-leak {
  background: #fff7f7;
}

.plp-sales-net-step-protected,
.plp-sales-net-step-booked {
  background: #f4fbf7;
}

.plp-sales-card {
  min-height: 310px;
  padding: 30px;
}

.plp-sales-card-icon {
  width: 54px;
  height: 54px;
  border: 1px solid var(--rla-blue, #2b5cff);
  border-radius: 0;
  background: #fff;
  color: var(--rla-blue, #2b5cff);
  box-shadow: none;
}

.plp-sales-card h3,
.plp-sales-fit-card h2,
.plp-sales-check-group h3,
.plp-sales-final-panel h2 {
  color: var(--rla-ink, #07111f);
  letter-spacing: -0.06em;
  font-weight: 950;
}

.plp-sales-card h3 {
  font-size: clamp(24px, 2.15vw, 34px);
  line-height: .98;
}

.plp-sales-center-note,
.plp-sales-side-note,
.plp-sales-install-note {
  border-top: 1px solid var(--rla-line, #d9e3f0);
  border-bottom: 1px solid var(--rla-line, #d9e3f0);
  padding: 22px 0;
  color: var(--rla-ink, #07111f);
  font-size: clamp(17px, 1.15vw, 20px);
  line-height: 1.35;
  font-weight: 850;
  letter-spacing: -0.035em;
}

.plp-sales-check-card.plp-sales-install-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 0;
  padding: 0;
  overflow: hidden;
}

.plp-sales-check-group {
  padding: 28px;
  border-bottom: 1px solid var(--rla-line, #d9e3f0);
}

.plp-sales-check-group:nth-child(odd) {
  border-right: 1px solid var(--rla-line, #d9e3f0);
}

.plp-sales-install-note {
  grid-column: 1 / -1;
  margin: 0;
  padding: 26px 28px;
  border-bottom: 0;
  background: #fff;
}

.plp-sales-check-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 12px;
}

.plp-sales-check-list li {
  position: relative;
  padding-left: 26px;
  color: var(--rla-muted, #5e6d82);
  font-size: 15px;
  line-height: 1.32;
  font-weight: 800;
}

.plp-sales-check-list li::before,
.plp-sales-price-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  background: var(--rla-blue, #2b5cff);
}

.plp-sales-timeline {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--rla-line, #d9e3f0);
  background: #fff;
}

.plp-sales-timeline::before {
  display: none;
}

.plp-sales-timeline article {
  min-height: 280px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.plp-sales-timeline article + article {
  border-left: 1px solid var(--rla-line, #d9e3f0);
}

.plp-sales-timeline article strong {
  display: block;
  margin-top: 18px;
  color: var(--rla-ink, #07111f);
  font-size: clamp(22px, 2vw, 32px);
  line-height: .98;
  letter-spacing: -0.058em;
  font-weight: 950;
}

.plp-sales-value-anchor {
  padding: clamp(34px, 4vw, 56px);
  border-top: 4px solid var(--rla-blue, #2b5cff);
}

.plp-sales-value-compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
  margin: 30px 0;
  border: 1px solid var(--rla-line, #d9e3f0);
  background: #fff;
}

.plp-sales-value-compare div {
  padding: 24px 20px;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.plp-sales-value-compare > span {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-left: 1px solid var(--rla-line, #d9e3f0);
  border-right: 1px solid var(--rla-line, #d9e3f0);
  color: var(--rla-blue, #2b5cff);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.plp-sales-value-compare small {
  color: var(--rla-blue, #2b5cff);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.plp-sales-value-compare strong {
  display: block;
  margin-top: 10px;
  color: var(--rla-ink, #07111f);
  font-size: clamp(20px, 2vw, 31px);
  line-height: 1;
  letter-spacing: -0.055em;
  font-weight: 950;
}

.plp-sales-price-card {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(36px, 5vw, 64px);
  border: 1px solid rgba(142, 160, 190, 0.42);
  border-top: 4px solid var(--rla-blue, #2b5cff);
  border-radius: 0;
  background: #fff;
  box-shadow: var(--rla-shadow, 0 26px 80px rgba(35, 63, 112, 0.12));
}

.plp-sales-price {
  color: var(--rla-ink, #07111f);
  font-size: clamp(70px, 10vw, 118px);
  line-height: .85;
  letter-spacing: -0.085em;
  font-weight: 950;
}

.plp-sales-price span {
  color: var(--rla-muted, #5e6d82);
  font-size: clamp(22px, 2.1vw, 28px);
  letter-spacing: -0.05em;
}

.plp-sales-term,
.plp-sales-price-anchor {
  width: fit-content;
  margin: 22px auto;
  padding: 12px 0;
  border-top: 1px solid var(--rla-blue, #2b5cff);
  border-bottom: 1px solid var(--rla-blue, #2b5cff);
  color: var(--rla-blue, #2b5cff);
  font-size: 12px;
  line-height: 1.1;
  font-weight: 950;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.plp-sales-price-bullets {
  display: grid;
  grid-template-columns: repeat(5, minmax(0,1fr));
  gap: 0;
  margin: 30px 0;
  padding: 0;
  border: 1px solid var(--rla-line, #d9e3f0);
  list-style: none;
}

.plp-sales-price-bullets li {
  position: relative;
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 14px 22px 28px;
  color: #4d5b70;
  text-align: center;
  font-size: 10px;
  line-height: 1.2;
  font-weight: 950;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.plp-sales-price-bullets li + li {
  border-left: 1px solid var(--rla-line, #d9e3f0);
}

.plp-sales-price-bullets li::before {
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
}

.plp-sales-faq details {
  padding: 0;
  overflow: hidden;
}

.plp-sales-faq details + details {
  margin-top: 14px;
}

.plp-sales-faq summary {
  padding: 24px 26px;
  color: var(--rla-ink, #07111f);
  font-size: clamp(18px, 1.35vw, 22px);
  line-height: 1.12;
  font-weight: 950;
  letter-spacing: -0.045em;
}

.plp-sales-faq details p {
  padding: 0 26px 26px;
}

.plp-sales-final-panel {
  padding: clamp(38px, 5vw, 68px);
  border-top: 4px solid var(--rla-blue, #2b5cff);
  text-align: left;
}

.plp-sales-final-panel .plp-sales-button {
  width: min(560px, 100%);
  margin-top: 26px;
}

.plp-sales-sticky-cta {
  display: none;
}

@media (max-width: 980px) {
  .plp-sales-shell,
  .plp-sales-narrow {
    width: min(100% - 34px, 1280px);
  }

  .plp-sales-hero-grid,
  .plp-sales-split,
  .plp-sales-two-cards {
    grid-template-columns: 1fr;
  }

  .plp-sales-hero {
    padding-top: 42px;
  }

  .plp-sales-hero h1 {
    max-width: none;
  }

  .plp-sales-dashboard-card,
  .plp-sales-hero-card {
    min-height: auto;
  }

  .plp-sales-net-flow,
  .plp-sales-timeline,
  .plp-sales-price-bullets {
    grid-template-columns: 1fr;
  }

  .plp-sales-net-step + .plp-sales-net-step,
  .plp-sales-net-step:nth-of-type(n+2),
  .plp-sales-timeline article + article,
  .plp-sales-price-bullets li + li {
    border-left: 0;
    border-top: 1px solid var(--rla-line, #d9e3f0);
  }

  .plp-sales-net-step {
    min-height: auto;
  }

  .plp-sales-check-card.plp-sales-install-card {
    grid-template-columns: 1fr;
  }

  .plp-sales-check-group:nth-child(odd) {
    border-right: 0;
  }

  .plp-sales-check-group + .plp-sales-check-group {
    border-top: 1px solid var(--rla-line, #d9e3f0);
  }
}

@media (max-width: 760px) {
  .plp-sales-body {
    padding-bottom: 96px;
  }

  .plp-sales-shell,
  .plp-sales-narrow {
    width: min(100% - 28px, 1280px);
  }

  .plp-sales-hero h1 {
    font-size: clamp(44px, 13vw, 62px);
  }

  .plp-sales-lead-large {
    font-size: clamp(24px, 7.2vw, 34px);
  }

  .plp-sales-actions {
    width: 100%;
  }

  .plp-sales-dashboard-card,
  .plp-sales-hero-card,
  .plp-sales-thought-card,
  .plp-sales-card,
  .plp-sales-fit-card,
  .plp-sales-check-card,
  .plp-sales-premium-copy-card,
  .plp-sales-warning-card,
  .plp-sales-diagnostic-callout,
  .plp-sales-safety-net-visual,
  .plp-sales-value-anchor,
  .plp-sales-price-card,
  .plp-sales-final-panel,
  .plp-sales-faq details {
    border-radius: 0;
  }

  .plp-sales-status-stack,
  .plp-sales-hero-chips,
  .plp-sales-mini-flow,
  .plp-sales-patient-thought-grid,
  .plp-sales-card-grid,
  .plp-sales-mini-list,
  .plp-sales-recovery-list,
  .plp-sales-value-compare {
    grid-template-columns: 1fr;
  }

  .plp-sales-status-stack div + div,
  .plp-sales-hero-chips span:nth-child(odd),
  .plp-sales-mini-list span:nth-child(odd),
  .plp-sales-recovery-list span:nth-child(odd),
  .plp-sales-value-compare > span {
    border-left: 0;
    border-right: 0;
  }

  .plp-sales-hero-chips span + span,
  .plp-sales-mini-list span + span,
  .plp-sales-recovery-list span + span,
  .plp-sales-status-stack div + div {
    border-top: 1px solid var(--rla-line, #d9e3f0);
  }

  .plp-sales-mini-flow em {
    padding: 12px 0;
    transform: none;
    border-top: 1px solid var(--rla-line, #d9e3f0);
    border-bottom: 1px solid var(--rla-line, #d9e3f0);
  }

  .plp-sales-section {
    padding: 58px 0;
  }

  .plp-sales-section h2,
  .plp-sales-final h2,
  .plp-sales-price-card h2 {
    font-size: clamp(36px, 11vw, 52px);
  }

  .plp-sales-diagnostic-callout {
    grid-template-columns: 1fr;
    padding: 26px;
  }

  .plp-sales-price {
    font-size: clamp(68px, 20vw, 96px);
  }

  .plp-sales-sticky-cta {
    position: fixed;
    z-index: 9999;
    left: 12px;
    right: 12px;
    bottom: 12px;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 0;
    border: 1px solid rgba(142, 160, 190, 0.42);
    background: rgba(255,255,255,.96);
    box-shadow: 0 20px 60px rgba(35,63,112,.18);
    backdrop-filter: blur(14px);
  }

  .plp-sales-sticky-cta div {
    flex: 1;
    padding: 12px 14px;
  }

  .plp-sales-sticky-cta strong {
    display: block;
    color: var(--rla-ink, #07111f);
    font-size: 12px;
    line-height: 1.05;
    font-weight: 950;
    letter-spacing: -0.03em;
  }

  .plp-sales-sticky-cta span {
    display: block;
    margin-top: 4px;
    color: var(--rla-muted, #5e6d82);
    font-size: 10px;
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: 0.09em;
    text-transform: uppercase;
  }

  .plp-sales-sticky-cta a {
    width: 88px;
    min-height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--rla-blue, #2b5cff);
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .12em;
    text-transform: uppercase;
  }
}


/* Patch 11 — Report-Style Patient Leak Protection Sales Page */
.plp-report-style-body {
  margin: 0;
  background: #f5f8fd;
  color: var(--np-ink, #07111f);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.plp-report-style-page {
  background: #f5f8fd;
  color: var(--np-ink, #07111f);
}

.plp-report-style-page * {
  box-sizing: border-box;
}

.plp-report-style-page .plp-report-offer-top {
  min-height: auto;
  padding-bottom: clamp(64px, 8vw, 104px);
}

.plp-report-style-page .np-report-title {
  max-width: 1080px;
}

.plp-report-style-page .plp-report-offer-lede h3 {
  margin: 0 0 10px;
  color: var(--np-ink, #07111f);
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: .98;
  letter-spacing: -.06em;
  font-weight: 950;
}

.plp-report-style-page .plp-report-offer-lede p:not(.np-report-lede) {
  max-width: 900px;
  margin: 18px 0 0;
  color: rgba(15, 23, 42, .72);
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.5;
}

.plp-report-style-page .plp-report-hero-digest {
  margin-top: clamp(28px, 4vw, 46px);
}

.plp-report-style-page .plp-report-hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(47, 92, 255, .18);
}

.plp-report-style-page .plp-report-hero-actions p,
.plp-report-style-page .plp-report-microcopy {
  margin: 0;
  color: rgba(15, 23, 42, .62);
  font-size: 14px;
  font-weight: 750;
}

.plp-report-style-page .plp-report-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid #2f5cff;
  border-radius: 14px;
  background: #2f5cff;
  color: #fff;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 18px 36px rgba(47, 92, 255, .22);
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
}

.plp-report-style-page .plp-report-button:hover {
  transform: translateY(-1px);
  background: #244ee6;
  box-shadow: 0 22px 42px rgba(47, 92, 255, .28);
}

.plp-report-style-page .plp-report-button-secondary {
  background: #fff;
  color: #2f5cff;
  box-shadow: none;
}

.plp-report-style-page .plp-report-section {
  padding: clamp(56px, 7vw, 90px) 6vw;
  background: #fff;
}

.plp-report-style-page .plp-report-section-tint {
  background:
    radial-gradient(circle at top right, rgba(47, 92, 255, .05), transparent 32%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.plp-report-style-page .plp-report-final {
  background:
    radial-gradient(circle at top right, rgba(47, 92, 255, .09), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #eef5ff 100%);
  padding-bottom: clamp(72px, 9vw, 120px);
}

.plp-report-style-page .plp-report-section-meta {
  margin-bottom: clamp(26px, 4vw, 44px);
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(47, 92, 255, .20);
}

.plp-report-style-page .plp-report-insight-block,
.plp-report-style-page .plp-report-implementation {
  margin-top: 0;
  margin-bottom: 0;
}

.plp-report-style-page .plp-report-section-header {
  margin-top: 0;
  margin-bottom: 28px;
}

.plp-report-style-page .plp-report-attention-equation {
  border-color: rgba(47, 92, 255, .18);
  background:
    radial-gradient(circle at top right, rgba(47, 92, 255, .06), transparent 34%),
    #ffffff;
}

.plp-report-style-page .plp-report-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.plp-report-style-page .plp-report-diagnostic-card {
  min-height: 220px;
  padding: clamp(22px, 2.7vw, 32px);
  border: 1px solid rgba(47, 92, 255, .16);
  border-radius: 28px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 20px 60px rgba(15, 23, 42, .055);
}

.plp-report-style-page .plp-report-diagnostic-card span,
.plp-report-style-page .plp-report-compare-card span {
  display: inline-flex;
  margin-bottom: 14px;
  color: #2f5cff;
  font-size: 11px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.plp-report-style-page .plp-report-diagnostic-card h3 {
  margin: 0 0 12px;
  color: #061026;
  font-size: clamp(25px, 2.55vw, 36px);
  line-height: .98;
  letter-spacing: -.055em;
  font-weight: 950;
}

.plp-report-style-page .plp-report-diagnostic-card p {
  margin: 0;
  color: rgba(15, 23, 42, .68);
  font-size: 16px;
  line-height: 1.52;
  font-weight: 650;
}

.plp-report-style-page .plp-report-path-panel {
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgba(7, 17, 31, .14);
  border-radius: 32px;
  background: #fff;
  box-shadow: 0 24px 72px rgba(15, 23, 42, .06);
}

.plp-report-style-page .plp-report-path-heading {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(280px, .55fr);
  gap: clamp(24px, 5vw, 68px);
  align-items: end;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(7, 17, 31, .12);
}

.plp-report-style-page .plp-report-path-heading h2,
.plp-report-style-page .np-gap-profile-head h2 {
  margin: 10px 0 0;
  color: #07111f;
  font-size: clamp(34px, 4.6vw, 62px);
  line-height: .94;
  letter-spacing: -.065em;
  font-weight: 950;
}

.plp-report-style-page .plp-report-path-heading p,
.plp-report-style-page .np-gap-profile-head p {
  margin: 0;
  color: rgba(15, 23, 42, .68);
  font-size: 17px;
  line-height: 1.55;
  font-weight: 650;
}

.plp-report-style-page .plp-report-path-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.plp-report-style-page .plp-report-path-flow article {
  position: relative;
  min-height: 210px;
  padding: 24px;
  border: 1px solid rgba(7, 17, 31, .12);
  border-radius: 24px;
  background: #f8fbff;
}

.plp-report-style-page .plp-report-path-flow article:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(47, 92, 255, .22);
  border-radius: 999px;
  background: #fff;
  color: #2f5cff;
  font-weight: 950;
  z-index: 2;
}

.plp-report-style-page .plp-report-path-flow article span {
  color: #2f5cff;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.plp-report-style-page .plp-report-path-flow article h3 {
  margin: 12px 0 10px;
  font-size: clamp(21px, 2vw, 28px);
  line-height: 1;
  letter-spacing: -.045em;
  font-weight: 950;
  color: #07111f;
}

.plp-report-style-page .plp-report-path-flow article p {
  margin: 0;
  color: rgba(15, 23, 42, .66);
  font-size: 15px;
  line-height: 1.48;
  font-weight: 650;
}

.plp-report-style-page .plp-report-path-protected {
  border-color: rgba(7, 148, 85, .28) !important;
  background:
    radial-gradient(circle at top right, rgba(7, 148, 85, .10), transparent 38%),
    #ffffff !important;
}

.plp-report-style-page .plp-report-compare-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.plp-report-style-page .plp-report-compare-card {
  padding: clamp(24px, 3.2vw, 38px);
  border-radius: 30px;
  border: 1px solid rgba(7, 17, 31, .12);
  background: #fff;
  box-shadow: 0 20px 64px rgba(15, 23, 42, .055);
}

.plp-report-style-page .plp-report-compare-loss {
  border-left: 5px solid #ef4444;
}

.plp-report-style-page .plp-report-compare-win {
  border-left: 5px solid #079455;
}

.plp-report-style-page .plp-report-compare-win span {
  color: #079455;
}

.plp-report-style-page .plp-report-compare-card ul,
.plp-report-style-page .plp-report-group-card ul,
.plp-report-style-page .plp-report-price-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.plp-report-style-page .plp-report-compare-card li,
.plp-report-style-page .plp-report-group-card li,
.plp-report-style-page .plp-report-price-list li {
  position: relative;
  padding-left: 24px;
  margin: 13px 0;
  color: rgba(15, 23, 42, .74);
  font-size: 16px;
  line-height: 1.48;
  font-weight: 700;
}

.plp-report-style-page .plp-report-compare-card li::before,
.plp-report-style-page .plp-report-group-card li::before,
.plp-report-style-page .plp-report-price-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #2f5cff;
  transform: translateY(-50%);
}

.plp-report-style-page .plp-report-compare-loss li::before {
  background: #ef4444;
}

.plp-report-style-page .plp-report-compare-win li::before,
.plp-report-style-page .plp-report-price-list li::before {
  background: #079455;
}

.plp-report-style-page .plp-report-group-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.plp-report-style-page .plp-report-group-card {
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid rgba(47, 92, 255, .14);
  border-radius: 26px;
  background: rgba(255, 255, 255, .88);
}

.plp-report-style-page .plp-report-group-card h3 {
  margin: 0 0 14px;
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1;
  letter-spacing: -.05em;
  font-weight: 950;
}

.plp-report-style-page .plp-report-maintain-note {
  margin-top: 30px;
}

.plp-report-style-page .plp-report-price-card {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(300px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid rgba(47, 92, 255, .20);
  border-radius: 34px;
  background:
    radial-gradient(circle at top left, rgba(47, 92, 255, .10), transparent 36%),
    #ffffff;
  box-shadow: 0 30px 90px rgba(15, 23, 42, .075);
}

.plp-report-style-page .plp-report-price-copy h2 {
  margin: 12px 0 8px;
  color: #07111f;
  font-size: clamp(42px, 6vw, 78px);
  line-height: .88;
  letter-spacing: -.075em;
  font-weight: 950;
}

.plp-report-style-page .plp-report-price-copy p {
  margin: 0 0 22px;
  color: rgba(15, 23, 42, .66);
  font-size: 18px;
  line-height: 1.4;
  font-weight: 750;
}

.plp-report-style-page .plp-report-price {
  margin: 0 0 10px;
  color: #2f5cff;
  font-size: clamp(52px, 7.5vw, 96px);
  line-height: .9;
  letter-spacing: -.075em;
  font-weight: 950;
}

.plp-report-style-page .plp-report-price span {
  font-size: clamp(20px, 2.2vw, 30px);
  letter-spacing: -.045em;
  color: rgba(15, 23, 42, .68);
}

.plp-report-style-page .plp-report-price-copy strong {
  display: inline-flex;
  padding: 10px 14px;
  border: 1px solid rgba(7, 148, 85, .24);
  border-radius: 999px;
  background: rgba(7, 148, 85, .08);
  color: #047857;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.plp-report-style-page .plp-report-price-details > p {
  margin: 18px 0 20px;
  color: rgba(15, 23, 42, .68);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 650;
}

.plp-report-style-page .plp-report-money-frame {
  margin: 0 0 22px;
}

.plp-report-style-page .plp-report-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.plp-report-style-page .plp-report-faq-grid details {
  border: 1px solid rgba(47, 92, 255, .14);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 16px 46px rgba(15, 23, 42, .045);
  overflow: hidden;
}

.plp-report-style-page .plp-report-faq-grid summary {
  cursor: pointer;
  padding: 22px 24px;
  color: #07111f;
  font-size: 18px;
  line-height: 1.18;
  letter-spacing: -.035em;
  font-weight: 950;
}

.plp-report-style-page .plp-report-faq-grid details p {
  margin: 0;
  padding: 0 24px 24px;
  color: rgba(15, 23, 42, .68);
  font-size: 15px;
  line-height: 1.55;
  font-weight: 650;
}

.plp-report-style-page .plp-report-final-card {
  margin: 0;
}

.plp-report-style-page .plp-report-final-card h2 {
  max-width: 840px;
  margin: 0 0 16px;
  color: #07111f;
  font-size: clamp(40px, 5.6vw, 74px);
  line-height: .9;
  letter-spacing: -.075em;
  font-weight: 950;
}

.plp-report-style-page .plp-report-final-card p {
  max-width: 860px;
  color: rgba(15, 23, 42, .72);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.42;
  font-weight: 700;
}

.plp-report-style-page .plp-report-final-card .plp-report-button {
  margin-top: 12px;
}

.plp-report-style-page .plp-report-final-card .plp-report-microcopy {
  margin-top: 16px;
  font-size: 14px;
}

@media (max-width: 980px) {
  .plp-report-style-page .plp-report-card-grid,
  .plp-report-style-page .plp-report-path-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .plp-report-style-page .plp-report-path-flow article:nth-child(2)::after {
    display: none;
  }

  .plp-report-style-page .plp-report-price-card,
  .plp-report-style-page .plp-report-path-heading,
  .plp-report-style-page .np-gap-profile-head {
    grid-template-columns: 1fr;
  }

  .plp-report-style-page .plp-report-price-card {
    gap: 28px;
  }
}

@media (max-width: 720px) {
  .plp-report-style-page .np-report-meta {
    gap: 16px;
  }

  .plp-report-style-page .plp-report-hero-actions,
  .plp-report-style-page .plp-report-hero-actions .plp-report-button {
    width: 100%;
  }

  .plp-report-style-page .plp-report-card-grid,
  .plp-report-style-page .plp-report-path-flow,
  .plp-report-style-page .plp-report-compare-grid,
  .plp-report-style-page .plp-report-group-grid,
  .plp-report-style-page .plp-report-faq-grid {
    grid-template-columns: 1fr;
  }

  .plp-report-style-page .plp-report-path-flow article::after {
    display: none !important;
  }

  .plp-report-style-page .plp-report-button {
    width: 100%;
    min-height: 58px;
    text-align: center;
  }

  .plp-report-style-page .plp-report-section {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .plp-report-style-page .plp-report-path-panel,
  .plp-report-style-page .plp-report-price-card {
    border-radius: 26px;
    padding: 24px;
  }
}
/* Patch 12 — Report Money Risk Section */
.np-report-money-frame {
  margin: 28px 0;
  padding: 28px;
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-left: 4px solid #2563eb;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
}

.np-report-money-frame h3 {
  margin: 10px 0 14px;
  color: #0f172a;
  font-size: clamp(1.45rem, 2.4vw, 2.15rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.np-report-money-frame p {
  color: #334155;
  font-size: 1rem;
  line-height: 1.7;
}

.np-report-money-frame .np-plp-money-stack {
  margin: 18px 0;
  padding: 20px 22px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 14px;
  background: #ffffff;
  color: #0f172a;
  font-weight: 800;
  line-height: 1.75;
  letter-spacing: -0.01em;
}

.np-report-money-callout {
  margin: 22px 0;
  padding: 22px;
  border: 1px solid rgba(239, 68, 68, 0.16);
  border-radius: 14px;
  background: #fff7f7;
}

.np-report-money-callout p {
  margin: 10px 0 0;
  color: #334155;
}

@media (max-width: 720px) {
  .np-report-money-frame {
    padding: 22px;
    border-radius: 16px;
  }

  .np-report-money-frame .np-plp-money-stack,
  .np-report-money-callout {
    padding: 18px;
  }
}



/* Patch 13 — Supporting Decision Sales Page Refinement */
.plp-report-style-page .plp-sales-money-frame {
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid rgba(47, 92, 255, .20);
  border-left: 5px solid #2f5cff;
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(47, 92, 255, .08), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 30px 90px rgba(15, 23, 42, .07);
}

.plp-report-style-page .plp-sales-money-frame h2 {
  max-width: 920px;
  margin: 10px 0 18px;
  color: #07111f;
  font-size: clamp(42px, 5.6vw, 76px);
  line-height: .9;
  letter-spacing: -.075em;
  font-weight: 950;
}

.plp-report-style-page .plp-sales-money-frame p {
  max-width: 820px;
  color: rgba(15, 23, 42, .70);
  font-size: 18px;
  line-height: 1.58;
  font-weight: 650;
}

.plp-report-style-page .plp-sales-money-stack {
  margin: 24px 0;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(15, 23, 42, .10);
  border-radius: 24px;
  background: #ffffff;
  color: #07111f !important;
  font-size: clamp(22px, 3vw, 36px) !important;
  line-height: 1.22 !important;
  letter-spacing: -.045em;
  font-weight: 950 !important;
}

.plp-report-style-page .plp-sales-price-logic {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.plp-report-style-page .plp-sales-price-logic div {
  min-height: 150px;
  padding: 22px;
  border: 1px solid rgba(47, 92, 255, .16);
  border-radius: 24px;
  background: #ffffff;
}

.plp-report-style-page .plp-sales-price-logic span {
  display: block;
  margin-bottom: 14px;
  color: #2f5cff;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.plp-report-style-page .plp-sales-price-logic strong {
  display: block;
  color: #07111f;
  font-size: clamp(24px, 2.8vw, 38px);
  line-height: .98;
  letter-spacing: -.055em;
  font-weight: 950;
}

.plp-report-style-page .plp-report-price-number {
  margin: 0 0 10px;
  color: #2f5cff;
  font-size: clamp(52px, 7.5vw, 96px);
  line-height: .9;
  letter-spacing: -.075em;
  font-weight: 950;
}

.plp-report-style-page .plp-report-price-number span {
  font-size: clamp(20px, 2.2vw, 30px);
  letter-spacing: -.045em;
  color: rgba(15, 23, 42, .68);
}

.plp-report-style-page .plp-report-term {
  display: inline-flex;
  margin: 0 0 22px;
  padding: 10px 14px;
  border: 1px solid rgba(7, 148, 85, .24);
  border-radius: 999px;
  background: rgba(7, 148, 85, .08);
  color: #047857;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

@media (max-width: 820px) {
  .plp-report-style-page .plp-sales-price-logic {
    grid-template-columns: 1fr;
  }

  .plp-report-style-page .plp-sales-money-frame {
    border-radius: 26px;
    padding: 24px;
  }

  .plp-report-style-page .plp-sales-price-logic div {
    min-height: 0;
  }
}


/* Patch 14 — Restored Original Sales Page Money Math Module */
.plp-report-style-page .plp-report-money-section .np-plp-money-frame {
  margin: 0 0 34px;
  padding: clamp(32px, 5vw, 62px);
  border-radius: 34px;
  border: 1px solid rgba(43, 92, 255, 0.14);
  background:
    radial-gradient(circle at top right, rgba(47, 92, 255, 0.10), transparent 34%),
    #ffffff;
  box-shadow: 0 24px 76px rgba(15, 23, 42, 0.065);
}

.plp-report-style-page .plp-report-money-section .np-plp-money-frame h3 {
  margin: 12px 0 22px;
  color: var(--np-ink, #07111f);
  font-size: clamp(34px, 4.5vw, 62px);
  line-height: 0.95;
  letter-spacing: -0.062em;
  font-weight: 950;
}

.plp-report-style-page .plp-report-money-section .np-plp-money-frame p {
  max-width: 850px;
  color: var(--np-muted, #657286);
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.55;
  font-weight: 750;
}

.plp-report-style-page .plp-report-money-section .np-plp-money-stack {
  margin: 22px 0;
  padding: 24px 28px;
  border-radius: 24px;
  background: #f7fbff;
  border: 1px solid rgba(43, 92, 255, 0.14);
  color: var(--np-ink, #07111f) !important;
  font-size: clamp(22px, 2.6vw, 36px) !important;
  line-height: 1.16 !important;
  letter-spacing: -0.05em;
  font-weight: 950 !important;
}

.plp-report-style-page .plp-report-money-section .np-math-transition {
  max-width: 880px;
  margin: 56px auto 28px;
  text-align: center;
}

.plp-report-style-page .plp-report-money-section .np-math-transition h3 {
  margin: 14px 0 0;
  color: var(--np-ink, #07111f);
  font-size: clamp(34px, 4.5vw, 62px);
  line-height: 0.95;
  letter-spacing: -0.062em;
  font-weight: 950;
}

.plp-report-style-page .plp-report-money-section .np-cost-break-even {
  margin: 0 auto;
  padding: clamp(28px, 5vw, 56px);
  border-radius: 34px;
  border: 1px solid rgba(7, 148, 85, 0.22);
  background:
    radial-gradient(circle at top left, rgba(7, 148, 85, 0.10), transparent 34%),
    #ffffff;
  box-shadow: 0 24px 80px rgba(15, 23, 42, 0.07);
}

.plp-report-style-page .plp-report-money-section .np-easy-math-header {
  max-width: 820px;
  margin-bottom: 22px;
}

.plp-report-style-page .plp-report-money-section .np-easy-math-header p {
  margin: -8px 0 22px;
  color: var(--np-muted, #657286);
  font-size: 17px;
  line-height: 1.5;
  font-weight: 750;
}

.plp-report-style-page .plp-report-money-section .np-value-confirmation {
  display: grid;
  gap: 10px;
  margin: 24px 0 18px;
  padding: 22px;
  border: 1px solid rgba(7, 148, 85, 0.18);
  border-radius: 20px;
  background: rgba(236, 253, 243, 0.62);
  text-align: center;
}

.plp-report-style-page .plp-report-money-section .np-value-confirmation-kicker {
  color: var(--np-blue, #2f5cf6);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.plp-report-style-page .plp-report-money-section .np-value-confirmation h3 {
  margin: 0;
  color: var(--np-ink, #07111f);
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1;
  letter-spacing: -0.055em;
  font-weight: 950;
}

.plp-report-style-page .plp-report-money-section .np-value-confirmation-number {
  color: var(--np-green, #079455);
  font-size: clamp(44px, 7vw, 88px);
  line-height: 0.9;
  letter-spacing: -0.065em;
  font-weight: 950;
}

.plp-report-style-page .plp-report-money-section .np-value-edit-toggle {
  justify-self: center;
  border: 0;
  background: transparent;
  color: var(--np-green, #079455);
  font-size: 14px;
  line-height: 1;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
}

.plp-report-style-page .plp-report-money-section .np-value-edit-panel[hidden] {
  display: none !important;
}

.plp-report-style-page .plp-report-money-section .np-patient-value-selector {
  display: grid;
  gap: 18px;
  margin: 24px 0 26px;
  padding: 20px;
  border: 1px solid rgba(7, 148, 85, 0.18);
  border-radius: 18px;
  background: rgba(236, 253, 243, 0.58);
}

.plp-report-style-page .plp-report-money-section .np-value-selector-buttons {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.plp-report-style-page .plp-report-money-section .np-value-selector-buttons button {
  border: 1px solid rgba(7, 148, 85, 0.22);
  border-radius: 999px;
  background: #ffffff;
  color: var(--np-ink, #07111f);
  padding: 12px 14px;
  font-size: 15px;
  line-height: 1;
  font-weight: 950;
  cursor: pointer;
  transition: border-color .18s ease, background .18s ease, color .18s ease, transform .18s ease;
}

.plp-report-style-page .plp-report-money-section .np-value-selector-buttons button:hover,
.plp-report-style-page .plp-report-money-section .np-value-selector-buttons button.is-active {
  border-color: var(--np-green, #079455);
  background: var(--np-green, #079455);
  color: #ffffff;
  transform: translateY(-1px);
}

.plp-report-style-page .plp-report-money-section .np-custom-value-label {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--np-muted, #657286);
  font-size: 15px;
  line-height: 1.3;
  font-weight: 850;
}

.plp-report-style-page .plp-report-money-section .np-custom-value-input-wrap {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(7, 148, 85, 0.26);
  border-radius: 999px;
  background: #ffffff;
  padding: 10px 14px;
  color: var(--np-green, #079455);
  font-weight: 950;
}

.plp-report-style-page .plp-report-money-section .np-custom-value-input-wrap input {
  width: 142px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--np-ink, #07111f);
  font-size: 15px;
  line-height: 1;
  font-weight: 900;
}

.plp-report-style-page .plp-report-money-section .np-easy-math table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 18px;
  background: #ffffff;
}

.plp-report-style-page .plp-report-money-section .np-easy-math th,
.plp-report-style-page .plp-report-money-section .np-easy-math td {
  padding: 18px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  text-align: left;
}

.plp-report-style-page .plp-report-money-section .np-easy-math th {
  color: var(--np-blue, #2f5cff);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 10.5px;
  line-height: 1.2;
  font-weight: 850;
}

.plp-report-style-page .plp-report-money-section .np-easy-math td {
  color: var(--np-ink, #07111f);
  font-weight: 850;
}

.plp-report-style-page .plp-report-money-section .np-easy-math td:last-child {
  color: var(--np-green, #079455);
  font-weight: 950;
}

.plp-report-style-page .plp-report-money-section .np-easy-math-takeaway {
  margin-top: 22px;
  padding: clamp(24px, 3vw, 34px);
  border-radius: 22px;
  background: var(--np-green, #079455);
  color: #ffffff;
  font-size: clamp(24px, 2.5vw, 38px);
  line-height: 1.08;
  letter-spacing: -0.052em;
  font-weight: 950;
  text-align: center;
  box-shadow: 0 22px 56px rgba(7, 148, 85, 0.22);
}

.plp-report-style-page .plp-report-money-section .np-easy-math-takeaway span {
  color: #ffffff;
}

@media (max-width: 720px) {
  .plp-report-style-page .plp-report-money-section .np-plp-money-frame,
  .plp-report-style-page .plp-report-money-section .np-cost-break-even {
    border-radius: 24px;
  }

  .plp-report-style-page .plp-report-money-section .np-value-selector-buttons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .plp-report-style-page .plp-report-money-section .np-easy-math th,
  .plp-report-style-page .plp-report-money-section .np-easy-math td {
    padding: 14px 12px;
    font-size: 14px;
  }
}


/* Patch 16 — Report Protection Value Handoff */
.rla-report .np-report-protection-transition,
.rla-report .np-report-protection-value,
.rla-report .np-report-cost-of-waiting,
.rla-report .np-not-more-leads,
.rla-report .np-report-plp-urgency,
.rla-report .np-final-diagnosis-recap,
.rla-report .np-report-final-bridge {
  margin-top: 28px;
}

.rla-report .np-final-diagnosis-recap {
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(42, 157, 244, 0.18);
  border-left: 5px solid var(--np-cerulean, #2a9df4);
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(42, 157, 244, 0.10), transparent 34%),
    #ffffff;
  box-shadow: 0 22px 68px rgba(15, 23, 42, 0.06);
}

.rla-report .np-final-diagnosis-recap h3,
.rla-report .np-not-more-leads h3,
.rla-report .np-report-plp-urgency h3,
.rla-report .np-report-final-bridge h3 {
  margin: 10px 0 14px;
  color: var(--np-ink, #07111f);
  font-size: clamp(30px, 4.8vw, 58px);
  line-height: 0.96;
  letter-spacing: -0.06em;
  font-weight: 950;
}

.rla-report .np-final-diagnosis-recap p,
.rla-report .np-not-more-leads p,
.rla-report .np-report-plp-urgency p,
.rla-report .np-report-final-bridge p {
  max-width: 820px;
  color: var(--np-muted, #657286);
  font-size: clamp(16px, 2vw, 21px);
  line-height: 1.48;
  letter-spacing: -0.02em;
  font-weight: 680;
}

.rla-report .np-not-more-leads {
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(7, 148, 85, 0.18);
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(7, 148, 85, 0.10), transparent 34%),
    #ffffff;
  box-shadow: 0 22px 68px rgba(15, 23, 42, 0.06);
}

.rla-report .np-report-final-bridge {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.68fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  text-align: left;
}

.rla-report .np-report-final-bridge .np-cta-button {
  width: min(100%, 600px);
  min-height: 64px;
  margin: 8px 0 0;
  padding: 0 30px;
  border-radius: 999px;
  background: var(--np-green, #079455);
  color: #ffffff;
  font-size: 12px;
  line-height: 1.1;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 20px 44px rgba(7, 148, 85, 0.26);
}

.rla-report .np-report-final-bridge small {
  display: block;
  margin-top: 14px;
  color: var(--np-muted, #657286);
  font-size: 11px;
  line-height: 1.4;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .rla-report .np-report-final-bridge {
    grid-template-columns: 1fr;
  }

  .rla-report .np-report-final-bridge .np-cta-button {
    width: 100%;
  }
}


/* Patch 18 — Report Page Design Alignment Only
   Goal: preserve the Patch 16 report content while improving hierarchy, mobile readability, and final CTA dominance.
   Scoped to .rla-report so sales page, checkout, quiz, and gate styles remain untouched.
*/

/* Report ending rhythm: keep momentum without making every block feel equally dominant. */
.rla-report .np-report-protection-transition,
.rla-report .np-report-protection-value,
.rla-report .np-report-cost-of-waiting,
.rla-report .np-not-more-leads,
.rla-report .np-report-plp-urgency,
.rla-report .np-final-diagnosis-recap,
.rla-report .np-report-final-bridge {
  margin-top: clamp(20px, 3.2vw, 34px);
}

/* Supporting callouts are intentionally lighter than the money section and final CTA. */
.rla-report .np-not-more-leads,
.rla-report .np-final-diagnosis-recap {
  padding: clamp(20px, 3.2vw, 34px);
  border-radius: 24px;
  box-shadow: 0 14px 42px rgba(15, 23, 42, 0.045);
}

.rla-report .np-not-more-leads {
  border-color: rgba(7, 148, 85, 0.14);
  background:
    radial-gradient(circle at top right, rgba(7, 148, 85, 0.065), transparent 32%),
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,250,252,0.72));
}

.rla-report .np-final-diagnosis-recap {
  border-color: rgba(42, 157, 244, 0.14);
  border-left-width: 4px;
  background:
    radial-gradient(circle at top right, rgba(42, 157, 244, 0.065), transparent 32%),
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,250,252,0.72));
}

.rla-report .np-report-plp-urgency {
  box-shadow: 0 16px 46px rgba(15, 23, 42, 0.055);
}

/* Intermediate card headings should support the crescendo, not compete with the final CTA. */
.rla-report .np-not-more-leads h3,
.rla-report .np-final-diagnosis-recap h3,
.rla-report .np-report-plp-urgency h3 {
  font-size: clamp(26px, 3.6vw, 44px);
  line-height: 1.01;
  letter-spacing: -0.052em;
  margin-bottom: 10px;
}

.rla-report .np-not-more-leads p,
.rla-report .np-final-diagnosis-recap p,
.rla-report .np-report-plp-urgency p {
  font-size: clamp(15px, 1.7vw, 19px);
  line-height: 1.5;
}

/* Keep the protection-value block feeling like a premium diagnostic tool. */
.rla-report .np-report-protection-value {
  border-width: 1px;
  box-shadow: 0 28px 76px rgba(7, 148, 85, 0.075), 0 14px 44px rgba(15, 23, 42, 0.045);
}

.rla-report .np-report-protection-value .np-value-confirmation {
  box-shadow: 0 18px 48px rgba(7, 148, 85, 0.08);
}

.rla-report .np-report-protection-value .np-value-edit-toggle:focus-visible,
.rla-report .np-report-protection-value .np-value-selector-buttons button:focus-visible,
.rla-report .np-report-final-bridge .np-cta-button:focus-visible {
  outline: 3px solid rgba(7, 148, 85, 0.28);
  outline-offset: 3px;
}

.rla-report .np-report-protection-value .np-value-selector-buttons button {
  min-height: 46px;
}

.rla-report .np-report-protection-value .np-custom-value-input-wrap {
  min-height: 46px;
}

/* Final CTA: this is the report endpoint and should visually dominate supporting callouts. */
.rla-report .np-report-final-bridge {
  padding: clamp(34px, 5vw, 64px);
  border: 1px solid rgba(7, 148, 85, 0.26);
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(7, 148, 85, 0.18), transparent 36%),
    radial-gradient(circle at bottom left, rgba(42, 157, 244, 0.09), transparent 30%),
    linear-gradient(180deg, rgba(236, 253, 243, 0.96) 0%, #ffffff 72%);
  box-shadow: 0 34px 96px rgba(15, 23, 42, 0.10), 0 24px 70px rgba(7, 148, 85, 0.10);
}

.rla-report .np-report-final-bridge h3 {
  font-size: clamp(34px, 5.4vw, 72px);
  line-height: 0.94;
  letter-spacing: -0.07em;
}

.rla-report .np-report-final-bridge p {
  font-size: clamp(17px, 2.15vw, 22px);
  line-height: 1.45;
}

.rla-report .np-report-final-bridge .np-cta-button {
  min-height: 68px;
  font-size: 13px;
  box-shadow: 0 22px 52px rgba(7, 148, 85, 0.30);
}

.rla-report .np-report-final-bridge .np-cta-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 28px 66px rgba(7, 148, 85, 0.36);
}

.rla-report .np-report-final-bridge .np-final-system-preview {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.rla-report .np-report-final-bridge .np-final-system-preview img {
  max-width: 100%;
  height: auto;
}

/* Mobile report alignment pass. */
@media (max-width: 640px) {
  .rla-report .np-report-protection-transition,
  .rla-report .np-report-protection-value,
  .rla-report .np-report-cost-of-waiting,
  .rla-report .np-not-more-leads,
  .rla-report .np-report-plp-urgency,
  .rla-report .np-final-diagnosis-recap,
  .rla-report .np-report-final-bridge {
    margin-top: 18px;
  }

  .rla-report .np-report-protection-value,
  .rla-report .np-report-cost-of-waiting,
  .rla-report .np-report-plp-urgency,
  .rla-report .np-not-more-leads,
  .rla-report .np-final-diagnosis-recap {
    padding: 22px;
    border-radius: 22px;
  }

  .rla-report .np-report-protection-transition h3,
  .rla-report .np-report-protection-value h3,
  .rla-report .np-report-cost-of-waiting h3,
  .rla-report .np-report-plp-urgency h3,
  .rla-report .np-not-more-leads h3,
  .rla-report .np-final-diagnosis-recap h3 {
    font-size: clamp(25px, 9vw, 36px);
    line-height: 1.02;
    letter-spacing: -0.055em;
  }

  .rla-report .np-report-protection-value .np-easy-math-header p,
  .rla-report .np-report-cost-of-waiting p,
  .rla-report .np-report-plp-urgency p,
  .rla-report .np-not-more-leads p,
  .rla-report .np-final-diagnosis-recap p {
    font-size: 15px;
    line-height: 1.48;
  }

  /* Convert the report protection value table into stacked cards on mobile. */
  .rla-report .np-report-protection-value table,
  .rla-report .np-report-protection-value tbody {
    display: block;
    width: 100%;
    border-collapse: separate;
  }

  .rla-report .np-report-protection-value table tr:first-child {
    display: none;
  }

  .rla-report .np-report-protection-value table tr {
    display: block;
    margin: 0 0 10px;
    padding: 14px;
    border: 1px solid rgba(7, 148, 85, 0.14);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.035);
  }

  .rla-report .np-report-protection-value table td {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    text-align: left;
  }

  .rla-report .np-report-protection-value table td:first-child {
    color: var(--np-muted, #657286);
    font-size: 11px;
    line-height: 1.3;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .rla-report .np-report-protection-value table td:last-child {
    margin-top: 6px;
    color: var(--np-ink, #07111f);
    font-size: 16px;
    line-height: 1.35;
    font-weight: 880;
    letter-spacing: -0.02em;
  }

  .rla-report .np-report-protection-value table td#npCtaOnePatientValue {
    color: var(--np-green, #079455);
    font-size: 25px;
    line-height: 1;
    font-weight: 950;
    letter-spacing: -0.055em;
  }

  .rla-report .np-report-protection-value .np-value-confirmation {
    padding: 20px;
    border-radius: 20px;
  }

  .rla-report .np-report-protection-value .np-value-confirmation-number {
    font-size: clamp(46px, 17vw, 72px);
    line-height: 0.92;
  }

  .rla-report .np-report-protection-value .np-patient-value-selector {
    padding: 16px;
    gap: 14px;
  }

  .rla-report .np-report-protection-value .np-value-selector-buttons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }

  .rla-report .np-report-protection-value .np-value-selector-buttons button {
    width: 100%;
    min-height: 46px;
    padding: 12px 10px;
    font-size: 14px;
  }

  .rla-report .np-report-protection-value .np-custom-value-label {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    align-items: stretch;
  }

  .rla-report .np-report-protection-value .np-custom-value-input-wrap {
    width: 100%;
    justify-content: flex-start;
    border-radius: 16px;
  }

  .rla-report .np-report-protection-value .np-custom-value-input-wrap input {
    width: 100%;
    min-width: 0;
  }

  .rla-report .np-report-protection-value .np-easy-math-takeaway {
    font-size: 15px;
    line-height: 1.5;
  }

  .rla-report .np-report-cost-of-waiting .np-cost-proof {
    gap: 12px;
  }

  .rla-report .np-report-cost-of-waiting .np-cost-proof > div {
    padding: 18px;
    border-radius: 18px;
  }

  .rla-report .np-report-final-bridge {
    padding: 28px 22px;
    border-radius: 26px;
    gap: 22px;
  }

  .rla-report .np-report-final-bridge h3 {
    font-size: clamp(31px, 10.8vw, 46px);
    line-height: 0.98;
  }

  .rla-report .np-report-final-bridge p {
    font-size: 16px;
    line-height: 1.48;
  }

  .rla-report .np-report-final-bridge .np-cta-button {
    width: 100%;
    min-height: 62px;
    padding: 0 20px;
    white-space: normal;
  }

  .rla-report .np-report-final-bridge .np-final-system-preview {
    width: 100%;
  }

  .rla-report .np-report-final-bridge .np-final-system-preview img {
    max-height: 260px;
    object-fit: contain;
  }
}

@media (max-width: 420px) {
  .rla-report .np-report-protection-value,
  .rla-report .np-report-cost-of-waiting,
  .rla-report .np-report-plp-urgency,
  .rla-report .np-not-more-leads,
  .rla-report .np-final-diagnosis-recap,
  .rla-report .np-report-final-bridge {
    padding-left: 18px;
    padding-right: 18px;
  }

  .rla-report .np-report-protection-value .np-value-selector-buttons {
    grid-template-columns: 1fr 1fr;
  }

  .rla-report .np-report-final-bridge small {
    font-size: 10px;
    letter-spacing: 0.055em;
  }
}


/* Patch 19 — 15/10 Final Report Ending Alignment Only
   Scope: report ending hierarchy and mobile flow only. Keeps the report from becoming a sales page.
*/

/* Make the not-more-leads belief shift feel like a compact premium strip, not another climax. */
.rla-report .np-not-more-leads {
  display: grid;
  gap: 6px;
  padding: clamp(18px, 2.5vw, 26px);
  border-radius: 22px;
  border-color: rgba(7, 148, 85, 0.12);
  background:
    linear-gradient(90deg, rgba(236, 253, 243, 0.78), rgba(255, 255, 255, 0.96));
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.035);
}

.rla-report .np-not-more-leads h3 {
  max-width: 900px;
  margin: 6px 0 4px;
  font-size: clamp(24px, 3.1vw, 36px);
  line-height: 1.03;
}

.rla-report .np-not-more-leads p {
  max-width: 760px;
  margin: 0;
  font-size: clamp(15px, 1.55vw, 18px);
  line-height: 1.45;
}

/* Keep urgency supportive: present, sharp, but not heavier than the money section or final CTA. */
.rla-report .np-report-plp-urgency {
  padding: clamp(22px, 3vw, 34px);
  border-radius: 24px;
  border-color: rgba(220, 38, 38, 0.13);
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.04);
}

.rla-report .np-report-plp-urgency h3 {
  font-size: clamp(27px, 3.4vw, 42px);
  line-height: 1.02;
}

.rla-report .np-report-plp-urgency p {
  max-width: 780px;
}

/* Make the priority recap a final support note instead of a competing card. */
.rla-report .np-final-diagnosis-recap {
  padding: clamp(18px, 2.5vw, 28px);
  border-radius: 22px;
  border-left-width: 3px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.035);
}

.rla-report .np-final-diagnosis-recap h3 {
  max-width: 860px;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.04;
}

.rla-report .np-final-diagnosis-recap p {
  max-width: 720px;
  font-size: clamp(15px, 1.55vw, 18px);
  line-height: 1.48;
}

/* Give the actual endpoint a little more separation after the lighter support notes. */
.rla-report .np-report-final-bridge {
  margin-top: clamp(26px, 4vw, 44px);
}

.rla-report .np-report-final-bridge .np-cta-button {
  position: relative;
  isolation: isolate;
}

@media (max-width: 640px) {
  .rla-report .np-not-more-leads,
  .rla-report .np-final-diagnosis-recap {
    padding: 18px;
    border-radius: 20px;
  }

  .rla-report .np-not-more-leads h3,
  .rla-report .np-final-diagnosis-recap h3 {
    font-size: clamp(23px, 7.4vw, 31px);
    letter-spacing: -0.048em;
  }

  .rla-report .np-report-plp-urgency {
    padding: 20px 18px;
  }

  .rla-report .np-report-plp-urgency h3 {
    font-size: clamp(25px, 8vw, 34px);
  }

  .rla-report .np-report-final-bridge {
    margin-top: 24px;
  }

  .rla-report .np-report-final-bridge .np-final-system-preview {
    padding: 14px;
    border-radius: 20px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.055);
  }

  .rla-report .np-report-final-bridge .np-final-system-preview img {
    max-height: 210px;
    border-radius: 16px;
  }

  .rla-report .np-report-final-bridge .np-final-system-preview figcaption {
    margin-top: 10px;
    gap: 4px;
  }
}

@media (max-width: 420px) {
  .rla-report .np-report-final-bridge .np-final-system-preview img {
    max-height: 185px;
  }
}


/* =========================================================
   PATCH 23 — Dynamic lead gate polish only
   Tightens the gate as a personalized teaser without changing scoring,
   lead capture, report rendering, or funnel flow.
   ========================================================= */

.rla-shell:has(.rla-gate.is-visible) {
  width: min(720px, 100%);
}

.rla-shell:has(.rla-gate.is-visible) .rla-card {
  padding: clamp(30px, 3vw, 42px);
}

.rla-gate {
  max-width: 660px;
  margin: 0 auto;
  text-align: center;
}

.rla-gate .gate-complete-pill {
  margin-right: auto;
  margin-bottom: 16px;
  margin-left: auto;
}

.rla-gate h2 {
  max-width: 640px;
  margin: 0 auto 18px;
  font-size: clamp(32px, 4.4vw, 44px);
  line-height: 1.02;
}

.rla-gate .gate-lead {
  max-width: 590px;
  margin: 0 auto 18px;
  font-size: clamp(16px, 1.65vw, 18px);
  line-height: 1.48;
  font-weight: 720;
}

.rla-gate .gate-lead p + p {
  margin-top: 10px;
}

.rla-gate .gate-more-leads-line {
  max-width: 590px;
  margin: 0 auto 8px;
  padding: 14px 16px;
  border: 1px solid rgba(43, 92, 255, 0.16);
  background: rgba(43, 92, 255, 0.045);
  color: var(--rla-ink);
  font-size: 15px;
  line-height: 1.38;
  font-weight: 900;
}

.rla-gate .gate-engine-hidden {
  max-width: 590px;
  margin: 0 auto 16px;
  padding: 12px 14px;
  border-top: 1px solid var(--rla-line);
  border-bottom: 1px solid var(--rla-line);
  background: #f8fbff;
  font-size: 15px;
  line-height: 1.4;
}

.rla-gate .gate-capacity-line {
  max-width: 590px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.42;
}

.rla-gate .gate-preview-label {
  margin-top: 18px;
  margin-bottom: 8px;
}

.rla-gate .gate-preview-grid {
  margin: 14px 0 18px;
}

.rla-gate .rla-preview {
  min-height: 112px;
  padding: 16px 14px;
}

.rla-gate .rla-preview span {
  min-height: 24px;
}

.rla-gate .rla-preview strong {
  margin-top: 8px;
  font-size: clamp(16px, 1.45vw, 20px);
  line-height: 1.14;
}

.rla-gate form {
  max-width: 590px;
  margin: 18px auto 0;
  gap: 8px;
}

.rla-gate form input {
  min-height: 58px;
}

.rla-gate form button {
  min-height: 58px;
  margin-top: 8px;
}

@media (max-width: 620px) {
  .rla-shell:has(.rla-gate.is-visible) .rla-card {
    padding: 22px 18px;
  }

  .rla-gate .gate-complete-pill {
    margin-bottom: 13px;
  }

  .rla-gate h2 {
    margin-bottom: 14px;
    font-size: 27px;
    line-height: 1.06;
    letter-spacing: -0.045em;
  }

  .rla-gate .gate-lead {
    margin-bottom: 14px;
    font-size: 15.5px;
    line-height: 1.42;
  }

  .rla-gate .gate-lead p + p {
    margin-top: 8px;
  }

  .rla-gate .gate-more-leads-line {
    margin-bottom: 7px;
    padding: 12px 13px;
    font-size: 14px;
    line-height: 1.35;
  }

  .rla-gate .gate-engine-hidden {
    margin-bottom: 12px;
    padding: 11px 12px;
    font-size: 14px;
    line-height: 1.35;
  }

  .rla-gate .gate-capacity-line {
    font-size: 14px;
    line-height: 1.38;
  }

  .rla-gate .gate-preview-label {
    margin-top: 14px;
    margin-bottom: 7px;
  }

  .rla-gate .gate-preview-grid {
    margin: 10px 0 12px;
  }

  .rla-gate .rla-preview {
    min-height: auto;
    padding: 13px 12px;
  }

  .rla-gate .rla-preview span {
    min-height: 0;
    margin-bottom: 6px;
    font-size: 8.5px;
  }

  .rla-gate .rla-preview strong {
    margin-top: 0;
    font-size: 16px;
    line-height: 1.16;
  }

  .rla-gate form {
    margin-top: 12px;
  }

  .rla-gate form input,
  .rla-gate form button {
    min-height: 56px;
  }

  .rla-gate form button {
    margin-top: 6px;
    font-size: 13.5px;
    letter-spacing: 0.045em;
  }
}

@media (max-width: 380px) {
  .rla-gate h2 {
    font-size: 25px;
  }
}


/* =========================================================
   PATCH 25 — Two-fix report handoff polish only
   Scope: final report CTA image framing + handoff preview card.
   ========================================================= */
.rla-report .np-report-final-bridge .np-final-system-preview {
  justify-content: space-between;
  padding: clamp(18px, 2.2vw, 26px);
  border: 1px solid rgba(42, 157, 244, 0.24);
  background:
    radial-gradient(circle at 50% 8%, rgba(42, 157, 244, 0.08), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 252, 255, 0.92));
}

.rla-report .np-report-final-bridge .np-final-system-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(250px, 24vw, 340px);
  padding: clamp(18px, 2vw, 28px);
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 248, 255, 0.72));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.90),
    0 18px 46px rgba(15, 23, 42, 0.075);
}

.rla-report .np-report-final-bridge .np-final-system-frame img {
  display: block;
  width: 100%;
  max-width: 440px;
  height: auto;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.11);
}

.rla-report .np-report-final-bridge .np-final-system-preview > img {
  display: none;
}

.rla-report .np-report-final-bridge .np-final-system-preview figcaption {
  margin-top: 14px;
}

@media (max-width: 640px) {
  .rla-report .np-report-final-bridge .np-final-system-frame {
    min-height: 0;
    padding: 14px;
    border-radius: 20px;
  }

  .rla-report .np-report-final-bridge .np-final-system-frame img {
    max-height: 220px;
    object-fit: contain;
    border-radius: 14px;
  }
}

@media (max-width: 420px) {
  .rla-report .np-report-final-bridge .np-final-system-frame img {
    max-height: 185px;
  }
}

/* PATCH 50: Section 6 compact toggle cards */
.rla-report .np-system-reality-accordion {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 30px;
}

.rla-report .np-system-reality-accordion .np-system-reality-card {
  padding: 0;
  overflow: hidden;
}

.rla-report .np-system-reality-summary {
  list-style: none;
  cursor: pointer;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: clamp(20px, 2.4vw, 28px);
}

.rla-report .np-system-reality-summary::-webkit-details-marker {
  display: none;
}

.rla-report .np-system-reality-summary::marker {
  content: "";
}

.rla-report .np-system-reality-summary::after {
  content: "+";
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #2563eb;
  color: #ffffff;
  font-weight: 950;
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.22);
}

.rla-report .np-system-reality-card[open] .np-system-reality-summary::after {
  content: "–";
}

.rla-report .np-system-reality-accordion .np-system-reality-card h3 {
  margin: 0;
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1.02;
}

.rla-report .np-system-reality-accordion .np-system-reality-card p {
  padding: 0 clamp(20px, 2.4vw, 28px) clamp(22px, 2.6vw, 30px);
}

.rla-report .np-section-seven-section .np-report-protection-value {
  margin-top: 0;
}

/* PATCH 53 — Section 7 assessment-value module integration only */
.rla-report .np-section-seven-section .np-section-seven-value-line {
  margin: 22px 0 20px;
  padding: 18px 20px;
  border: 1px solid rgba(7, 148, 85, 0.16);
  border-radius: 18px;
  background: rgba(236, 253, 243, 0.58);
  color: var(--np-green, #079455);
  font-size: clamp(16px, 1.7vw, 20px);
  line-height: 1.35;
  font-weight: 900;
  letter-spacing: -0.025em;
  text-align: center;
}

.rla-report .np-section-seven-section .np-report-final-bridge {
  grid-template-columns: 1fr;
}


/* =========================================================
   PATCH 55 — Premium report close cleanup
   Scope: Report Sections 6–8 only.
   ========================================================= */

.rla-report .np-section-six-premium,
.rla-report .np-premium-close-section {
  background: transparent;
}

.rla-report .np-section-six-premium .np-system-wrap,
.rla-report .np-premium-close-section .np-system-wrap {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.rla-report .np-section-six-premium .np-system-intro-premium {
  display: grid;
  gap: 24px;
}

.rla-report .np-section-six-premium .np-section-six-core {
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgba(7, 148, 85, 0.16);
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(7, 148, 85, 0.08), transparent 34%),
    #ffffff;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.06);
}

.rla-report .np-section-six-premium .np-section-six-core h3 {
  max-width: 780px;
  font-size: clamp(34px, 4.4vw, 60px);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.rla-report .np-section-six-premium .np-section-six-core p {
  max-width: 760px;
}

.rla-report .np-section-six-premium .np-system-toggle-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 0;
}

.rla-report .np-section-six-premium .np-system-toggle-card {
  min-width: 0;
  padding: 0;
  overflow: clip;
  border: 1px solid rgba(47, 102, 255, 0.14);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 46px rgba(15, 23, 42, 0.045);
}

.rla-report .np-section-six-premium .np-system-toggle-summary {
  list-style: none;
  cursor: pointer;
  display: grid;
  grid-template-columns: minmax(126px, 180px) minmax(0, 1fr) 40px;
  gap: clamp(16px, 2.4vw, 28px);
  align-items: center;
  padding: clamp(22px, 3vw, 34px);
  min-width: 0;
}

.rla-report .np-section-six-premium .np-system-toggle-summary::-webkit-details-marker {
  display: none;
}

.rla-report .np-section-six-premium .np-system-toggle-summary::marker {
  content: "";
}

.rla-report .np-section-six-premium .np-system-toggle-summary:focus-visible {
  outline: 3px solid rgba(47, 102, 255, 0.30);
  outline-offset: 4px;
  border-radius: 20px;
}

.rla-report .np-section-six-premium .np-system-toggle-summary span {
  min-width: 0;
  color: var(--np-blue, #2f5cff);
  font-size: 11px;
  line-height: 1.15;
  font-weight: 950;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.rla-report .np-section-six-premium .np-system-toggle-summary h3 {
  min-width: 0;
  max-width: 100%;
  margin: 0;
  color: var(--np-ink, #07111f);
  font-size: clamp(24px, 2.8vw, 40px);
  line-height: 1.02;
  letter-spacing: -0.055em;
  overflow-wrap: anywhere;
  word-break: normal;
}

.rla-report .np-section-six-premium .np-system-toggle-summary::after {
  content: "+";
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #2563eb;
  color: #ffffff;
  font-size: 22px;
  line-height: 1;
  font-weight: 950;
  box-shadow: 0 12px 26px rgba(37, 99, 235, 0.20);
  transition: transform 0.18s ease, background 0.18s ease;
}

.rla-report .np-section-six-premium .np-system-toggle-card[open] .np-system-toggle-summary::after {
  content: "+";
  transform: rotate(45deg);
  background: var(--np-green, #079455);
}

.rla-report .np-section-six-premium .np-system-toggle-card > p {
  max-width: 760px;
  margin: 0 0 0 calc(clamp(22px, 3vw, 34px) + min(180px, 18vw) + clamp(16px, 2.4vw, 28px));
  padding: 0 clamp(22px, 3vw, 34px) clamp(22px, 3vw, 34px) 0;
  color: var(--np-muted, #657286);
  font-size: clamp(16px, 1.35vw, 18px);
  line-height: 1.5;
  font-weight: 750;
}

.rla-report .np-section-six-premium .np-section-six-moment-card {
  margin: clamp(26px, 4vw, 42px) 0 0;
  padding: clamp(26px, 4vw, 42px);
  border-color: rgba(47, 102, 255, 0.15);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(247, 250, 255, 0.98), rgba(255, 255, 255, 0.96));
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.055);
}

.rla-report .np-section-six-premium .np-section-six-moment-card h3 {
  max-width: 760px;
  font-size: clamp(34px, 4vw, 56px);
}

.rla-report .np-section-six-premium .np-section-six-moment-card p {
  max-width: 760px;
}

.rla-report .np-section-six-premium .np-section-six-moment-note {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  color: var(--np-muted, #657286);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 850;
}

/* Section 7: elegant decision card, not a calculator wall. */
.rla-report .np-section-seven-section {
  padding-top: clamp(46px, 7vw, 78px);
}

.rla-report .np-section-seven-section .np-section-seven-decision-card {
  margin: 0;
  padding: clamp(30px, 5vw, 58px);
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(7, 148, 85, 0.08), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 28px 86px rgba(15, 23, 42, 0.07);
}

.rla-report .np-section-seven-section .np-section-seven-kicker {
  margin-bottom: 18px;
}

.rla-report .np-section-seven-section .np-section-seven-header h3 {
  max-width: 800px;
  margin: 0;
  color: var(--np-ink, #07111f);
  font-size: clamp(38px, 5vw, 68px);
  line-height: 0.95;
  letter-spacing: -0.07em;
  font-weight: 950;
}

.rla-report .np-section-seven-section .np-section-seven-lede {
  max-width: 770px;
  margin-top: 18px;
}

.rla-report .np-section-seven-section .np-section-seven-lede p {
  margin: 0;
  color: var(--np-muted, #657286);
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.44;
  letter-spacing: -0.025em;
  font-weight: 760;
}

.rla-report .np-section-seven-section .np-section-seven-mini-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: clamp(26px, 4vw, 40px) 0;
}

.rla-report .np-section-seven-section .np-section-seven-mini-card {
  min-width: 0;
  min-height: 160px;
  padding: 20px 18px;
  border: 1px solid rgba(15, 23, 42, 0.09);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.90);
}

.rla-report .np-section-seven-section .np-section-seven-mini-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--np-green, #079455);
  font-size: 11px;
  line-height: 1.1;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.rla-report .np-section-seven-section .np-section-seven-mini-card p {
  margin: 0;
  color: var(--np-ink, #07111f);
  font-size: 15.5px;
  line-height: 1.36;
  letter-spacing: -0.02em;
  font-weight: 780;
}

.rla-report .np-section-seven-section .np-section-seven-value-card {
  max-width: 620px;
  margin: 0 auto 20px;
  padding: clamp(24px, 3.4vw, 36px);
  border: 1px solid rgba(7, 148, 85, 0.18);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(236, 253, 243, 0.84), rgba(255, 255, 255, 0.94));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.rla-report .np-section-seven-section .np-section-seven-value-card .np-value-confirmation-number {
  font-size: clamp(46px, 6vw, 76px);
}

.rla-report .np-section-seven-section .np-value-edit-toggle-subtle {
  margin-top: 2px;
  color: var(--np-muted, #657286);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.72;
}

.rla-report .np-section-seven-section .np-section-seven-value-line {
  max-width: 760px;
  margin: 22px auto 0;
  padding: 18px 20px;
  border: 1px solid rgba(7, 148, 85, 0.15);
  border-radius: 20px;
  background: rgba(236, 253, 243, 0.50);
  color: var(--np-green, #079455);
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.32;
  font-weight: 920;
  letter-spacing: -0.025em;
  text-align: center;
}

/* Section 8: calm handoff CTA only. */
.rla-report .np-section-seven-section .np-premium-final-handoff {
  display: block;
  margin-top: clamp(30px, 5vw, 54px);
  padding: clamp(30px, 5vw, 56px);
  border: 1px solid rgba(7, 148, 85, 0.16);
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(7, 148, 85, 0.08), transparent 32%),
    #ffffff;
  box-shadow: 0 24px 76px rgba(15, 23, 42, 0.065);
  text-align: left;
}

.rla-report .np-section-seven-section .np-final-cta-kicker {
  display: block;
  margin-bottom: 14px;
  color: var(--np-green, #079455);
  font-size: 12px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.rla-report .np-section-seven-section .np-premium-final-handoff h3 {
  max-width: 760px;
  margin: 0 0 18px;
  color: var(--np-ink, #07111f);
  font-size: clamp(38px, 5vw, 64px);
  line-height: 0.96;
  letter-spacing: -0.066em;
  font-weight: 950;
}

.rla-report .np-section-seven-section .np-premium-final-handoff p {
  max-width: 720px;
  margin: 0 0 20px;
  color: var(--np-muted, #657286);
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.42;
  letter-spacing: -0.025em;
  font-weight: 740;
}

.rla-report .np-section-seven-section .np-premium-final-handoff .np-final-cta-pillars {
  margin-top: -4px;
  color: var(--np-ink, #07111f);
  font-size: clamp(15px, 1.35vw, 17px);
  font-weight: 900;
  letter-spacing: 0.01em;
}

.rla-report .np-section-seven-section .np-premium-final-handoff .np-cta-button {
  width: min(100%, 460px);
  min-height: 62px;
  margin: 12px 0 0;
  border-radius: 999px;
  background: var(--np-green, #079455);
  box-shadow: 0 18px 42px rgba(7, 148, 85, 0.22);
}

.rla-report .np-section-seven-section .np-premium-final-handoff small {
  display: block;
  margin-top: 16px;
  color: var(--np-muted, #657286);
  font-size: 12px;
  line-height: 1.4;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .rla-report .np-section-six-premium .np-system-toggle-summary {
    grid-template-columns: minmax(0, 1fr) 40px;
  }

  .rla-report .np-section-six-premium .np-system-toggle-summary span {
    grid-column: 1 / -1;
  }

  .rla-report .np-section-six-premium .np-system-toggle-card > p {
    margin-left: 0;
    padding-left: clamp(22px, 3vw, 34px);
  }

  .rla-report .np-section-seven-section .np-section-seven-mini-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .rla-report .np-section-six-premium .np-system-wrap,
  .rla-report .np-premium-close-section .np-system-wrap {
    width: min(100% - 24px, 1120px);
  }

  .rla-report .np-section-six-premium .np-section-six-core,
  .rla-report .np-section-six-premium .np-section-six-moment-card,
  .rla-report .np-section-seven-section .np-section-seven-decision-card,
  .rla-report .np-section-seven-section .np-premium-final-handoff {
    border-radius: 24px;
  }

  .rla-report .np-section-six-premium .np-system-toggle-summary {
    padding: 20px;
    grid-template-columns: minmax(0, 1fr) 38px;
    gap: 12px;
  }

  .rla-report .np-section-six-premium .np-system-toggle-summary h3 {
    font-size: clamp(24px, 7vw, 34px);
    line-height: 1.04;
  }

  .rla-report .np-section-six-premium .np-system-toggle-summary::after {
    width: 38px;
    height: 38px;
  }

  .rla-report .np-section-six-premium .np-system-toggle-card > p {
    padding: 0 20px 22px;
    font-size: 16px;
  }

  .rla-report .np-section-seven-section .np-section-seven-mini-grid {
    grid-template-columns: 1fr;
  }

  .rla-report .np-section-seven-section .np-section-seven-mini-card {
    min-height: auto;
  }

  .rla-report .np-section-seven-section .np-section-seven-decision-card,
  .rla-report .np-section-seven-section .np-premium-final-handoff {
    padding: 24px 20px;
  }

  .rla-report .np-section-seven-section .np-section-seven-header h3,
  .rla-report .np-section-seven-section .np-premium-final-handoff h3 {
    font-size: 38px;
    line-height: 0.98;
  }

  .rla-report .np-section-seven-section .np-section-seven-value-card .np-value-confirmation-number {
    font-size: 54px;
  }

  .rla-report .np-section-seven-section .np-premium-final-handoff .np-cta-button {
    width: 100%;
    min-height: 58px;
    padding: 0 18px;
    font-size: 12px;
  }
}


/* =========================================================
   PATCH 56 — Image 5 Design System Alignment
   Report-only calibration: sharper cards, calmer type, unified buttons.
   ========================================================= */

.rla-report {
  --np-image5-radius-card: 10px;
  --np-image5-radius-soft: 16px;
  --np-image5-blue: #2563eb;
  --np-image5-green: #079455;
  --np-image5-ink: #07111f;
  --np-image5-muted: #5f6d80;
  --np-image5-line: rgba(142, 160, 190, 0.34);
  --np-image5-soft: #f8fbff;
}

/* Shared report button DNA modeled after the assessment CTA. */
.rla-report .np-reality-scroll,
.rla-report .np-cta-button,
.rla-report .np-report-final-bridge-cta {
  min-height: 64px;
  width: min(100%, 520px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 0;
  padding: 18px 24px;
  color: #ffffff;
  font-size: clamp(12px, 1vw, 15px);
  line-height: 1.12;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.16);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.rla-report .np-reality-scroll {
  background: #111827;
}

.rla-report .np-reality-scroll:hover,
.rla-report .np-reality-scroll:focus-visible,
.rla-report .np-cta-button:hover,
.rla-report .np-report-final-bridge-cta:hover,
.rla-report .np-cta-button:focus-visible,
.rla-report .np-report-final-bridge-cta:focus-visible {
  transform: translateY(-2px);
  outline: 3px solid rgba(37, 99, 235, 0.34);
  outline-offset: 3px;
}

.rla-report .np-report-final-bridge-cta,
.rla-report .np-premium-final-handoff .np-cta-button {
  background: var(--np-image5-green);
  box-shadow: 0 20px 48px rgba(7, 148, 85, 0.22);
}

.rla-report .np-report-final-bridge-cta:hover,
.rla-report .np-premium-final-handoff .np-cta-button:hover {
  background: #067647;
  box-shadow: 0 24px 56px rgba(7, 148, 85, 0.28);
}

/* Section 03: calmer, sharper break-point accordions. */
.rla-report .np-break-story {
  gap: clamp(24px, 4vw, 42px);
}

.rla-report .np-break-story h3 {
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1;
  letter-spacing: -0.055em;
}

.rla-report .np-break-timeline-accordion {
  gap: 10px;
  margin: clamp(24px, 3.5vw, 38px) 0;
}

.rla-report .np-break-timeline-accordion .np-break-accordion-item {
  border-radius: var(--np-image5-radius-card);
  border: 1px solid var(--np-image5-line);
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.035);
}

.rla-report .np-break-accordion-summary {
  grid-template-columns: minmax(0, 1fr) 28px;
  gap: 16px;
  padding: clamp(16px, 2.2vw, 22px);
}

.rla-report .np-break-accordion-summary:hover {
  background: rgba(37, 99, 235, 0.026);
}

.rla-report .np-break-timeline-accordion .np-break-accordion-heading h3 {
  font-size: clamp(20px, 1.7vw, 27px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.rla-report .np-break-timeline-accordion .np-break-accordion-heading span {
  font-size: 10px;
  letter-spacing: 0.14em;
}

.rla-report .np-break-accordion-icon {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(37, 99, 235, 0.42);
  border-radius: 999px;
  background: #ffffff;
  color: var(--np-image5-blue);
  font-size: 16px;
  box-shadow: none;
}

.rla-report .np-break-accordion-icon::before {
  transform: translateY(-1px);
}

.rla-report .np-break-accordion-item[open] .np-break-accordion-icon {
  background: var(--np-image5-blue);
  color: #ffffff;
}

.rla-report .np-break-timeline-accordion .np-break-accordion-panel {
  padding: 0 clamp(16px, 2.2vw, 22px) clamp(18px, 2.2vw, 22px);
  border-top: 1px solid rgba(219, 226, 238, 0.86);
}

.rla-report .np-break-timeline-accordion .np-break-accordion-panel p {
  margin-top: 14px;
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.48;
}

/* Section 05: report insight block, not a fake assessment. */
.rla-report .np-reality-check {
  margin: clamp(24px, 4vw, 42px) 0;
}

.rla-report .np-reality-card {
  border: 1px solid var(--np-image5-line);
  border-radius: var(--np-image5-radius-card);
  padding: clamp(24px, 4vw, 40px);
  background: #ffffff;
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.045);
}

.rla-report .np-reality-title {
  max-width: 760px;
  margin: 10px 0 14px;
  color: var(--np-image5-ink);
  font-size: clamp(30px, 3.5vw, 48px);
  line-height: 1;
  letter-spacing: -0.06em;
}

.rla-report .np-reality-intro {
  max-width: 760px;
  color: var(--np-image5-muted);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.52;
  font-weight: 680;
}

.rla-report .np-reality-insight-label {
  margin: clamp(22px, 3vw, 30px) 0 12px;
  color: var(--np-image5-blue);
  font-size: 10px;
  line-height: 1.1;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.rla-report .np-reality-insight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 18px;
}

.rla-report .np-reality-insight-card {
  min-height: auto;
  padding: 18px;
  border: 1px solid rgba(142, 160, 190, 0.30);
  border-radius: var(--np-image5-radius-card);
  background: var(--np-image5-soft);
  color: var(--np-image5-ink);
  font-size: 15px;
  line-height: 1.36;
  font-weight: 800;
}

.rla-report .np-reality-message {
  max-width: 820px;
  margin: 18px 0 22px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--np-image5-muted);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 720;
}

/* Section 06: smaller toggles, quieter indicators, Image 5 card discipline. */
.rla-report .np-section-six-premium .np-section-six-core {
  border-radius: var(--np-image5-radius-soft);
  padding: clamp(26px, 4vw, 44px);
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.045);
  background: #ffffff;
}

.rla-report .np-section-six-premium .np-section-six-core h3 {
  font-size: clamp(30px, 3.4vw, 48px);
  line-height: 1;
  letter-spacing: -0.058em;
}

.rla-report .np-section-six-premium .np-system-toggle-list {
  gap: 10px;
}

.rla-report .np-section-six-premium .np-system-toggle-card {
  border-radius: var(--np-image5-radius-card);
  border: 1px solid var(--np-image5-line);
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.035);
}

.rla-report .np-section-six-premium .np-system-toggle-summary {
  grid-template-columns: minmax(116px, 154px) minmax(0, 1fr) 30px;
  gap: clamp(14px, 2vw, 22px);
  padding: clamp(16px, 2.35vw, 24px);
}

.rla-report .np-section-six-premium .np-system-toggle-summary span {
  font-size: 10px;
  letter-spacing: 0.14em;
}

.rla-report .np-section-six-premium .np-system-toggle-summary h3 {
  font-size: clamp(25px, 2.5vw, 38px);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.rla-report .np-section-six-premium .np-system-toggle-summary::after {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(37, 99, 235, 0.42);
  border-radius: 999px;
  background: #ffffff;
  color: var(--np-image5-blue);
  font-size: 17px;
  box-shadow: none;
}

.rla-report .np-section-six-premium .np-system-toggle-card[open] .np-system-toggle-summary::after {
  background: var(--np-image5-blue);
  color: #ffffff;
}

.rla-report .np-section-six-premium .np-system-toggle-card > p {
  margin-left: calc(clamp(16px, 2.35vw, 24px) + min(154px, 18vw) + clamp(14px, 2vw, 22px));
  padding: 0 clamp(16px, 2.35vw, 24px) clamp(18px, 2.35vw, 24px) 0;
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.48;
  font-weight: 700;
}

.rla-report .np-section-six-premium .np-section-six-moment-card {
  border-radius: var(--np-image5-radius-card);
  padding: clamp(22px, 3.2vw, 34px);
  border: 1px solid var(--np-image5-line);
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.035);
}

.rla-report .np-section-six-premium .np-section-six-moment-card h3 {
  font-size: clamp(30px, 3.3vw, 46px);
  line-height: 1;
  letter-spacing: -0.055em;
}

/* Section 07: premium financial note, restrained green. */
.rla-report .np-section-seven-section .np-section-seven-decision-card {
  border-radius: var(--np-image5-radius-soft);
  padding: clamp(28px, 4.4vw, 48px);
  border: 1px solid var(--np-image5-line);
  background: #ffffff;
  box-shadow: 0 14px 42px rgba(15, 23, 42, 0.05);
}

.rla-report .np-section-seven-section .np-section-seven-header h3 {
  font-size: clamp(34px, 4.1vw, 56px);
  line-height: 0.98;
  letter-spacing: -0.062em;
}

.rla-report .np-section-seven-section .np-section-seven-lede p {
  font-size: clamp(17px, 1.55vw, 20px);
  line-height: 1.45;
  font-weight: 720;
}

.rla-report .np-section-seven-section .np-section-seven-mini-grid {
  gap: 10px;
}

.rla-report .np-section-seven-section .np-section-seven-mini-card {
  min-height: 132px;
  padding: 18px;
  border-radius: var(--np-image5-radius-card);
  border: 1px solid var(--np-image5-line);
  background: var(--np-image5-soft);
  box-shadow: none;
}

.rla-report .np-section-seven-section .np-section-seven-mini-card span {
  color: var(--np-image5-blue);
  font-size: 10px;
}

.rla-report .np-section-seven-section .np-section-seven-mini-card p {
  font-size: 15px;
  line-height: 1.38;
}

.rla-report .np-section-seven-section .np-section-seven-value-card {
  border-radius: var(--np-image5-radius-card);
  padding: clamp(22px, 3.2vw, 34px);
  border: 1px solid rgba(7, 148, 85, 0.24);
  background: linear-gradient(180deg, rgba(236, 253, 243, 0.74), #ffffff 100%);
  box-shadow: none;
}

.rla-report .np-section-seven-section .np-section-seven-value-card .np-value-confirmation-number {
  font-size: clamp(52px, 6vw, 82px);
  line-height: 0.9;
}

.rla-report .np-section-seven-section .np-value-edit-toggle-subtle {
  margin: 8px auto 0;
  color: rgba(7, 148, 85, 0.70);
  font-size: 11px;
  letter-spacing: 0.10em;
}

.rla-report .np-section-seven-section .np-section-seven-value-line {
  border-radius: var(--np-image5-radius-card);
  font-size: clamp(18px, 1.85vw, 24px);
  line-height: 1.24;
}

/* Section 08: centered, calm, one final handoff. */
.rla-report .np-section-seven-section .np-premium-final-handoff,
.rla-report .np-report-final-bridge.np-premium-final-handoff {
  display: block;
  margin-top: clamp(26px, 4vw, 42px);
  padding: clamp(34px, 5vw, 58px);
  border-radius: var(--np-image5-radius-soft);
  border: 1px solid rgba(7, 148, 85, 0.22);
  background: #ffffff;
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.055);
  text-align: center;
}

.rla-report .np-premium-final-handoff .np-final-cta-copy {
  max-width: 740px;
  margin: 0 auto;
  display: grid;
  justify-items: center;
}

.rla-report .np-premium-final-handoff h3 {
  max-width: 740px;
  margin: 10px auto 16px;
  font-size: clamp(38px, 4.8vw, 64px);
  line-height: 0.96;
  letter-spacing: -0.066em;
  text-align: center;
}

.rla-report .np-premium-final-handoff p {
  max-width: 670px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-size: clamp(17px, 1.65vw, 21px);
  line-height: 1.43;
  font-weight: 700;
}

.rla-report .np-premium-final-handoff .np-final-cta-pillars {
  margin: 6px auto 24px;
  color: var(--np-image5-ink);
  font-size: clamp(13px, 1.2vw, 15px);
  line-height: 1.35;
  font-weight: 950;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.rla-report .np-premium-final-handoff .np-cta-button {
  width: min(100%, 500px);
  min-height: 64px;
  margin: 4px auto 0;
  border-radius: 0;
}

.rla-report .np-premium-final-handoff small {
  margin-top: 16px;
  color: var(--np-image5-muted);
  font-size: 14px;
  line-height: 1.42;
  font-weight: 650;
  letter-spacing: 0;
  text-transform: none;
}

/* Responsive calibration. */
@media (max-width: 900px) {
  .rla-report .np-reality-insight-grid,
  .rla-report .np-section-seven-section .np-section-seven-mini-grid {
    grid-template-columns: 1fr 1fr;
  }

  .rla-report .np-section-six-premium .np-system-toggle-summary {
    grid-template-columns: minmax(0, 1fr) 30px;
  }

  .rla-report .np-section-six-premium .np-system-toggle-summary span {
    grid-column: 1 / -1;
  }

  .rla-report .np-section-six-premium .np-system-toggle-card > p {
    margin-left: 0;
    padding-left: clamp(16px, 2.35vw, 24px);
  }
}

@media (max-width: 620px) {
  .rla-report .np-break-accordion-summary {
    grid-template-columns: minmax(0, 1fr) 28px;
  }

  .rla-report .np-break-accordion-icon {
    justify-self: end;
  }

  .rla-report .np-reality-insight-grid,
  .rla-report .np-section-seven-section .np-section-seven-mini-grid {
    grid-template-columns: 1fr;
  }

  .rla-report .np-section-six-premium .np-system-toggle-summary {
    padding: 18px;
  }

  .rla-report .np-section-six-premium .np-system-toggle-summary h3 {
    font-size: clamp(25px, 7vw, 30px);
  }

  .rla-report .np-section-six-premium .np-system-toggle-summary::after {
    width: 28px;
    height: 28px;
    font-size: 16px;
  }

  .rla-report .np-section-six-premium .np-section-six-core,
  .rla-report .np-section-six-premium .np-section-six-moment-card,
  .rla-report .np-section-seven-section .np-section-seven-decision-card,
  .rla-report .np-section-seven-section .np-premium-final-handoff {
    border-radius: 12px;
  }

  .rla-report .np-section-seven-section .np-section-seven-header h3,
  .rla-report .np-section-seven-section .np-premium-final-handoff h3 {
    font-size: clamp(34px, 10vw, 44px);
  }

  .rla-report .np-reality-scroll,
  .rla-report .np-cta-button,
  .rla-report .np-report-final-bridge-cta,
  .rla-report .np-premium-final-handoff .np-cta-button {
    width: 100%;
    min-height: 58px;
    padding-left: 16px;
    padding-right: 16px;
    font-size: 11px;
  }

  .rla-report .np-premium-final-handoff .np-final-cta-pillars {
    font-size: 12px;
    letter-spacing: 0.08em;
  }
}

/* =========================================================
   PATCH 57 — title hierarchy, Section 05 product fit, and patient-count math
   ========================================================= */

/* Section 04: make the top item behave like the true title, not a duplicated card headline. */
.rla-report .np-cost-section .np-cost-title {
  max-width: 940px;
  margin-top: 18px;
  font-size: clamp(44px, 5.4vw, 74px);
  line-height: 0.96;
  letter-spacing: -0.072em;
}

.rla-report .np-cost-section .np-key-insight {
  border-top: 4px solid rgba(14, 165, 193, 0.80);
  border-radius: 14px;
  padding: clamp(26px, 3.4vw, 40px);
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.045);
}

.rla-report .np-cost-section .np-key-insight h3 {
  max-width: 800px;
  font-size: clamp(30px, 3.6vw, 50px);
  line-height: 1.02;
  letter-spacing: -0.058em;
}

.rla-report .np-cost-section .np-section-4-intro-body p {
  max-width: 760px;
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.48;
}

/* Section 05: make the bridge feel like Image 5 product UI, not a soft standalone funnel block. */
.rla-report .np-reality-check {
  width: min(100% - 48px, 1120px);
  margin: clamp(36px, 5vw, 64px) auto;
}

.rla-report .np-reality-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1fr);
  grid-template-areas:
    "header insights"
    "message insights"
    "button insights";
  gap: clamp(22px, 3vw, 38px);
  align-items: start;
  border: 1px solid rgba(37, 99, 235, 0.16);
  border-top: 4px solid #315bff;
  border-radius: 14px;
  padding: clamp(30px, 4vw, 46px);
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.055);
}

.rla-report .np-reality-card .np-section-kicker,
.rla-report .np-reality-title,
.rla-report .np-reality-intro {
  grid-column: 1;
}

.rla-report .np-reality-title {
  margin: 8px 0 14px;
  font-size: clamp(34px, 3.9vw, 52px);
  line-height: 0.98;
  letter-spacing: -0.068em;
  color: var(--np-image5-ink, #07111f);
}

.rla-report .np-reality-intro {
  max-width: 580px;
  color: var(--np-image5-muted, #657286);
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.48;
  font-weight: 720;
}

.rla-report .np-reality-insight-label {
  grid-column: 2;
  margin: 0;
  color: #315bff;
  font-size: 11px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.rla-report .np-reality-insight-grid {
  grid-column: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 22px 0 0;
}

.rla-report .np-reality-insight-card {
  border: 1px solid rgba(37, 99, 235, 0.14);
  border-radius: 10px;
  background: #f8fbff;
  padding: 16px 18px;
  box-shadow: none;
}

.rla-report .np-reality-insight-card span {
  display: block;
  color: var(--np-image5-ink, #07111f);
  font-size: 15px;
  line-height: 1.35;
  font-weight: 850;
  letter-spacing: -0.02em;
}

.rla-report .np-reality-message {
  grid-column: 1;
  max-width: 640px;
  margin: 0;
  color: var(--np-image5-muted, #657286);
  font-size: 16px;
  line-height: 1.45;
  font-weight: 760;
}

.rla-report .np-reality-scroll {
  grid-column: 1;
  width: min(100%, 480px);
  min-height: 62px;
  margin: 4px 0 0;
  border-radius: 0;
  background: var(--np-image5-ink, #07111f);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.14);
}

/* Section 07: keep assessment patient value; adjust protected patient count only. */
.rla-report .np-section-seven-section .np-section-seven-value-card {
  border-radius: 14px;
  border-top: 4px solid rgba(7, 148, 85, 0.72);
}

.rla-report .np-section-seven-section .np-section-seven-value-card p {
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.rla-report .np-section-seven-section .np-value-edit-toggle-subtle {
  color: #079455;
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.rla-report .np-section-seven-section .np-patient-count-selector {
  max-width: 920px;
  margin: 24px auto 28px;
  border-radius: 14px;
  border: 1px solid rgba(7, 148, 85, 0.16);
  background: #f6fffa;
}

.rla-report .np-section-seven-section .np-patient-count-buttons {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.rla-report .np-section-seven-section .np-patient-count-buttons button {
  min-height: 58px;
  border-radius: 0;
  border-color: rgba(7, 148, 85, 0.20);
  background: #ffffff;
  font-size: 22px;
  letter-spacing: -0.03em;
}

.rla-report .np-section-seven-section .np-patient-count-buttons button::after {
  content: " patients";
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.72;
}

.rla-report .np-section-seven-section .np-patient-count-buttons button[data-np-patient-count="1"]::after {
  content: " patient";
}

.rla-report .np-section-seven-section .np-patient-count-buttons button.is-active {
  background: #079455;
  color: #ffffff;
  transform: none;
}

.rla-report .np-protected-count-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px 22px;
  align-items: end;
  padding-top: 6px;
}

.rla-report .np-protected-count-summary span {
  color: var(--np-image5-muted, #657286);
  font-size: 15px;
  line-height: 1.3;
  font-weight: 800;
}

.rla-report .np-protected-count-summary span strong {
  display: inline;
  color: var(--np-image5-ink, #07111f);
  font-size: inherit;
  letter-spacing: 0;
}

.rla-report .np-protected-count-summary b {
  color: #079455;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 0.9;
  font-weight: 950;
  letter-spacing: -0.055em;
  text-align: right;
}

.rla-report .np-protected-count-summary small {
  grid-column: 1 / -1;
  color: var(--np-image5-muted, #657286);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 650;
}

/* Keep the final report handoff centered and Image-5 aligned. */
.rla-report .np-section-seven-section .np-premium-final-handoff {
  text-align: center;
  border-radius: 14px;
  background: #ffffff;
}

.rla-report .np-section-seven-section .np-premium-final-handoff h3,
.rla-report .np-section-seven-section .np-premium-final-handoff p {
  margin-left: auto;
  margin-right: auto;
}

.rla-report .np-section-seven-section .np-premium-final-handoff .np-cta-button {
  border-radius: 0;
  margin-left: auto;
  margin-right: auto;
}

.rla-report .np-section-seven-section .np-premium-final-handoff small {
  text-transform: none;
  letter-spacing: 0;
}

/* Responsive QA for the new product-style bridge and count selector. */
@media (max-width: 980px) {
  .rla-report .np-reality-card {
    grid-template-columns: 1fr;
    grid-template-areas: none;
  }

  .rla-report .np-reality-card .np-section-kicker,
  .rla-report .np-reality-title,
  .rla-report .np-reality-intro,
  .rla-report .np-reality-insight-label,
  .rla-report .np-reality-insight-grid,
  .rla-report .np-reality-message,
  .rla-report .np-reality-scroll {
    grid-column: 1;
  }

  .rla-report .np-reality-insight-grid {
    margin-top: 0;
  }
}

@media (max-width: 620px) {
  .rla-report .np-cost-section .np-cost-title {
    font-size: clamp(38px, 11vw, 48px);
  }

  .rla-report .np-cost-section .np-key-insight h3,
  .rla-report .np-reality-title {
    font-size: clamp(30px, 8.5vw, 38px);
    line-height: 1.02;
  }

  .rla-report .np-reality-check {
    width: min(100% - 24px, 1120px);
  }

  .rla-report .np-reality-card {
    padding: 24px 20px;
  }

  .rla-report .np-section-seven-section .np-patient-count-buttons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rla-report .np-protected-count-summary {
    grid-template-columns: 1fr;
  }

  .rla-report .np-protected-count-summary b {
    text-align: left;
  }
}


/* =========================================================
   PATCH58 — EXECUTIVE SUMMARY, COST WOW, LUXURY RHYTHM
   Scoped to report only. Image 5 design-system alignment.
   ========================================================= */

.rla-report-premium {
  --np-p58-ink: #07111f;
  --np-p58-muted: #526174;
  --np-p58-soft: #f7f9fd;
  --np-p58-card: #ffffff;
  --np-p58-line: #d9e3f0;
  --np-p58-blue: #2b5cff;
  --np-p58-blue-dark: #173ebd;
  --np-p58-green: #10894b;
  --np-p58-green-soft: #edf8f2;
  --np-p58-shadow: 0 18px 48px rgba(15, 35, 80, 0.07);
  color: var(--np-p58-ink);
}

.rla-report-premium .np-report-wrap,
.rla-report-premium .np-cost-wrap,
.rla-report-premium .np-fix-wrap,
.rla-report-premium .np-system-wrap,
.rla-report-premium .np-break-wrap,
.rla-report-premium .np-patient-wrap {
  max-width: 1120px;
}

.rla-report-premium .np-section-kicker,
.rla-report-premium .np-executive-kicker,
.rla-report-premium .np-final-cta-kicker {
  color: var(--np-p58-blue);
  font-size: 11px;
  line-height: 1.1;
  font-weight: 950;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.rla-report-premium .np-report-title,
.rla-report-premium .np-cost-title,
.rla-report-premium .np-fix-title,
.rla-report-premium .np-system-title {
  letter-spacing: -0.055em;
}

.rla-report-premium .np-key-insight,
.rla-report-premium .np-s1-digest-card,
.rla-report-premium .np-cost-diagnosis,
.rla-report-premium .np-cost-simulator,
.rla-report-premium .np-cost-state-comparison,
.rla-report-premium .np-reality-card,
.rla-report-premium .np-section-six-core,
.rla-report-premium .np-section-seven-decision-card,
.rla-report-premium .np-final-cta-card {
  border-radius: 18px !important;
  box-shadow: var(--np-p58-shadow) !important;
}

/* Executive summary artifact */
.rla-report-premium .np-executive-summary-card {
  margin: clamp(22px, 3vw, 34px) 0 clamp(24px, 4vw, 44px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, .78fr);
  gap: 18px;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid var(--np-p58-line);
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
  box-shadow: var(--np-p58-shadow);
}

.rla-report-premium .np-executive-summary-main h2 {
  margin: 10px 0 12px;
  max-width: 660px;
  color: var(--np-p58-ink);
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.rla-report-premium .np-executive-summary-main p,
.rla-report-premium .np-executive-summary-focus p {
  margin: 0;
  max-width: 720px;
  color: var(--np-p58-muted);
  font-size: clamp(16px, 1.45vw, 19px);
  line-height: 1.45;
  font-weight: 650;
}

.rla-report-premium .np-executive-summary-focus {
  border: 1px solid rgba(43,92,255,.16);
  border-radius: 15px;
  background: #ffffff;
  padding: 20px;
}

.rla-report-premium .np-executive-summary-focus span {
  display: block;
  color: var(--np-p58-blue);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.rla-report-premium .np-executive-summary-focus strong {
  display: block;
  color: var(--np-p58-ink);
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 10px;
}

/* Section 04 wow visual */
.rla-report-premium .np-cost-setup-card {
  margin: 18px 0 18px;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid var(--np-p58-line);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: var(--np-p58-shadow);
}

.rla-report-premium .np-cost-setup-card span {
  display: block;
  color: var(--np-p58-blue);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.rla-report-premium .np-cost-setup-card h3 {
  margin: 0 0 12px;
  max-width: 760px;
  color: var(--np-p58-ink);
  font-size: clamp(25px, 3.2vw, 42px);
  line-height: 1;
  letter-spacing: -0.045em;
}

.rla-report-premium .np-section-4-intro-body {
  max-width: 780px;
}

.rla-report-premium .np-section-4-intro-body p {
  margin: 0 0 10px;
  color: var(--np-p58-muted);
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.5;
  font-weight: 650;
}

.rla-report-premium .np-visible-invisible-wow {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr);
  gap: 16px;
  margin: 18px 0 22px;
}

.rla-report-premium .np-loss-column {
  position: relative;
  overflow: hidden;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--np-p58-line);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: var(--np-p58-shadow);
}

.rla-report-premium .np-loss-column::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: var(--np-p58-blue);
  opacity: .95;
}

.rla-report-premium .np-loss-invisible::before {
  background: var(--np-p58-green);
}

.rla-report-premium .np-loss-column span {
  display: block;
  color: var(--np-p58-blue);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.rla-report-premium .np-loss-invisible span {
  color: var(--np-p58-green);
}

.rla-report-premium .np-loss-column h3 {
  margin: 0 0 18px;
  color: var(--np-p58-ink);
  font-size: clamp(22px, 2.7vw, 36px);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.rla-report-premium .np-loss-column ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.rla-report-premium .np-loss-column li {
  padding: 12px 14px;
  border: 1px solid #e3eaf5;
  border-radius: 12px;
  background: #f8fbff;
  color: var(--np-p58-ink);
  font-weight: 850;
  font-size: 14px;
}

.rla-report-premium .np-loss-invisible li {
  background: var(--np-p58-green-soft);
  border-color: rgba(16,137,75,.18);
}

/* Section 05 insight strip */
.rla-report-premium .np-reality-card {
  background: #ffffff !important;
  border: 1px solid var(--np-p58-line) !important;
  padding: clamp(24px, 4vw, 40px) !important;
}

.rla-report-premium .np-reality-title {
  max-width: 760px;
  font-size: clamp(30px, 4vw, 52px) !important;
  line-height: .98 !important;
  letter-spacing: -0.055em !important;
}

.rla-report-premium .np-reality-intro {
  max-width: 720px;
  color: var(--np-p58-muted) !important;
  font-size: clamp(16px, 1.6vw, 19px) !important;
  font-weight: 650 !important;
  line-height: 1.5 !important;
}

.rla-report-premium .np-reality-insight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0 20px;
}

.rla-report-premium .np-reality-insight-card {
  min-height: 0 !important;
  padding: 18px !important;
  border-radius: 14px !important;
  border: 1px solid var(--np-p58-line) !important;
  background: #f8fbff !important;
  box-shadow: none !important;
}

.rla-report-premium .np-reality-insight-card b {
  display: block;
  color: var(--np-p58-blue);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .14em;
  margin-bottom: 12px;
}

.rla-report-premium .np-reality-insight-card span {
  color: var(--np-p58-ink);
  font-size: 15px !important;
  line-height: 1.38;
  font-weight: 760;
}

.rla-report-premium .np-reality-scroll,
.rla-report-premium .np-cta-button,
.rla-report-premium .np-report-final-bridge-cta {
  min-height: 60px;
  border-radius: 14px !important;
  font-size: 13px !important;
  font-weight: 950 !important;
  letter-spacing: .12em !important;
  text-transform: uppercase;
  box-shadow: 0 16px 35px rgba(15, 35, 80, .12) !important;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.rla-report-premium .np-reality-scroll:hover,
.rla-report-premium .np-cta-button:hover,
.rla-report-premium .np-report-final-bridge-cta:hover,
.rla-report-premium .np-reality-scroll:focus-visible,
.rla-report-premium .np-cta-button:focus-visible,
.rla-report-premium .np-report-final-bridge-cta:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 20px 44px rgba(15, 35, 80, .16) !important;
}

/* Section 06 restraint */
.rla-report-premium .np-section-six-core h3 {
  font-size: clamp(30px, 3.8vw, 52px) !important;
  line-height: 1 !important;
}

.rla-report-premium .np-system-toggle {
  border-radius: 16px !important;
  border: 1px solid var(--np-p58-line) !important;
  box-shadow: 0 12px 30px rgba(15, 35, 80, .055) !important;
}

.rla-report-premium .np-system-toggle summary {
  padding: clamp(18px, 2.6vw, 28px) !important;
}

.rla-report-premium .np-system-toggle-title {
  font-size: clamp(30px, 3.1vw, 40px) !important;
  line-height: 1.03 !important;
  letter-spacing: -0.05em !important;
  min-width: 0;
}

.rla-report-premium .np-system-toggle-label {
  font-size: 11px !important;
  letter-spacing: .14em !important;
}

.rla-report-premium .np-system-toggle-icon {
  width: 34px !important;
  height: 34px !important;
  border-radius: 10px !important;
  font-size: 20px !important;
  background: #ffffff !important;
  color: var(--np-p58-blue) !important;
  border: 1px solid rgba(43,92,255,.25) !important;
  box-shadow: none !important;
}

.rla-report-premium .np-system-toggle[open] .np-system-toggle-icon {
  background: var(--np-p58-blue) !important;
  color: #ffffff !important;
}

.rla-report-premium .np-system-toggle-body {
  padding-bottom: clamp(18px, 2.6vw, 28px) !important;
}

.rla-report-premium .np-system-diagnosed-card,
.rla-report-premium .np-system-diagnosed-moment {
  border-radius: 18px !important;
  box-shadow: var(--np-p58-shadow) !important;
}

.rla-report-premium #npSystemDiagnosedMoment {
  font-size: clamp(28px, 4vw, 52px) !important;
  line-height: 1 !important;
}

/* Section 07 protected opportunity */
.rla-report-premium .np-section-seven-decision-card {
  background: #ffffff !important;
  border: 1px solid var(--np-p58-line) !important;
  padding: clamp(24px, 4vw, 44px) !important;
}

.rla-report-premium .np-section-seven-header h3 {
  font-size: clamp(34px, 4.5vw, 62px) !important;
  line-height: .96 !important;
  letter-spacing: -0.062em !important;
}

.rla-report-premium .np-section-seven-mini-card {
  border-radius: 14px !important;
  border: 1px solid var(--np-p58-line) !important;
  background: #f8fbff !important;
  box-shadow: none !important;
}

.rla-report-premium .np-protected-opportunity-module {
  margin: clamp(22px, 3vw, 34px) 0;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid rgba(16,137,75,.22);
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f6fbf8 100%);
}

.rla-report-premium .np-protected-opportunity-copy {
  max-width: 760px;
  margin-bottom: 18px;
}

.rla-report-premium .np-protected-opportunity-copy span {
  display: block;
  color: var(--np-p58-green);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 9px;
}

.rla-report-premium .np-protected-opportunity-copy h4 {
  margin: 0 0 8px;
  color: var(--np-p58-ink);
  font-size: clamp(22px, 2.8vw, 34px);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.rla-report-premium .np-protected-opportunity-copy p {
  margin: 0;
  color: var(--np-p58-muted);
  font-weight: 650;
  line-height: 1.45;
}

.rla-report-premium .np-protected-opportunity-grid {
  display: grid;
  grid-template-columns: minmax(180px, .75fr) minmax(260px, 1fr) minmax(220px, .85fr);
  gap: 12px;
  align-items: stretch;
}

.rla-report-premium .np-protected-metric,
.rla-report-premium .np-protected-count-control,
.rla-report-premium .np-protected-count-summary {
  padding: 18px;
  border: 1px solid var(--np-p58-line);
  border-radius: 14px;
  background: #ffffff;
}

.rla-report-premium .np-protected-metric span,
.rla-report-premium .np-protected-count-control span,
.rla-report-premium .np-protected-count-summary span {
  display: block;
  color: var(--np-p58-muted);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.rla-report-premium .np-protected-metric strong,
.rla-report-premium .np-protected-count-summary b {
  display: block;
  color: var(--np-p58-ink);
  font-size: clamp(25px, 3vw, 42px);
  line-height: 1;
  letter-spacing: -0.045em;
}

.rla-report-premium .np-protected-count-summary b {
  color: var(--np-p58-green);
}

.rla-report-premium .np-protected-metric small,
.rla-report-premium .np-protected-count-summary small {
  display: block;
  margin-top: 8px;
  color: var(--np-p58-muted);
  font-size: 12px;
  font-weight: 700;
}

.rla-report-premium .np-patient-count-buttons {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.rla-report-premium .np-patient-count-buttons button {
  min-height: 48px;
  border: 1px solid var(--np-p58-line);
  border-radius: 12px;
  background: #f8fbff;
  color: var(--np-p58-ink);
  font-weight: 950;
  font-size: 15px;
}

.rla-report-premium .np-patient-count-buttons button.is-active,
.rla-report-premium .np-patient-count-buttons button[aria-pressed="true"] {
  background: var(--np-p58-green);
  border-color: var(--np-p58-green);
  color: #ffffff;
}

/* Section 08 final handoff */
.rla-report-premium .np-premium-final-handoff {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%) !important;
  border: 1px solid var(--np-p58-line) !important;
  padding: clamp(28px, 5vw, 56px) !important;
}

.rla-report-premium .np-final-cta-copy {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.rla-report-premium .np-final-cta-copy h3 {
  max-width: 760px;
  margin-left: auto !important;
  margin-right: auto !important;
  font-size: clamp(38px, 5.2vw, 72px) !important;
  line-height: .95 !important;
  letter-spacing: -0.065em !important;
}

.rla-report-premium .np-final-cta-copy p {
  margin-left: auto !important;
  margin-right: auto !important;
}

.rla-report-premium .np-next-step-strip {
  margin: 22px auto 24px;
  padding: 16px;
  border: 1px solid var(--np-p58-line);
  border-radius: 14px;
  background: #ffffff;
}

.rla-report-premium .np-next-step-strip > span {
  display: block;
  color: var(--np-p58-blue);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.rla-report-premium .np-next-step-strip > div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.rla-report-premium .np-next-step-strip b {
  display: block;
  padding: 10px;
  border-radius: 10px;
  background: #f8fbff;
  color: var(--np-p58-ink);
  font-size: 13px;
  line-height: 1.25;
}

.rla-report-premium .np-report-final-bridge-cta {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: min(100%, 500px);
  min-height: 64px;
  background: var(--np-p58-green) !important;
  color: #fff !important;
  text-decoration: none !important;
}

.rla-report-premium .np-final-cta-copy small {
  display: block;
  margin-top: 16px;
  color: var(--np-p58-muted) !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

/* Responsive QA */
@media (max-width: 980px) {
  .rla-report-premium .np-executive-summary-card,
  .rla-report-premium .np-visible-invisible-wow,
  .rla-report-premium .np-protected-opportunity-grid {
    grid-template-columns: 1fr;
  }

  .rla-report-premium .np-reality-insight-grid,
  .rla-report-premium .np-next-step-strip > div {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .rla-report-premium .np-executive-summary-card,
  .rla-report-premium .np-cost-setup-card,
  .rla-report-premium .np-loss-column,
  .rla-report-premium .np-protected-opportunity-module,
  .rla-report-premium .np-premium-final-handoff {
    border-radius: 16px !important;
    padding: 20px !important;
  }

  .rla-report-premium .np-cost-title,
  .rla-report-premium .np-fix-title,
  .rla-report-premium .np-system-title,
  .rla-report-premium .np-reality-title {
    font-size: 34px !important;
    line-height: 1 !important;
  }

  .rla-report-premium .np-system-toggle-title {
    font-size: 27px !important;
  }

  .rla-report-premium .np-loss-column ul,
  .rla-report-premium .np-patient-count-buttons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rla-report-premium .np-protected-metric strong,
  .rla-report-premium .np-protected-count-summary b {
    font-size: 32px;
  }

  .rla-report-premium .np-final-cta-copy h3 {
    font-size: 42px !important;
  }

  .rla-report-premium .np-report-final-bridge-cta,
  .rla-report-premium .np-reality-scroll {
    width: 100% !important;
    min-height: 58px !important;
  }
}



/* PATCH59 — Section 07 amount-first patient-count layout */
.rla-report-premium .np-protected-opportunity-module-clean {
  max-width: 940px;
  margin: clamp(24px, 3vw, 38px) auto !important;
  padding: clamp(24px, 4vw, 42px) !important;
  background: #ffffff !important;
  border: 1px solid rgba(16,137,75,.20) !important;
  border-radius: 18px !important;
  box-shadow: 0 22px 70px rgba(11, 18, 32, .045) !important;
}

.rla-report-premium .np-protected-opportunity-module-clean .np-protected-opportunity-copy {
  max-width: 760px;
  margin: 0 auto 22px !important;
  text-align: center;
}

.rla-report-premium .np-protected-opportunity-module-clean .np-protected-opportunity-copy h4 {
  font-size: clamp(28px, 4vw, 48px) !important;
  line-height: .98 !important;
  letter-spacing: -.058em !important;
  margin-bottom: 10px !important;
}

.rla-report-premium .np-protected-opportunity-module-clean .np-protected-opportunity-copy p {
  max-width: 680px;
  margin-left: auto !important;
  margin-right: auto !important;
  font-size: clamp(17px, 1.5vw, 21px);
}

.rla-report-premium .np-protected-opportunity-stack {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 14px;
  max-width: 780px;
  margin: 0 auto;
}

.rla-report-premium .np-protected-opportunity-module-clean .np-protected-metric,
.rla-report-premium .np-protected-opportunity-module-clean .np-protected-count-control,
.rla-report-premium .np-protected-opportunity-module-clean .np-protected-count-summary {
  border: 1px solid var(--np-p58-line) !important;
  border-radius: 14px !important;
  background: #f8fbff !important;
  box-shadow: none !important;
}

.rla-report-premium .np-protected-value-card,
.rla-report-premium .np-protected-total-card {
  text-align: center;
}

.rla-report-premium .np-protected-value-card {
  padding: 22px 18px !important;
}

.rla-report-premium .np-protected-value-card span,
.rla-report-premium .np-protected-count-row > span,
.rla-report-premium .np-protected-total-card span {
  color: var(--np-p58-blue) !important;
  font-size: 11px !important;
  font-weight: 950 !important;
  letter-spacing: .14em !important;
  text-transform: uppercase !important;
  margin-bottom: 10px !important;
}

.rla-report-premium .np-protected-value-card strong {
  color: var(--np-p58-ink) !important;
  font-size: clamp(54px, 8vw, 86px) !important;
  line-height: .9 !important;
  letter-spacing: -.065em !important;
}

.rla-report-premium .np-protected-count-row {
  padding: 18px !important;
}

.rla-report-premium .np-protected-count-row > span {
  display: block;
  text-align: center;
}

.rla-report-premium .np-protected-opportunity-module-clean .np-patient-count-buttons {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 10px !important;
}

.rla-report-premium .np-protected-opportunity-module-clean .np-patient-count-buttons button {
  min-height: 62px !important;
  border: 1px solid var(--np-p58-line) !important;
  border-radius: 10px !important;
  background: #ffffff !important;
  color: var(--np-p58-ink) !important;
  font-size: clamp(22px, 3vw, 32px) !important;
  font-weight: 950 !important;
  letter-spacing: -.035em !important;
}

.rla-report-premium .np-protected-opportunity-module-clean .np-patient-count-buttons button::after {
  content: " patients";
  display: block;
  margin-top: 3px;
  color: var(--np-p58-muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .10em;
  text-transform: uppercase;
}

.rla-report-premium .np-protected-opportunity-module-clean .np-patient-count-buttons button[data-np-patient-count="1"]::after {
  content: " patient";
}

.rla-report-premium .np-protected-opportunity-module-clean .np-patient-count-buttons button.is-active,
.rla-report-premium .np-protected-opportunity-module-clean .np-patient-count-buttons button[aria-pressed="true"] {
  background: var(--np-p58-green) !important;
  border-color: var(--np-p58-green) !important;
  color: #ffffff !important;
}

.rla-report-premium .np-protected-opportunity-module-clean .np-patient-count-buttons button.is-active::after,
.rla-report-premium .np-protected-opportunity-module-clean .np-patient-count-buttons button[aria-pressed="true"]::after {
  color: rgba(255,255,255,.82) !important;
}

.rla-report-premium .np-protected-total-card {
  padding: 24px 18px !important;
  background: linear-gradient(180deg, #ffffff 0%, #f3fbf6 100%) !important;
  border-color: rgba(16,137,75,.24) !important;
}

.rla-report-premium .np-protected-total-card span {
  color: var(--np-p58-muted) !important;
}

.rla-report-premium .np-protected-total-card b {
  color: var(--np-p58-green) !important;
  font-size: clamp(52px, 8vw, 84px) !important;
  line-height: .9 !important;
  letter-spacing: -.07em !important;
}

.rla-report-premium .np-protected-total-card small {
  color: var(--np-p58-muted) !important;
  font-size: 13px !important;
  font-weight: 750 !important;
  margin-top: 10px !important;
}

.rla-report-premium .np-protected-opportunity-note {
  max-width: 680px;
  margin: 18px auto 0 !important;
  color: var(--np-p58-muted);
  text-align: center;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.45;
}

@media (max-width: 680px) {
  .rla-report-premium .np-protected-opportunity-module-clean .np-patient-count-buttons {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .rla-report-premium .np-protected-value-card strong,
  .rla-report-premium .np-protected-total-card b {
    font-size: 52px !important;
  }
}


/* PATCH 62: accordion focus + Section 04 editorial hierarchy */
.rla-report .np-section-six-premium .np-system-toggle-list:has(.np-system-toggle-card[open]) .np-system-toggle-card:not([open]) {
  opacity: 0.76;
  border-color: rgba(47, 102, 255, 0.08);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.025);
}

.rla-report .np-section-six-premium .np-system-toggle-list:has(.np-system-toggle-card[open]) .np-system-toggle-card:not([open]) .np-system-toggle-summary::after {
  border-color: rgba(47, 102, 255, 0.22);
  background: rgba(255, 255, 255, 0.92);
  color: #2563eb;
  box-shadow: none;
}

.rla-report .np-section-six-premium .np-system-toggle-card {
  transition: opacity 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.rla-report .np-section-six-premium .np-system-toggle-card[open] {
  opacity: 1;
  border-color: rgba(37, 99, 235, 0.34);
  background: #ffffff;
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.055);
}

.rla-report .np-section-six-premium .np-system-toggle-summary::after {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(37, 99, 235, 0.32);
  background: #ffffff;
  color: #2563eb;
  font-size: 20px;
  box-shadow: none;
  transform: none;
}

.rla-report .np-section-six-premium .np-system-toggle-card[open] .np-system-toggle-summary::after {
  content: "−";
  border-color: #2563eb;
  background: #2563eb;
  color: #ffffff;
  transform: none;
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.18);
}

.rla-report-premium .np-section-4-intro-body {
  display: grid;
  gap: 12px;
}

.rla-report-premium .np-section-4-intro-body p {
  margin: 0;
  max-width: 760px;
  font-size: clamp(16px, 1.45vw, 19px);
  line-height: 1.55;
  font-weight: 500;
  color: #475569;
}

.rla-report-premium .np-section-4-intro-body .np-cost-copy-turn {
  max-width: 820px;
  color: #07111f;
  font-weight: 850;
  font-size: clamp(18px, 1.8vw, 23px);
  line-height: 1.34;
  letter-spacing: -0.018em;
}

.rla-report-premium .np-section-4-intro-body .np-cost-copy-support,
.rla-report-premium .np-section-4-intro-body .np-cost-copy-quiet {
  color: #64748b;
  font-weight: 500;
}

.rla-report-premium .np-section-4-intro-body .np-cost-copy-callout {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  margin-top: 4px;
  padding: 14px 16px;
  border: 1px solid rgba(16, 137, 75, 0.18);
  border-left: 4px solid var(--np-p58-green, #10894b);
  border-radius: 14px;
  background: rgba(238, 252, 244, 0.72);
  color: #07111f;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: -0.015em;
}

@media (max-width: 760px) {
  .rla-report .np-section-six-premium .np-system-toggle-card:not([open]) {
    opacity: 1;
  }

  .rla-report .np-section-six-premium .np-system-toggle-list:has(.np-system-toggle-card[open]) .np-system-toggle-card:not([open]) {
    opacity: 0.82;
  }

  .rla-report-premium .np-section-4-intro-body .np-cost-copy-callout {
    width: 100%;
  }
}


/* PATCH63 — Section 07 estimate cleanup + Section 08 diagnosed leak label */
.rla-report-premium .np-protected-opportunity-module-clean .np-protected-total-card,
.rla-report .np-protected-count-summary {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  text-align: center !important;
  padding: 28px 18px !important;
}

.rla-report-premium .np-protected-total-card .np-protected-total-eyebrow {
  order: 1;
  margin: 0 0 2px !important;
  color: var(--np-p58-blue, #2f66ff) !important;
  font-size: 11px !important;
  font-weight: 950 !important;
  letter-spacing: .14em !important;
  line-height: 1.2 !important;
  text-transform: uppercase !important;
}

.rla-report-premium .np-protected-total-card b,
.rla-report .np-protected-count-summary b {
  order: 2;
  width: 100% !important;
  text-align: center !important;
}

.rla-report-premium .np-protected-total-card .np-protected-patient-count-label,
.rla-report .np-protected-count-summary .np-protected-patient-count-label {
  order: 3;
  display: block !important;
  margin: 0 !important;
  color: var(--np-p58-ink, #07111f) !important;
  font-size: clamp(14px, 1.8vw, 18px) !important;
  font-weight: 900 !important;
  letter-spacing: .02em !important;
  line-height: 1.25 !important;
  text-align: center !important;
  text-transform: uppercase !important;
}

.rla-report-premium .np-protected-opportunity-note {
  max-width: 760px;
  color: var(--np-p58-muted, #657286) !important;
  font-size: 14px !important;
  font-weight: 650 !important;
  line-height: 1.48 !important;
}

.rla-report .np-final-cta-leak-label,
.rla-report-premium .np-final-cta-leak-label,
.np-cta-section .np-final-cta-card .np-final-cta-leak-label {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  width: auto !important;
  max-width: min(100%, 680px) !important;
  margin: 0 auto 22px !important;
  padding: 9px 14px !important;
  border: 1px solid rgba(217, 45, 32, 0.20) !important;
  border-radius: 999px !important;
  background: rgba(254, 242, 242, 0.78) !important;
  color: #b42318 !important;
  font-size: clamp(12px, 1.4vw, 14px) !important;
  font-weight: 900 !important;
  line-height: 1.2 !important;
  letter-spacing: .10em !important;
  text-transform: uppercase !important;
}

.rla-report .np-final-cta-leak-label strong,
.rla-report-premium .np-final-cta-leak-label strong,
.np-cta-section .np-final-cta-card .np-final-cta-leak-label strong {
  color: #d92d20 !important;
  font-weight: 950 !important;
}

@media (max-width: 680px) {
  .rla-report-premium .np-protected-total-card .np-protected-total-eyebrow,
  .rla-report .np-final-cta-leak-label,
  .rla-report-premium .np-final-cta-leak-label,
  .np-cta-section .np-final-cta-card .np-final-cta-leak-label {
    letter-spacing: .08em !important;
  }

  .rla-report-premium .np-protected-total-card .np-protected-patient-count-label,
  .rla-report .np-protected-count-summary .np-protected-patient-count-label {
    font-size: 13px !important;
  }
}


/* PATCH64 — report visual cleanup: red loss states, Section 05 composition, spacing rhythm */
.rla-report,
.rla-report-premium {
  --np-loss-red: #b42318;
  --np-loss-red-deep: #7a271a;
  --np-loss-red-soft: #fff3f1;
  --np-loss-red-line: rgba(180, 35, 24, 0.22);
  --np-loss-red-line-strong: rgba(180, 35, 24, 0.42);
}

/* Red should mean loss / hidden cost, not success. */
.rla-report-premium .np-section-4-intro-body .np-cost-copy-callout {
  border-color: var(--np-loss-red-line) !important;
  border-left-color: var(--np-loss-red, #b42318) !important;
  background: linear-gradient(180deg, rgba(255, 243, 241, 0.92), rgba(255, 248, 247, 0.98)) !important;
  color: var(--np-loss-red-deep, #7a271a) !important;
  box-shadow: 0 14px 34px rgba(180, 35, 24, 0.055) !important;
}

.rla-report-premium .np-loss-invisible {
  border-color: var(--np-loss-red-line) !important;
  background:
    radial-gradient(circle at top right, rgba(180, 35, 24, 0.055), transparent 38%),
    #ffffff !important;
}

.rla-report-premium .np-loss-invisible::before {
  background: var(--np-loss-red, #b42318) !important;
}

.rla-report-premium .np-loss-invisible span {
  color: var(--np-loss-red, #b42318) !important;
}

.rla-report-premium .np-loss-invisible li {
  background: rgba(255, 243, 241, 0.86) !important;
  border-color: var(--np-loss-red-line) !important;
  color: var(--np-p58-ink, #07111f) !important;
}

/* Normalize the later report rhythm without touching the guided rail or logic. */
.rla-report .np-cost-section,
.rla-report .np-fix-section,
.rla-report .np-section-six-premium,
.rla-report .np-section-seven-section {
  padding-top: clamp(54px, 6.2vw, 82px) !important;
  padding-bottom: clamp(58px, 6.4vw, 86px) !important;
}

.rla-report .np-cost-wrap,
.rla-report .np-fix-wrap,
.rla-report .np-system-wrap {
  display: grid;
  gap: clamp(22px, 3vw, 34px);
}

.rla-report .np-cost-section .np-section-kicker,
.rla-report .np-fix-section .np-section-kicker,
.rla-report .np-section-six-premium .np-section-kicker,
.rla-report .np-section-seven-section .np-section-kicker {
  margin-bottom: clamp(8px, 1vw, 12px);
}

.rla-report .np-cost-section .np-cost-title,
.rla-report .np-fix-section .np-fix-title,
.rla-report .np-section-six-premium .np-system-title,
.rla-report .np-section-seven-section .np-system-title {
  margin-bottom: clamp(14px, 2vw, 22px) !important;
}

.rla-report .np-visible-invisible-wow,
.rla-report-premium .np-visible-invisible-wow {
  margin-top: clamp(22px, 3vw, 34px) !important;
  margin-bottom: clamp(24px, 3.2vw, 38px) !important;
}

.rla-report .np-reality-check {
  width: min(1120px, calc(100% - 40px));
  margin: clamp(42px, 5.5vw, 72px) auto clamp(52px, 6vw, 78px) !important;
}

/* Rebuild the Section 05 bridge into one cohesive premium editorial module. */
.rla-report .np-reality-card,
.rla-report-premium .np-reality-card {
  display: block !important;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--np-image5-line, #d9e3f3) !important;
  border-top: 4px solid var(--np-image5-blue, #2f66ff) !important;
  border-radius: 26px !important;
  padding: clamp(30px, 4.6vw, 54px) !important;
  background:
    radial-gradient(circle at top right, rgba(47, 102, 255, 0.055), transparent 34%),
    #ffffff !important;
  box-shadow: 0 20px 58px rgba(15, 23, 42, 0.06) !important;
}

.rla-report .np-reality-title,
.rla-report-premium .np-reality-title {
  max-width: 820px !important;
  margin: 10px 0 16px !important;
  color: var(--np-image5-ink, #07111f) !important;
  font-size: clamp(34px, 4.6vw, 62px) !important;
  line-height: .96 !important;
  letter-spacing: -.064em !important;
}

.rla-report .np-reality-intro,
.rla-report-premium .np-reality-intro {
  max-width: 720px !important;
  margin: 0 !important;
  color: var(--np-image5-muted, #657286) !important;
  font-size: clamp(16px, 1.45vw, 20px) !important;
  line-height: 1.54 !important;
  font-weight: 650 !important;
}

.rla-report .np-reality-insight-label,
.rla-report-premium .np-reality-insight-label {
  display: inline-flex !important;
  width: auto !important;
  margin: clamp(26px, 3.5vw, 42px) 0 14px !important;
  color: var(--np-image5-blue, #2f66ff) !important;
  font-size: 11px !important;
  line-height: 1.1 !important;
  font-weight: 950 !important;
  letter-spacing: .16em !important;
  text-align: left !important;
  text-transform: uppercase !important;
}

.rla-report .np-reality-insight-grid,
.rla-report-premium .np-reality-insight-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: clamp(12px, 1.6vw, 18px) !important;
  margin: 0 0 clamp(22px, 3vw, 34px) !important;
}

.rla-report .np-reality-insight-card,
.rla-report-premium .np-reality-insight-card {
  min-height: 150px !important;
  padding: clamp(18px, 2.2vw, 24px) !important;
  border: 1px solid var(--np-image5-line, #d9e3f3) !important;
  border-radius: 16px !important;
  background: #f8fbff !important;
  box-shadow: none !important;
}

.rla-report .np-reality-insight-card b,
.rla-report-premium .np-reality-insight-card b {
  display: block !important;
  margin: 0 0 14px !important;
  color: var(--np-image5-blue, #2f66ff) !important;
  font-size: 12px !important;
  font-weight: 950 !important;
  letter-spacing: .16em !important;
}

.rla-report .np-reality-insight-card span,
.rla-report-premium .np-reality-insight-card span {
  display: block !important;
  color: var(--np-image5-ink, #07111f) !important;
  font-size: clamp(15px, 1.25vw, 18px) !important;
  line-height: 1.35 !important;
  font-weight: 800 !important;
}

.rla-report .np-reality-message,
.rla-report-premium .np-reality-message {
  max-width: 760px !important;
  margin: 0 0 clamp(18px, 2.4vw, 26px) !important;
  padding: 0 0 0 16px !important;
  border-left: 3px solid var(--np-image5-blue, #2f66ff) !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: var(--np-image5-muted, #657286) !important;
  font-size: clamp(15px, 1.25vw, 18px) !important;
  line-height: 1.52 !important;
  font-weight: 720 !important;
}

.rla-report .np-reality-scroll,
.rla-report-premium .np-reality-scroll {
  border-radius: 12px !important;
  padding: 18px 26px !important;
  background: var(--np-image5-ink, #07111f) !important;
  box-shadow: 0 16px 34px rgba(7, 17, 31, 0.16) !important;
}

/* Section 07: patient value is an input, not the hero output. */
.rla-report-premium .np-protected-value-card {
  padding: 20px 18px !important;
}

.rla-report-premium .np-protected-value-card strong {
  font-size: clamp(42px, 5.8vw, 64px) !important;
  line-height: .92 !important;
  letter-spacing: -.062em !important;
}

.rla-report-premium .np-protected-total-card b,
.rla-report .np-protected-count-summary b {
  font-size: clamp(54px, 8.4vw, 88px) !important;
  line-height: .9 !important;
}

@media (max-width: 900px) {
  .rla-report .np-reality-insight-grid,
  .rla-report-premium .np-reality-insight-grid {
    grid-template-columns: 1fr !important;
  }

  .rla-report .np-reality-insight-card,
  .rla-report-premium .np-reality-insight-card {
    min-height: auto !important;
  }
}

@media (max-width: 760px) {
  .rla-report .np-cost-section,
  .rla-report .np-fix-section,
  .rla-report .np-section-six-premium,
  .rla-report .np-section-seven-section {
    padding-top: 46px !important;
    padding-bottom: 54px !important;
  }

  .rla-report .np-reality-check {
    width: min(100% - 32px, 1120px);
    margin-top: 36px !important;
    margin-bottom: 48px !important;
  }

  .rla-report .np-reality-card,
  .rla-report-premium .np-reality-card {
    padding: 26px 20px !important;
  }

  .rla-report .np-reality-title,
  .rla-report-premium .np-reality-title {
    font-size: clamp(32px, 11vw, 46px) !important;
  }

  .rla-report-premium .np-protected-value-card strong {
    font-size: 44px !important;
  }

  .rla-report-premium .np-protected-total-card b,
  .rla-report .np-protected-count-summary b {
    font-size: 56px !important;
  }
}

/* PATCH65 — remove report rail and keep diagnosed leak label compact */
.rla-report .np-report-rail,
.rla-report-premium .np-report-rail {
  display: none !important;
}

.rla-report .np-final-cta-leak-label,
.rla-report-premium .np-final-cta-leak-label,
.np-cta-section .np-final-cta-card .np-final-cta-leak-label {
  white-space: nowrap !important;
}

@media (max-width: 520px) {
  .rla-report .np-final-cta-leak-label,
  .rla-report-premium .np-final-cta-leak-label,
  .np-cta-section .np-final-cta-card .np-final-cta-leak-label {
    white-space: normal !important;
  }
}


/* PATCH66 — diagnosed leak visibility, red loss states, green protection rhythm */
:root {
  --np-loss-red: #b42318;
  --np-loss-red-deep: #8f1d17;
  --np-loss-red-soft: #fff3f0;
  --np-loss-red-border: rgba(180, 35, 24, 0.26);
  --np-protect-green: #118847;
  --np-protect-green-deep: #047857;
  --np-protect-green-soft: #effdf5;
  --np-protect-green-border: rgba(17, 136, 71, 0.24);
}

.rla-report .np-report-lede-card {
  border-color: rgba(180, 35, 24, 0.16);
  background:
    radial-gradient(circle at top right, rgba(180, 35, 24, 0.045), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.rla-report .np-report-lede-card::before {
  background: var(--np-loss-red);
}

.rla-report .np-top-diagnosed-leak {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 14px;
  padding: 9px 14px;
  border: 1px solid var(--np-loss-red-border);
  border-radius: 999px;
  background: var(--np-loss-red-soft);
  color: var(--np-loss-red);
  font-size: clamp(20px, 2.5vw, 34px);
  line-height: 1;
  letter-spacing: -0.035em;
  font-weight: 950;
}

.rla-report .np-report-lede-card #npKeyInsight1Headline {
  margin-top: 0;
}


.rla-report .np-top-leak-definition .np-primary-beat-line {
  display: block;
  margin: 0 0 0.78em;
}

.rla-report .np-top-leak-definition .np-primary-beat-line:last-child {
  margin-bottom: 0;
}

/* Red = loss / hidden patient / never counted */
.rla-report .np-counted-row-unseen {
  margin-inline: -18px;
  padding-inline: 18px;
  border-radius: 20px;
  background: linear-gradient(90deg, rgba(180, 35, 24, 0.06), rgba(180, 35, 24, 0.018));
  border-bottom-color: rgba(180, 35, 24, 0.18);
}

.rla-report .np-counted-row-unseen span,
.rla-report .np-counted-row-unseen strong {
  color: var(--np-loss-red);
}

.rla-report .np-path-step-final,
.rla-report .np-path-step-final.is-active {
  border-color: var(--np-loss-red-border) !important;
  background:
    linear-gradient(180deg, #b42318 0%, #8f1d17 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 18px 38px rgba(180, 35, 24, 0.18);
}

.rla-report .np-path-step-final:hover,
.rla-report .np-path-step-final:focus-visible {
  border-color: rgba(180, 35, 24, 0.44) !important;
  box-shadow: 0 20px 42px rgba(180, 35, 24, 0.22);
}

.rla-report .np-diagnosis-copy {
  border-left-color: var(--np-loss-red);
  background:
    linear-gradient(90deg, rgba(180, 35, 24, 0.045), #ffffff 34%);
}

.rla-report .np-diagnosis-copy .np-diagnosis-leak-name {
  color: var(--np-loss-red);
}

/* Tune break point hero without rewriting the idea */
.rla-report #npKeyInsight3Headline {
  max-width: 880px;
  font-size: clamp(36px, 5.2vw, 76px);
  line-height: 0.96;
  letter-spacing: -0.067em;
}

.rla-report #npKeyInsight3Body {
  max-width: 760px;
}

/* Section 05 — protection rhythm, less jumpy, no mid-report CTA */
.rla-report .np-fix-section {
  background:
    radial-gradient(circle at top right, rgba(17, 136, 71, 0.08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f6fbf8 100%);
}

.rla-report .np-fix-title {
  max-width: 1050px;
  margin-bottom: clamp(28px, 4vw, 44px);
}

.rla-report .np-fix-section .np-section-kicker,
.rla-report .np-fix-section .np-visual-kicker {
  color: var(--np-protect-green-deep);
}

.rla-report .np-fix-section .np-key-insight-green,
.rla-report .np-fix-section .np-reality-check {
  border-color: var(--np-protect-green-border) !important;
  background:
    radial-gradient(circle at top right, rgba(17, 136, 71, 0.065), transparent 36%),
    linear-gradient(180deg, #ffffff 0%, #f4fbf7 100%) !important;
}

.rla-report .np-fix-section .np-key-insight-green::before,
.rla-report .np-fix-section .np-reality-check::before {
  background: var(--np-protect-green) !important;
}

.rla-report .np-first-fix-contrast {
  margin-top: clamp(28px, 4vw, 42px);
  margin-bottom: clamp(28px, 4vw, 44px);
}

.rla-report .np-reality-check {
  margin-top: clamp(28px, 4vw, 44px) !important;
}

.rla-report .np-reality-insight-grid {
  margin-top: clamp(18px, 2.4vw, 28px) !important;
}

.rla-report .np-reality-message {
  margin-top: clamp(24px, 3vw, 34px) !important;
  margin-bottom: 0 !important;
  border-left-color: var(--np-protect-green) !important;
}

.rla-report .np-reality-scroll,
.rla-report #npRealityScroll {
  display: none !important;
}

/* Section 07 — green protected opportunity system */
.rla-report .np-section-seven-section,
.rla-report .np-premium-close-section {
  background:
    radial-gradient(circle at top right, rgba(17, 136, 71, 0.08), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f3fbf7 100%);
}

.rla-report .np-section-seven-decision-card {
  border-color: var(--np-protect-green-border);
  background:
    radial-gradient(circle at top right, rgba(17, 136, 71, 0.055), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f8fffb 100%);
}

.rla-report .np-section-seven-decision-card::before {
  background: var(--np-protect-green) !important;
}

.rla-report .np-section-seven-kicker,
.rla-report .np-section-seven-section .np-section-kicker {
  color: var(--np-protect-green-deep) !important;
}

.rla-report #npSectionSevenUniversalHeadline {
  color: #07111f;
}

.rla-report .np-section-seven-header {
  border-left: 5px solid var(--np-protect-green);
  padding-left: clamp(18px, 2.3vw, 30px);
}

.rla-report .np-section-seven-mini-card {
  border-color: var(--np-protect-green-border);
  background: #ffffff;
}

.rla-report .np-section-seven-mini-card span {
  color: var(--np-protect-green-deep);
}

.rla-report .np-protected-opportunity-module,
.rla-report .np-protected-opportunity-module-clean {
  border-color: var(--np-protect-green-border) !important;
  background:
    radial-gradient(circle at top right, rgba(17, 136, 71, 0.055), transparent 34%),
    #ffffff !important;
}

.rla-report .np-protected-opportunity-copy .np-mini-kicker,
.rla-report .np-protected-opportunity-copy span,
.rla-report .np-protected-value-output-card span,
.rla-report .np-protected-total-card small {
  color: var(--np-protect-green-deep) !important;
}

.rla-report .np-protected-patient-count-card button.is-active,
.rla-report .np-patient-count-button.is-active,
.rla-report [data-np-patient-count].is-active {
  background: var(--np-protect-green) !important;
  border-color: var(--np-protect-green) !important;
}

/* Keep final diagnosed leak premium and one-line friendly */
.rla-report .np-final-cta-leak-label {
  color: var(--np-loss-red);
  white-space: normal;
}

.rla-report .np-final-cta-leak-label strong {
  color: var(--np-loss-red);
}

@media (max-width: 760px) {
  .rla-report .np-top-diagnosed-leak {
    font-size: clamp(18px, 7vw, 28px);
  }

  .rla-report #npKeyInsight3Headline {
    font-size: clamp(34px, 12vw, 54px);
    line-height: 0.98;
  }

  .rla-report .np-section-seven-header {
    padding-left: 16px;
    border-left-width: 4px;
  }
}


/* PATCH66B — reality check sits outside Section 05 markup, keep it green and integrated */
.rla-report .np-reality-check {
  margin: clamp(28px, 4vw, 44px) auto clamp(46px, 6vw, 72px) !important;
  max-width: 1120px;
  border-color: var(--np-protect-green-border) !important;
  background:
    radial-gradient(circle at top right, rgba(17, 136, 71, 0.055), transparent 36%),
    linear-gradient(180deg, #ffffff 0%, #f6fbf8 100%) !important;
}

.rla-report .np-reality-check::before {
  background: var(--np-protect-green) !important;
}

.rla-report .np-reality-check .np-section-kicker,
.rla-report .np-reality-insight-label,
.rla-report .np-reality-insight-card b {
  color: var(--np-protect-green-deep) !important;
}

.rla-report .np-reality-insight-card {
  border-color: var(--np-protect-green-border) !important;
  background: #ffffff !important;
}

.rla-report .np-system-section.np-section-six-premium {
  padding-top: clamp(58px, 6vw, 86px);
}


/* PATCH67 — Leak label refinement, visible loss balance, and final CTA text lock */

/* Section 04: make visible/invisible cards feel strategically different */
.rla-report-premium .np-loss-visible::before,
.rla-report .np-loss-visible::before {
  background: var(--np-p58-blue, #2f66ff) !important;
}

.rla-report-premium .np-loss-visible span,
.rla-report .np-loss-visible span {
  color: var(--np-p58-blue, #2f66ff) !important;
}

.rla-report-premium .np-loss-visible li,
.rla-report .np-loss-visible li {
  background: #f8fbff !important;
  border-color: rgba(47, 102, 255, 0.16) !important;
  color: var(--np-p58-ink, #07111f) !important;
}

.rla-report-premium .np-loss-invisible::before,
.rla-report .np-loss-invisible::before {
  background: var(--np-loss-red, #b42318) !important;
}

.rla-report-premium .np-loss-invisible span,
.rla-report .np-loss-invisible span {
  color: var(--np-loss-red, #b42318) !important;
}

.rla-report-premium .np-loss-invisible li,
.rla-report .np-loss-invisible li {
  background: var(--np-loss-red-soft, rgba(254, 242, 242, 0.86)) !important;
  border-color: var(--np-loss-red-border, rgba(180, 35, 24, 0.22)) !important;
  color: var(--np-loss-red-dark, #8f1d17) !important;
}

/* Section 05: only the dynamic leak phrase is red; protection areas stay green */
.rla-report .np-fix-title .np-dynamic-leak-name,
.rla-report-premium .np-fix-title .np-dynamic-leak-name {
  color: var(--np-loss-red, #b42318) !important;
  display: inline;
  white-space: normal;
}

/* Final CTA: diagnosed leak is a clean text line, not a badge/pill */
.rla-report .np-final-cta-leak-label,
.rla-report-premium .np-final-cta-leak-label,
.np-cta-section .np-final-cta-card .np-final-cta-leak-label {
  display: block !important;
  width: auto !important;
  max-width: 100% !important;
  margin: 0 auto clamp(22px, 2.5vw, 34px) !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: var(--np-ink, #07111f) !important;
  font-size: clamp(15px, 1.5vw, 19px) !important;
  font-weight: 850 !important;
  line-height: 1.25 !important;
  letter-spacing: -0.01em !important;
  text-transform: none !important;
  text-align: center !important;
}

.rla-report .np-final-cta-leak-label strong,
.rla-report-premium .np-final-cta-leak-label strong,
.np-cta-section .np-final-cta-card .np-final-cta-leak-label strong {
  color: var(--np-loss-red, #b42318) !important;
  font-weight: 950 !important;
  letter-spacing: -0.01em !important;
  text-transform: none !important;
}

@media (max-width: 680px) {
  .rla-report .np-final-cta-leak-label,
  .rla-report-premium .np-final-cta-leak-label,
  .np-cta-section .np-final-cta-card .np-final-cta-leak-label {
    display: block !important;
    padding: 0 !important;
    font-size: 15px !important;
    line-height: 1.35 !important;
  }

  .rla-report .np-fix-title .np-dynamic-leak-name,
  .rla-report-premium .np-fix-title .np-dynamic-leak-name {
    white-space: normal;
  }
}


/* PATCH68 — Final QA polish: diagnosis line spacing and safe wrapping */
.rla-report .np-final-cta-leak-label,
.rla-report-premium .np-final-cta-leak-label,
.np-cta-section .np-final-cta-card .np-final-cta-leak-label {
  margin: 0 auto clamp(14px, 1.8vw, 20px) !important;
  max-width: min(100%, 720px) !important;
  overflow-wrap: anywhere;
}

.rla-report .np-final-cta-leak-label strong,
.rla-report-premium .np-final-cta-leak-label strong,
.np-cta-section .np-final-cta-card .np-final-cta-leak-label strong,
.rla-report .np-top-diagnosed-leak,
.rla-report-premium .np-top-diagnosed-leak,
.rla-report .np-fix-title .np-dynamic-leak-name,
.rla-report-premium .np-fix-title .np-dynamic-leak-name {
  overflow-wrap: anywhere;
}

.rla-report-premium .np-loss-column ul,
.rla-report .np-loss-column ul {
  align-items: stretch;
}

.rla-report-premium .np-loss-column li,
.rla-report .np-loss-column li {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}


/* PATCH 70: Dynamic leak definition and diagnostic threading */
.np-top-leak-definition {
  max-width: 820px;
  margin: 10px 0 18px;
  color: var(--np-slate, #64748b);
  font-size: clamp(1.02rem, 1.2vw, 1.25rem);
  line-height: 1.45;
  font-weight: 750;
}

.np-dynamic-thread-leak {
  color: #b42318;
  font-weight: 900;
  white-space: normal;
}

.np-dynamic-thread-leak-green {
  color: #047857;
}

#npExecutiveSummaryBody .np-dynamic-thread-leak,
#npBreakTransition .np-dynamic-thread-leak,
#npCostBody .np-dynamic-thread-leak,
#npSystemRepeatsBody .np-dynamic-thread-leak,
#npSectionSevenUniversalBody .np-dynamic-thread-leak {
  display: inline;
}

@media (max-width: 720px) {
  .np-top-leak-definition {
    margin-top: 8px;
    margin-bottom: 14px;
    font-size: 1rem;
    line-height: 1.42;
  }
}

/* PATCH 72: Primary Finding order support + Found You first-step emphasis */
.np-path-step-start {
  min-height: 112px;
  aspect-ratio: 1.35 / 1;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  justify-content: center;
  padding: 18px 18px;
  border-color: rgba(47, 102, 255, 0.48);
  background: #f3f7ff;
}

.np-path-step-start strong {
  display: block;
  color: var(--np-ink, #07111f);
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: 1.08;
  font-weight: 950;
}

.np-path-step-start span {
  display: block;
  max-width: 220px;
  color: var(--np-muted, #657286);
  font-size: clamp(12px, 0.9vw, 14px);
  line-height: 1.32;
  font-weight: 750;
}

@media (max-width: 720px) {
  .np-path-step-start {
    aspect-ratio: auto;
    min-height: 104px;
  }
}


/* PATCH 73: Executive Summary stays dynamic; Almost-Patient middle steps return to horizontal rectangles */
.np-almost-path .np-path-row {
  align-items: center;
}

.np-almost-path .np-path-step:not(.np-path-step-start) {
  align-self: center;
  min-height: 74px;
  aspect-ratio: auto;
}

.np-almost-path .np-path-step:not(.np-path-step-start):not(.np-path-step-final) {
  padding-block: 14px;
}

.np-almost-path .np-path-step-final {
  min-height: 74px;
}


/* PATCH 74: final CTA dynamic leak headline + red diagnosis marker locks */
.np-dynamic-thread-leak:not(.np-dynamic-thread-leak-green) {
  color: #b42318 !important;
  font-weight: 900 !important;
}

.np-dynamic-thread-leak-green {
  color: #047857 !important;
}

#npFinalCtaHeadline .np-dynamic-thread-leak,
#npExecutiveSummaryHeadline .np-dynamic-thread-leak,
#npBreakTransition .np-dynamic-thread-leak,
#npCostBody .np-dynamic-thread-leak,
#npSystemRepeatsBody .np-dynamic-thread-leak,
#npSectionSevenUniversalBody .np-dynamic-thread-leak {
  color: #b42318 !important;
  display: inline;
}

#npFinalCtaLeakLabel[hidden] {
  display: none !important;
}

.rla-report-premium .np-final-cta-copy h3 .np-dynamic-thread-leak,
.rla-report .np-final-cta-copy h3 .np-dynamic-thread-leak,
.np-cta-section .np-final-cta-card h3 .np-dynamic-thread-leak {
  color: #b42318 !important;
  font-weight: 950 !important;
}
