:root {
  color-scheme: dark;
  --ink: #020b12;
  --navy: #003865;
  --cyan: #009fdf;
  --sky: #71c5e8;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--ink);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

main {
  min-height: 100%;
}

.scroll-story {
  position: relative;
  height: 850svh;
  min-height: 6000px;
  background: var(--ink);
}

.story-sticky {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100svh;
  min-height: 560px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 52%, rgba(0, 159, 223, .14), transparent 42%),
    var(--ink);
}

.story-sticky::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .12), transparent 18%, transparent 78%, rgba(0, 0, 0, .22)),
    radial-gradient(circle at center, transparent 56%, rgba(0, 0, 0, .34) 100%);
}

#storyCanvas {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: var(--ink);
}

.load-state {
  position: absolute;
  z-index: 5;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: rgba(255, 255, 255, .7);
  background: var(--ink);
  text-transform: uppercase;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .16em;
  transition: opacity .35s ease, visibility .35s ease;
}

.load-state i {
  width: 34px;
  height: 34px;
  border: 2px solid rgba(113, 197, 232, .18);
  border-top-color: var(--cyan);
  border-radius: 50%;
  animation: spin .85s linear infinite;
}

.load-state.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.scroll-hint {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: max(24px, env(safe-area-inset-bottom));
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, .62);
  text-transform: uppercase;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .2em;
  transition: opacity .18s linear;
}

.scroll-hint i {
  width: 1px;
  height: 34px;
  background: linear-gradient(var(--sky), transparent);
  animation: cue 1.5s ease-in-out infinite;
}

.progress-track {
  position: absolute;
  z-index: 4;
  top: max(24px, env(safe-area-inset-top));
  right: 12px;
  bottom: max(24px, env(safe-area-inset-bottom));
  width: 1px;
  background: rgba(255, 255, 255, .15);
}

.progress-track i {
  display: block;
  width: 1px;
  height: 100%;
  transform: scaleY(0);
  transform-origin: top;
  background: var(--cyan);
  will-change: transform;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes cue {
  0%, 100% { transform: scaleY(.35); transform-origin: top; opacity: .45; }
  50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
}

@media (min-width: 700px) {
  #storyCanvas {
    left: 50%;
    right: auto;
    width: min(56.25svh, 720px);
    height: 100svh;
    transform: translateX(-50%);
    object-fit: contain;
    box-shadow: 0 0 100px rgba(0, 159, 223, .08);
  }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-story {
    height: 100svh;
    min-height: 560px;
  }

  .scroll-hint,
  .progress-track {
    display: none;
  }

  .load-state i {
    animation: none;
  }
}

/* Horizontal photographic chapters */

.answer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(18px, 3vw, 30px);
  margin-top: clamp(58px, 8vw, 96px);
}

.answer-grid::before {
  top: -28px;
  bottom: -28px;
  left: 50%;
  width: 1px;
  height: auto;
  background: linear-gradient(transparent, rgba(0, 159, 223, .42), transparent);
}

.answer-card,
.answer-card:nth-child(n) {
  --image-pan: 0px;
  --copy-pan: 0px;
  --card-progress: 0;
  position: relative;
  top: auto;
  display: block;
  min-height: clamp(300px, 30vw, 360px);
  margin: 0;
  padding: 0;
  overflow: hidden;
  color: #082131;
  background: #fbfaf6;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: clamp(22px, 3vw, 32px);
  rotate: none;
  translate: 0 0;
  isolation: isolate;
  box-shadow:
    0 32px 70px rgba(0, 0, 0, .24),
    0 8px 20px rgba(0, 0, 0, .12),
    inset 0 1px rgba(255, 255, 255, .96);
  transition: box-shadow .45s ease, border-color .45s ease;
}

.answer-card::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg,
    #fbfaf6 0%,
    rgba(251, 250, 246, .99) 34%,
    rgba(251, 250, 246, .91) 48%,
    rgba(251, 250, 246, .46) 64%,
    transparent 82%);
}

.answer-card::after {
  content: "";
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--sky));
  transform: scaleX(var(--card-progress));
  transform-origin: left;
  box-shadow: 0 0 18px rgba(0, 159, 223, .5);
}

.answer-card-media {
  position: absolute;
  z-index: 0;
  inset: 0;
  margin: 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 18%, rgba(0, 0, 0, .2) 36%, #000 59%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 18%, rgba(0, 0, 0, .2) 36%, #000 59%, #000 100%);
}

.answer-card-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: var(--image-position, 66% center);
  transform: scale(1.08) translate3d(var(--image-pan), 0, 0);
  transform-origin: center;
  filter: saturate(.92) contrast(.98);
  will-change: transform;
}

.answer-card-copy {
  position: relative;
  z-index: 2;
  width: min(60%, 650px);
  min-height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(26px, 4.5vw, 52px);
  transform: translate3d(0, var(--copy-pan), 0);
  will-change: transform;
}

.answer-card-top {
  min-height: auto;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 9px 14px;
}

.answer-card-top > span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: #fff;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(0, 159, 223, .22);
}

