@font-face {
  font-family: "Open Sans";
  src: url("/assets/fonts/OpenSans-VariableFont_wdth_wght.ttf") format("truetype");
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src: url("/assets/fonts/OpenSans-Italic-VariableFont_wdth_wght.ttf") format("truetype");
  font-style: italic;
  font-weight: 300 800;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --plum-950: #3e0935;
  --plum-900: #5a0e4e;
  --plum-700: #720a5b;
  --magenta-700: #870f74;
  --magenta-600: #a92290;
  --pink-500: #e50eb6;
  --pink-400: #ff34d9;
  --pink-200: #ffa8e8;
  --cream: #fbfbf9;
  --ink: #27132c;
  --muted: #6e5f6b;
  --green: #1f7a55;
  --gold: #e2a33b;
  --review-bg: #fbefc9;
  --review-border: #e2c25a;
  --review-ink: #765c08;
  --border-light: rgba(255, 255, 255, 0.12);
  --text-muted: rgba(255, 255, 255, 0.78);
  --container: 1120px;
  --gutter: clamp(1.25rem, 4vw, 3.75rem);
  --section-space: clamp(4rem, 8vw, 5.5rem);
  --radius: 1rem;
  --pill: 999px;
  --shadow: 0 1.5rem 3.75rem rgba(39, 19, 44, 0.45);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}

body {
  margin: 0;
  min-width: 20rem;
  background: var(--plum-900);
  color: #fff;
  font-family: "Open Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--pink-200);
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--pink-200);
  outline-offset: 4px;
}

h1,
h2,
h3,
p,
figure,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

h1 {
  margin-bottom: 1.4rem;
  font-size: clamp(2.45rem, 6vw, 3.875rem);
  font-weight: 750;
  letter-spacing: -0.035em;
  line-height: 1.06;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 720;
  letter-spacing: -0.025em;
  line-height: 1.16;
}

h3 {
  margin-bottom: 0.4rem;
  font-size: 1.125rem;
  line-height: 1.35;
}

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

.section-dark {
  background: var(--plum-900);
}

.section-rule {
  padding-block: var(--section-space);
  border-bottom: 1px solid var(--border-light);
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  translate: 0 -200%;
  border-radius: 0.4rem;
  background: #fff;
  color: var(--plum-900);
  padding: 0.65rem 1rem;
  font-weight: 700;
}

.skip-link:focus {
  translate: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(90, 14, 78, 0.97);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.28);
}

.header-inner {
  min-height: 4.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  flex: none;
}

.brand img {
  width: clamp(8rem, 15vw, 9.25rem);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 1.8rem);
}

.primary-nav > a:not(.button) {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.875rem;
  font-weight: 650;
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
}

.primary-nav > a:hover {
  color: #fff;
}

.login-link {
  color: #fff !important;
}

.menu-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  display: block;
  width: 1.45rem;
  height: 2px;
  border-radius: var(--pill);
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-icon {
  position: relative;
}

.menu-icon::before,
.menu-icon::after {
  position: absolute;
  left: 0;
  content: "";
}

.menu-icon::before { top: -0.45rem; }
.menu-icon::after { top: 0.45rem; }

