

:root {
  
  --navy:         #12356B;
  --navy-deep:    #0B1F42;
  --blue:         #1D63E0;
  --blue-bright:  #2E86FF;
  --indigo:       #2B2B9E;
  --teal:         #12A3A8;
  --teal-bright:  #1FC8CE;
  --seafoam:      #2FB98A;
  --orange:       #F9A11B;
  --orange-deep:  #F4761F;

  --ink:          #0B1B33;
  --slate:        #4A5C77;
  --muted:        #7C8AA0;
  --line:         #E6ECF4;
  --line-soft:    #F0F4FA;
  --bg:           #FFFFFF;
  --bg-soft:      #F6F9FD;

  --grad-brand:   linear-gradient(115deg, var(--blue) 0%, var(--teal) 100%);
  --grad-warm:    linear-gradient(115deg, var(--orange) 0%, var(--orange-deep) 100%);
  --grad-text:    linear-gradient(100deg, var(--blue) 0%, var(--teal) 55%, var(--seafoam) 100%);

  --sh-sm:  0 1px 2px rgba(11, 27, 51, .06), 0 2px 8px rgba(11, 27, 51, .04);
  --sh-md:  0 2px 4px rgba(11, 27, 51, .05), 0 12px 28px rgba(11, 27, 51, .07);
  --sh-lg:  0 4px 8px rgba(11, 27, 51, .04), 0 24px 56px rgba(11, 27, 51, .10);
  --sh-xl:  0 8px 16px rgba(11, 27, 51, .05), 0 40px 80px rgba(11, 27, 51, .12);

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-pill: 999px;

  --nav-h: 76px;
  --maxw: 1200px;
  --gutter: 24px;
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 24px);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "cv02","cv03","cv04","ss01";
}

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

h1, h2, h3, h4 {
  margin: 0;
  color: var(--ink);
  letter-spacing: -0.028em;
  line-height: 1.1;
  font-weight: 700;
  text-wrap: balance;
}

p { margin: 0; }
a { color: inherit; text-decoration: none; }

::selection { background: rgba(46, 134, 255, .16); }

:focus-visible {
  outline: 2.5px solid var(--blue-bright);
  outline-offset: 3px;
  border-radius: 4px;
}

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: clamp(72px, 10vw, 132px); position: relative; }
.section--soft { background: var(--bg-soft); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 20px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--grad-brand);
}

.grad-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lede {
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.6;
  color: var(--slate);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 26px;
  border: 1px solid transparent;
  border-radius: var(--r-pill);
  font-size: 15.5px;
  font-weight: 650;
  letter-spacing: -0.01em;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .18s cubic-bezier(.2,.7,.3,1), box-shadow .22s ease,
              background-color .18s ease, border-color .18s ease, color .18s ease;
}

.btn--primary {
  background: var(--grad-brand);
  color: #fff;
  box-shadow: 0 1px 2px rgba(29, 99, 224, .24), 0 10px 24px -6px rgba(29, 99, 224, .48);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 4px rgba(29, 99, 224, .26), 0 18px 34px -8px rgba(29, 99, 224, .55);
}

.btn--ghost {
  background: #fff;
  color: var(--navy);
  border-color: var(--line);
  box-shadow: var(--sh-sm);
}
.btn--ghost:hover {
  transform: translateY(-2px);
  border-color: #CFDCEE;
  box-shadow: var(--sh-md);
}

.btn--sm { padding: 11px 20px; font-size: 14.5px; }
.btn .chev { transition: transform .18s ease; }
.btn:hover .chev { transform: translateX(3px); }

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, .78);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease, background-color .25s ease;
}
.nav.is-stuck {
  border-bottom-color: var(--line);
  box-shadow: 0 1px 20px rgba(11, 27, 51, .05);
  background: rgba(255, 255, 255, .90);
}

