/* ================================================================
   SKILLFLO COACH
   Product-detail UI primitives. Page-level v1 styling follows below.
   ================================================================ */

.coach-tape,
.coach-live,
.coach-review,
.coach-trust,
.coach-finale {
  scroll-margin-top: 78px;
}

body[data-product="coach"] main { overflow: clip; }

/* ---------- Contact sheet ---------- */
.coach-tape {
  position: relative;
  padding-block: clamp(5.8rem, 9vw, 8.6rem);
  color: var(--coach-paper);
  background: oklch(0.145 0.018 259);
}

.coach-tape::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .12;
  background-image: repeating-linear-gradient(0deg, transparent 0 4px, var(--coach-paper) 4px 5px);
  background-size: 100% 13px;
  pointer-events: none;
}

.coach-chapter-head {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(18rem, .65fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: end;
  margin-bottom: clamp(3rem, 6vw, 5.5rem);
}

.coach-chapter-head h2 {
  max-width: 12ch;
  margin-top: 1.1rem;
  font-size: clamp(2.5rem, 3.8vw, 3.8rem);
  font-weight: 600;
  line-height: .93;
  letter-spacing: -.055em;
  text-wrap: balance;
}

.coach-chapter-head > p {
  max-width: 34rem;
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  line-height: 1.65;
  color: color-mix(in oklch, var(--coach-paper) 63%, transparent);
}

.coach-contact-sheet {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.4rem, 3vw, 2.8rem);
}

.coach-contact-sheet::before {
  content: 'ROLL C03';
  position: absolute;
  left: -2.4rem;
  top: 50%;
  color: color-mix(in oklch, var(--coach-paper) 24%, transparent);
  font-family: var(--font-mono);
  font-size: .58rem;
  letter-spacing: .25em;
  writing-mode: vertical-rl;
  transform: translateY(-50%) rotate(180deg);
}

.coach-frame {
  position: relative;
  min-width: 0;
  padding: 1.4rem clamp(1rem, 2vw, 1.6rem) 1.7rem;
  border: 1px solid color-mix(in oklch, var(--coach-paper) 18%, transparent);
  background: oklch(0.105 0.012 258);
  box-shadow: 0 24px 48px -40px oklch(0.02 0 0 / .9);
  transition: border-color .55s var(--ease-soft), background .55s var(--ease-soft);
}

.coach-frame.is-active {
  border-color: color-mix(in oklch, var(--coach-marker) 82%, var(--coach-paper));
  background: oklch(0.14 0.018 258);
}

.coach-frame::after {
  content: '';
  position: absolute;
  left: .6rem;
  right: .6rem;
  bottom: .3rem;
  height: .42rem;
  opacity: .44;
  background: repeating-linear-gradient(90deg, var(--coach-paper) 0 .62rem, transparent .62rem 1.38rem);
}

.coach-frame__header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin: .55rem 0 .85rem;
  font-size: .58rem;
  letter-spacing: .17em;
  color: color-mix(in oklch, var(--coach-paper) 52%, transparent);
}

.coach-frame__caption { padding: 1.25rem .15rem .2rem; }
.coach-frame__caption > span { font-size: .57rem; letter-spacing: .17em; text-transform: uppercase; color: var(--coach-marker); }
.coach-frame__caption h3 { margin-top: .55rem; font-size: clamp(1.45rem, 2.5vw, 2.25rem); font-weight: 600; line-height: 1.04; letter-spacing: -.035em; }
.coach-frame__caption p { max-width: 43rem; margin-top: .7rem; color: color-mix(in oklch, var(--coach-paper) 57%, transparent); line-height: 1.55; }

.coach-tape__footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  margin-top: 2.5rem;
  font-size: .58rem;
  letter-spacing: .16em;
  color: color-mix(in oklch, var(--coach-paper) 42%, transparent);
}

.coach-tape__footer i { height: 1px; background: color-mix(in oklch, var(--coach-paper) 16%, transparent); transform-origin: left; }

/* ---------- Live coaching ---------- */
.coach-live__stage { position: relative; min-width: 0; }
/* ---------- Review proof ---------- */
.coach-review__marks div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .75rem;
}
.coach-review__marks b { display: block; }