.menu-toggle[aria-expanded="true"] .menu-icon { background: transparent; }
.menu-toggle[aria-expanded="true"] .menu-icon::before { transform: translateY(0.45rem) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-icon::after { transform: translateY(-0.45rem) rotate(-45deg); }

.button {
  display: inline-flex;
  min-height: 3.3rem;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: var(--pill);
  padding: 0.85rem 1.9rem;
  font-weight: 750;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button-small {
  min-height: 2.9rem;
  padding-inline: 1.4rem;
  font-size: 0.875rem;
}

.button-gradient {
  background: linear-gradient(90deg, #720a5b 0%, #a40c83 48.53%, #e50eb6 112.12%);
  box-shadow: 0 0.75rem 1.875rem #27132c;
  color: #fff;
}

.button-gradient:hover {
  background: linear-gradient(90deg, #5a0e4e 0%, #870f74 52%, #c90ca0 112%);
  color: #fff;
}

.button-light {
  background: #fff;
  box-shadow: 0 0.75rem 1.875rem rgba(39, 19, 44, 0.45);
  color: var(--magenta-700);
}

.button-light:hover {
  background: #f3e4ef;
  color: var(--plum-900);
}

.button-outline {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55);
  color: #fff;
}

.button-outline:hover {
  background: #fff;
  color: var(--magenta-700);
}

.hero {
  padding-block: clamp(3.5rem, 8vw, 5rem) clamp(3.5rem, 7vw, 4.5rem);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(20rem, 25rem);
  align-items: start;
  gap: clamp(3rem, 7vw, 5rem);
}

.hero-copy {
  padding-top: 0.75rem;
}

.hero h1 span {
  color: var(--pink-400);
}

.hero-lede {
  max-width: 39rem;
  margin-bottom: 1.6rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.58;
  text-wrap: pretty;
}

.cta-row {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.cta-note {
  max-width: 15rem;
  margin: 0;
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 520;
  line-height: 1.45;
}

.hero-stats {
  max-width: 42rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-top: 3.1rem;
  padding-top: 1.7rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.stat strong {
  color: var(--pink-400);
  font-size: 2.15rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}

.stat span {
  color: var(--text-muted);
  font-size: 0.84rem;
  line-height: 1.4;
}

.report-card {
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  color: var(--ink);
  padding: clamp(1.5rem, 3vw, 1.75rem);
}

.report-eyebrow,
.eyebrow,
.card-label {
  margin-bottom: 0.55rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.report-eyebrow { color: var(--magenta-700); }

.score-row {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}

.score-row strong {
  color: var(--magenta-700);
  font-size: 3.75rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}

.score-row span {
  color: var(--green);
  font-size: 0.95rem;
  font-weight: 750;
}

.report-context {
  margin: 0.7rem 0 1.2rem;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

.score-metric {
  margin-top: 0.85rem;
}

.score-metric > div:first-child {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 650;
}

.score-track {
  height: 0.45rem;
  margin-top: 0.4rem;
  overflow: hidden;
  border-radius: var(--pill);
  background: #f3e4ef;
}

.score-fill {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--pink-400);
}

.score-fill-gold { background: var(--gold); }

.report-note {
  margin: 0.65rem 0 0;
  border-radius: 0.75rem;
  background: #f7eaf3;
  color: var(--muted);
  padding: 0.7rem 0.85rem;
  font-size: 0.8rem;
  line-height: 1.45;
}

.report-note:first-of-type { margin-top: 1.15rem; }
.report-note strong { color: var(--magenta-700); }

.review-badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  border: 1px solid var(--review-border);
  border-radius: var(--pill);
  background: var(--review-bg);
  color: var(--review-ink);
  padding: 0.24rem 0.55rem;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.report-card > .review-badge { margin-top: 1rem; }

.trust-strip {
  background: var(--magenta-700);
  padding-block: 1.25rem;
}

.trust-list {
  display: flex;
  justify-content: space-between;
  gap: 1rem 2rem;
  flex-wrap: wrap;
}

.trust-list span {
  display: flex;
  gap: 0.55rem;
  font-size: 0.875rem;
  font-weight: 650;
}

.trust-list b { color: var(--pink-400); }

.credibility {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem 2rem;
  flex-wrap: wrap;
  padding-block: 2rem;
  border-bottom: 1px solid var(--border-light);
}

.credibility p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.credibility ul {
  display: flex;
  align-items: center;
  gap: 0.75rem 1.5rem;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}

.credibility li {
  font-size: 1.05rem;
  font-weight: 650;
}

.credibility li + li::before {
  content: "·";
  margin-right: 1.5rem;
  color: rgba(255, 255, 255, 0.4);
}

.split-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: clamp(3rem, 7vw, 5rem);
}

.section-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
}

.section-copy > * { margin-bottom: 0; }

.section-copy p:not(.eyebrow, .citation),
.split-heading > p,
.section-footnote {
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(0.98rem, 2vw, 1.06rem);
  line-height: 1.62;
  text-wrap: pretty;
}

.section-copy strong { color: #fff; }

.eyebrow {
  color: var(--pink-200);
}

.citation {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.75rem;
  line-height: 1.5;
}

.section-heading {
  max-width: 48rem;
}

.card-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
}

.card-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.surface-card {
  border-radius: var(--radius);
  background: var(--magenta-700);
  padding: clamp(1.2rem, 3vw, 1.75rem);
}

.concern-card {
  min-height: 10.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
}

.concern-card blockquote {
  margin-bottom: 0;
  font-size: 1.08rem;
  font-style: italic;
  font-weight: 650;
  line-height: 1.5;
}

.concern-card p,
.card-label {
  margin-bottom: 0;
  color: var(--pink-400);
}

.concern-card p {
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.section-footnote {
  max-width: 48rem;
  margin: 1.5rem 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.94rem;
}

.split-heading {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: end;
  gap: clamp(2rem, 7vw, 5rem);
}

.split-heading > p { margin-bottom: 1rem; }

.signal-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
}

.signal-card > * { margin-bottom: 0; }
.signal-card p:not(.card-label) { color: var(--text-muted); font-size: 0.94rem; }

.status-badge {
  border-radius: var(--pill);
  background: var(--green);
  padding: 0.25rem 0.65rem;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.how-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(15rem, 21rem);
  align-items: center;
  gap: clamp(3rem, 7vw, 5rem);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.7rem 2.5rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.steps-grid li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.steps-grid li > span {
  flex: none;
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--magenta-700);
  font-size: 0.8rem;
  font-weight: 750;
}

.steps-grid h3 { font-size: 1rem; }
.steps-grid p { margin: 0; color: var(--text-muted); font-size: 0.9rem; line-height: 1.5; }

.product-figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0;
}

.product-figure img {
  width: min(100%, 17.5rem);
  filter: drop-shadow(0 1.5rem 2rem rgba(39, 19, 44, 0.45));
}

.product-figure figcaption {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
  text-align: center;
}

.pricing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.treatment-cost {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.treatment-cost strong {
  font-size: clamp(2rem, 5vw, 2.4rem);
  line-height: 1.15;
}

.treatment-cost p:not(.card-label) { color: var(--text-muted); }

.price-card {
  border-radius: var(--radius);
  background: linear-gradient(90deg, #720a5b 0%, #a40c83 48.53%, #e50eb6 112.12%);
  box-shadow: 0 0.75rem 1.875rem #27132c;
  padding: clamp(1.5rem, 3vw, 2rem);
}

.price-card dl { margin: 1rem 0; }
.price-card dl > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.price-card dl > div:last-child { border-bottom: 0; }
.price-card dt { font-weight: 650; }
.price-card dt span { margin-left: 0.4rem; border-radius: var(--pill); background: rgba(255, 255, 255, 0.2); padding: 0.2rem 0.5rem; font-size: 0.62rem; text-transform: uppercase; }
.price-card dd { margin: 0; }
.price-card s { color: rgba(255, 255, 255, 0.65); font-size: 0.86rem; }
.price-card dd strong { margin-left: 0.5rem; font-size: 1.25rem; }
.price-card > p:last-child { margin-bottom: 0; color: rgba(255, 255, 255, 0.9); }

.medical-note {
  margin: 1.2rem 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.8rem;
  font-style: italic;
}

.evidence-card > div {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
}

.evidence-card > div > strong {
  flex: none;
  color: var(--pink-400);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.evidence-card h3 { font-size: 1rem; }
.evidence-card .citation { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; margin: 0.7rem 0; }
.evidence-card > p:last-child { margin-bottom: 0; padding-top: 0.8rem; border-top: 1px solid rgba(255, 255, 255, 0.15); color: rgba(255, 255, 255, 0.85); font-size: 0.88rem; }
.evidence-card > p:last-child b { color: var(--pink-400); }

.testimonial-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 0;
  border-radius: var(--radius);
  background: var(--magenta-600);
  padding: clamp(1.5rem, 3vw, 2rem);
}

.testimonial-card blockquote { margin-bottom: 0; font-size: 1.08rem; font-style: italic; line-height: 1.55; }
.testimonial-card figcaption { color: var(--text-muted); font-size: 0.82rem; font-weight: 650; }

.partner-actions {
  align-self: center;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
}

.pill-list li {
  border-radius: var(--pill);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45);
  padding: 0.55rem 1rem;
  font-size: 0.8rem;
  font-weight: 650;
}

.advisor-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.advisor-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem;
}

.advisor-card img,
.avatar-placeholder {
  flex: none;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
}

.advisor-card img {
  object-fit: cover;
  filter: grayscale(1);
}

.avatar-placeholder {
  display: grid;
  place-items: center;
  background: var(--plum-900);
  font-weight: 750;
}

.advisor-card h3,
.advisor-card p { margin-bottom: 0; }
.advisor-card p { color: rgba(255, 255, 255, 0.7); font-size: 0.83rem; }

.faq-grid {
  display: grid;
  grid-template-columns: minmax(14rem, 18.75rem) minmax(0, 1fr);
  gap: clamp(3rem, 7vw, 5rem);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.faq-list details {
  border-radius: var(--radius);
  background: var(--magenta-700);
  padding-inline: 1.4rem;
}

.faq-list summary {
  min-height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; color: var(--pink-400); font-size: 1.7rem; font-weight: 400; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { max-width: 43rem; margin-bottom: 1.25rem; color: rgba(255, 255, 255, 0.8); font-size: 0.92rem; }

.closing-grid {
  display: grid;
  grid-template-columns: minmax(15rem, 20rem) minmax(0, 1fr);
  align-items: center;
  gap: clamp(3rem, 6vw, 4rem);
  padding-block: clamp(4.5rem, 8vw, 6rem);
}

.mascot-figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0;
}

.mascot-figure > div {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 2.8rem;
  background: var(--cream);
}

.mascot-figure img { width: 90%; }
.closing-copy h2 { font-size: clamp(2rem, 5vw, 3rem); }

.site-footer {
  background: var(--plum-950);
  padding-block: 2.75rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem 3rem;
}

.footer-inner p {
  margin: 0.75rem 0 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.73rem;
}

.footer-inner nav {
  display: flex;
  gap: 0.8rem 1.7rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-inner nav a {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.84rem;
}

.mobile-cta {
  display: none;
}

@media (max-width: 64rem) {
  .primary-nav {
    position: fixed;
    inset: 4.75rem 0 auto;
    display: grid;
    gap: 0;
    padding: 1.25rem var(--gutter) 1.75rem;
    border-top: 1px solid var(--border-light);
    background: var(--plum-900);
    box-shadow: 0 1rem 2rem rgba(39, 19, 44, 0.35);
    max-height: calc(100dvh - 4.75rem);
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-0.75rem);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .primary-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .primary-nav > a:not(.button) {
    min-height: 3rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border-light);
  }

  .primary-nav .button { margin-top: 1rem; }
  .menu-toggle { display: inline-flex; }
  .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(18rem, 22rem); gap: 2.5rem; }
  .hero-stats { grid-template-columns: 1fr; gap: 1rem; }
  .stat { display: grid; grid-template-columns: 4.25rem 1fr; align-items: start; }
  .card-grid-three { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .signal-grid .signal-card:last-child { grid-column: 1 / -1; }
  .steps-grid { grid-template-columns: 1fr; }
}

@media (max-width: 48rem) {
  :root {
    --gutter: 1.75rem;
    --section-space: 3.5rem;
  }

  body { padding-bottom: 6.7rem; }
  .header-inner { min-height: 4rem; }
  .primary-nav { inset-block-start: 4rem; }
  .primary-nav { max-height: calc(100dvh - 4rem); }
  .hero { padding-block: 2.5rem 3.5rem; }
  .hero-grid,
  .split-section,
  .split-heading,
  .how-grid,
  .pricing-grid,
  .faq-grid,
  .closing-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy { padding-top: 0; }
  .hero-lede { font-size: 1rem; }
  .hero .cta-row,
  .closing-copy .cta-row { align-items: stretch; flex-direction: column; }
  .hero .cta-note,
  .closing-copy .cta-note { max-width: none; text-align: center; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); }
  .stat { display: flex; }
  .stat strong { font-size: 1.75rem; }
  .stat span { font-size: 0.75rem; }
  .report-card { max-width: 29rem; width: 100%; margin-inline: auto; }
  .trust-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .credibility { justify-content: flex-start; }
  .credibility ul { gap: 0.4rem 1rem; }
  .credibility li { font-size: 0.95rem; }
  .credibility li + li::before { margin-right: 1rem; }
  .card-grid-three { grid-template-columns: 1fr; }
  .signal-grid .signal-card:last-child { grid-column: auto; }
  .concern-card { min-height: auto; }
  .how-grid { gap: 2.5rem; }
  .product-figure img { width: min(70vw, 17.5rem); }
  .price-card dl > div { align-items: flex-start; }
  .price-card dt span { display: table; margin: 0.3rem 0 0; }
  .evidence-card > div { align-items: flex-start; }
  .partner-actions .cta-row { flex-direction: column; align-items: stretch; }
  .partner-actions .cta-note { max-width: none; text-align: center; }
  .faq-grid { gap: 1.5rem; }
  .closing-grid { text-align: center; }
  .closing-copy { align-items: stretch; }
  .closing-copy h2,
  .closing-copy > p { text-align: center; }
  .mascot-figure { order: 1; }
  .closing-copy { order: 2; }
  .mascot-figure > div { width: min(17rem, 76vw); }
  .footer-inner { flex-direction: column; }
  .footer-inner nav { justify-content: flex-start; }

  .mobile-cta {
    position: fixed;
    inset: auto 0 0;
    z-index: 45;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    padding: 0.7rem var(--gutter) 0.85rem;
    background: var(--plum-900);
    box-shadow: 0 -0.4rem 1rem rgba(0, 0, 0, 0.28);
  }

  .mobile-cta .button { width: 100%; min-height: 2.8rem; padding-block: 0.7rem; }
  .mobile-cta span { color: rgba(255, 255, 255, 0.74); font-size: 0.7rem; text-align: center; }
}

@media (max-width: 30rem) {
  :root { --gutter: 1.25rem; }
  h1 { font-size: 2.25rem; }
  .hero-stats { gap: 0.75rem; }
  .stat span { font-size: 0.68rem; }
  .trust-list { grid-template-columns: 1fr; }
  .price-card dd { text-align: right; }
  .advisor-card { align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .site-header,
  .mobile-cta,
  .menu-toggle { display: none !important; }
  body { padding-bottom: 0; background: #fff; color: #111; }
}