.nav__inner {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand { display: flex; align-items: center; gap: 11px; margin-right: auto; }
.brand__mark { height: 42px; width: auto; flex: none; }
.brand__name { display: flex; flex-direction: column; line-height: 1.06; }
.brand__name b {
  font-size: 18.5px; font-weight: 750; letter-spacing: -.032em; color: var(--navy);
}

.brand__name span {
  font-size: 9px; font-weight: 600;
  letter-spacing: .52em; margin-right: -.52em;
  text-transform: uppercase; color: var(--muted); margin-top: 2px;
}

.nav__links { display: flex; align-items: center; gap: 32px; }
.nav__links a {
  position: relative;
  font-size: 15.5px;
  font-weight: 550;
  color: var(--slate);
  transition: color .18s ease;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 100%; height: 2px;
  border-radius: 2px;
  background: var(--grad-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s cubic-bezier(.2,.7,.3,1);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { transform: scaleX(1); }

.nav__toggle {
  display: none;
  width: 42px; height: 42px;
  align-items: center; justify-content: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  cursor: pointer;
}
.nav__toggle span {
  position: relative;
  width: 17px; height: 1.8px;
  background: var(--ink);
  border-radius: 2px;
  transition: background-color .2s ease;
}
.nav__toggle span::before,
.nav__toggle span::after {
  content: "";
  position: absolute; left: 0;
  width: 17px; height: 1.8px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .24s cubic-bezier(.2,.7,.3,1);
}
.nav__toggle span::before { top: -6px; }
.nav__toggle span::after  { top:  6px; }
.nav__toggle[aria-expanded="true"] span { background: transparent; }
.nav__toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span::after  { transform: translateY(-6px) rotate(-45deg); }

.nav__drawer {
  position: fixed;
  inset: var(--nav-h) 0 auto 0;
  z-index: 99;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: var(--sh-lg);
  padding: 20px var(--gutter) 28px;
  display: none;
  flex-direction: column;
  gap: 4px;
}
.nav__drawer.is-open { display: flex; }

.nav__drawer a:not(.btn) {
  padding: 13px 4px;
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1px solid var(--line-soft);
}
.nav__drawer .btn { margin-top: 16px; }

.hero {
  position: relative;
  padding-top: calc(var(--nav-h) + clamp(48px, 7vw, 92px));
  padding-bottom: clamp(64px, 8vw, 112px);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .5;
}
.hero__blob--a {
  width: 620px; height: 620px;
  top: -260px; right: -160px;
  background: radial-gradient(circle at 30% 30%, rgba(46,134,255,.42), rgba(31,200,206,.20) 55%, transparent 72%);
}
.hero__blob--b {
  width: 520px; height: 520px;
  bottom: -300px; left: -200px;
  background: radial-gradient(circle at 60% 40%, rgba(47,185,138,.26), rgba(249,161,27,.14) 55%, transparent 72%);
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(18,53,107,.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(18,53,107,.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 30%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 30%, transparent 78%);
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  gap: clamp(40px, 4.5vw, 64px);
  align-items: center;
}

.hero h1 {
  font-size: clamp(29px, 3.35vw, 44px);
  line-height: 1.14;
  letter-spacing: -0.03em;
  margin-bottom: 26px;
  max-width: 15.5em;
}

.hero__sub {
  font-size: clamp(16.5px, 1.35vw, 19px);
  line-height: 1.62;
  color: var(--slate);
  max-width: 33em;
  margin-bottom: 36px;
}

.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

.hero__art { position: relative; }
.hero__art svg { width: 100%; height: auto; overflow: visible; }

.chap {
  position: relative;
  padding-block: clamp(76px, 9vw, 118px);
}
.chap--soft { background: var(--bg-soft); }

.chap--flip .chap__body { order: 2; }
.chap--flip .chap__aside { order: 1; }

.chap__aside { position: relative; }
.chap__aside .art { position: sticky; top: calc(var(--nav-h) + 34px); }

.chap__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
  gap: clamp(40px, 5vw, 78px);
  align-items: stretch;
  max-width: 1140px;
  margin-inline: auto;
}

.chap__title {
  font-size: clamp(30px, 4vw, 50px);
  letter-spacing: -.033em;
  margin-bottom: 28px;
}

.chap__lead {
  font-size: clamp(18.5px, 1.65vw, 23px);
  line-height: 1.55;
  letter-spacing: -.017em;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 24px;
}

.chap__p {
  font-size: clamp(16px, 1.3vw, 17.5px);
  line-height: 1.7;
  color: var(--slate);
  margin-bottom: 24px;
}

.chap__turn {
  margin: 34px 0;
  font-size: clamp(19.5px, 1.85vw, 25px);
  line-height: 1.4;
  font-weight: 650;
  letter-spacing: -.026em;
  color: var(--ink);
}

.chap__payoff {
  margin: 34px 0 30px;
  padding: 2px 0 2px 26px;
  border-left: 3px solid transparent;
  border-image: var(--grad-brand) 1;
  font-size: clamp(17px, 1.45vw, 19.5px);
  line-height: 1.6;
  font-weight: 550;
  letter-spacing: -.018em;
  color: var(--ink);
}

.chap__closer {
  margin-top: 38px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
  font-size: clamp(20px, 1.95vw, 27px);
  line-height: 1.35;
  font-weight: 650;
  letter-spacing: -.028em;
  color: var(--ink);
}

.chap__next {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-top: 6px;
  font-size: 14.5px;
  font-weight: 620;
  letter-spacing: -.01em;
  color: var(--muted);
}
.chap__next svg {
  flex: none;
  color: var(--teal);
  animation: nudge 2.4s ease-in-out infinite;
}
@keyframes nudge {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(4px); }
}

.art {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: clamp(26px, 3vw, 38px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-lg);
}

.art__cap {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}
.art__cap--mute { color: var(--muted); }

.art__svg { width: 100%; height: auto; display: block; }

.art__note {
  margin-top: 12px;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--muted);
}

.art__block + .art__block {
  padding-top: 28px;
  border-top: 1px solid var(--line-soft);
}

.art__line {
  stroke-dasharray: 436;
  animation: draw 1.1s cubic-bezier(.4,0,.2,1) .15s backwards;
}
@keyframes draw {
  from { stroke-dashoffset: 436; }
  to   { stroke-dashoffset: 0; }
}

.art__dot {
  fill: #fff;
  stroke: url(#haasLine);
  stroke-width: 3;
  transform-box: fill-box;
  transform-origin: center;
  animation: pop .45s cubic-bezier(.2,.9,.3,1.3) backwards;
  animation-delay: calc(var(--i) * 130ms + 350ms);
}
@keyframes pop {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

.art__col {
  transform-box: fill-box;
  transform-origin: 50% 100%;
  animation: grow .55s cubic-bezier(.2,.8,.3,1) backwards;
  animation-delay: calc(var(--i) * 90ms + 150ms);
}
@keyframes grow {
  from { transform: scaleY(0); opacity: 0; }
  to   { transform: scaleY(1); opacity: 1; }
}

.art__link {
  stroke-dasharray: 400;
  animation: draw 1s cubic-bezier(.4,0,.2,1) .75s backwards;
}

.art__tile {
  animation: settle .5s cubic-bezier(.2,.8,.3,1) backwards;
  animation-delay: calc(var(--i) * 55ms + 150ms);
}
@keyframes settle {
  from { opacity: 0; transform: translateY(-7px); }
  to   { opacity: 1; transform: none; }
}

.jess {
  display: grid;
  grid-template-columns: minmax(0, .84fr) minmax(0, 1.16fr);
  gap: clamp(40px, 6vw, 84px);
  align-items: center;
}

.jess__photo { position: relative; }
.jess__photo-inner {
  position: relative;
  z-index: 2;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-xl);
  background: var(--bg-soft);
  aspect-ratio: 4 / 5;
}
.jess__photo-inner img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; }
.jess__photo::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 26px -26px -26px 26px;
  border-radius: var(--r-xl);
  background: var(--grad-brand);
  opacity: .12;
}

