@import "tailwindcss";

@font-face {
  font-family: "Manrope Variable";
  font-style: normal;
  font-display: swap;
  font-weight: 200 800;
  src: url("/fonts/manrope-latin.woff2") format("woff2-variations");
}

@font-face {
  font-family: "Barlow Condensed";
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url("/fonts/barlow-condensed-latin-400.woff2") format("woff2");
}

@font-face {
  font-family: "Barlow Condensed";
  font-style: normal;
  font-display: swap;
  font-weight: 600;
  src: url("/fonts/barlow-condensed-latin-600.woff2") format("woff2");
}

@font-face {
  font-family: "Barlow Condensed";
  font-style: normal;
  font-display: swap;
  font-weight: 700;
  src: url("/fonts/barlow-condensed-latin-700.woff2") format("woff2");
}

:root {
  --ink: #09090a;
  --ink-soft: #101013;
  --graphite: #17171b;
  --bone: #f0ebe1;
  --bone-soft: #d6d0c5;
  --muted: #938e86;
  --line-dark: rgba(240, 235, 225, 0.17);
  --line-light: rgba(9, 9, 10, 0.17);
  --cobalt: #3658ff;
  --wine: #8a263f;
  --petrol: #0e4d52;
  --display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --body: "Manrope Variable", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--ink);
  color: var(--bone);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

p {
  text-wrap: pretty;
}

.sentence-line {
  display: block;
}

.sentence-line + .sentence-line {
  margin-top: 0.55em;
}

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

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

::selection {
  background: var(--bone);
  color: var(--ink);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  transform: translateY(-160%);
  background: var(--bone);
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 2px solid var(--cobalt);
  outline-offset: 4px;
}

.shell {
  width: min(calc(100% - 64px), 1320px);
  margin-inline: auto;
}

.texture-dark {
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(circle at 77% 21%, rgba(59, 63, 77, 0.22), transparent 34%),
    radial-gradient(circle at 14% 72%, rgba(89, 30, 49, 0.12), transparent 29%),
    linear-gradient(112deg, #070708 0%, #111114 49%, #080809 100%);
}

.texture-dark::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0.28;
  background-image:
    repeating-linear-gradient(
      105deg,
      rgba(255, 255, 255, 0.017) 0,
      rgba(255, 255, 255, 0.017) 1px,
      transparent 1px,
      transparent 4px
    ),
    repeating-linear-gradient(
      15deg,
      rgba(255, 255, 255, 0.01) 0,
      rgba(255, 255, 255, 0.01) 1px,
      transparent 1px,
      transparent 6px
    );
  mix-blend-mode: soft-light;
}

.wordmark {
  display: inline-flex;
  align-items: baseline;
  white-space: nowrap;
  color: var(--bone);
}

.wordmark strong {
  font-size: 1.36rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.055em;
}

.wordmark > span {
  margin-left: 12px;
  font-size: 0.56rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.52em;
  color: var(--bone-soft);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 28px;
  font-size: 0.69rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.eyebrow::after {
  width: 62px;
  height: 1px;
  content: "";
  background: currentColor;
  opacity: 0.45;
}

.eyebrow > span {
  color: var(--cobalt);
}

.eyebrow-light {
  color: var(--bone-soft);
}

.eyebrow-dark {
  color: #3f3c37;
}

.eyebrow-accent {
  color: var(--bone-soft);
}

.eyebrow-accent > span {
  color: #7187ff;
}

.site-header {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 92px;
  border-bottom: 1px solid var(--line-dark);
}

.logo-link {
  justify-self: start;
}

.desktop-nav {
  display: flex;
  gap: clamp(22px, 2.4vw, 42px);
}

.desktop-nav a,
.header-contact {
  position: relative;
  font-size: 0.64rem;
  font-weight: 650;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bone-soft);
}

.desktop-nav a::after {
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 0;
  height: 1px;
  content: "";
  background: var(--bone);
  transition: width 220ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  width: 100%;
}

.header-contact {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 10px;
  padding: 12px 16px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.header-contact:hover {
  border-color: var(--bone);
  background: var(--bone);
  color: var(--ink);
}

.mobile-menu {
  display: none;
  justify-self: end;
}

.mobile-menu summary {
  display: grid;
  width: 48px;
  height: 48px;
  cursor: pointer;
  list-style: none;
  place-content: center;
  gap: 7px;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu summary span {
  display: block;
  width: 20px;
  height: 1px;
  background: var(--bone);
  transition: transform 180ms ease;
}

.mobile-menu[open] summary span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.mobile-menu[open] summary span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.mobile-menu nav {
  position: absolute;
  top: 78px;
  right: 0;
  left: 0;
  display: grid;
  padding: 18px;
  border: 1px solid var(--line-dark);
  background: rgba(9, 9, 10, 0.98);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
}

.mobile-menu nav a {
  padding: 15px 8px;
  border-bottom: 1px solid var(--line-dark);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mobile-menu nav a:last-child {
  border-bottom: 0;
  color: #8fa0ff;
}

.hero {
  min-height: 100svh;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  z-index: -1;
  top: 13%;
  left: 54%;
  width: min(44vw, 720px);
  aspect-ratio: 1;
  border-radius: 45%;
  opacity: 0.14;
  background: linear-gradient(130deg, rgba(54, 88, 255, 0.52), transparent 45%, rgba(138, 38, 63, 0.42));
  filter: blur(100px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.09fr) minmax(390px, 0.91fr);
  align-items: center;
  gap: clamp(48px, 6vw, 100px);
  min-height: calc(100svh - 184px);
  padding-block: 58px 70px;
}

.hero-copy {
  position: relative;
  z-index: 3;
  animation: hero-rise 700ms cubic-bezier(0.2, 0.75, 0.2, 1) both;
}

.hero h1,
.section-heading h2,
.cost-intro h2,
.faq-heading h2,
.author-copy h2,
.final-offer h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.028em;
}

.hero h1 {
  max-width: 790px;
  font-size: clamp(4rem, 6.1vw, 6.8rem);
  line-height: 0.88;
  color: var(--bone);
}

.hero h1 > span {
  display: block;
  margin-top: 0.17em;
  color: #aaa49a;
}

.hero-intro {
  max-width: 620px;
  margin: 30px 0 0;
  font-size: clamp(1rem, 1.15vw, 1.12rem);
  line-height: 1.75;
  color: #aaa59c;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 38px;
}

.primary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-height: 66px;
  padding: 7px 7px 7px 25px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: var(--bone);
  color: var(--ink);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 14px 50px rgba(0, 0, 0, 0.2);
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.primary-cta:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 20px 65px rgba(0, 0, 0, 0.32);
}

.primary-cta > span:first-child {
  padding-right: 24px;
}

.cta-arrow {
  display: grid;
  flex: 0 0 50px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--bone);
  place-items: center;
}

