.hero {
  padding: 96px 40px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -180px;
  width: 480px;
  height: 480px;
  border: 1px solid var(--hairline);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.55;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -160px;
  width: 360px;
  height: 360px;
  border: 1px solid var(--hairline);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.45;
}

.hero .container {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero h1 {
  color: var(--navy);
  margin: 18px 0 24px;
  font-family: var(--ff-display);
  font-size: clamp(48px, 6.4vw, 96px);
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.hero h1 em {
  color: var(--gold-600);
  font-style: italic;
  font-weight: 400;
  position: relative;
  display: inline-block;
}

.hero h1 em::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.06em;
  height: 2px;
  background: var(--gold-300);
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 1200ms 600ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.hero h1.is-in em::after {
  transform: scaleX(1);
}

.hero .cta {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.hero .reassure {
  display: flex;
  gap: 10px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.hero .reassure .r {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 12.5px;
  color: var(--ink-500);
  padding: 7px 13px 7px 11px;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 999px;
  transition: border-color 200ms ease, color 200ms ease, transform 240ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.hero .reassure .r:hover {
  border-color: var(--gold-300);
  color: var(--ink-700);
  transform: translateY(-1px);
}

.hero .reassure .r svg {
  color: var(--gold-600);
  flex: 0 0 auto;
}

.hero-figure {
  background: var(--cream);
  border: 1px solid var(--hairline);
  padding: 36px;
  aspect-ratio: 4 / 5;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  box-shadow:
    0 1px 0 rgba(15,23,41,0.04),
    0 30px 60px -32px rgba(27,42,74,0.35);
  transform-style: preserve-3d;
}

.hero-photo {
  margin: 0;
  padding: 0;
  min-height: 760px;
  overflow: hidden;
  background: var(--cream-50);
  isolation: isolate;
}

.hero-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  transform: scale(1.14);
  filter: saturate(0.94) contrast(1.02);
  transition:
    transform 1600ms 140ms cubic-bezier(0.22, 0.61, 0.36, 1),
    filter 520ms ease;
}

.hero-photo.is-animating img {
  transform: scale(1.04);
}

.hero-photo:hover img {
  transform: scale(1.08);
  filter: saturate(1) contrast(1.04);
}

.hero-photo::after {
  content: '';
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(245, 237, 214, 0.62);
  opacity: 0;
  transform: scale(0.94);
  pointer-events: none;
  z-index: 1;
  transition:
    opacity 900ms 220ms ease,
    transform 1200ms 220ms cubic-bezier(0.22, 0.61, 0.36, 1),
    inset 320ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.hero-photo.is-animating::after {
  opacity: 1;
  transform: scale(1);
}

.hero-photo:hover::after {
  inset: 24px;
}

.hero-figure::before {
  content: '';
  position: absolute;
  inset: -1px;
  border: 1px solid var(--gold-300);
  opacity: 0;
  pointer-events: none;
  transition: opacity 320ms ease;
}

.hero-figure:hover::before {
  opacity: 0.5;
}

.hero-figure .ribbon {
  position: absolute;
  top: 28px;
  left: -1px;
  background: var(--navy);
  color: var(--cream);
  font-family: var(--ff-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 7px 14px;
}

.hero-figure .ribbon::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 0;
  bottom: 0;
  width: 6px;
  background: var(--navy-700);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.hero-figure .pulse-dot {
  position: absolute;
  top: 28px;
  right: 26px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ok);
}

.hero-figure .pulse-dot::before {
  content: 'Live';
}

.hero-figure .pulse-dot span {
  width: 7px;
  height: 7px;
  background: var(--ok);
  border-radius: 50%;
  position: relative;
}

.hero-figure .pulse-dot span::after {
  content: '';
  position: absolute;
  inset: -4px;
  border: 1px solid var(--ok);
  border-radius: 50%;
  animation: pulse-ring 2.4s ease-out infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(0.6); opacity: 0.9; }
  100% { transform: scale(2.2); opacity: 0; }
}

.hero-figure .scoreline {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.hero-figure .scoreline .figure-xl {
  color: var(--navy);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.03em;
}

.hero-figure .scoreline .of {
  font-family: var(--ff-mono);
  font-size: 12px;
  color: var(--ink-500);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-figure .scoreline .of .band-developing {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--navy);
  letter-spacing: 0.04em;
}

.hero-figure .meter {
  height: 4px;
  background: rgba(27,42,74,0.12);
  position: relative;
  margin: 24px 0 6px;
  overflow: visible;
}

.hero-figure .meter .fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  background: var(--navy);
  transition: width 1400ms 200ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.hero-figure.is-animating .meter .fill {
  width: var(--target, 73%);
}

.hero-figure .meter .tag-mark {
  position: absolute;
  top: -12px;
  right: 28%;
  width: 1px;
  height: 24px;
  background: var(--gold-600);
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 400ms 1300ms ease, transform 400ms 1300ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.hero-figure.is-animating .meter .tag-mark {
  opacity: 1;
  transform: none;
}

.hero-figure .meter-labels {
  display: flex;
  justify-content: space-between;
  font-family: var(--ff-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  color: var(--ink-500);
  text-transform: uppercase;
}

.hero-figure .meter-labels .here {
  color: var(--navy);
}

.hero-figure .modules {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 22px;
}

.hero-figure .mod {
  display: grid;
  grid-template-columns: 78px 1fr 22px;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
}

.hero-figure .mod .lbl {
  color: var(--ink-700);
}

.hero-figure .mod .pct {
  font-family: var(--ff-mono);
  font-size: 11px;
  color: var(--navy);
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.hero-figure .mod .bar {
  height: 2px;
  background: rgba(27,42,74,0.16);
  position: relative;
  overflow: hidden;
}

.hero-figure .mod .bar::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  background: var(--navy);
  transition: width 1300ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.hero-figure.is-animating .mod .bar::before {
  width: var(--target, 50%);
}

.hero-figure.is-animating .mod.m1 .bar::before { transition-delay: 400ms; }
.hero-figure.is-animating .mod.m2 .bar::before { transition-delay: 500ms; }
.hero-figure.is-animating .mod.m3 .bar::before { transition-delay: 600ms; }
.hero-figure.is-animating .mod.m4 .bar::before { transition-delay: 700ms; }
.hero-figure.is-animating .mod.m5 .bar::before { transition-delay: 800ms; }
.hero-figure.is-animating .mod.m6 .bar::before { transition-delay: 900ms; }

.strip {
  background: var(--cream-50);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: 22px 0;
  overflow: hidden;
  position: relative;
}

.strip .item {
  font-family: var(--ff-mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-500);
  flex: 0 0 auto;
}

.strip .item b {
  color: var(--navy);
  font-weight: 500;
}

.strip .dotsep {
  color: var(--gold);
  font-size: 9px;
  flex: 0 0 auto;
  opacity: 0.7;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.step {
  padding-top: 26px;
  position: relative;
}

.step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--hairline);
}

.step::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 22%;
  height: 1px;
  background: var(--navy);
  transform-origin: left center;
  transition: width 480ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.step:hover::after {
  width: 100%;
}

.step .stepnum {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--ff-display);
  font-size: 32px;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.step .stepnum .n {
  font-feature-settings: 'lnum';
  line-height: 1;
}

.step .stepnum .line {
  flex: 1;
  height: 1px;
  background: var(--hairline);
  position: relative;
}

.step .stepnum .line::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  background: var(--gold);
  transition: width 600ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.step:hover .stepnum .line::before {
  width: 100%;
}

.step h4 {
  font-family: var(--ff-display);
  font-weight: 500;
  margin: 16px 0 10px;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.15;
}

.step p {
  color: var(--ink-700);
  margin: 0;
  font-size: 14.5px;
}

.routes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  position: relative;
}

.route-tile {
  background: var(--white);
  border: 1px solid var(--hairline);
  padding: 34px 28px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition:
    transform 320ms cubic-bezier(0.22, 0.61, 0.36, 1),
    border-color 240ms ease,
    box-shadow 320ms ease;
}

.route-tile::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 2px;
  background: var(--navy);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 480ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.route-tile:hover {
  transform: translateY(-4px);
  border-color: var(--navy);
  box-shadow: 0 24px 48px -28px rgba(27,42,74,0.28);
}

.route-tile:hover::before {
  transform: scaleX(1);
}

.route-tile .num {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--gold-600);
}

.route-tile h3 {
  font-family: var(--ff-display);
  margin: 12px 0 10px;
  color: var(--navy);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.route-tile .px {
  font-family: var(--ff-display);
  font-size: 30px;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.route-tile .px .u {
  font-family: var(--ff-mono);
  font-size: 11.5px;
  color: var(--muted);
  letter-spacing: 0.08em;
  margin-left: 6px;
}

.route-tile p {
  color: var(--ink-700);
  margin: 18px 0 26px;
  flex: 1;
  font-size: 14.5px;
  line-height: 1.55;
}

.route-tile .mini-link {
  margin-top: auto;
  color: var(--navy);
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.route-tile .mini-link .arr {
  transition: transform 260ms cubic-bezier(0.22, 0.61, 0.36, 1);
  display: inline-block;
}

.route-tile:hover .mini-link .arr {
  transform: translateX(6px);
}

.route-tile.featured {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--cream);
}

.route-tile.featured::before {
  background: var(--gold);
  transform: scaleX(1);
}

.route-tile.featured .num,
.route-tile.featured h3,
.route-tile.featured .px {
  color: var(--cream);
}

.route-tile.featured .num {
  color: var(--gold-300);
}

.route-tile.featured .px .u {
  color: rgba(245,237,214,0.6);
}

.route-tile.featured p {
  color: rgba(245,237,214,0.82);
}

.route-tile.featured .mini-link {
  color: var(--gold-300);
}

.route-tile.featured:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -28px rgba(27,42,74,0.55);
}

.ribbon-most {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 7px 14px 6px;
}

.hero-figure .kicker {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 14px;
}

.hero-figure .scoreline .of .band-strong,
.hero-figure .scoreline .of .band-developing {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--navy);
  letter-spacing: 0.04em;
}

.sample-report {
  position: relative;
  overflow: hidden;
}

.sample-report::before {
  content: '';
  position: absolute;
  top: -140px;
  right: -120px;
  width: 360px;
  height: 360px;
  border: 1px solid var(--hairline);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.55;
}

.sample-report .container {
  position: relative;
  z-index: 1;
}

.sample-report-shell {
  display: grid;
  grid-template-columns: 1.16fr 0.84fr;
  gap: 44px;
  align-items: start;
}

.sample-report-side {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 18px;
}

.sample-report-note {
  background: var(--cream-50);
  border: 1px solid var(--hairline);
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sample-report-note .k {
  font-family: var(--ff-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.sample-report-note .v {
  font-family: var(--ff-display);
  font-size: 17px;
  color: var(--navy);
}

.sample-report-summary {
  color: var(--ink-700);
  font-size: 14.5px;
  line-height: 1.6;
  margin: 4px 0 10px;
}

.sample-report-card {
  padding: 34px;
  aspect-ratio: auto;
  min-height: 760px;
  gap: 24px;
}

.sample-report-card .pulse-dot {
  color: var(--gold-600);
}

.sample-report-card .pulse-dot::before {
  content: 'Specimen';
}

.sample-report-card .pulse-dot span {
  background: var(--gold);
}

.sample-report-card .pulse-dot span::after {
  border-color: var(--gold);
}

.sample-report-card__summary {
  padding-top: 18px;
  border-top: 1px solid var(--hairline-2);
}

.sample-report-card__summary h3 {
  font-family: var(--ff-display);
  font-size: 24px;
  color: var(--navy);
  margin: 0 0 10px;
  font-weight: 500;
}

.sample-report-card__summary p {
  color: var(--ink-700);
  font-size: 13.5px;
  line-height: 1.6;
  margin: 0;
}

.what-next {
  position: relative;
}

.what-next-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.what-next-card {
  background: var(--white);
  border: 1px solid var(--hairline);
  padding: 30px 28px 28px;
  position: relative;
  overflow: hidden;
  transition:
    transform 320ms cubic-bezier(0.22, 0.61, 0.36, 1),
    border-color 220ms ease,
    box-shadow 320ms ease;
}

.what-next-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 360ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.what-next-card:hover {
  transform: translateY(-4px);
  border-color: var(--navy);
  box-shadow: 0 24px 48px -30px rgba(27,42,74,0.28);
}

.what-next-card:hover::before {
  transform: scaleX(1);
}

.what-next-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--gold-300);
  background: var(--cream);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: transform 320ms cubic-bezier(0.22, 0.61, 0.36, 1), background 220ms ease;
}

.what-next-card:hover .what-next-card__icon {
  transform: scale(1.06) rotate(6deg);
  background: var(--white);
}

.what-next-card__icon svg {
  width: 22px;
  height: 22px;
}

.what-next-card .n {
  display: block;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 8px;
}

.what-next-card h3 {
  font-family: var(--ff-display);
  font-size: 24px;
  line-height: 1.1;
  color: var(--navy);
  margin: 0 0 12px;
  font-weight: 500;
}

.what-next-card p {
  color: var(--ink-700);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.csr-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.csr-card {
  background: var(--white);
  border: 1px solid var(--hairline);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition:
    transform 280ms cubic-bezier(0.22, 0.61, 0.36, 1),
    border-color 220ms ease,
    box-shadow 280ms ease;
}

.csr-card:hover {
  transform: translateY(-4px);
  border-color: var(--navy);
  box-shadow: 0 20px 36px -24px rgba(27,42,74,0.28);
}

.csr-card .av {
  transition: transform 320ms cubic-bezier(0.22, 0.61, 0.36, 1), background 220ms ease, color 220ms ease;
}

.csr-card:hover .av {
  background: var(--navy);
  color: var(--cream);
  transform: scale(1.04);
}

.csr-card .top {
  display: flex;
  gap: 14px;
  align-items: center;
}

.csr-card .av {
  width: 56px;
  height: 56px;
  background: var(--cream);
  border: 1px solid var(--hairline);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  color: var(--navy);
  font-size: 22px;
}

.csr-card .nm {
  font-family: var(--ff-display);
  color: var(--navy);
  font-size: 20px;
}

.csr-card .ro {
  font-family: var(--ff-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.06em;
}

.csr-card .verified {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ok);
  font-family: var(--ff-mono);
  font-size: 11px;
}

.csr-card .tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.csr-card .tags span {
  background: var(--cream-50);
  border: 1px solid var(--hairline);
  padding: 3px 9px;
  font-family: var(--ff-mono);
  font-size: 10.5px;
  color: var(--ink-700);
  letter-spacing: 0.04em;
}

.csr-card .meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid var(--hairline-2);
  font-family: var(--ff-mono);
  font-size: 11px;
  color: var(--muted);
}

.endorse {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.quote {
  background: var(--white);
  border: 1px solid var(--hairline);
  padding: 44px 40px 36px;
  position: relative;
  transition: transform 280ms cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 280ms ease, border-color 220ms ease;
}

.quote:hover {
  transform: translateY(-3px);
  border-color: var(--gold-300);
  box-shadow: 0 22px 40px -28px rgba(27,42,74,0.22);
}

.quote .qmark {
  position: absolute;
  top: 8px;
  left: 22px;
  font-family: var(--ff-display);
  font-size: 120px;
  line-height: 1;
  color: var(--gold-300);
  opacity: 0.55;
  pointer-events: none;
  user-select: none;
}

.quote p {
  font-family: var(--ff-display);
  font-size: 23px;
  line-height: 1.35;
  color: var(--navy);
  margin: 0 0 28px;
  font-weight: 400;
  position: relative;
  z-index: 1;
}

.quote .by {
  display: flex;
  gap: 14px;
  align-items: center;
}

.quote .by .av {
  width: 44px;
  height: 44px;
  background: var(--cream);
  border: 1px solid var(--hairline);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  color: var(--navy);
  font-size: 18px;
}

.quote .by .nm {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}

.quote .by .ro {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
}

.cta-block {
  background: var(--navy);
  color: var(--cream);
  padding: 80px 64px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: end;
  border: 1px solid var(--navy);
  position: relative;
  overflow: hidden;
}

.cta-block .cta-rings {
  position: absolute;
  top: -120px;
  right: -120px;
  width: 420px;
  height: 420px;
  pointer-events: none;
}

.cta-block .cta-rings span {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(245,237,214,0.18);
  border-radius: 50%;
  animation: cta-ring 14s ease-in-out infinite;
}

.cta-block .cta-rings span:nth-child(2) {
  inset: 40px;
  border-color: rgba(245,237,214,0.14);
  animation-delay: -3s;
  animation-duration: 18s;
}

.cta-block .cta-rings span:nth-child(3) {
  inset: 90px;
  border-color: rgba(201,168,76,0.36);
  animation-delay: -6s;
  animation-duration: 22s;
}

@keyframes cta-ring {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50%      { transform: scale(1.05); opacity: 1; }
}

.cta-block .eyebrow {
  color: var(--gold-300);
}

.cta-copy {
  position: relative;
  z-index: 1;
}

.cta-block h2 {
  color: var(--cream);
  margin: 10px 0 18px;
  max-width: 18ch;
  font-family: var(--ff-display);
  font-size: clamp(34px, 4vw, 60px);
  line-height: 1.1;
  font-weight: 500;
}

.cta-block p {
  color: rgba(245,237,214,0.78);
  max-width: 50ch;
  margin: 0;
  font-size: 17px;
}

.cta-block .actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
  position: relative;
  z-index: 1;
}

.cta-block .btn-ghost {
  color: var(--cream);
  border-color: rgba(245,237,214,0.32);
}

.cta-block .btn-ghost:hover {
  border-color: var(--cream);
  color: var(--cream);
}

@media (max-width: 980px) {
  .hero .container,
  .routes,
  .sample-report-shell,
  .what-next-grid,
  .csr-grid,
  .endorse,
  .cta-block {
    grid-template-columns: 1fr;
  }

  .routes,
  .what-next-grid,
  .csr-grid,
  .endorse {
    gap: 12px;
  }

  .steps {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .section-head-2 {
    gap: 10px;
  }

  .sample-report-card {
    min-height: 0;
  }

  .cta-block {
    padding: 40px 20px;
    gap: 24px;
  }

  .cta-block .cta-rings {
    width: 280px;
    height: 280px;
    top: -80px;
    right: -80px;
  }

  .cta-block .actions {
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .hero {
    padding: 52px 2px 44px;
  }

  .hero::before, .hero::after { display: none; }

  .hero-figure {
    padding: 28px;
    aspect-ratio: auto;
  }

  .hero-photo {
    padding: 0;
    min-height: 560px;
  }

  .hero-photo::after {
    inset: 14px;
  }

  .hero-photo:hover::after {
    inset: 18px;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .sample-report-summary {
    max-width: none;
  }

  .hero-figure .modules {
    grid-template-columns: 1fr;
  }

  .hero .reassure {
    gap: 8px;
  }
}

/* ======================================================
   Home counsellor preview (empty state, pre-API)
   ====================================================== */

.csr-preview {
  display: grid;
  grid-template-columns: 140px 1fr 240px;
  align-items: center;
  gap: 36px;
  padding: 40px 44px;
  background: var(--white);
  border: 1px solid var(--hairline);
  position: relative;
  overflow: hidden;
}

.csr-preview::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
}

.csr-preview__mark {
  position: relative;
  width: 130px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
}

.csr-preview__mark span {
  position: absolute;
  inset: 0;
  border: 1px solid var(--hairline);
  border-radius: 50%;
  animation: csr-preview-pulse 5s ease-in-out infinite;
}

.csr-preview__mark span:nth-child(2) {
  inset: 18px;
  border-color: var(--gold-300);
  animation-delay: -2s;
}

@keyframes csr-preview-pulse {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  50%      { transform: scale(1.05); opacity: 1; }
}

.csr-preview__mark svg {
  position: relative;
  z-index: 1;
}

.csr-preview__body {
  min-width: 0;
}

.csr-preview__body .eyebrow {
  display: block;
  margin-bottom: 10px;
}

.csr-preview__body h3 {
  font-family: var(--ff-display);
  font-size: clamp(22px, 2.6vw, 30px);
  color: var(--navy);
  margin: 0 0 12px;
  line-height: 1.15;
  font-weight: 500;
  letter-spacing: -0.005em;
}

.csr-preview__body p {
  color: var(--ink-700);
  margin: 0 0 22px;
  font-size: 15px;
  line-height: 1.6;
  max-width: 60ch;
}

.csr-preview__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.csr-preview__meta {
  border-left: 1px solid var(--hairline);
  padding-left: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.csr-preview__meta > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.csr-preview__meta .k {
  font-family: var(--ff-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.csr-preview__meta .v {
  font-family: var(--ff-display);
  font-size: 16px;
  color: var(--navy);
}

@media (max-width: 980px) {
  .csr-preview {
    grid-template-columns: 1fr;
    padding: 32px 24px;
    gap: 24px;
    text-align: center;
  }

  .csr-preview__mark {
    margin: 0 auto;
  }

  .csr-preview__body p {
    margin-left: auto;
    margin-right: auto;
  }

  .csr-preview__actions {
    justify-content: center;
  }

  .csr-preview__meta {
    border-left: 0;
    border-top: 1px solid var(--hairline);
    padding-left: 0;
    padding-top: 20px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 18px;
    text-align: left;
  }
}

/* ======================================================
   What we don't do — expectations grid
   ====================================================== */
.expectations {
  position: relative;
  overflow: hidden;
}

.expectations::before {
  content: '';
  position: absolute;
  top: 60px;
  right: -120px;
  width: 280px;
  height: 280px;
  border: 1px solid var(--hairline);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.55;
}

.expectations .container {
  position: relative;
  z-index: 1;
}

.expectations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}

.exp-card {
  background: var(--white);
  padding: 32px 28px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition:
    background 220ms ease,
    transform 320ms cubic-bezier(0.22, 0.61, 0.36, 1);
  overflow: hidden;
}

.exp-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 360ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.exp-card:hover {
  background: var(--cream-50);
  transform: translateY(-3px);
}

.exp-card:hover::before {
  transform: scaleX(1);
}

.exp-mark {
  width: 40px;
  height: 40px;
  border: 1px solid var(--gold-300);
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-600);
  margin-bottom: 22px;
  transition: transform 360ms cubic-bezier(0.22, 0.61, 0.36, 1), border-color 220ms ease, background 220ms ease;
}

.exp-mark svg {
  width: 16px;
  height: 16px;
}

.exp-card:hover .exp-mark {
  transform: scale(1.08) rotate(8deg);
  border-color: var(--gold);
  background: var(--white);
}

.exp-no {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 6px;
}

.exp-card h3 {
  font-family: var(--ff-display);
  font-size: 24px;
  color: var(--navy);
  font-weight: 500;
  margin: 0 0 12px;
  line-height: 1.1;
  letter-spacing: -0.005em;
}

.exp-card p {
  color: var(--ink-700);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

@media (max-width: 980px) {
  .expectations-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .expectations-grid {
    grid-template-columns: 1fr;
  }
}