.jess__body h2 {
  font-size: clamp(28px, 3.4vw, 44px);
  letter-spacing: -.032em;
  margin-bottom: 28px;
}
.jess__body p {
  font-size: clamp(16.5px, 1.4vw, 19px);
  line-height: 1.68;
  color: var(--slate);
  margin-bottom: 22px;
}
.jess__body p:last-of-type { margin-bottom: 0; }
.jess__body .signature {
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.jess__body .signature b {
  display: block;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--ink);
}
.jess__body .signature span { font-size: 14.5px; color: var(--muted); }

.cta-band {
  position: relative;
  border-radius: var(--r-xl);
  padding: clamp(48px, 6.5vw, 84px) clamp(26px, 5vw, 72px);
  background: linear-gradient(125deg, var(--navy-deep) 0%, var(--navy) 42%, #14657F 78%, var(--teal) 100%);
  overflow: hidden;
  text-align: center;
  box-shadow: var(--sh-xl);
}
.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 18%, rgba(249,161,27,.30), transparent 45%),
    radial-gradient(circle at 12% 88%, rgba(31,200,206,.32), transparent 48%);
  pointer-events: none;
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 {
  color: #fff;
  font-size: clamp(28px, 3.6vw, 46px);
  letter-spacing: -.032em;
  margin-bottom: 20px;
}
.cta-band p {
  color: rgba(255,255,255,.82);
  font-size: clamp(16.5px, 1.4vw, 19px);
  max-width: 40em;
  margin-inline: auto;
  margin-bottom: 36px;
}
.cta-band .btn--primary {
  background: #fff;
  color: var(--navy);
  box-shadow: 0 10px 30px -8px rgba(0,0,0,.4);
}
.cta-band .btn--primary:hover { box-shadow: 0 18px 40px -10px rgba(0,0,0,.45); }