.cta-arrow svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-block: 12px;
  border-bottom: 1px solid var(--line-dark);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #a9a49b;
  transition: color 180ms ease;
}

.text-link:hover {
  color: var(--bone);
}

.hero-proof {
  position: relative;
  width: 100%;
  height: min(62vw, 650px);
  max-height: 650px;
  min-height: 530px;
  animation: proof-enter 900ms 120ms cubic-bezier(0.2, 0.75, 0.2, 1) both;
}

.hero-proof::before {
  position: absolute;
  z-index: 0;
  inset: 7% 1% 8% 12%;
  content: "";
  opacity: 0.42;
  background:
    radial-gradient(circle at 72% 32%, rgba(54, 88, 255, 0.44), transparent 31%),
    radial-gradient(circle at 28% 72%, rgba(138, 38, 63, 0.3), transparent 34%);
  filter: blur(56px);
}

.proof-site {
  position: absolute;
  z-index: 4;
  top: 12%;
  right: 1%;
  width: 86%;
  height: 70%;
  overflow: hidden;
  border: 1px solid rgba(9, 9, 10, 0.26);
  border-radius: 4px;
  background: var(--bone);
  box-shadow:
    0 48px 110px rgba(0, 0, 0, 0.62),
    18px 20px 80px rgba(54, 88, 255, 0.1),
    -12px -8px 70px rgba(138, 38, 63, 0.07),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  transform: perspective(1200px) rotateY(-3deg) rotateZ(-0.8deg);
  transform-origin: center right;
}

.proof-site::before {
  position: absolute;
  z-index: 7;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--wine), var(--cobalt) 58%, var(--petrol));
}

.proof-site-top {
  display: flex;
  align-items: center;
  height: 13%;
  padding-inline: 7%;
  border-bottom: 1px solid rgba(9, 9, 10, 0.14);
}

.proof-logo {
  width: 24%;
  height: 11px;
  margin-right: auto;
  background: var(--ink);
}

.proof-nav {
  width: 10%;
  height: 3px;
  margin-left: 7%;
  background: rgba(9, 9, 10, 0.38);
}

.proof-nav-short {
  width: 7%;
}

.proof-site-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  height: 62%;
  padding: 9% 7% 7%;
}

.proof-site-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.proof-kicker {
  width: 26%;
  height: 4px;
  margin-bottom: 11%;
  background: var(--wine);
}

.proof-title {
  display: block;
  height: 17px;
  margin-bottom: 8px;
  background: var(--ink);
}

.proof-title-one {
  width: 82%;
}

.proof-title-two {
  width: 60%;
  margin-bottom: 12%;
}

.proof-body {
  width: 70%;
  height: 4px;
  margin-bottom: 7px;
  background: rgba(9, 9, 10, 0.34);
}

.proof-body-short {
  width: 52%;
}

.proof-button {
  width: 43%;
  height: 22px;
  margin-top: auto;
  border-radius: 999px;
  background: var(--ink);
  box-shadow: 9px 0 0 rgba(54, 88, 255, 0.22);
}

.proof-image {
  position: relative;
  overflow: hidden;
  margin-left: 12%;
  border-radius: 2px;
  background:
    radial-gradient(circle at 73% 25%, rgba(54, 88, 255, 0.62), transparent 31%),
    radial-gradient(circle at 26% 79%, rgba(138, 38, 63, 0.5), transparent 34%),
    linear-gradient(25deg, #0d1618, #24242b 61%, #101012);
}

.proof-image::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.45;
  background: repeating-linear-gradient(90deg, transparent 0 9px, rgba(255, 255, 255, 0.08) 9px 10px);
  transform: skewX(-15deg) scale(1.5);
}

.proof-image span {
  position: absolute;
  right: 8%;
  bottom: 8%;
  width: 34%;
  height: 3px;
  background: var(--bone);
  box-shadow: 0 -8px 0 rgba(240, 235, 225, 0.42);
}

.proof-site-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4%;
  height: 25%;
  padding: 4% 7%;
  border-top: 1px solid rgba(9, 9, 10, 0.14);
}