/* Static content is the accessibility fallback. GSAP only enhances it. */
@media (prefers-reduced-motion: reduce) {
  body[data-product="coach"] *,
  body[data-product="coach"] *::before,
  body[data-product="coach"] *::after {
    scroll-behavior: auto !important;
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }

  body[data-product="coach"] [data-coach-hero],
  body[data-product="coach"] [data-coach-photo],
  body[data-product="coach"] [data-coach-reveal],
  body[data-product="coach"] [data-tape-frame],
  body[data-product="coach"] [data-review-moment],
  body[data-product="coach"] [data-review-note],
  body[data-product="coach"] [data-review-next] {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
  }
}

.no-js body[data-product="coach"] [data-coach-hero],
.no-js body[data-product="coach"] [data-coach-photo],
.no-js body[data-product="coach"] [data-coach-reveal],
.no-js body[data-product="coach"] [data-tape-frame],
.no-js body[data-product="coach"] [data-review-moment],
.no-js body[data-product="coach"] [data-review-note],
.no-js body[data-product="coach"] [data-review-next] {
  opacity: 1;
  visibility: visible;
  transform: none;
}

/* ================================================================
   V1 HOMEPAGE DESIGN SYSTEM
   Bright canvas, navy type, indigo action, ambient color and rounded
   product surfaces. The existing Coach content and product UI remain.
   ================================================================ */

body[data-product="coach"] {
  --coach-night: #0a2540;
  --coach-night-2: #133654;
  --coach-blue: #6366f1;
  --coach-blue-bright: #818cf8;
  --coach-paper: #ffffff;
  --coach-paper-2: #f6f9fc;
  --coach-ink: #0a2540;
  --coach-marker: #6366f1;
  --coach-yellow: #fedd00;
  --coach-green: #10b981;
  --coach-line: #e3e8ee;
  background: #ffffff;
  color: #0a2540;
}

body[data-product="coach"] :focus-visible {
  outline-color: #6366f1;
}

body[data-product="coach"] .nav,
body[data-product="coach"] .nav:not(.is-scrolled) {
  color: #0a2540;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 1px 0 rgba(10, 37, 64, .08);
}

body[data-product="coach"] .nav:not(.is-scrolled) .nav__word,
body[data-product="coach"] .nav:not(.is-scrolled) .nav__links a,
body[data-product="coach"] .nav:not(.is-scrolled) .nav__product {
  color: #0a2540;
}

body[data-product="coach"] .nav:not(.is-scrolled) .nav__links a:hover {
  color: #6366f1;
}

body[data-product="coach"] .nav:not(.is-scrolled) .nav__divider {
  background: #e3e8ee;
}

body[data-product="coach"] .nav:not(.is-scrolled) .nav__product {
  border-color: rgba(99, 102, 241, .24);
  background: #f2f2ff;
}

body[data-product="coach"] .nav:not(.is-scrolled) .nav__actions .btn--primary,
body[data-product="coach"] .nav .nav__actions .btn--primary {
  color: #ffffff;
  background: #0a2540;
  box-shadow: 0 3px 10px rgba(10, 37, 64, .16);
}

body[data-product="coach"] .nav:not(.is-scrolled) .nav__actions .btn--primary::before {
  background: #163b5d;
}

body[data-product="coach"] h1,
body[data-product="coach"] h2,
body[data-product="coach"] h3,
body[data-product="coach"] .btn {
  font-family: 'Poppins', 'General Sans', sans-serif;
}

body[data-product="coach"] .btn {
  border-radius: 999px;
}

body[data-product="coach"] .btn--cobalt,
body[data-product="coach"] .btn--primary {
  color: #ffffff;
  background: #0a2540;
  box-shadow: 0 4px 14px rgba(10, 37, 64, .18);
}

body[data-product="coach"] .btn--cobalt::before,
body[data-product="coach"] .btn--primary::before {
  background: #153b5d;
}

body[data-product="coach"] .btn--cobalt:hover,
body[data-product="coach"] .btn--primary:hover {
  box-shadow: 0 10px 28px rgba(10, 37, 64, .24);
}

.coach-slate,
.coach-chapter-head__index,
.coach-opening__index,
.coach-frame__header,
.coach-frame__caption > span,
.coach-tape__footer,
.coach-finale__counter,
.coach-trust__ledger article > span,
.coach-trust__ledger article > i {
  font-family: var(--font-sans);
}