.foot {
  border-top: 1px solid var(--line);
  padding-block: 60px 34px;
  background: var(--bg-soft);
}
.foot__top {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, 1fr));
  gap: 44px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--line);
}
.foot__brand .brand { margin-bottom: 18px; }
.foot__brand p {
  font-size: 15px;
  color: var(--slate);
  max-width: 34em;
}
.foot h4 {
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}
.foot ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.foot li a {
  font-size: 15px;
  font-weight: 500;
  color: var(--slate);
  transition: color .18s ease;
}
.foot li a:hover { color: var(--blue); }
.foot__bottom {
  padding-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 26px;
  align-items: center;
  justify-content: space-between;
  font-size: 13.5px;
  color: var(--muted);
}
.foot__bottom nav { display: flex; gap: 24px; flex-wrap: wrap; }

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1);
  transition-delay: var(--d, 0ms);
  will-change: opacity, transform;
}
.js .reveal.is-in { opacity: 1; transform: none; }

.fit { max-width: 760px; }

.fit__title {
  margin: 12px 0 24px;
  font-size: clamp(25px, 2.7vw, 36px);
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: -.03em;
  color: var(--ink);
}

.fit__p {
  margin-bottom: 16px;
  font-size: clamp(16px, 1.35vw, 18px);
  line-height: 1.72;
  color: var(--slate);
}

.fit__close {
  margin: 26px 0 0;
  padding: 2px 0 2px 26px;
  border-left: 3px solid transparent;
  border-image: var(--grad-brand) 1;
  font-size: clamp(17px, 1.45vw, 19.5px);
  line-height: 1.6;
  font-weight: 550;
  letter-spacing: -.018em;
  color: var(--ink);
}

.proof__head { max-width: 780px; }

.proof__title {
  margin: 12px 0 24px;
  font-size: clamp(28px, 3.3vw, 44px);
  line-height: 1.14;
  font-weight: 700;
  letter-spacing: -.032em;
  color: var(--ink);
}