.proof-site-grid span {
  border-top: 3px solid var(--ink);
  background: linear-gradient(rgba(9, 9, 10, 0.11), transparent 65%);
}

.proof-site-grid span:nth-child(2) {
  border-top-color: var(--wine);
}

.proof-site-grid span:nth-child(3) {
  border-top-color: var(--petrol);
}

.proof-fragment {
  position: absolute;
  z-index: 1;
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(240, 235, 225, 0.23);
  background: linear-gradient(145deg, rgba(21, 21, 25, 0.94), rgba(7, 7, 8, 0.8));
  box-shadow: 0 30px 75px rgba(0, 0, 0, 0.42);
}

.proof-fragment i {
  display: block;
  height: 3px;
  background: rgba(240, 235, 225, 0.16);
}

.proof-fragment i:nth-child(2) {
  width: 70%;
}

.proof-fragment-a {
  top: 4%;
  left: 0;
  width: 34%;
  height: 22%;
  transform: rotate(-9deg);
}

.proof-fragment-b {
  right: 0;
  bottom: 8%;
  width: 39%;
  height: 20%;
  opacity: 0.7;
  transform: rotate(8deg);
}

.proof-fragment-c {
  bottom: 1%;
  left: 8%;
  width: 30%;
  height: 25%;
  opacity: 0.55;
  transform: rotate(-4deg);
}

.proof-focus {
  position: absolute;
  z-index: 5;
  top: 6%;
  right: 0;
  width: 92%;
  height: 82%;
  pointer-events: none;
}

.focus-corner {
  position: absolute;
  width: 34px;
  height: 34px;
  border-color: var(--bone);
  opacity: 0.78;
}

.focus-corner-one {
  top: 0;
  left: 0;
  border-top: 1px solid;
  border-left: 1px solid;
}

.focus-corner-two {
  top: 0;
  right: 0;
  border-top: 1px solid;
  border-right: 1px solid;
}

.focus-corner-three {
  right: 0;
  bottom: 0;
  border-right: 1px solid;
  border-bottom: 1px solid;
}

.focus-corner-four {
  bottom: 0;
  left: 0;
  border-bottom: 1px solid;
  border-left: 1px solid;
}

.proof-signal {
  position: absolute;
  z-index: 6;
  right: 5%;
  bottom: 10%;
  width: 15px;
  height: 15px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--cobalt);
  box-shadow: 0 0 25px rgba(54, 88, 255, 0.8);
}

.hero-rail {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  min-height: 92px;
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.hero-rail span {
  display: grid;
  min-width: 0;
  border-right: 1px solid var(--line-dark);
  color: #8d8982;
  font-size: 0.6rem;
  font-weight: 650;
  line-height: 1.35;
  letter-spacing: 0.14em;
  padding-inline: 8px;
  text-align: center;
  text-transform: uppercase;
  place-items: center;
}

.section {
  position: relative;
  padding-block: clamp(92px, 10vw, 150px);
}

.section-light {
  background:
    radial-gradient(circle at 84% 8%, rgba(255, 255, 255, 0.72), transparent 26%),
    linear-gradient(115deg, #eee9df 0%, #e6e0d5 100%);
  color: var(--ink);
}

.section-dark {
  color: var(--bone);
}

.section-heading h2,
.cost-intro h2,
.faq-heading h2,
.author-copy h2 {
  max-width: 960px;
  font-size: clamp(3.7rem, 6vw, 6.6rem);
  line-height: 0.91;
}

.section-heading h2 > span,
.cost-intro h2 > span,
.author-copy h2 > span {
  display: block;
  color: #77716a;
}

.section-heading > p:last-child,
.section-heading-split > p,
.cost-intro > p:last-child,
.faq-heading > p:last-child {
  max-width: 600px;
  margin: 28px 0 0;
  font-size: 1.03rem;
  line-height: 1.8;
  color: #625e58;
}

.section-heading-split {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  align-items: end;
  gap: clamp(48px, 8vw, 130px);
}

.section-heading-split > p {
  margin-bottom: 8px;
}

.loss-section {
  overflow: hidden;
}

.journey {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(64px, 8vw, 110px);
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.journey-step {
  position: relative;
  min-height: 330px;
  padding: 24px 26px 32px;
  border-left: 1px solid var(--line-light);
}

.journey-step:last-child {
  border-right: 1px solid var(--line-light);
}

.journey-number {
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #746f68;
}

.journey-mark {
  position: absolute;
  top: 80px;
  right: 0;
  left: 0;
  height: 1px;
  background: rgba(9, 9, 10, 0.09);
}

.journey-mark span {
  position: absolute;
  top: -4px;
  left: 26px;
  width: 9px;
  height: 9px;
  border: 2px solid #e8e2d7;
  border-radius: 50%;
  background: var(--ink);
}

.journey-step h3 {
  margin: 128px 0 14px;
  font-family: var(--display);
  font-size: clamp(2rem, 2.5vw, 2.8rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
}

.journey-step p {
  margin: 0;
  color: #625e58;
  font-size: 0.88rem;
  line-height: 1.75;
}

.journey-step-last {
  border-color: #19191b;
  background: #151517;
  color: var(--bone);
}

.journey-step-last .journey-number,
.journey-step-last p {
  color: #aaa49a;
}

.journey-step-last .journey-mark {
  background: rgba(240, 235, 225, 0.16);
}

.journey-step-last .journey-mark span {
  border-color: #151517;
  background: var(--wine);
}

.impact-quote {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 26px;
  max-width: 920px;
  margin: clamp(70px, 9vw, 130px) 0 0 auto;
  padding-top: 36px;
  border-top: 1px solid var(--line-light);
}

.impact-quote > span {
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 0.8;
  color: var(--wine);
}

.impact-quote p {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.7rem, 4.5vw, 5.2rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.025em;
}

.impact-quote strong {
  display: block;
  font-weight: 600;
}

.comparison-heading {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 30px;
}

.comparison-heading .eyebrow {
  grid-column: 1 / -1;
}

.comparison-heading h2 {
  max-width: 840px;
}

.comparison-heading > p:last-child {
  max-width: 320px;
  margin: 0 0 8px;
  color: #99948c;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: clamp(62px, 8vw, 110px);
}

.comparison-card {
  display: flex;
  flex-direction: column;
  min-height: 510px;
  padding: 26px;
  border: 1px solid var(--line-dark);
  background: rgba(10, 10, 11, 0.78);
}

.comparison-card-absent {
  border-top-color: rgba(138, 38, 63, 0.78);
  background: linear-gradient(160deg, rgba(69, 17, 33, 0.2), rgba(10, 10, 11, 0.84) 46%);
}

.comparison-card-common {
  border-top-color: rgba(147, 142, 134, 0.8);
}

.comparison-card-virtuose {
  position: relative;
  border-color: var(--bone);
  border-top: 4px solid var(--cobalt);
  background: var(--bone);
  color: var(--ink);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.32);
}

.advantage-badge {
  position: absolute;
  z-index: 2;
  top: 84px;
  right: 26px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 28px;
  padding: 6px 10px 6px 8px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: var(--cobalt);
  color: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 8px 24px rgba(54, 88, 255, 0.24);
  font-size: 0.61rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.advantage-badge svg {
  flex: 0 0 13px;
  width: 13px;
  height: 13px;
  fill: currentColor;
}

.comparison-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line-dark);
  color: #928d85;
  font-size: 0.66rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.comparison-topline strong {
  color: var(--bone);
  font-size: 0.76rem;
}

.comparison-card-virtuose .comparison-topline {
  border-color: var(--line-light);
  color: #6b6761;
}

.comparison-card-virtuose .comparison-topline strong {
  color: var(--ink);
}

.comparison-copy {
  margin-top: 68px;
}

.comparison-state {
  margin: 0 0 18px;
  color: #8599ff;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.comparison-card-absent .comparison-state {
  color: #bd6077;
}

.comparison-card-virtuose .comparison-state {
  color: #2743ce;
}

.comparison-copy h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.5rem, 3.4vw, 3.65rem);
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: -0.024em;
}

.comparison-copy > p:last-child {
  margin: 22px 0 0;
  color: #99948c;
  font-size: 0.9rem;
  line-height: 1.75;
}

.comparison-card-virtuose .comparison-copy > p:last-child {
  color: #5a5650;
}

.strength {
  margin-top: auto;
  padding-top: 34px;
}

.strength-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  color: #86817a;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.strength-track {
  display: block;
  height: 4px;
  background: rgba(240, 235, 225, 0.12);
}