/* Hero */
.coach-hero {
  min-height: auto;
  display: block;
  padding-block: clamp(6.4rem, 8vw, 7.4rem) clamp(3.5rem, 5vw, 4.5rem);
  color: #0a2540;
  background: #ffffff;
  isolation: isolate;
}

.coach-hero::after {
  height: 10rem;
  border: 0;
  background: linear-gradient(to bottom, transparent, #ffffff);
  pointer-events: none;
}

.coach-hero__grain {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  opacity: 1;
  background: none;
  mix-blend-mode: normal;
}

.coach-orb {
  position: absolute;
  display: block;
  border-radius: 50%;
  filter: blur(82px);
  opacity: .46;
  animation: coach-orb-float 20s ease-in-out infinite;
}

.coach-orb--indigo {
  width: 38rem;
  height: 38rem;
  top: -13rem;
  left: -13rem;
  background: rgba(99, 102, 241, .34);
}

.coach-orb--cyan {
  width: 34rem;
  height: 34rem;
  top: 4rem;
  right: -13rem;
  background: rgba(14, 165, 233, .25);
  animation-delay: -7s;
}

.coach-orb--violet {
  width: 28rem;
  height: 28rem;
  top: 42%;
  left: 34%;
  background: rgba(139, 92, 246, .25);
  animation-delay: -14s;
}

.coach-orb--yellow {
  width: 20rem;
  height: 20rem;
  top: 1rem;
  left: 52%;
  opacity: .24;
  background: rgba(254, 221, 0, .34);
  animation-delay: -10s;
}

@keyframes coach-orb-float {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  25% { transform: translate3d(1.8rem, -1.2rem, 0) scale(1.04); }
  50% { transform: translate3d(-1.2rem, 1rem, 0) scale(.96); }
  75% { transform: translate3d(1rem, 1.5rem, 0) scale(1.02); }
}

.coach-hero__sprockets,
.coach-review__mark,
.coach-finale__sprockets {
  display: none;
}

.coach-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.8rem, 3vw, 2.6rem);
  align-items: start;
}

.coach-hero__copy {
  max-width: 64rem;
  margin-inline: auto;
  text-align: center;
}

.coach-slate {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  margin-bottom: 1.1rem;
  padding: .7rem 1.1rem;
  color: #425466;
  background: rgba(255, 255, 255, .58);
  border: 1px solid rgba(255, 255, 255, .75);
  border-radius: 999px;
  box-shadow: 0 8px 32px rgba(10, 37, 64, .06), inset 0 1px rgba(255, 255, 255, .85);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.coach-slate::before { display: none; }

.coach-slate > i {
  display: block;
  width: .5rem;
  height: .5rem;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 .25rem rgba(16, 185, 129, .12);
}

.coach-slate span {
  padding: 0;
  color: #6366f1;
  border: 0;
}

.coach-hero__title {
  max-width: 15ch;
  margin-inline: auto;
  color: #0a2540;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.07;
  letter-spacing: -.038em;
}

.coach-hero__title strong {
  color: #6366f1;
  font-weight: 800;
}

.coach-hero__title strong::after { display: none; }

.coach-hero__lede {
  max-width: 44rem;
  margin: 1rem auto 0;
  color: #425466;
  font-size: clamp(1.05rem, 1.65vw, 1.28rem);
  line-height: 1.68;
}

.coach-hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.35rem;
}

.coach-hero__textlink {
  padding: 1.05rem 1.75rem;
  color: #0a2540;
  background: rgba(255, 255, 255, .55);
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 999px;
  box-shadow: 0 8px 28px rgba(10, 37, 64, .06), inset 0 1px rgba(255, 255, 255, .85);
  font-weight: 600;
}

.coach-hero__textlink span { padding: 0; border: 0; }

.coach-hero__features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .65rem;
  margin-top: 1rem;
  color: #425466;
  font-family: var(--font-sans);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.coach-hero__features li {
  padding: .48rem .78rem;
  background: rgba(255, 255, 255, .68);
  border: 1px solid rgba(227, 232, 238, .75);
  border-radius: 999px;
}

.coach-hero__features li:not(:last-child)::after { display: none; }

.coach-hero__photo {
  width: min(100%, 58rem);
  margin-inline: auto;
  overflow: hidden;
  color: #425466;
  background: rgba(255, 255, 255, .66);
  border: 1px solid rgba(255, 255, 255, .82);
  border-radius: 1.15rem;
  box-shadow: 0 30px 80px rgba(10, 37, 64, .12), 0 0 0 1px rgba(99, 102, 241, .06);
}

