.sample-report-page {
  --sr-blue-900: #0a1f52;
  --sr-blue-800: #123b93;
  --sr-blue-700: #1d5ae8;
  --sr-blue-500: #5d9bff;
  --sr-sky-200: #d8ebff;
  --sr-ice: #f4f8ff;
  --sr-border: rgba(19, 58, 148, 0.12);
  --sr-text: #0f172a;
  --sr-muted: #51607b;
  --sr-shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
  color: var(--sr-text);
}

.sample-report-page [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.sample-report-page [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.sample-report-bleed {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.sample-report-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.sample-report-hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 56px;
  background:
    radial-gradient(circle at top left, rgba(93, 155, 255, 0.28), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #f4f8ff 36%, #e8f1ff 100%);
}

.sample-report-hero__glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(36px);
  opacity: 0.55;
  animation: sampleReportFloat 8s ease-in-out infinite;
}

.sample-report-hero__glow--one {
  width: 280px;
  height: 280px;
  top: -60px;
  right: 10%;
  background: rgba(85, 146, 255, 0.28);
}

.sample-report-hero__glow--two {
  width: 220px;
  height: 220px;
  bottom: -50px;
  left: 8%;
  background: rgba(29, 90, 232, 0.18);
  animation-delay: 1.2s;
}

.sample-report-hero__content {
  position: relative;
  display: grid;
  gap: 28px;
  align-items: center;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
}

.sample-report-kicker,
.sample-report-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(29, 90, 232, 0.12);
  background: rgba(255, 255, 255, 0.68);
  color: var(--sr-blue-800);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sample-report-hero h1,
.sample-report-section h2,
.sample-report-panel h3,
.sample-report-cover h2,
.sample-report-pathway-card h3,
.sample-report-roadmap h3,
.sample-report-cta h2 {
  font-family: 'Montserrat', sans-serif;
}

.sample-report-hero h1 {
  margin: 18px 0 18px;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: #0b1c4f;
  max-width: 11ch;
}

.sample-report-lead {
  max-width: 58ch;
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--sr-muted);
}

.sample-report-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.sample-report-badges span,
.sample-report-country-pill,
.sample-report-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
}

.sample-report-badges span {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(93, 155, 255, 0.18);
  box-shadow: 0 12px 30px rgba(13, 35, 79, 0.06);
}

.sample-report-badges i,
.sample-report-risk-list i,
.sample-report-sticky-cta i {
  color: var(--sr-blue-700);
}

.sample-report-hero__actions,
.sample-report-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.sample-report-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 16px;
  font-weight: 700;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.sample-report-btn:hover {
  transform: translateY(-2px);
}

.sample-report-btn--primary {
  color: #fff;
  background: linear-gradient(135deg, #1d5ae8 0%, #0b2b89 100%);
  box-shadow: 0 18px 35px rgba(29, 90, 232, 0.28);
}

.sample-report-btn--secondary {
  color: var(--sr-blue-900);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(17, 60, 150, 0.14);
}

.sample-report-proofline,
.sample-report-proof-stats {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 30px;
}

.sample-report-proofline div,
.sample-report-proof-stats div {
  padding: 18px 16px;
  border-radius: 18px;
  border: 1px solid rgba(14, 39, 104, 0.08);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 26px rgba(15, 23, 42, 0.05);
}

.sample-report-proofline strong,
.sample-report-proof-stats strong {
  display: block;
  font-size: 1.55rem;
  line-height: 1;
  color: var(--sr-blue-900);
}

.sample-report-proofline span,
.sample-report-proof-stats span,
.sample-report-mini-stat em,
.sample-report-pathway-metrics span,
.sample-report-meter__labels span,
.sample-report-gauge__legend span,
.sample-report-testimonial span,
.sample-report-cta small {
  font-size: 0.92rem;
  color: var(--sr-muted);
}

.sample-report-cover,
.sample-report-panel,
.sample-report-pathway-card,
.sample-report-cta__card,
.sample-report-testimonials {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--sr-border);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--sr-shadow);
  backdrop-filter: blur(18px);
}