.answer-card-top small {
  max-width: 360px;
  padding: 7px 10px;
  color: #496775;
  background: rgba(255, 255, 255, .64);
  border: 1px solid rgba(0, 56, 101, .08);
  border-radius: 999px;
  font-size: .58rem;
  text-align: left;
  backdrop-filter: blur(8px);
}

.answer-card h3 {
  max-width: 630px;
  margin: clamp(24px, 3vw, 36px) 0 14px;
  font-size: clamp(2rem, 5.2vw, 4.3rem);
  line-height: .92;
}

.answer-card p {
  max-width: 560px;
  font-size: clamp(.88rem, 1.45vw, 1.02rem);
  line-height: 1.55;
}

.answer-card strong {
  width: fit-content;
  margin-top: 20px;
  padding-top: 12px;
  font-size: .64rem;
}

.answer-card:hover,
.answer-card:nth-child(n):hover {
  translate: 0 0;
  rotate: none;
  border-color: rgba(113, 197, 232, .58);
  box-shadow:
    0 42px 86px rgba(0, 0, 0, .3),
    0 10px 24px rgba(0, 0, 0, .14),
    inset 0 1px rgba(255, 255, 255, .96);
}

.book-promise {
  margin-top: clamp(66px, 9vw, 110px);
}

/* Entry point for the future guided form */

.lead-entry {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 86svh;
  display: grid;
  place-items: center;
  padding: clamp(100px, 13vw, 170px) 20px;
  color: #f7f3e9;
  background:
    radial-gradient(circle at 74% 52%, rgba(0, 159, 223, .18), transparent 28%),
    linear-gradient(180deg, #020c14 0%, #041b2a 48%, #020b12 100%);
}

.lead-entry::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: .16;
  background-image:
    linear-gradient(rgba(113, 197, 232, .14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(113, 197, 232, .14) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(circle at 70% 50%, #000, transparent 70%);
  mask-image: radial-gradient(circle at 70% 50%, #000, transparent 70%);
}

.lead-entry-glow {
  position: absolute;
  z-index: -1;
  top: 50%;
  right: -12%;
  width: min(70vw, 850px);
  aspect-ratio: 1;
  border: 1px solid rgba(0, 159, 223, .16);
  border-radius: 50%;
  transform: translateY(-50%);
  box-shadow:
    inset 0 0 140px rgba(0, 159, 223, .08),
    0 0 140px rgba(0, 159, 223, .08);
}

.lead-entry-card {
  position: relative;
  width: min(100%, 1180px);
  min-height: clamp(500px, 55vw, 620px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(4, 35, 53, .98) 0%, rgba(2, 18, 29, .96) 54%, rgba(1, 9, 15, .86) 100%);
  border: 1px solid rgba(113, 197, 232, .2);
  border-radius: clamp(28px, 4vw, 46px);
  box-shadow:
    0 54px 110px rgba(0, 0, 0, .42),
    inset 0 1px rgba(255, 255, 255, .08);
}

.lead-entry-card::after {
  content: "";
  position: absolute;
  top: 9%;
  right: 7%;
  width: 1px;
  height: 82%;
  background: linear-gradient(transparent, rgba(0, 159, 223, .7), transparent);
  box-shadow: 0 0 22px rgba(0, 159, 223, .42);
}

.lead-entry-copy {
  position: relative;
  z-index: 3;
  width: 62%;
  padding: clamp(32px, 6vw, 76px);
}

.lead-entry-copy h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(2.4rem, 6.5vw, 5.4rem);
  line-height: .93;
  letter-spacing: -.058em;
  text-wrap: balance;
}

.lead-entry-copy > p:not(.section-kicker):not(.lead-entry-meta) {
  max-width: 590px;
  margin: 24px 0 0;
  color: rgba(221, 236, 243, .7);
  font-size: clamp(.94rem, 1.7vw, 1.1rem);
  line-height: 1.6;
}

.lead-entry-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 58px;
  margin-top: 34px;
  padding: 14px 20px 14px 28px;
  color: #02131f;
  background: linear-gradient(135deg, #f9fdff, #bde9fa);
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-size: clamp(.82rem, 1.6vw, 1rem);
  font-weight: 900;
  cursor: pointer;
  box-shadow:
    0 18px 46px rgba(0, 159, 223, .26),
    inset 0 1px rgba(255, 255, 255, .9);
  transition: transform .25s ease, box-shadow .25s ease;
}

.lead-entry-button i {
  position: relative;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  background: var(--cyan);
  border-radius: 50%;
}

.lead-entry-button i::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translate(-65%, -50%) rotate(45deg);
}

.lead-entry-button:hover {
  transform: translateY(-3px);
  box-shadow:
    0 24px 58px rgba(0, 159, 223, .34),
    inset 0 1px rgba(255, 255, 255, .9);
}

.lead-entry-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin: 22px 0 0;
  color: rgba(221, 236, 243, .52);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.lead-entry-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.lead-entry-meta span::before {
  content: "";
  width: 5px;
  height: 5px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(0, 159, 223, .8);
}

.lead-entry-book {
  position: absolute;
  z-index: 1;
  top: -7%;
  right: -2%;
  bottom: -7%;
  width: 48%;
  margin: 0;
  opacity: .94;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, .5) 26%, #000 50%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, .5) 26%, #000 50%);
}

.lead-entry-book img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: right center;
  filter: drop-shadow(0 30px 50px rgba(0, 159, 223, .18));
  transform: translate3d(0, 2%, 0) scale(1.04);
  transition: transform 1s cubic-bezier(.2, .8, .2, 1), filter 1s ease;
}