.strength-track > span {
  display: block;
  height: 100%;
  background: #85817a;
}

.comparison-card-absent .strength-track > span {
  background: var(--wine);
}

.comparison-card-virtuose .strength-track {
  background: rgba(9, 9, 10, 0.12);
}

.comparison-card-virtuose .strength-track > span {
  background: var(--cobalt);
}

.comparison-punch {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  align-items: end;
  gap: 50px;
  margin-top: clamp(72px, 9vw, 130px);
  padding-top: 40px;
  border-top: 1px solid var(--line-dark);
  font-family: var(--display);
  font-size: clamp(2.5rem, 4.2vw, 4.8rem);
  line-height: 0.96;
  letter-spacing: -0.02em;
}

.comparison-punch p,
.comparison-punch strong {
  margin: 0;
  font-weight: 400;
}

.comparison-punch p {
  color: #89847d;
}

.comparison-punch strong {
  font-weight: 600;
  color: var(--bone);
}

.section-desire {
  overflow: hidden;
  background: #111116;
  color: var(--bone);
}

.desire-aura {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(115px);
}

.desire-aura-blue {
  top: -20%;
  right: -9%;
  width: 53vw;
  height: 53vw;
  background: rgba(30, 59, 167, 0.31);
}

.desire-aura-wine {
  bottom: -27%;
  left: -15%;
  width: 49vw;
  height: 49vw;
  background: rgba(117, 26, 52, 0.25);
}

.desire-heading {
  position: relative;
  z-index: 1;
}

.desire-heading h2 > span {
  color: #a7a29a;
}

.desire-heading > p {
  color: #aaa59c;
}

.outcome-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(64px, 8vw, 110px);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.outcome-card {
  position: relative;
  min-height: 330px;
  padding: 25px 26px 34px;
  overflow: hidden;
  border-left: 1px solid var(--line-dark);
  background: rgba(10, 10, 13, 0.4);
}

.outcome-card:last-child {
  border-right: 1px solid var(--line-dark);
}

.outcome-number {
  color: #8f8a83;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.outcome-card h3 {
  margin: 118px 0 16px;
  font-family: var(--display);
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1;
}

.outcome-card p {
  margin: 0;
  color: #aaa59c;
  font-size: 0.87rem;
  line-height: 1.75;
}

.outcome-line {
  position: absolute;
  top: 68px;
  right: 26px;
  left: 26px;
  height: 1px;
  background: linear-gradient(90deg, var(--cobalt), rgba(240, 235, 225, 0.05));
}