.sample-report-cover {
  padding: 28px;
}

.sample-report-cover::before,
.sample-report-panel::before,
.sample-report-pathway-card::before,
.sample-report-cta__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.22), transparent 45%);
  pointer-events: none;
}

.sample-report-cover__top,
.sample-report-chart-card__head,
.sample-report-panel__header,
.sample-report-pathway-card__top,
.sample-report-cta__card {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.sample-report-cover__top h2,
.sample-report-cta h2 {
  font-size: 1.65rem;
  color: var(--sr-blue-900);
}

.sample-report-country-pill {
  align-self: flex-start;
  background: rgba(12, 44, 118, 0.06);
  color: var(--sr-blue-900);
}

.sample-report-country-pill img {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  object-fit: cover;
}

.sample-report-cover__body {
  margin-top: 22px;
}

.sample-report-profile-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(9, 30, 86, 0.96), rgba(29, 90, 232, 0.9));
  color: #fff;
}

.sample-report-profile-card h3 {
  font-size: 1.12rem;
}

.sample-report-profile-card p {
  color: rgba(255, 255, 255, 0.78);
}

.sample-report-avatar {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.18);
  font-weight: 700;
  font-size: 1.1rem;
}

.sample-report-cover__grid,
.sample-report-grid,
.sample-report-chart-grid,
.sample-report-trust-grid {
  display: grid;
  gap: 22px;
}

.sample-report-cover__grid {
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  margin-top: 20px;
}

.sample-report-ring-card,
.sample-report-mini-stat,
.sample-report-chart-card,
.sample-report-proof-stats div,
.sample-report-testimonial,
.sample-report-lock-preview,
.sample-report-risk-list article {
  border-radius: 22px;
}