.coach-hero__photo::before,
.coach-hero__photo::after { display: none; }

.coach-browser {
  display: grid;
  grid-template-columns: repeat(3, .72rem) 1fr;
  gap: .42rem;
  align-items: center;
  padding: .8rem 1rem;
  background: rgba(255, 255, 255, .68);
  border-bottom: 1px solid rgba(227, 232, 238, .8);
}

.coach-browser > span {
  width: .72rem;
  height: .72rem;
  border-radius: 50%;
  background: #e3e8ee;
}

.coach-browser b {
  justify-self: center;
  margin-right: 3.4rem;
  padding: .28rem 1.2rem;
  color: #8792a2;
  background: rgba(255, 255, 255, .62);
  border: 1px solid rgba(227, 232, 238, .9);
  border-radius: .5rem;
  font-family: var(--font-mono);
  font-size: .68rem;
  font-weight: 400;
}

.coach-hero__photo figcaption {
  display: flex;
  justify-content: center;
  gap: .55rem;
  padding: .85rem 1.1rem;
  color: #8792a2;
  background: rgba(255, 255, 255, .82);
  border-top: 1px solid #eef1f5;
  font-family: var(--font-sans);
  font-size: .78rem;
  letter-spacing: 0;
}

.coach-hero__photo figcaption span {
  color: #6366f1;
  font-weight: 700;
  text-transform: none;
}

.coach-hero__screen {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 8;
  object-fit: cover;
  object-position: 50% 0;
  background: #f8fafc;
}

/* Shared section typography */
.coach-opening,
.coach-tape,
.coach-live,
.coach-review,
.coach-next,
.coach-trust,
.coach-finale {
  color: #0a2540;
}