.outcome-card:nth-child(3) .outcome-line {
  background: linear-gradient(90deg, var(--wine), rgba(240, 235, 225, 0.05));
}

.outcome-card:nth-child(4) .outcome-line {
  background: linear-gradient(90deg, #2c858b, rgba(240, 235, 225, 0.05));
}

.desire-close {
  position: relative;
  z-index: 1;
  max-width: 850px;
  margin: clamp(60px, 8vw, 105px) 0 0 auto;
  font-family: var(--display);
  font-size: clamp(2.7rem, 4.4vw, 5rem);
  line-height: 0.97;
  letter-spacing: -0.022em;
  color: var(--bone-soft);
}

.process-heading {
  max-width: 980px;
}

.process-heading > p:last-child {
  max-width: 720px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(64px, 8vw, 105px);
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.process-grid article {
  min-height: 300px;
  padding: 26px;
  border-left: 1px solid var(--line-light);
}

.process-grid article:last-child {
  border-right: 1px solid var(--line-light);
}

.process-grid article > span {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #6e6a64;
}

.process-grid h3 {
  margin: 100px 0 14px;
  font-family: var(--display);
  font-size: 3rem;
  font-weight: 600;
  line-height: 1;
}

.process-grid p {
  max-width: 340px;
  margin: 0;
  color: #625e58;
  font-size: 0.88rem;
  line-height: 1.75;
}

.deliverables-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  margin-top: 30px;
  border: 1px solid var(--line-light);
  background: rgba(255, 255, 255, 0.18);
}

.deliverables-intro {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 270px;
  padding: clamp(28px, 4vw, 52px);
  background:
    radial-gradient(circle at 84% 12%, rgba(54, 88, 255, 0.2), transparent 30%),
    #111113;
  color: var(--bone);
}

.deliverables-intro > p {
  margin: 0;
  color: #a9a49c;
  font-size: 0.65rem;
  font-weight: 750;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.deliverables-intro h3 {
  max-width: 430px;
  margin: 46px 0 0;
  font-family: var(--display);
  font-size: clamp(2.8rem, 4.2vw, 4.7rem);
  font-weight: 600;
  line-height: 0.94;
  letter-spacing: -0.024em;
}

.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.deliverables-grid > div {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 12px;
  min-height: 108px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.deliverables-grid > div:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.deliverables-grid span {
  color: #77726c;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.deliverables-grid strong {
  font-family: var(--display);
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 600;
  line-height: 1.05;
}

.author-panel {
  display: grid;
  grid-template-columns: minmax(300px, 0.76fr) minmax(0, 1.24fr);
  gap: clamp(40px, 7vw, 110px);
  margin-top: clamp(86px, 11vw, 160px);
  padding: clamp(24px, 4vw, 60px);
  background:
    radial-gradient(circle at 91% 8%, rgba(54, 88, 255, 0.13), transparent 28%),
    #0d0d0f;
  color: var(--bone);
  box-shadow: 0 40px 100px rgba(41, 35, 28, 0.2);
}

.author-photo {
  margin: 0;
}

.author-photo img {
  width: 100%;
  aspect-ratio: 0.75;
  border: 1px solid rgba(240, 235, 225, 0.25);
  object-fit: cover;
  object-position: 51% 38%;
  filter: grayscale(1) contrast(1.06);
}

.author-photo figcaption {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 18px;
  padding: 17px 2px 0;
  color: #97928a;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.author-photo figcaption strong {
  color: var(--bone);
  font-weight: 700;
}

.author-copy {
  align-self: center;
}

.author-copy h2 {
  font-size: clamp(3.4rem, 5.5vw, 6rem);
}

.author-copy > p:not(.eyebrow) {
  max-width: 690px;
  margin: 28px 0 0;
  color: #aaa59c;
  font-size: 0.98rem;
  line-height: 1.8;
}

.author-location {
  display: grid;
  grid-template-columns: 9px minmax(0, 1fr);
  align-items: center;
  gap: 13px;
  max-width: 690px;
  margin-top: 32px;
  padding-top: 21px;
  border-top: 1px solid var(--line-dark);
}

.location-marker {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cobalt);
  box-shadow: 0 0 17px rgba(54, 88, 255, 0.7);
}

.author-location p {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 5px 13px;
  margin: 0;
}

.author-location strong {
  color: var(--bone);
  font-size: 0.71rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.author-location p > span {
  color: #aaa59c;
  font-size: 0.83rem;
  line-height: 1.55;
}

.cost-section {
  overflow: hidden;
}

.cost-glow {
  position: absolute;
  z-index: -1;
  top: 19%;
  left: -8%;
  width: 42vw;
  height: 42vw;
  border-radius: 50%;
  background: rgba(97, 23, 45, 0.17);
  filter: blur(120px);
}

.cost-intro {
  max-width: 1040px;
}

.cost-intro h2 > span {
  color: #a6a097;
}

.cost-intro > p:last-child {
  color: #aaa59c;
}

.loss-list {
  margin-top: clamp(62px, 8vw, 105px);
  border-top: 1px solid var(--line-dark);
}

.loss-list article {
  display: grid;
  grid-template-columns: 70px minmax(220px, 0.68fr) minmax(280px, 1fr);
  align-items: center;
  gap: 30px;
  min-height: 116px;
  border-bottom: 1px solid var(--line-dark);
}

.loss-list article > span {
  color: #77726c;
  font-size: 0.66rem;
  letter-spacing: 0.14em;
}

.loss-list h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2rem, 2.7vw, 3rem);
  font-weight: 500;
  line-height: 1;
}

.loss-list p {
  margin: 0;
  color: #99948c;
  font-size: 0.9rem;
}

.cost-punch {
  max-width: 1060px;
  margin: clamp(76px, 9vw, 135px) 0 0 auto;
  padding-left: clamp(26px, 5vw, 76px);
  border-left: 2px solid var(--wine);
  font-family: var(--display);
  font-size: clamp(3rem, 5.1vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.024em;
}

.cost-punch p,
.cost-punch strong {
  display: block;
  margin: 0;
  font-weight: 400;
}

.cost-punch p {
  color: #77726c;
}

.cost-punch strong {
  margin-top: 14px;
  font-weight: 600;
  color: var(--bone);
}

.final-offer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 60px;
  margin-top: clamp(80px, 11vw, 155px);
  padding: clamp(32px, 5vw, 70px);
  background: var(--bone);
  color: var(--ink);
}

.offer-kicker {
  margin: 0 0 10px;
  color: #5c5852;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.final-offer h2 {
  max-width: 720px;
  font-size: clamp(3.7rem, 6vw, 6.6rem);
  line-height: 0.9;
}

.final-offer > div:first-child > p:last-child {
  max-width: 660px;
  margin: 26px 0 0;
  color: #5d5953;
  font-size: 0.94rem;
}

.final-offer .primary-cta {
  background: var(--ink);
  color: var(--bone);
}

.final-offer .cta-arrow {
  background: var(--bone);
  color: var(--ink);
}

.offer-action {
  display: grid;
  justify-items: center;
  gap: 13px;
}

.offer-action small {
  color: #6e6963;
  font-size: 0.65rem;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: clamp(60px, 9vw, 140px);
}

.faq-heading {
  position: sticky;
  top: 28px;
}

.faq-heading h2 {
  font-size: clamp(3.5rem, 5vw, 5.4rem);
}

.faq-list {
  border-top: 1px solid var(--line-light);
}

.faq-list details {
  border-bottom: 1px solid var(--line-light);
}

.faq-list summary {
  display: grid;
  grid-template-columns: 42px 1fr 24px;
  align-items: center;
  gap: 14px;
  min-height: 92px;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary > span {
  color: #77726c;
  font-size: 0.63rem;
  letter-spacing: 0.12em;
}

.faq-list summary strong {
  font-size: 0.97rem;
  font-weight: 650;
}

.faq-list summary i {
  position: relative;
  width: 18px;
  height: 18px;
}

.faq-list summary i::before,
.faq-list summary i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 1px;
  content: "";
  background: var(--ink);
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.faq-list summary i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary i::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-list details > p {
  max-width: 710px;
  margin: -4px 38px 30px 56px;
  color: #625e58;
  font-size: 0.91rem;
  line-height: 1.8;
}

.site-footer {
  padding-block: 66px 54px;
  border-top: 1px solid var(--line-dark);
}

.site-footer .shell {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
}

.site-footer p {
  margin: 0;
  text-align: center;
  color: #aaa59c;
  font-family: var(--display);
  font-size: clamp(1.7rem, 2.6vw, 2.8rem);
  line-height: 1;
}

.footer-links {
  display: flex;
  justify-self: end;
  gap: 22px;
}

.footer-links a {
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #aaa59c;
}

.footer-links a:hover {
  color: var(--bone);
}

.site-footer small {
  grid-column: 1 / -1;
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid var(--line-dark);
  text-align: center;
  color: #6f6b65;
  font-size: 0.64rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes proof-enter {
  from {
    opacity: 0;
    transform: translateX(28px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

  .header-contact {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.75fr);
    gap: 34px;
  }

  .hero h1 {
    font-size: clamp(3.9rem, 7vw, 5.7rem);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

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

  .outcome-card:nth-child(3) {
    border-top: 1px solid var(--line-dark);
  }

  .outcome-card:nth-child(4) {
    border-top: 1px solid var(--line-dark);
    border-right: 1px solid var(--line-dark);
  }

  .final-offer {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .offer-action {
    justify-items: start;
  }
}

@media (max-width: 900px) {
  .shell {
    width: min(calc(100% - 40px), 760px);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-block: 64px 54px;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero h1 {
    max-width: 700px;
    font-size: clamp(4.25rem, 12vw, 6.8rem);
  }

  .hero-intro {
    max-width: 650px;
  }

  .hero-proof {
    width: min(100%, 650px);
    height: 530px;
    min-height: 0;
    margin: 10px auto 0;
  }

  .hero-rail {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-rail span {
    min-height: 60px;
    border-bottom: 1px solid var(--line-dark);
  }

  .section-heading-split,
  .comparison-heading,
  .comparison-punch,
  .author-panel,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .section-heading-split {
    align-items: start;
    gap: 24px;
  }

  .section-heading-split > p {
    max-width: 620px;
    margin: 0;
  }

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

  .journey-step:nth-child(3),
  .journey-step:nth-child(4) {
    border-top: 1px solid var(--line-light);
  }

  .comparison-heading .eyebrow {
    grid-column: auto;
  }

  .comparison-heading > p:last-child {
    max-width: 620px;
    margin-top: -6px;
  }

  .comparison-grid {
    grid-template-columns: 1fr;
  }

  .comparison-card {
    min-height: 470px;
  }

  .comparison-punch {
    gap: 20px;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .deliverables-panel {
    grid-template-columns: 1fr;
  }

  .deliverables-intro {
    min-height: 230px;
  }

  .process-grid article {
    min-height: 240px;
    border-right: 1px solid var(--line-light);
    border-bottom: 1px solid var(--line-light);
  }

  .process-grid article:last-child {
    border-bottom: 0;
  }

  .process-grid h3 {
    margin-top: 62px;
  }

  .author-panel {
    gap: 52px;
  }

  .author-photo {
    max-width: 470px;
  }

  .loss-list article {
    grid-template-columns: 54px 0.8fr 1fr;
  }

  .faq-heading {
    position: static;
  }

  .site-footer .shell {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .footer-links {
    justify-self: center;
  }
}

@media (max-width: 620px) {
  html {
    scroll-padding-top: 12px;
  }

  .shell {
    width: calc(100% - 32px);
  }

  .site-header {
    min-height: 78px;
  }

  .wordmark strong {
    font-size: 1.12rem;
  }

  .wordmark > span {
    margin-left: 8px;
    font-size: 0.6rem;
    letter-spacing: 0.34em;
  }

  .mobile-menu nav {
    top: 68px;
  }

  .hero-grid {
    padding-block: 54px 42px;
  }

  .eyebrow {
    gap: 10px;
    margin-bottom: 23px;
    font-size: 0.66rem;
    letter-spacing: 0.15em;
  }

  .eyebrow::after {
    width: 36px;
  }

  .hero h1 {
    font-size: clamp(3.35rem, 16.5vw, 4.8rem);
    line-height: 0.91;
  }

  .hero h1 > span {
    margin-top: 0.21em;
  }

  .hero-intro {
    margin-top: 24px;
    font-size: 0.96rem;
    line-height: 1.7;
  }

  .hero-actions {
    width: 100%;
    margin-top: 30px;
  }

  .primary-cta {
    width: 100%;
    min-height: 62px;
    padding-left: 20px;
    font-size: 0.64rem;
  }

  .primary-cta > span:first-child {
    padding-right: 15px;
  }

  .cta-arrow {
    flex-basis: 47px;
    width: 47px;
    height: 47px;
  }

  .text-link {
    font-size: 0.62rem;
  }

  .hero-proof {
    width: calc(100% + 8px);
    height: 350px;
    margin-left: -4px;
  }

  .proof-site {
    top: 14%;
    right: 0;
    width: 90%;
    height: 68%;
    transform: rotate(-0.7deg);
  }

  .proof-focus {
    top: 8%;
    width: 96%;
    height: 82%;
  }

  .proof-fragment-a {
    width: 38%;
    height: 22%;
  }

  .proof-fragment-b {
    right: 2%;
    bottom: 4%;
  }

  .proof-fragment-c {
    bottom: 0;
    left: 5%;
  }

  .hero-rail {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-rail span {
    min-height: 54px;
    font-size: 0.64rem;
  }

  .section {
    padding-block: 86px;
  }

  .section-heading h2,
  .cost-intro h2,
  .author-copy h2,
  .faq-heading h2,
  .final-offer h2 {
    font-size: clamp(3.15rem, 15vw, 4.35rem);
    line-height: 0.92;
  }

  .section-heading > p:last-child,
  .section-heading-split > p,
  .cost-intro > p:last-child,
  .faq-heading > p:last-child {
    font-size: 0.94rem;
    line-height: 1.72;
  }

  .journey {
    grid-template-columns: 1fr;
    margin-top: 54px;
  }

  .journey-step {
    min-height: 250px;
    border-right: 1px solid var(--line-light);
    border-bottom: 1px solid var(--line-light);
  }

  .journey-step:nth-child(2) {
    border-top: 1px solid var(--line-light);
  }

  .journey-step:last-child {
    border-bottom: 0;
  }

  .journey-step h3 {
    margin-top: 104px;
  }

  .impact-quote {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 70px;
  }

  .impact-quote > span {
    font-size: 4rem;
  }

  .impact-quote p {
    font-size: clamp(2.7rem, 13vw, 3.7rem);
  }

  .comparison-grid {
    margin-top: 52px;
  }

  .comparison-card {
    min-height: 440px;
    padding: 22px;
  }

  .advantage-badge {
    top: 78px;
    right: 22px;
    min-height: 27px;
    padding: 6px 9px 6px 7px;
    font-size: 0.58rem;
  }

  .comparison-copy {
    margin-top: 54px;
  }

  .comparison-copy h3 {
    font-size: 2.85rem;
  }

  .comparison-punch {
    margin-top: 70px;
    font-size: clamp(2.8rem, 13vw, 3.8rem);
  }

  .outcome-grid {
    grid-template-columns: 1fr;
    margin-top: 54px;
  }

  .outcome-card {
    min-height: 265px;
    border-right: 1px solid var(--line-dark);
    border-bottom: 1px solid var(--line-dark);
  }

  .outcome-card h3 {
    margin-top: 94px;
  }

  .desire-close {
    margin-top: 64px;
    font-size: clamp(2.7rem, 13vw, 3.8rem);
  }

  .process-grid {
    margin-top: 54px;
  }

  .process-grid article {
    padding: 24px;
  }

  .deliverables-panel {
    margin-top: 18px;
  }

  .deliverables-intro {
    min-height: 230px;
    padding: 28px 24px;
  }

  .deliverables-intro h3 {
    margin-top: 42px;
    font-size: clamp(3rem, 14vw, 4rem);
  }

  .deliverables-grid > div {
    grid-template-columns: 1fr;
    align-content: center;
    gap: 8px;
    min-height: 116px;
    padding: 18px;
  }

  .deliverables-grid strong {
    font-size: 1.5rem;
  }

  .author-panel {
    width: calc(100% + 32px);
    margin-left: -16px;
    padding: 18px;
  }

  .author-photo figcaption {
    align-items: flex-start;
    flex-direction: column;
    font-size: 0.64rem;
    line-height: 1.6;
  }

  .author-copy {
    padding: 10px 4px 18px;
  }

  .author-copy > p:not(.eyebrow) {
    font-size: 0.92rem;
    line-height: 1.75;
  }

  .author-location {
    align-items: start;
    margin-top: 28px;
    padding-top: 20px;
  }

  .location-marker {
    margin-top: 6px;
  }

  .author-location p {
    display: grid;
    gap: 5px;
  }

  .author-location strong {
    font-size: 0.68rem;
  }

  .author-location p > span {
    font-size: 0.82rem;
  }

  .loss-list {
    margin-top: 54px;
  }

  .loss-list article {
    grid-template-columns: 38px 1fr;
    gap: 10px 16px;
    padding-block: 24px;
  }

  .loss-list h3 {
    font-size: 2.2rem;
  }

  .loss-list p {
    grid-column: 2;
    font-size: 0.86rem;
    line-height: 1.7;
  }

  .cost-punch {
    margin-top: 76px;
    padding-left: 22px;
    font-size: clamp(2.75rem, 13vw, 3.85rem);
  }

  .final-offer {
    width: calc(100% + 32px);
    margin-left: -16px;
    padding: 28px 18px;
  }

  .offer-action,
  .offer-action .primary-cta {
    width: 100%;
  }

  .offer-action small {
    justify-self: center;
    text-align: center;
  }

  .faq-layout {
    gap: 50px;
  }

  .faq-list summary {
    grid-template-columns: 30px 1fr 20px;
    min-height: 86px;
  }

  .faq-list summary strong {
    font-size: 0.91rem;
    line-height: 1.45;
  }

  .faq-list details > p {
    margin: 0 0 27px 46px;
    font-size: 0.87rem;
  }

  .site-footer {
    padding-bottom: 38px;
  }

  .site-footer .shell {
    gap: 26px;
  }

  .site-footer p {
    max-width: 320px;
    font-size: 2.2rem;
  }

}

/* Desktop legibility pass. Kept isolated so the approved mobile layout remains unchanged. */
@media (min-width: 901px) {
  .eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.16em;
  }

  .desktop-nav a,
  .header-contact {
    font-size: 0.71rem;
  }

  .primary-cta {
    font-size: 0.75rem;
  }

  .text-link {
    font-size: 0.73rem;
  }

  .hero-rail span {
    color: #aaa59d;
    font-size: 0.71rem;
    letter-spacing: 0.11em;
  }

  .section-heading > p:last-child,
  .section-heading-split > p,
  .cost-intro > p:last-child,
  .faq-heading > p:last-child {
    font-size: 1.1rem;
    font-weight: 430;
  }

  .desire-heading > p,
  .cost-intro > p:last-child {
    color: #c0bab1;
  }

  .journey-number,
  .comparison-topline,
  .comparison-state,
  .strength-label,
  .outcome-number,
  .process-grid article > span,
  .deliverables-intro > p,
  .deliverables-grid span,
  .loss-list article > span,
  .faq-list summary > span {
    font-size: 0.75rem;
  }

  .comparison-topline strong {
    font-size: 0.84rem;
  }

  .journey-step p,
  .comparison-copy > p:last-child,
  .outcome-card p,
  .process-grid p,
  .loss-list p,
  .faq-list details > p {
    font-size: 0.97rem;
  }

  .comparison-copy > p:last-child,
  .outcome-card p,
  .loss-list p {
    color: #b6b0a7;
  }

  .comparison-card-virtuose .comparison-copy > p:last-child {
    color: #514d47;
  }

  .author-photo figcaption {
    color: #b7b1a8;
    font-size: 0.74rem;
    letter-spacing: 0.11em;
  }

  .author-copy > p:not(.eyebrow) {
    color: #beb8af;
    font-size: 1.06rem;
  }

  .offer-kicker {
    font-size: 0.76rem;
  }

  .final-offer > div:first-child > p:last-child {
    font-size: 1.02rem;
  }

  .offer-action small {
    color: #5d5953;
    font-size: 0.76rem;
  }

  .faq-list summary strong {
    font-size: 1.03rem;
  }

  .footer-links a,
  .site-footer small {
    font-size: 0.72rem;
  }
}

@media (min-width: 1121px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.18fr) minmax(370px, 0.82fr);
    gap: clamp(42px, 4vw, 68px);
    padding-block: 44px 50px;
  }

  .hero h1 {
    max-width: 760px;
    font-size: clamp(4.45rem, 4.6vw, 5.35rem);
    line-height: 0.9;
  }

  .hero-intro {
    margin-top: 25px;
  }

  .hero-actions {
    margin-top: 31px;
  }
}

@media (min-width: 1121px) and (max-height: 950px) {
  .hero-grid {
    padding-block: 34px 42px;
  }

  .hero h1 {
    font-size: 4.8rem;
  }

  .hero-intro {
    margin-top: 22px;
    line-height: 1.65;
  }

  .hero-actions {
    margin-top: 27px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