.sample-report-ring-card {
  padding: 20px;
  text-align: center;
  background: linear-gradient(180deg, rgba(244, 248, 255, 0.95), #fff);
  border: 1px solid rgba(29, 90, 232, 0.08);
}

.sample-report-ring {
  --size: 170px;
  width: var(--size);
  height: var(--size);
  margin: 0 auto 14px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(#1d5ae8 calc(var(--progress) * 1%), rgba(93, 155, 255, 0.16) 0);
  animation: sampleReportGrow 1.4s ease;
}

.sample-report-ring__inner,
.sample-report-priority-ring {
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 50%;
}

.sample-report-ring__inner {
  width: calc(var(--size) - 18px);
  height: calc(var(--size) - 18px);
  background: #fff;
}

.sample-report-ring__inner strong,
.sample-report-priority-ring strong {
  font-size: 2rem;
  line-height: 1;
  color: var(--sr-blue-900);
}

.sample-report-ring__inner span,
.sample-report-priority-ring span {
  font-size: 0.85rem;
  color: var(--sr-muted);
}

.sample-report-stat-stack {
  display: grid;
  gap: 14px;
}

.sample-report-mini-stat {
  padding: 18px;
  border: 1px solid rgba(17, 60, 150, 0.08);
  background: rgba(247, 250, 255, 0.96);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.sample-report-mini-stat:hover,
.sample-report-panel:hover,
.sample-report-pathway-card:hover,
.sample-report-cta__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 50px rgba(15, 23, 42, 0.12);
}

.sample-report-mini-stat span,
.sample-report-pathway-metrics span {
  display: block;
  margin-bottom: 6px;
}

.sample-report-mini-stat strong,
.sample-report-panel h2,
.sample-report-section-heading h2,
.sample-report-pathway-card h3,
.sample-report-roadmap h3 {
  color: var(--sr-blue-900);
}

.sample-report-mini-stat strong,
.sample-report-pathway-metrics strong {
  display: block;
  font-size: 1.1rem;
}

.sample-report-section {
  padding: 34px 0;
}

.sample-report-section--tint {
  background: linear-gradient(180deg, #f7faff 0%, #edf4ff 100%);
  border-top: 1px solid rgba(17, 60, 150, 0.06);
  border-bottom: 1px solid rgba(17, 60, 150, 0.06);
}

.sample-report-section--dark {
  padding: 54px 0;
  background: linear-gradient(160deg, #07163d 0%, #0c2a77 55%, #153b94 100%);
}

.sample-report-section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.sample-report-section-heading h2 {
  margin-top: 14px;
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.05;
}

.sample-report-section-heading p,
.sample-report-panel p,
.sample-report-pathway-card p,
.sample-report-roadmap p,
.sample-report-cta p,
.sample-report-testimonial p,
.sample-report-lock-preview li,
.sample-report-risk-list p {
  color: var(--sr-muted);
  line-height: 1.75;
}

.sample-report-grid--summary {
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.9fr);
}

.sample-report-panel {
  padding: 28px;
}

.sample-report-panel--success {
  background: linear-gradient(180deg, rgba(245, 255, 250, 0.94), rgba(255, 255, 255, 0.98));
}

.sample-report-status-badge {
  background: rgba(20, 184, 122, 0.12);
  color: #0f8a58;
  padding: 8px 14px;
}

.sample-report-status-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #17c964;
  box-shadow: 0 0 0 8px rgba(23, 201, 100, 0.13);
}

.sample-report-panel h2 {
  margin: 18px 0 14px;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  line-height: 1.08;
}

.sample-report-insight-row,
.sample-report-pathway-metrics {
  display: grid;
  gap: 14px;
}

.sample-report-insight-row {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 22px;
}

.sample-report-insight-row div,
.sample-report-pathway-metrics div {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(17, 60, 150, 0.08);
}

.sample-report-insight-row strong,
.sample-report-risk-list strong,
.sample-report-roadmap span,
.sample-report-testimonial strong {
  display: block;
}

.sample-report-checklist {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.sample-report-checklist li {
  position: relative;
  padding-left: 28px;
  color: var(--sr-muted);
  line-height: 1.6;
}

.sample-report-checklist li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, #5d9bff, #1d5ae8);
  box-shadow: 0 0 0 6px rgba(93, 155, 255, 0.18);
}

.sample-report-chart-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sample-report-chart-card {
  min-height: 100%;
}

.sample-report-chart-card__head strong {
  font-size: 0.95rem;
  color: var(--sr-blue-700);
}

.sample-report-meter {
  margin: 22px 0 16px;
}

.sample-report-meter__track {
  height: 14px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(29, 90, 232, 0.1);
}

.sample-report-meter__fill,
.sample-report-threshold-chart__bar i {
  display: block;
  width: 0;
  border-radius: inherit;
  transition: width 1.2s ease;
}

.sample-report-meter__fill {
  height: 100%;
  background: linear-gradient(90deg, #71b1ff, #1d5ae8);
}

.sample-report-meter__labels,
.sample-report-gauge__legend,
.sample-report-testimonial-dots {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.sample-report-threshold-chart {
  display: grid;
  gap: 16px;
  margin: 22px 0 14px;
}

.sample-report-threshold-chart__bar {
  display: grid;
  gap: 8px;
}

.sample-report-threshold-chart__bar div {
  height: 14px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(17, 60, 150, 0.08);
}

.sample-report-threshold-chart__bar i {
  height: 100%;
  background: linear-gradient(90deg, #c4dbff, #6aa3ff);
}

.sample-report-threshold-chart__bar--accent i {
  background: linear-gradient(90deg, #5f94ff, #113c96);
}

.sample-report-gauge {
  margin: 18px 0 12px;
}

.sample-report-gauge__dial {
  position: relative;
  width: 220px;
  height: 110px;
  margin: 0 auto 18px;
  overflow: hidden;
  border-top-left-radius: 220px;
  border-top-right-radius: 220px;
  background: conic-gradient(from 180deg, #deebff 0 35%, #73a8ff 35% 72%, #123b93 72% 100%);
}

.sample-report-gauge__dial::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: -92px;
  height: 180px;
  border-radius: 50%;
  background: #fff;
}

.sample-report-gauge__needle {
  position: absolute;
  bottom: 0;
  left: calc(50% - 2px);
  width: 4px;
  height: 88px;
  border-radius: 999px;
  background: #0b1c4f;
  transform-origin: bottom center;
  transform: rotate(38deg);
  animation: sampleReportNeedle 1.4s ease;
}

.sample-report-pathways {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sample-report-pathway-card {
  padding: 26px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.sample-report-pathway-card--featured {
  background: linear-gradient(160deg, #ffffff 0%, #eff5ff 58%, #e3eeff 100%);
}

.sample-report-pathway-card__tag {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(29, 90, 232, 0.1);
  color: var(--sr-blue-800);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.sample-report-priority-ring {
  position: relative;
  width: 96px;
  height: 96px;
  background: conic-gradient(#113c96 calc(var(--progress) * 1%), rgba(29, 90, 232, 0.1) 0);
}

.sample-report-priority-ring::before {
  content: "";
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
}

.sample-report-priority-ring strong,
.sample-report-priority-ring span {
  position: relative;
  z-index: 1;
}

.sample-report-pathway-metrics {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 20px;
}

.sample-report-grid--insights {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.sample-report-panel--dark,
.sample-report-panel--dark-alt {
  padding: 30px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.sample-report-panel--dark h2,
.sample-report-panel--dark h3,
.sample-report-panel--dark-alt h3,
.sample-report-panel--dark p,
.sample-report-panel--dark-alt p,
.sample-report-lock-preview li,
.sample-report-risk-list strong,
.sample-report-risk-list p {
  color: #fff;
}

.sample-report-lock-preview {
  position: relative;
  margin-top: 24px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.sample-report-lock-preview ul {
  display: grid;
  gap: 12px;
}

.sample-report-lock-preview__blur {
  position: absolute;
  inset: 0;
  backdrop-filter: blur(10px);
  background: linear-gradient(180deg, rgba(8, 22, 61, 0.22), rgba(8, 22, 61, 0.42));
  pointer-events: none;
}

.sample-report-risk-list {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.sample-report-risk-list article {
  display: flex;
  gap: 14px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.sample-report-risk-list i {
  margin-top: 5px;
  color: #8bb7ff;
}

.sample-report-grid--roadmap {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: start;
}

.sample-report-roadmap {
  position: relative;
  display: grid;
  gap: 16px;
  padding-left: 28px;
}

.sample-report-roadmap::before {
  content: "";
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 8px;
  width: 2px;
  background: linear-gradient(180deg, #82b2ff 0%, #113c96 100%);
}

.sample-report-roadmap article {
  position: relative;
  display: grid;
  gap: 10px;
  grid-template-columns: 82px minmax(0, 1fr);
  padding: 20px;
  border-radius: 22px;
  border: 1px solid rgba(17, 60, 150, 0.08);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 18px 35px rgba(15, 23, 42, 0.06);
}

.sample-report-roadmap article::before {
  content: "";
  position: absolute;
  top: 28px;
  left: -24px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  border: 5px solid #1d5ae8;
}

.sample-report-roadmap span {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sr-blue-700);
}

.sample-report-trust-grid {
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  align-items: start;
}

.sample-report-testimonials {
  padding: 26px;
}

.sample-report-testimonial {
  display: none;
  padding: 22px;
  background: rgba(244, 248, 255, 0.88);
  border: 1px solid rgba(17, 60, 150, 0.08);
}

.sample-report-testimonial.is-active {
  display: block;
  animation: sampleReportFade 0.5s ease;
}

.sample-report-testimonial p {
  font-size: 1.06rem;
  color: var(--sr-text);
}

.sample-report-testimonial strong {
  margin-top: 18px;
  color: var(--sr-blue-900);
}

.sample-report-testimonial-dots {
  margin-top: 18px;
  justify-content: flex-start;
}

.sample-report-testimonial-dots button {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: rgba(17, 60, 150, 0.18);
  transition: background 0.25s ease, transform 0.25s ease;
}

.sample-report-testimonial-dots button.is-active {
  background: #1d5ae8;
  transform: scale(1.15);
}

.sample-report-cta {
  padding: 32px 0 80px;
  background: linear-gradient(180deg, #eef5ff 0%, #ffffff 100%);
}

.sample-report-cta__card {
  align-items: center;
  padding: 34px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(226, 238, 255, 0.95));
}

.sample-report-cta__actions {
  flex-direction: column;
  align-items: flex-start;
  min-width: 290px;
}

.sample-report-sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 45;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #1d5ae8, #0b2b89);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 20px 40px rgba(17, 60, 150, 0.34);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.sample-report-sticky-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 45px rgba(17, 60, 150, 0.38);
}

.sample-report-skeleton {
  position: relative;
}

.sample-report-skeleton.is-loading::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 15%, rgba(255, 255, 255, 0.65) 50%, rgba(255, 255, 255, 0) 85%);
  animation: sampleReportShimmer 1.2s linear infinite;
}

@keyframes sampleReportFloat {
  0%,
  100% { transform: translateY(0); }
  50% { transform: translateY(18px); }
}

@keyframes sampleReportShimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

@keyframes sampleReportFade {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes sampleReportGrow {
  from { transform: scale(0.88); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

@keyframes sampleReportNeedle {
  from { transform: rotate(-36deg); }
  to { transform: rotate(38deg); }
}

@media (max-width: 1100px) {
  .sample-report-hero__content,
  .sample-report-grid--summary,
  .sample-report-grid--insights,
  .sample-report-grid--roadmap,
  .sample-report-trust-grid,
  .sample-report-chart-grid,
  .sample-report-pathways {
    grid-template-columns: 1fr;
  }

  .sample-report-cta__card,
  .sample-report-cover__top,
  .sample-report-pathway-card__top {
    flex-direction: column;
  }

  .sample-report-cta__actions {
    min-width: 0;
  }
}

@media (max-width: 768px) {
  .sample-report-container {
    padding: 0 18px;
  }

  .sample-report-hero {
    padding-top: 44px;
  }

  .sample-report-hero h1 {
    max-width: none;
    font-size: clamp(2.2rem, 10vw, 3.4rem);
  }

  .sample-report-cover,
  .sample-report-panel,
  .sample-report-pathway-card,
  .sample-report-testimonials,
  .sample-report-cta__card {
    border-radius: 24px;
  }

  .sample-report-cover,
  .sample-report-panel,
  .sample-report-pathway-card,
  .sample-report-testimonials,
  .sample-report-cta__card {
    padding: 22px;
  }

  .sample-report-cover__grid,
  .sample-report-insight-row,
  .sample-report-pathway-metrics,
  .sample-report-proofline,
  .sample-report-proof-stats {
    grid-template-columns: 1fr;
  }

  .sample-report-ring {
    --size: 146px;
  }

  .sample-report-gauge__dial {
    width: 180px;
    height: 90px;
  }

  .sample-report-roadmap {
    padding-left: 20px;
  }

  .sample-report-roadmap article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .sample-report-roadmap article::before {
    left: -18px;
  }

  .sample-report-hero__actions .sample-report-btn,
  .sample-report-cta__actions .sample-report-btn {
    width: 100%;
  }

  .sample-report-sticky-cta {
    left: 14px;
    right: 14px;
    bottom: 14px;
    justify-content: center;
  }
}