.coach-opening__index,
.coach-chapter-head__index {
  color: #6366f1;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.coach-opening h2,
.coach-chapter-head h2,
.coach-live__copy h2,
.coach-next h2,
.coach-trust__head h2,
.coach-finale__copy h2 {
  color: #0a2540;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.035em;
}

/* Opening statement */
.coach-opening {
  padding-block: clamp(5.5rem, 8vw, 7.5rem);
  background: #ffffff;
}

.coach-opening__grid {
  display: grid;
  grid-template-columns: .28fr 1.05fr .7fr;
  gap: clamp(1.8rem, 4vw, 4.5rem);
  align-items: center;
}

.coach-opening h2 {
  max-width: 15ch;
  font-size: clamp(2.4rem, 4vw, 3.9rem);
}

.coach-opening__aside {
  padding: 0;
  color: #425466;
  font-size: 1.08rem;
}

.coach-opening__aside strong { color: #0a2540; }

/* Feature cards */
.coach-tape {
  padding-block: clamp(4.5rem, 7vw, 6rem);
  background: #f6f9fc;
}

.coach-tape::before { display: none; }

.coach-chapter-head {
  display: block;
  max-width: 53rem;
  margin: 0 auto clamp(2.2rem, 4vw, 3.2rem);
  text-align: center;
}

.coach-chapter-head h2 {
  max-width: 18ch;
  margin: .9rem auto 0;
  font-size: clamp(2.35rem, 4.2vw, 4rem);
}

.coach-chapter-head > p {
  max-width: 40rem;
  margin: 1.2rem auto 0;
  color: #425466;
  font-size: 1.08rem;
}

.coach-contact-sheet {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  max-width: 67rem;
  margin-inline: auto;
}

.coach-contact-sheet::before { display: none; }

.coach-frame,
.coach-frame.is-active {
  padding: 1.15rem;
  color: #0a2540;
  background: #ffffff;
  border: 1px solid #e3e8ee;
  border-radius: 1rem;
  box-shadow: 0 3px 14px rgba(10, 37, 64, .035);
  transition: transform .35s var(--ease-out), border-color .35s, box-shadow .35s;
}

.coach-frame:hover,
.coach-frame.is-active {
  border-color: rgba(99, 102, 241, .32);
  box-shadow: 0 14px 40px rgba(10, 37, 64, .08);
}

.coach-frame::after { display: none; }

.coach-frame__header {
  margin: 0 0 .75rem;
  color: #8792a2;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .04em;
}

.coach-frame__header span:first-child { color: #6366f1; }

.coach-frame__media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #f8fafc;
  border: 1px solid #e3e8ee;
  border-radius: .78rem;
}

.coach-frame__media img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.coach-frame__media--room img {
  object-position: center;
}

.coach-frame__media--coaching img {
  transform: scale(1.72);
  transform-origin: 100% 0;
}

.coach-frame__media--live img {
  transform: scale(1.16);
  transform-origin: 50% 62%;
}

.coach-frame__media--review img {
  object-position: 50% 0;
}

.coach-frame__caption {
  padding: 1.25rem .25rem .2rem;
}

.coach-frame__caption > span {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .06em;
}

.coach-frame__caption h3 {
  color: #0a2540;
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
  font-weight: 700;
  line-height: 1.18;
}

.coach-frame__caption p {
  margin-top: .55rem;
  color: #425466;
}

.coach-tape__footer {
  max-width: 67rem;
  margin: 2rem auto 0;
  color: #8792a2;
  font-size: .7rem;
  letter-spacing: .04em;
}

.coach-tape__footer i { background: #d8dee7; }

.coach-process {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(18rem, .65fr);
  gap: clamp(1.2rem, 3vw, 2.4rem);
  align-items: stretch;
  max-width: 72rem;
  margin-inline: auto;
}

.coach-process__capture {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e3e8ee;
  border-radius: 1rem;
  box-shadow: 0 16px 46px rgba(10, 37, 64, .08);
}

.coach-process__viewport {
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #f8fafc;
}

.coach-process__viewport img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 0;
}

.coach-process__capture figcaption {
  padding: .8rem 1rem;
  color: #425466;
  border-top: 1px solid #e3e8ee;
  font-size: .78rem;
  text-align: center;
}

.coach-process__steps {
  display: grid;
  gap: .65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.coach-process__steps li {
  display: grid;
  grid-template-columns: 2.35rem 1fr;
  gap: .8rem;
  align-items: start;
  padding: 1rem;
  background: #ffffff;
  border: 1px solid #e3e8ee;
  border-radius: .85rem;
  transition: border-color .3s, box-shadow .3s, transform .3s var(--ease-out);
}

.coach-process__steps li.is-active {
  border-color: rgba(99, 102, 241, .35);
  box-shadow: 0 10px 28px rgba(10, 37, 64, .07);
}

.coach-process__steps > li > span {
  display: grid;
  place-items: center;
  min-height: 2.35rem;
  color: #6366f1;
  background: #f4f3ff;
  border-radius: 50%;
  font-size: .72rem;
  font-weight: 700;
}

.coach-process__steps h3 {
  color: #0a2540;
  font-size: 1rem;
  font-weight: 700;
}

.coach-process__steps p {
  margin-top: .25rem;
  color: #425466;
  font-size: .88rem;
  line-height: 1.45;
}

/* Live coaching */
.coach-live {
  padding-block: clamp(4.5rem, 7vw, 6rem);
  background: #ffffff;
}

.coach-live__grid {
  display: grid;
  grid-template-columns: minmax(18rem, .72fr) minmax(0, 1.28fr);
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.coach-live__copy h2 {
  max-width: 12ch;
  margin-top: .9rem;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
}

.coach-live__lede {
  max-width: 35rem;
  margin-top: 1.35rem;
  color: #425466;
  font-size: 1.08rem;
}

.coach-live__modes {
  display: grid;
  gap: .75rem;
  margin-top: 2rem;
  border: 0;
}

.coach-live__modes div {
  display: block;
  padding: 1.2rem;
  background: #f6f9fc;
  border: 1px solid #e3e8ee;
  border-radius: .85rem;
}

.coach-live__modes div.is-active {
  background: #f4f3ff;
  border-color: rgba(99, 102, 241, .3);
}

.coach-live__modes dt {
  color: #6366f1;
  font-family: var(--font-sans);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
}

.coach-live__modes dd {
  margin-top: .45rem;
  color: #425466;
}

.coach-live__stage {
  padding: 1px;
  border-radius: 1.1rem;
  background: linear-gradient(135deg, rgba(99, 102, 241, .25), rgba(14, 165, 233, .1), rgba(255, 255, 255, .8));
  box-shadow: 0 26px 70px rgba(10, 37, 64, .1);
}

.coach-live-capture {
  overflow: hidden;
  padding: 0;
  background: #ffffff;
  border: 1px solid #e3e8ee;
  box-shadow: 0 26px 70px rgba(10, 37, 64, .1);
}

.coach-live-capture .coach-browser {
  border-radius: 1.05rem 1.05rem 0 0;
}

.coach-live-capture > img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: 72% 0;
}

.coach-live-capture figcaption {
  padding: .82rem 1rem;
  color: #425466;
  background: #ffffff;
  border-top: 1px solid #e3e8ee;
  font-size: .78rem;
  text-align: center;
}

/* Review */
.coach-review {
  padding-block: clamp(4.5rem, 7vw, 6rem);
  background: #f6f9fc;
}

.coach-review__desk {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(14rem, .3fr);
  gap: clamp(1rem, 2.5vw, 2.3rem);
  align-items: start;
  max-width: 76rem;
  margin-inline: auto;
  padding: 1.15rem;
  background: #ffffff;
  border: 1px solid #e3e8ee;
  border-radius: 1rem;
  box-shadow: 0 16px 50px rgba(10, 37, 64, .07);
}

.coach-review-capture {
  overflow: hidden;
  background: #f8fafc;
  border: 1px solid #e3e8ee;
  border-radius: .75rem;
}

.coach-review-capture img {
  display: block;
  width: 100%;
  height: auto;
}

.coach-review-capture figcaption {
  padding: .9rem 1rem;
  color: #425466;
  background: #ffffff;
  border-top: 1px solid #e3e8ee;
  font-size: .82rem;
  line-height: 1.5;
}

.coach-review__marks {
  overflow: hidden;
  border: 1px solid #e3e8ee;
  border-radius: .75rem;
}

.coach-review__marks div {
  padding: 1rem;
  border-color: #e3e8ee;
}

.coach-review__marks div:last-child { border-bottom: 0; }
.coach-review__marks span { color: #6366f1; }
.coach-review__marks p { color: #425466; }
.coach-review__marks b { color: #0a2540; }

/* Personal plan */
.coach-next {
  padding-block: clamp(4.5rem, 7vw, 6rem);
  background: #ffffff;
}

.coach-next__grid {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(22rem, 1.22fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: start;
}

.coach-next h2 {
  max-width: 12ch;
  margin-top: .9rem;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
}

.coach-next .coach-chapter-head__index,
.coach-next__roll > li > span { color: #6366f1; }

.coach-next__lede {
  max-width: 34rem;
  margin-top: 1.35rem;
  color: #425466;
  font-size: 1.08rem;
}

.coach-next__roll {
  display: grid;
  gap: .8rem;
  border: 0;
}

.coach-next__roll li {
  display: grid;
  grid-template-columns: 2.4rem 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1.25rem;
  background: #f6f9fc;
  border: 1px solid #e3e8ee;
  border-radius: .85rem;
}

.coach-next__roll > li > span {
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: .04em;
}

.coach-next__roll b { color: #0a2540; }
.coach-next__roll p { color: #425466; }

/* Trust */
.coach-trust {
  padding-block: clamp(4.5rem, 7vw, 6rem);
  background: #f6f9fc;
}

.coach-trust__head {
  display: block;
  max-width: 54rem;
  margin: 0 auto 3.5rem;
  text-align: center;
}

.coach-trust__head h2 {
  max-width: 16ch;
  margin: .9rem auto 0;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
}

.coach-trust__head > p {
  max-width: 42rem;
  margin: 1.15rem auto 0;
  color: #425466;
  font-size: 1.08rem;
}

.coach-trust__ledger {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  border: 0;
}

.coach-trust__ledger article {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .8rem;
  padding: 1.5rem;
  background: #ffffff;
  border: 1px solid #e3e8ee;
  border-radius: .9rem;
}

.coach-trust__ledger article > span {
  color: #6366f1;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .06em;
}

.coach-trust__ledger article > i {
  order: -1;
  padding: .35rem .65rem;
  color: #6366f1;
  background: #f2f2ff;
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .02em;
}

.coach-trust__ledger h3 { color: #0a2540; }
.coach-trust__ledger p { color: #425466; }

/* Product switcher */
body[data-product="coach"] .product-switcher {
  padding-block: clamp(4.5rem, 7vw, 6rem);
  background: #ffffff;
}

body[data-product="coach"] .product-switcher__head {
  align-items: end;
}

body[data-product="coach"] .product-switcher__head h2 {
  color: #0a2540;
  font-family: 'Poppins', 'General Sans', sans-serif;
  font-weight: 700;
}

body[data-product="coach"] .product-switcher__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  border: 0;
}

body[data-product="coach"] .product-switcher__item {
  display: flex;
  min-height: 13rem;
  flex-direction: column;
  align-items: flex-start;
  gap: .8rem;
  padding: 1.4rem;
  color: #0a2540;
  background: #f6f9fc;
  border: 1px solid #e3e8ee;
  border-radius: .9rem;
  transition: transform .35s var(--ease-out), border-color .35s, box-shadow .35s;
}

body[data-product="coach"] .product-switcher__item:hover {
  padding-left: 1.4rem;
  color: #0a2540;
  border-color: rgba(99, 102, 241, .32);
  box-shadow: 0 12px 32px rgba(10, 37, 64, .07);
  transform: translateY(-4px);
}

body[data-product="coach"] .product-switcher__item[aria-current="page"] {
  color: #0a2540;
  background: #f4f3ff;
  border-color: rgba(99, 102, 241, .28);
}

body[data-product="coach"] .product-switcher__name {
  color: #0a2540;
  font-family: 'Poppins', 'General Sans', sans-serif;
  font-weight: 700;
}

body[data-product="coach"] .product-switcher__desc {
  flex: 1;
  color: #425466;
}

body[data-product="coach"] .product-switcher__arrow { color: #6366f1; }

/* Final CTA and footer */
.coach-finale {
  padding-block: clamp(5.5rem, 8vw, 7rem);
  background: #f6f9fc;
}

.coach-finale__grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  padding-block: clamp(2.5rem, 5vw, 4.5rem);
  padding-inline: clamp(1.5rem, 5vw, 4.5rem);
  color: #ffffff;
  background:
    radial-gradient(circle at 12% 12%, rgba(99, 102, 241, .55), transparent 35%),
    radial-gradient(circle at 90% 90%, rgba(14, 165, 233, .2), transparent 30%),
    #0a2540;
  border-radius: 1.5rem;
  box-shadow: 0 24px 60px rgba(10, 37, 64, .16);
}

.coach-finale__copy {
  max-width: 58rem;
  margin-inline: auto;
  text-align: center;
}

.coach-finale__copy h2,
.coach-finale__copy > p { margin-inline: auto; }

.coach-finale__actions { justify-content: center; }

.coach-finale__counter {
  position: relative;
  display: grid;
  justify-items: start;
  width: fit-content;
  color: #ffffff;
}

.coach-finale__counter::before {
  content: '';
  position: absolute;
  inset: -1rem;
  border-color: rgba(255, 255, 255, .18);
  border-radius: 1rem;
  transform: none;
}

.coach-finale__counter span,
.coach-finale__counter i {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .12em;
  font-style: normal;
}

.coach-finale__counter b {
  color: #ffffff;
  font-family: 'Poppins', 'General Sans', sans-serif;
  font-size: clamp(5rem, 9vw, 8rem);
  font-weight: 700;
  line-height: .82;
  letter-spacing: -.08em;
}

.coach-finale__counter i {
  margin-top: 1rem;
  padding: .3rem .55rem;
  color: #0a2540;
  background: #fedd00;
  border-radius: 999px;
}

.coach-finale .coach-chapter-head__index { color: #a5b4fc; }

.coach-finale__copy h2 {
  max-width: 14ch;
  color: #ffffff;
  font-size: clamp(2.7rem, 5vw, 4.8rem);
}

.coach-finale__copy > p {
  max-width: 37rem;
  margin-top: 1.4rem;
  color: rgba(255, 255, 255, .68);
  font-size: 1.08rem;
  line-height: 1.65;
}

.coach-finale__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.1rem;
  margin-top: 2rem;
}

.coach-finale__link {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  color: #ffffff;
  min-height: 44px;
}

.coach-finale__link span { border-color: rgba(255, 255, 255, .3); }

.coach-finale .btn--cobalt {
  color: #0a2540;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .18);
}

.coach-finale .btn--cobalt::before { background: #f6f9fc; }

body[data-product="coach"] .footer {
  color: #ffffff;
  background: #0a2540;
  border: 0;
}

body[data-product="coach"] .footer .nav__word,
body[data-product="coach"] .footer__thesis,
body[data-product="coach"] .footer__col a {
  color: rgba(255, 255, 255, .74);
}

body[data-product="coach"] .footer .nav__word { color: #ffffff; }

body[data-product="coach"] .footer__col h4,
body[data-product="coach"] .footer__base {
  color: rgba(255, 255, 255, .42);
}

body[data-product="coach"] .footer__col a:hover,
body[data-product="coach"] .footer__base a:hover { color: #ffffff; }

body[data-product="coach"] .footer__here { color: #a5b4fc; }

body[data-product="coach"] .footer__base {
  border-color: rgba(255, 255, 255, .1);
}

body[data-product="coach"] .footer__path i { color: #fedd00; }

@media (max-width: 1100px) {
  body[data-product="coach"] .product-switcher__list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .coach-review__desk { grid-template-columns: 1fr; }
  .coach-review__marks { grid-column: 1; display: grid; grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 900px) {
  body[data-product="coach"] .nav:not(.is-scrolled) .nav__brand-wrap .nav__word,
  body[data-product="coach"] .nav:not(.is-scrolled) .nav__divider,
  body[data-product="coach"] .nav:not(.is-scrolled) .nav__product { display: none; }

  .coach-opening__grid,
  .coach-live__grid,
  .coach-next__grid,
  .coach-review__desk { grid-template-columns: 1fr; }

  .coach-opening__grid { max-width: 46rem; }
  .coach-opening__aside { grid-column: 1; }

  .coach-contact-sheet { grid-template-columns: 1fr; max-width: 42rem; }
  .coach-process { grid-template-columns: 1fr; max-width: 44rem; }

  .coach-live__copy { display: block; }
  .coach-live__lede,
  .coach-live__modes { margin-top: 1.5rem; }

  .coach-review__marks { grid-template-columns: repeat(2, 1fr); }
  .coach-trust__ledger { grid-template-columns: 1fr; max-width: 42rem; margin-inline: auto; }

  .coach-finale__grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .coach-hero { padding-block: 6rem 3rem; }
  .coach-hero__title { font-size: clamp(2.55rem, 11vw, 3.6rem); }
  .coach-hero__lede { font-size: 1rem; line-height: 1.55; }
  .coach-browser b { margin-right: 0; padding-inline: .7rem; }
  .coach-hero__photo figcaption { display: none; }

  .coach-hero__actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: .8rem;
  }

  .coach-hero__actions .btn,
  .coach-hero__actions .coach-hero__textlink {
    width: 100%;
    max-width: none;
    min-width: 0;
    justify-content: center;
    margin: 0;
    transform: none !important;
  }

  .coach-review__marks { grid-template-columns: 1fr; }

  .coach-process__viewport {
    aspect-ratio: 4 / 3;
  }

  .coach-process__viewport img {
    object-position: 18% 0;
  }

  .coach-review-capture img {
    width: 165%;
    max-width: none;
    transform: translateX(-20%);
  }

  body[data-product="coach"] .product-switcher__head {
    align-items: flex-start;
    flex-direction: column;
  }

  body[data-product="coach"] .product-switcher { padding-block: 3.5rem; }
  body[data-product="coach"] .product-switcher__list { grid-template-columns: 1fr; gap: .55rem; }
  body[data-product="coach"] .product-switcher__item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    min-height: auto;
    gap: .75rem;
    align-items: center;
    padding: 1rem;
  }
  body[data-product="coach"] .product-switcher__item:hover { padding-left: 1rem; }
  body[data-product="coach"] .product-switcher__desc { font-size: .82rem; line-height: 1.4; }
}

@media (max-width: 560px) {
  .coach-slate span { display: none; }

  .coach-hero__actions,
  .coach-finale__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .coach-hero__actions .btn,
  .coach-finale__actions .btn,
  .coach-hero__textlink {
    width: 100%;
    justify-content: center;
  }

  .coach-hero__features { display: flex; width: auto; }
  .coach-browser { grid-template-columns: repeat(3, .65rem) 1fr; padding-inline: .75rem; }
  .coach-frame { padding: .75rem; }
  .coach-process__steps li { padding: .85rem; }

  .coach-next__roll li { grid-template-columns: 2.35rem 1fr; padding: 1rem; }

  .coach-finale { padding-inline: .75rem; }
  .coach-finale__grid { border-radius: 1rem; }
}

@media (prefers-reduced-motion: reduce) {
  .coach-orb { animation: none; }
}