.lead-entry-card.is-primed .lead-entry-book img {
  transform: translate3d(-2%, 0, 0) scale(1.09);
  filter: drop-shadow(0 36px 64px rgba(0, 159, 223, .3));
}

.lead-entry-card.is-primed .lead-entry-button {
  box-shadow:
    0 24px 64px rgba(0, 159, 223, .4),
    0 0 0 5px rgba(0, 159, 223, .08);
}

@media (min-width: 900px) {
  .answer-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .answer-card,
  .answer-card:nth-child(n) {
    min-height: clamp(310px, 29vw, 360px);
    translate: 0 0;
  }
}

@media (max-width: 680px) {
  .answer-grid {
    gap: 18px;
  }

  .answer-card,
  .answer-card:nth-child(n) {
    min-height: 328px;
    border-radius: 23px;
  }

  .answer-card::before {
    background: linear-gradient(90deg,
      #fbfaf6 0%,
      rgba(251, 250, 246, .99) 43%,
      rgba(251, 250, 246, .84) 59%,
      rgba(251, 250, 246, .26) 80%,
      transparent 100%);
  }

  .answer-card-media {
    -webkit-mask-image: linear-gradient(90deg, transparent 24%, rgba(0, 0, 0, .24) 44%, #000 70%);
    mask-image: linear-gradient(90deg, transparent 24%, rgba(0, 0, 0, .24) 44%, #000 70%);
  }

  .answer-card-copy {
    width: 71%;
    padding: 24px 18px 24px 22px;
  }

  .answer-card-top {
    align-items: flex-start;
  }

  .answer-card-top small {
    max-width: 100%;
    padding: 6px 8px;
    border-radius: 12px;
    font-size: .5rem;
    line-height: 1.3;
  }

  .answer-card h3 {
    margin: 22px 0 12px;
    font-size: clamp(1.72rem, 8.4vw, 2.45rem);
    line-height: .94;
  }

  .answer-card p {
    font-size: .79rem;
    line-height: 1.48;
  }

  .answer-card strong {
    margin-top: 16px;
    padding-top: 10px;
    font-size: .52rem;
    line-height: 1.35;
  }

  .lead-entry {
    min-height: 80svh;
    padding-inline: 16px;
  }

  .lead-entry-card {
    min-height: 560px;
    align-items: flex-start;
    border-radius: 28px;
  }

  .lead-entry-copy {
    width: 72%;
    padding: 34px 10px 34px 26px;
  }

  .lead-entry-copy h2 {
    font-size: clamp(2.05rem, 10vw, 3rem);
  }

  .lead-entry-copy > p:not(.section-kicker):not(.lead-entry-meta) {
    font-size: .86rem;
    line-height: 1.52;
  }

  .lead-entry-button {
    min-height: 54px;
    margin-top: 26px;
    padding: 10px 11px 10px 18px;
    font-size: .74rem;
    line-height: 1.2;
    text-align: left;
  }

  .lead-entry-button i {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }

  .lead-entry-meta {
    flex-direction: column;
    gap: 9px;
    font-size: .54rem;
  }

  .lead-entry-book {
    top: 5%;
    right: -18%;
    bottom: -4%;
    width: 64%;
    opacity: .84;
  }
}

/* Approved editorial cleanup and updated photo framing. */

.book-inside .answer-card::before {
  background: linear-gradient(90deg,
    #fbfaf6 0%,
    rgba(251, 250, 246, .99) 29%,
    rgba(251, 250, 246, .91) 41%,
    rgba(251, 250, 246, .58) 54%,
    rgba(251, 250, 246, .14) 68%,
    transparent 78%);
}

.book-inside .answer-card-media {
  -webkit-mask-image: linear-gradient(90deg, transparent 8%, rgba(0, 0, 0, .28) 27%, #000 48%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 8%, rgba(0, 0, 0, .28) 27%, #000 48%, #000 100%);
}

.book-inside .answer-card-media img {
  object-position: right center;
  filter: saturate(1.09) contrast(1.03);
}

.book-inside .answer-card-copy {
  width: min(57%, 620px);
}

.book-inside .answer-card h3 {
  margin-top: 0;
}

.book-inside .book-promise {
  padding: clamp(32px, 5vw, 58px);
  color: #082131;
  background:
    radial-gradient(circle at 90% 20%, rgba(0, 159, 223, .11), transparent 25%),
    linear-gradient(135deg, #fffdf7 0%, #e9f2f3 100%);
  border: 1px solid rgba(255, 255, 255, .78);
  text-align: left;
  box-shadow:
    0 38px 82px rgba(0, 0, 0, .28),
    inset 0 1px rgba(255, 255, 255, .95);
  backdrop-filter: none;
}

.book-inside .book-promise p {
  max-width: 940px;
  margin: 0;
  color: #082131;
  font-size: clamp(1.65rem, 4.4vw, 3.7rem);
  line-height: 1.02;
  letter-spacing: -.045em;
  text-align: left;
}

@media (max-width: 680px) {
  .book-inside .answer-card::before {
    background: linear-gradient(90deg,
      #fbfaf6 0%,
      rgba(251, 250, 246, .99) 42%,
      rgba(251, 250, 246, .78) 57%,
      rgba(251, 250, 246, .18) 76%,
      transparent 100%);
  }

  .book-inside .answer-card-media {
    -webkit-mask-image: linear-gradient(90deg, transparent 18%, rgba(0, 0, 0, .3) 39%, #000 62%, #000 100%);
    mask-image: linear-gradient(90deg, transparent 18%, rgba(0, 0, 0, .3) 39%, #000 62%, #000 100%);
  }

  .book-inside .answer-card-copy {
    width: 66%;
  }

  .book-inside .book-promise p {
    font-size: clamp(1.55rem, 7.6vw, 2.2rem);
    line-height: 1.06;
  }
}

/* Andy Zamora and final conversion moment */

html {
  scroll-behavior: smooth;
}

.andy-section {
  padding: clamp(88px, 11vw, 140px) 20px;
  background: linear-gradient(160deg, #f4f8f8 0%, #dfecee 100%);
}

.andy-profile {
  width: min(100%, 1180px);
  margin-inline: auto;
  display: grid;
  gap: 18px;
}

.andy-photo-card {
  height: clamp(420px, 46vw, 560px);
  margin: 0;
  overflow: hidden;
  background: #080d11;
  border-radius: clamp(26px, 3vw, 38px);
}

.andy-photo-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 24%;
  filter: none;
}

.andy-text-card {
  padding: clamp(36px, 5vw, 62px);
  color: #102a39;
  background: #fffdf8;
  border-radius: clamp(26px, 3vw, 38px);
}

.andy-text-card h2 {
  margin: 0;
  font-size: clamp(2.8rem, 5.4vw, 4.8rem);
  line-height: .95;
  letter-spacing: -.055em;
}

.andy-biography {
  max-width: 880px;
  margin-top: 28px;
  color: #496571;
  font-size: clamp(1rem, 1.45vw, 1.12rem);
  line-height: 1.7;
}

.andy-biography p {
  margin: 0;
}

.andy-biography p + p {
  margin-top: 18px;
}

body.motion-ready .andy-section .depth-reveal {
  filter: none;
  transform: translateY(28px);
  transition: opacity .75s ease, transform .85s cubic-bezier(.2, .8, .2, 1);
}

body.motion-ready .andy-section .depth-reveal.is-visible {
  transform: translateY(0);
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 0 20px clamp(110px, 15vw, 190px);
  background: linear-gradient(180deg, #dfecee 0%, #edf4f4 100%);
}

.final-cta-card {
  width: min(100%, 1180px);
  min-height: 310px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding: clamp(36px, 6vw, 68px);
  color: #082131;
  background:
    radial-gradient(circle at 92% 10%, rgba(0, 159, 223, .11), transparent 25%),
    linear-gradient(135deg, #fffdf7, #f5fafb);
  border: 1px solid rgba(255, 255, 255, .88);
  border-radius: clamp(28px, 4vw, 42px);
  box-shadow:
    0 40px 90px rgba(7, 44, 64, .18),
    inset 0 1px rgba(255, 255, 255, .98);
}

.final-cta-card > div {
  max-width: 730px;
}

.final-cta-card h2 {
  margin: 0;
  font-size: clamp(2.4rem, 5.5vw, 5rem);
  line-height: .94;
  letter-spacing: -.058em;
  text-wrap: balance;
}

.final-cta-card p {
  max-width: 650px;
  margin: 22px 0 0;
  color: #486675;
  font-size: clamp(.96rem, 1.8vw, 1.15rem);
  line-height: 1.55;
}

.final-cta-card cite {
  font-style: normal;
  font-weight: 700;
}

.final-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-width: 272px;
  min-height: 62px;
  padding: 13px 14px 13px 24px;
  color: #fff;
  background: linear-gradient(135deg, #008fc9, #006da6);
  border-radius: 999px;
  font-size: .88rem;
  font-weight: 900;
  line-height: 1.2;
  text-decoration: none;
  box-shadow: 0 18px 40px rgba(0, 119, 174, .27);
  transition: transform .25s ease, box-shadow .25s ease;
}

.final-cta-button i {
  position: relative;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  background: rgba(255, 255, 255, .17);
  border-radius: 50%;
}

.final-cta-button i::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translate(-65%, -50%) rotate(45deg);
}

.final-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 50px rgba(0, 119, 174, .34);
}

.final-cta-button:focus-visible {
  outline: 3px solid rgba(0, 159, 223, .32);
  outline-offset: 5px;
}

@media (max-width: 820px) {
  .andy-photo-card {
    height: clamp(390px, 68vw, 510px);
  }

  .final-cta-card {
    min-height: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }

  .final-cta-button {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 460px) {
  .andy-section,
  .final-cta {
    padding-inline: 16px;
  }

  .andy-profile {
    gap: 14px;
  }

  .andy-photo-card {
    height: 390px;
    border-radius: 26px;
  }

  .andy-photo-card img {
    object-position: center 18%;
  }

  .andy-text-card {
    padding: 32px 24px 36px;
    border-radius: 26px;
  }

  .andy-text-card h2 {
    font-size: clamp(2.65rem, 13vw, 3.4rem);
  }

  .andy-biography {
    margin-top: 22px;
    font-size: .94rem;
    line-height: 1.62;
  }

  .final-cta-card {
    padding: 32px 24px;
    border-radius: 28px;
  }

  .final-cta-card h2 {
    font-size: clamp(2.25rem, 11vw, 3rem);
  }

  .final-cta-card p {
    font-size: .9rem;
  }
}

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

  .final-cta-button {
    transform: none;
    transition: none;
  }

  body.motion-ready .andy-section .depth-reveal,
  body.motion-ready .andy-section .depth-reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .answer-card-media img,
  .answer-card-copy,
  .lead-entry-book img,
  .lead-entry-button {
    transform: none;
    transition: none;
  }

  .answer-card::after {
    transform: scaleX(1);
  }
}

/* Complementary story sections */

.conversation-section,
.book-inside {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.conversation-section {
  min-height: 100svh;
  padding: clamp(150px, 20vw, 240px) 20px clamp(110px, 14vw, 180px);
  color: #071925;
  background:
    radial-gradient(circle at 14% 46%, rgba(0, 159, 223, .13), transparent 26%),
    radial-gradient(circle at 88% 66%, rgba(0, 56, 101, .09), transparent 30%),
    linear-gradient(145deg, #f7fbfc 0%, #e7f1f4 55%, #dcebef 100%);
}

.conversation-section::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(180deg, var(--ink), rgba(2, 11, 18, .64) 20%, transparent 100%);
}

.conversation-orbit {
  position: absolute;
  z-index: -1;
  top: 13%;
  right: -100px;
  width: min(54vw, 650px);
  aspect-ratio: 1;
  opacity: .32;
}

.conversation-orbit i {
  position: absolute;
  inset: var(--orbit-inset, 0);
  border: 1px solid rgba(0, 56, 101, .22);
  border-radius: 50%;
}

.conversation-orbit i:nth-child(2) { --orbit-inset: 16%; }
.conversation-orbit i:nth-child(3) { --orbit-inset: 32%; }

.conversation-copy,
.book-inside-copy,
.video-stage,
.answer-grid,
.book-promise {
  width: min(100%, 1180px);
  margin-inline: auto;
}

.conversation-copy {
  max-width: 900px;
  text-align: center;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  color: #14506d;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.section-kicker span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #fff;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 9px 24px rgba(0, 159, 223, .28);
}

.conversation-copy h2,
.book-inside-copy h2 {
  margin: 0;
  font-size: clamp(2.25rem, 7vw, 5.7rem);
  line-height: .97;
  letter-spacing: -.055em;
  text-wrap: balance;
}

.conversation-copy > p:last-child,
.book-inside-copy > p:last-child {
  max-width: 700px;
  margin: 28px auto 0;
  color: #416172;
  font-size: clamp(1rem, 2vw, 1.22rem);
  line-height: 1.65;
}

.video-stage {
  position: relative;
  margin-top: clamp(46px, 8vw, 92px);
  padding: 38px 0 12px;
}

.video-backplate {
  position: absolute;
  z-index: -1;
  top: 12px;
  left: 50%;
  width: min(88%, 900px);
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255, 255, 255, .62);
  border-radius: clamp(22px, 4vw, 42px);
  transform-origin: center;
  backdrop-filter: blur(10px);
  box-shadow: 0 45px 70px rgba(0, 40, 66, .13);
}

.video-backplate-one {
  background: rgba(255, 255, 255, .46);
  transform: translateX(-53%) rotate(-3.4deg);
}

.video-backplate-two {
  background: rgba(107, 186, 214, .18);
  transform: translateX(-47%) rotate(3.2deg);
}

.video-shell {
  position: relative;
  z-index: 2;
  width: min(86%, 880px);
  margin-inline: auto;
  perspective: 1200px;
}

.video-card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  color: #fff;
  background: #03131e;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: clamp(20px, 3vw, 34px);
  transform: rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transform-style: preserve-3d;
  transition: transform .35s cubic-bezier(.2, .8, .2, 1), box-shadow .35s ease;
  box-shadow:
    0 58px 90px rgba(0, 34, 58, .27),
    0 14px 30px rgba(0, 32, 54, .18),
    inset 0 1px rgba(255, 255, 255, .18);
}

.video-card:hover {
  box-shadow:
    0 66px 110px rgba(0, 34, 58, .31),
    0 18px 36px rgba(0, 32, 54, .2),
    inset 0 1px rgba(255, 255, 255, .18);
}

.video-card video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.video-shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(1, 12, 20, .08) 45%, rgba(1, 12, 20, .72) 100%),
    radial-gradient(circle at center, transparent 38%, rgba(1, 12, 20, .25));
  transition: opacity .3s ease;
}

.video-play {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 10px 18px 10px 10px;
  color: #082033;
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(255, 255, 255, .76);
  border-radius: 999px;
  font: inherit;
  font-size: clamp(.72rem, 1.7vw, .92rem);
  font-weight: 800;
  cursor: pointer;
  transform: translate(-50%, -50%);
  box-shadow: 0 18px 45px rgba(0, 0, 0, .25);
  transition: opacity .25s ease, transform .25s ease;
}

.video-play::before {
  content: "";
  position: absolute;
  inset: -10px;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, .48);
  border-radius: inherit;
  animation: playPulse 2.2s ease-out infinite;
}

.video-play:hover {
  transform: translate(-50%, -50%) scale(1.04);
}

.video-play-icon {
  position: relative;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  background: var(--cyan);
  border-radius: 50%;
}

.video-play-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 52%;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 9px solid #fff;
  transform: translate(-40%, -50%);
}

.video-caption {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 22px;
  left: 24px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  transition: opacity .25s ease;
}

.video-caption span {
  font-size: clamp(.86rem, 2vw, 1.08rem);
  font-weight: 800;
}

.video-caption small {
  color: rgba(255, 255, 255, .66);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.video-card.has-started .video-play,
.video-card.has-started .video-caption,
.video-card.has-started .video-shade {
  opacity: 0;
  pointer-events: none;
}

.video-chip {
  position: relative;
  z-index: 4;
  width: fit-content;
  margin: 18px 0 0;
  padding: 12px 16px;
  color: #163d51;
  background: rgba(255, 255, 255, .76);
  border: 1px solid rgba(255, 255, 255, .92);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 40px rgba(11, 58, 84, .14);
}

.video-chip-time { margin-left: 2%; }
.video-chip-truth { margin-left: auto; margin-right: 3%; }

.video-quote {
  position: relative;
  z-index: 4;
  margin: 34px auto 0;
  color: #0b2c3e;
  font-size: clamp(1.3rem, 4vw, 2.4rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.035em;
  text-align: center;
}

.book-inside {
  min-height: 100svh;
  padding: clamp(170px, 20vw, 260px) 20px clamp(120px, 16vw, 210px);
  color: #f5f0e5;
  background:
    radial-gradient(circle at 15% 28%, rgba(0, 159, 223, .16), transparent 24%),
    radial-gradient(circle at 85% 76%, rgba(113, 197, 232, .1), transparent 26%),
    linear-gradient(150deg, #061d2c 0%, #02131f 55%, #020c14 100%);
}

.book-inside::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 160px;
  background: linear-gradient(180deg, #dcebef 0%, rgba(220, 235, 239, .68) 18%, transparent 100%);
}

.book-light {
  position: absolute;
  z-index: -1;
  top: 11%;
  left: 50%;
  width: min(90vw, 900px);
  height: 52%;
  border: 1px solid rgba(0, 159, 223, .12);
  border-radius: 50%;
  transform: translateX(-50%) perspective(800px) rotateX(68deg);
  box-shadow:
    inset 0 0 120px rgba(0, 159, 223, .08),
    0 0 120px rgba(0, 159, 223, .06);
}

.book-inside-copy {
  max-width: 960px;
  text-align: center;
}

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

.book-inside-copy h2 {
  color: #f7f3e9;
}

.book-inside-copy > p:last-child {
  color: rgba(221, 236, 243, .68);
}

.answer-grid {
  position: relative;
  display: flex;
  flex-direction: column;
  margin-top: clamp(66px, 10vw, 118px);
}

.answer-grid::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 24px;
  width: 1px;
  background: linear-gradient(transparent, rgba(0, 159, 223, .72) 12%, rgba(0, 159, 223, .26) 88%, transparent);
}

.answer-card {
  position: sticky;
  z-index: calc(2 + var(--card-index));
  top: calc(34px + (var(--card-index) * 13px));
  min-height: 360px;
  margin: 0 0 14svh;
  padding: clamp(30px, 7vw, 54px);
  color: #082131;
  background:
    radial-gradient(circle at 92% 10%, rgba(0, 159, 223, .1), transparent 25%),
    linear-gradient(145deg, #fffdf6 0%, #eee9dc 100%);
  border: 1px solid rgba(255, 255, 255, .58);
  border-radius: 28px;
  transform-origin: center top;
  box-shadow:
    0 40px 80px rgba(0, 0, 0, .32),
    0 8px 20px rgba(0, 0, 0, .16),
    inset 0 1px rgba(255, 255, 255, .9);
}

.answer-card:nth-child(odd) { rotate: -.7deg; }
.answer-card:nth-child(even) { rotate: .7deg; }
.answer-card:last-child { margin-bottom: 0; }

.answer-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 34px;
}

.answer-card-top > span {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .15em;
}

.answer-card-top small {
  max-width: 72%;
  color: #55717f;
  font-size: .66rem;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: .07em;
  text-align: right;
  text-transform: uppercase;
}

.answer-card h3 {
  max-width: 610px;
  margin: 54px 0 20px;
  font-size: clamp(2.2rem, 7vw, 4.8rem);
  line-height: .94;
  letter-spacing: -.055em;
}

.answer-card p {
  max-width: 600px;
  margin: 0;
  color: #3e5d6d;
  font-size: clamp(.95rem, 2vw, 1.08rem);
  line-height: 1.65;
}

.answer-card strong {
  display: block;
  margin-top: 32px;
  padding-top: 18px;
  color: #0a84b3;
  border-top: 1px solid rgba(0, 159, 223, .2);
  font-size: .74rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.book-promise {
  margin-top: clamp(90px, 13vw, 160px);
  padding: clamp(30px, 5vw, 54px);
  text-align: center;
  background: rgba(4, 38, 57, .66);
  border: 1px solid rgba(113, 197, 232, .18);
  border-radius: 28px;
  backdrop-filter: blur(14px);
  box-shadow: 0 32px 80px rgba(0, 0, 0, .22);
}

.book-promise span {
  color: var(--sky);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.book-promise p {
  max-width: 720px;
  margin: 14px auto 0;
  color: #f7f3e9;
  font-size: clamp(1.4rem, 4vw, 2.7rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -.035em;
}

body.motion-ready .depth-reveal {
  opacity: 0;
  filter: blur(10px);
  transform: perspective(1100px) translate3d(0, 80px, -100px) rotateX(7deg) scale(.96);
  transition:
    opacity .9s cubic-bezier(.2, .8, .2, 1) var(--reveal-delay, 0ms),
    filter .9s cubic-bezier(.2, .8, .2, 1) var(--reveal-delay, 0ms),
    transform 1s cubic-bezier(.2, .8, .2, 1) var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

body.motion-ready .depth-reveal.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: perspective(1100px) translate3d(0, 0, 0) rotateX(0) scale(1);
}

@keyframes playPulse {
  0% { opacity: .65; transform: scale(.92); }
  75%, 100% { opacity: 0; transform: scale(1.2); }
}

@media (min-width: 760px) {
  .video-stage {
    padding: 54px 0 130px;
  }

  .video-chip {
    position: absolute;
  }

  .video-chip-time {
    top: 14%;
    left: 0;
    margin: 0;
  }

  .video-chip-truth {
    right: 0;
    bottom: 23%;
    margin: 0;
  }

  .video-quote {
    position: absolute;
    bottom: 4%;
    left: 4%;
    margin: 0;
    text-align: left;
  }
}

@media (min-width: 900px) {
  .conversation-section,
  .book-inside {
    padding-inline: 48px;
  }

  .answer-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
  }

  .answer-grid::before {
    top: 50%;
    right: 8%;
    bottom: auto;
    left: 8%;
    width: auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 159, 223, .54), transparent);
  }

  .answer-card {
    position: relative;
    top: auto;
    min-height: 470px;
    margin: 0;
    transition: translate .35s ease, rotate .35s ease, box-shadow .35s ease;
  }

  .answer-card:nth-child(2),
  .answer-card:nth-child(4) {
    translate: 0 54px;
  }

  .answer-card:hover {
    z-index: 8;
    translate: 0 -8px;
    rotate: 0deg;
    box-shadow:
      0 55px 100px rgba(0, 0, 0, .4),
      0 10px 26px rgba(0, 0, 0, .18),
      inset 0 1px rgba(255, 255, 255, .9);
  }

  .answer-card:nth-child(2):hover,
  .answer-card:nth-child(4):hover {
    translate: 0 42px;
  }
}

@media (max-width: 520px) {
  .conversation-section,
  .book-inside {
    padding-inline: 16px;
  }

  .video-stage {
    padding-top: 24px;
  }

  .video-shell {
    width: 96%;
  }

  .video-backplate {
    top: 4px;
    width: 95%;
  }

  .video-play {
    padding-right: 13px;
  }

  .video-play-icon {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }

  .video-caption {
    right: 15px;
    bottom: 14px;
    left: 15px;
  }

  .video-caption small {
    display: none;
  }

  .answer-card {
    min-height: 390px;
    border-radius: 24px;
  }

  .answer-card-top {
    align-items: flex-start;
  }

  .answer-card h3 {
    margin-top: 44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.motion-ready .depth-reveal,
  body.motion-ready .depth-reveal.is-visible {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
  }

  .video-play::before {
    animation: none;
  }

  .video-card,
  .answer-card {
    transition: none;
  }
}

/* Keep the new horizontal layout above the former card-grid rules. */

.book-inside .answer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(18px, 3vw, 30px);
  margin-top: clamp(58px, 8vw, 96px);
}

.book-inside .answer-grid::before {
  top: -28px;
  bottom: -28px;
  left: 50%;
  width: 1px;
  height: auto;
  background: linear-gradient(transparent, rgba(0, 159, 223, .42), transparent);
}

.book-inside .answer-card,
.book-inside .answer-card:nth-child(n) {
  position: relative;
  top: auto;
  display: block;
  min-height: clamp(300px, 30vw, 360px);
  margin: 0;
  padding: 0;
  color: #082131;
  background: #fbfaf6;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: clamp(22px, 3vw, 32px);
  rotate: none;
  translate: 0 0;
  box-shadow:
    0 32px 70px rgba(0, 0, 0, .24),
    0 8px 20px rgba(0, 0, 0, .12),
    inset 0 1px rgba(255, 255, 255, .96);
}

.book-inside .answer-card-copy {
  width: min(60%, 650px);
  min-height: inherit;
  padding: clamp(26px, 4.5vw, 52px);
}

.book-inside .answer-card-top {
  min-height: auto;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 9px 14px;
}

.book-inside .answer-card-top small {
  max-width: 360px;
  padding: 7px 10px;
  color: #496775;
  font-size: .58rem;
  text-align: left;
}

.book-inside .answer-card h3 {
  max-width: 630px;
  margin: clamp(24px, 3vw, 36px) 0 14px;
  font-size: clamp(2rem, 5.2vw, 4.3rem);
  line-height: .92;
}

.book-inside .answer-card p {
  max-width: 560px;
  font-size: clamp(.88rem, 1.45vw, 1.02rem);
  line-height: 1.55;
}

.book-inside .answer-card strong {
  width: fit-content;
  margin-top: 20px;
  padding-top: 12px;
  font-size: .64rem;
}

.book-inside .answer-card:hover,
.book-inside .answer-card:nth-child(n):hover {
  translate: 0 0;
  rotate: none;
  border-color: rgba(113, 197, 232, .58);
  box-shadow:
    0 42px 86px rgba(0, 0, 0, .3),
    0 10px 24px rgba(0, 0, 0, .14),
    inset 0 1px rgba(255, 255, 255, .96);
}

.book-inside .book-promise {
  margin-top: clamp(66px, 9vw, 110px);
}

@media (min-width: 900px) {
  .book-inside .answer-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .book-inside .answer-card,
  .book-inside .answer-card:nth-child(n) {
    min-height: clamp(310px, 29vw, 360px);
    translate: 0 0;
  }
}

@media (max-width: 680px) {
  .book-inside .answer-grid {
    gap: 18px;
  }

  .book-inside .answer-card,
  .book-inside .answer-card:nth-child(n) {
    min-height: 328px;
    border-radius: 23px;
  }

  .book-inside .answer-card-copy {
    width: 71%;
    padding: 24px 18px 24px 22px;
  }

  .book-inside .answer-card-top {
    align-items: flex-start;
  }

  .book-inside .answer-card-top small {
    max-width: 100%;
    padding: 6px 8px;
    font-size: .5rem;
    line-height: 1.3;
  }

  .book-inside .answer-card h3 {
    margin: 22px 0 12px;
    font-size: clamp(1.72rem, 8.4vw, 2.45rem);
    line-height: .94;
  }

  .book-inside .answer-card p {
    font-size: .79rem;
    line-height: 1.48;
  }

  .book-inside .answer-card strong {
    margin-top: 16px;
    padding-top: 10px;
    font-size: .52rem;
    line-height: 1.35;
  }
}

/* Final approved presentation rules. */

.book-inside .answer-card::before {
  background: linear-gradient(90deg,
    #fbfaf6 0%,
    rgba(251, 250, 246, .99) 29%,
    rgba(251, 250, 246, .91) 41%,
    rgba(251, 250, 246, .58) 54%,
    rgba(251, 250, 246, .14) 68%,
    transparent 78%);
}

.book-inside .answer-card-media {
  -webkit-mask-image: linear-gradient(90deg, transparent 8%, rgba(0, 0, 0, .28) 27%, #000 48%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 8%, rgba(0, 0, 0, .28) 27%, #000 48%, #000 100%);
}

.book-inside .answer-card-media img {
  object-position: right center;
  filter: saturate(1.09) contrast(1.03);
}

.book-inside .answer-card-copy {
  width: min(57%, 620px);
}

.book-inside .answer-card h3 {
  margin-top: 0;
}

.book-inside .book-promise {
  padding: clamp(32px, 5vw, 58px);
  color: #082131;
  background:
    radial-gradient(circle at 90% 20%, rgba(0, 159, 223, .11), transparent 25%),
    linear-gradient(135deg, #fffdf7 0%, #e9f2f3 100%);
  border: 1px solid rgba(255, 255, 255, .78);
  text-align: left;
  box-shadow:
    0 38px 82px rgba(0, 0, 0, .28),
    inset 0 1px rgba(255, 255, 255, .95);
  backdrop-filter: none;
}

.book-inside .book-promise p {
  max-width: 940px;
  margin: 0;
  color: #082131;
  font-size: clamp(1.65rem, 4.4vw, 3.7rem);
  line-height: 1.02;
  letter-spacing: -.045em;
  text-align: left;
}

@media (max-width: 680px) {
  .book-inside .answer-card::before {
    background: linear-gradient(90deg,
      #fbfaf6 0%,
      rgba(251, 250, 246, .99) 42%,
      rgba(251, 250, 246, .78) 57%,
      rgba(251, 250, 246, .18) 76%,
      transparent 100%);
  }

  .book-inside .answer-card-media {
    -webkit-mask-image: linear-gradient(90deg, transparent 18%, rgba(0, 0, 0, .3) 39%, #000 62%, #000 100%);
    mask-image: linear-gradient(90deg, transparent 18%, rgba(0, 0, 0, .3) 39%, #000 62%, #000 100%);
  }

  .book-inside .answer-card-copy {
    width: 66%;
  }

  .book-inside .answer-card h3 {
    margin-top: 0;
  }

  .book-inside .book-promise p {
    font-size: clamp(1.55rem, 7.6vw, 2.2rem);
    line-height: 1.06;
  }
}