.proof__lead {
  margin-bottom: 18px;
  font-size: clamp(16px, 1.35vw, 18px);
  line-height: 1.72;
  color: var(--slate);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 48px 0 40px;
  padding: 0;
  list-style: none;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.metric {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 32px 26px;
  background: var(--bg);
}

.metric__val {
  font-size: clamp(27px, 2.8vw, 37px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -.034em;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.metric__label {
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
}

.how__head { max-width: 780px; }

.how__title {
  margin: 12px 0 20px;
  font-size: clamp(28px, 3.3vw, 44px);
  line-height: 1.14;
  font-weight: 700;
  letter-spacing: -.032em;
  color: var(--ink);
}

.how__lead {
  font-size: clamp(16px, 1.35vw, 18px);
  line-height: 1.72;
  color: var(--slate);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin: 48px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.step {
  padding: 30px 28px 32px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
}

.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: var(--r-pill);
  background: var(--grad-brand);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -.01em;
}

.step__title {
  margin: 0 0 10px;
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.35;
  font-weight: 650;
  letter-spacing: -.024em;
  color: var(--ink);
}

.step__body {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.68;
  color: var(--slate);
}

.how__note {
  max-width: 780px;
  margin: 26px 0 0;
  font-size: 15.5px;
  line-height: 1.72;
  color: var(--slate);
}

.how__note b {
  font-weight: 680;
  color: var(--ink);
}

.how__payoff {
  margin: 40px 0 0;
  padding: 2px 0 2px 26px;
  border-left: 3px solid transparent;
  border-image: var(--grad-brand) 1;
  font-size: clamp(17px, 1.45vw, 19.5px);
  line-height: 1.6;
  font-weight: 550;
  letter-spacing: -.018em;
  color: var(--ink);
}

.quote {
  margin: 0;
  padding: 36px 36px 32px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
}

.quote blockquote {
  margin: 0;
  font-size: clamp(18px, 1.65vw, 22px);
  line-height: 1.58;
  font-weight: 550;
  letter-spacing: -.02em;
  color: var(--ink);
}

.quote figcaption {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-top: 22px;
  font-size: 14px;
  letter-spacing: -.005em;
}

.quote figcaption b {
  font-weight: 680;
  color: var(--ink);
}

.quote figcaption span { color: var(--muted); }

.proof__kicker {
  margin: 30px 0 0;
  font-size: clamp(18px, 1.6vw, 21px);
  line-height: 1.5;
  font-weight: 620;
  letter-spacing: -.024em;
  color: var(--ink);
}

@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero__art { max-width: 640px; margin-inline: auto; }
  .jess { grid-template-columns: 1fr; gap: 52px; }
  .jess__photo { max-width: 460px; margin-inline: auto; width: 100%; }
  .jess__photo::after { inset: 22px -18px -22px 22px; }
}

@media (max-width: 880px) {
  .nav__links, .nav__inner .btn { display: none; }
  .nav__toggle { display: flex; }

  .chap__inner { grid-template-columns: 1fr; gap: 44px; }
  .chap--flip .chap__body  { order: 1; }
  .chap--flip .chap__aside { order: 2; }
  .chap__aside .art { position: static; }
  .chap__payoff { margin: 30px 0 26px; padding-left: 20px; }

  .foot__top { grid-template-columns: 1fr 1fr; }
  .foot__brand { grid-column: 1 / -1; }

  .metrics { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; gap: 18px; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  :root { --gutter: 18px; }
  .foot__top { grid-template-columns: 1fr; gap: 34px; }
  .foot__bottom { flex-direction: column; align-items: flex-start; }

  .metrics { grid-template-columns: 1fr; }
  .metric { padding: 24px 22px; }
  .quote { padding: 28px 24px 24px; }
  .step { padding: 26px 22px 28px; }
  .how__payoff { padding-left: 20px; }
  .fit__close { padding-left: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .js .reveal { opacity: 1; transform: none; }
}

.phead {
  padding-top: calc(var(--nav-h) + clamp(52px, 6vw, 84px));
  padding-bottom: clamp(34px, 4vw, 54px);
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
}
.phead__eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}
.phead__title {
  font-size: clamp(32px, 4.4vw, 54px);
  letter-spacing: -.034em;
  margin-bottom: 20px;
}
.phead__lead {
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.6;
  color: var(--slate);
  max-width: 44em;
}

.shell {
  max-width: 44em;
  padding: clamp(26px, 3vw, 38px);
  border: 1px dashed #C9D8EC;
  border-radius: var(--r-lg);
  background: #fff;
  color: var(--slate);
  font-size: 16px;
  line-height: 1.7;
}
.shell b { color: var(--ink); }
.shell p + p { margin-top: 14px; }
