:root {
  --ink: #102033;
  --muted: #627386;
  --paper: #f4fbff;
  --white: #ffffff;
  --line: #d6e8f4;
  --blue: #a8ddff;
  --blue-soft: #e7f6ff;
  --blue-mid: #5ab8ed;
  --blue-deep: #1e6f9d;
  --navy: #071726;
  --navy-soft: #10293e;
  --green: #d8f7e4;
  --radius: 24px;
  font-family: "DM Sans", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* { box-sizing: border-box; }
html { overflow-x: hidden; scroll-behavior: smooth; }
body { margin: 0; overflow-x: hidden; color: var(--ink); background: var(--paper); }
img { display: block; max-width: 100%; }
a { color: inherit; }
h1, h2, h3 { margin: 0; font-family: "Manrope", Arial, sans-serif; letter-spacing: 0; }
p { line-height: 1.65; }
section[id] { scroll-margin-top: 108px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 14px max(22px, calc((100vw - 1220px) / 2));
  background: rgba(244, 251, 255, .92);
  border-bottom: 1px solid rgba(30, 111, 157, .16);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  color: var(--ink);
  text-decoration: none;
}

.brand-logo {
  width: clamp(132px, 13vw, 178px);
  height: auto;
  filter: brightness(0) saturate(100%) invert(80%) sepia(35%) saturate(957%) hue-rotate(174deg) brightness(104%) contrast(102%);
}

.footer-brand-logo {
  width: clamp(132px, 15vw, 188px);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  padding: 7px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.desktop-nav a {
  padding: 7px 11px;
  color: #52677b;
  border-radius: 999px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
}

.desktop-nav a:hover { color: var(--ink); background: var(--blue-soft); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 46px;
  padding: 0 19px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button:hover { transform: translateY(-2px); }
.button-primary { color: #062033; background: var(--blue); border-color: #8bcdf7; box-shadow: 0 14px 32px rgba(73, 171, 230, .22); }
.button-primary:hover { background: #c7ebff; }
.button-dark { color: #fff; background: var(--navy); border-color: var(--navy); }
.button-soft { color: var(--ink); background: #fff; border-color: var(--line); }
.button-large { min-height: 60px; padding: 0 28px; }
.header-cta { flex: 0 0 auto; min-height: 42px; padding: 0 17px; font-size: 13px; }

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue-deep);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 11px;
  font-weight: 900;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .82fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
  min-height: calc(100svh - 78px);
  padding: 58px max(22px, calc((100vw - 1220px) / 2)) 68px;
  background:
    linear-gradient(180deg, #f4fbff 0%, #eaf7ff 100%);
}

.hero-copy h1 {
  max-width: 760px;
  font-size: clamp(44px, 5.7vw, 76px);
  line-height: .95;
  font-weight: 900;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin: 26px 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
}

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

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 38px;
}

.hero-proof span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  color: #24506b;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.hero-stage {
  position: relative;
  min-height: 560px;
  display: grid;
  align-items: end;
}

.coach-photo {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: #d8edf9;
  border: 1px solid var(--line);
  border-radius: 36px 36px var(--radius) var(--radius);
  box-shadow: 0 30px 80px rgba(45, 114, 155, .18);
}

.coach-photo img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: center;
}

.coach-label {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(168, 221, 255, .72);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
}

.coach-label strong { font: 900 18px/1 "Manrope", Arial, sans-serif; }
.coach-label span { color: var(--blue-deep); font-size: 12px; font-weight: 900; }

.course-panel {
  position: absolute;
  left: -28px;
  top: 48px;
  width: min(230px, 54vw);
  padding: 22px;
  color: #062033;
  background: #fff;
  border: 1px solid #91cff5;
  border-radius: var(--radius);
  box-shadow: 0 20px 45px rgba(39, 126, 178, .2);
}

.course-panel span,
.course-panel small { display: block; font-size: 11px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.course-panel strong { display: block; margin: 5px 0; font: 900 48px/1 "Manrope", Arial, sans-serif; }
.course-panel small { color: #24506b; line-height: 1.4; }
.course-panel strong sup { font-size: .35em; vertical-align: super; }
.course-panel .price-note {
  margin-top: 8px;
  padding-left: .8em;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.35;
  text-align: left;
  text-indent: -.8em;
  text-transform: none;
}

.price-note {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.4;
}

.price-note-light { color: #d7e7f2; }

.course-panel-logo {
  width: min(156px, 100%);
  margin: 10px 0 8px;
  filter: brightness(0) saturate(100%) invert(80%) sepia(35%) saturate(957%) hue-rotate(174deg) brightness(104%) contrast(102%);
}

.quick-facts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  padding: 28px max(22px, calc((100vw - 1220px) / 2));
  background: #fff;
}

.quick-facts article {
  position: relative;
  flex: 1 1 230px;
  max-width: 292px;
  min-height: 158px;
  display: grid;
  align-content: center;
  padding: 28px 24px 24px;
  background: var(--blue-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 18px 45px rgba(53, 139, 191, .11);
}

.quick-facts span,
.outcome-grid span,
.module-timeline span,
.video-list span,
.video-caption span,
.coach-points span {
  color: var(--blue-deep);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.quick-facts span {
  position: absolute;
  top: -10px;
  left: 50%;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: #062033;
  background: var(--blue);
  border: 1px solid #8bcdf7;
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 12px 28px rgba(53, 139, 191, .18);
}

.quick-facts p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  text-align: center;
}

.section {
  padding: 108px max(22px, calc((100vw - 1220px) / 2));
}

.section-white { background: #fff; }
.section-blue { background: var(--blue-soft); }

.section-intro {
  max-width: 880px;
  margin-bottom: 54px;
}

.section-intro.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-intro h2,
.video-head h2,
.cta-split h2,
.final-cta h2,
.problem-card h2,
.solution-card h2,
.faq-copy h2,
.transformation-copy h2 {
  font-size: clamp(36px, 5vw, 68px);
  line-height: .98;
  font-weight: 900;
}

.section-intro p:not(.eyebrow) { color: var(--muted); font-size: 18px; }

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

.outcome-grid article {
  min-height: 270px;
  padding: 28px;
  background: var(--blue-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 45px rgba(53, 139, 191, .1);
}

.outcome-grid h3,
.module-timeline h3,
.coach-points h3 {
  margin: 18px 0 10px;
  font-size: 25px;
  line-height: 1.08;
}

.outcome-grid p,
.module-timeline li,
.coach-points p,
.faq-list p { color: var(--muted); }

.video-section {
  color: #fff;
  background: var(--navy);
}

.video-section .eyebrow { color: var(--blue); }
.video-head {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: end;
  gap: 52px;
  margin-bottom: 52px;
}

.video-head p:not(.eyebrow) { color: #b8cad8; }

.video-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  gap: 18px;
}

.hero > *,
.video-layout > *,
.video-message-layout > *,
.problem-section > *,
.faq-section > * {
  min-width: 0;
}

.video-feature {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: #0b1d2c;
  border: 1px solid rgba(168, 221, 255, .18);
  border-radius: var(--radius);
}

.video-feature img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.video-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7,23,38,.86), transparent 55%);
}

.video-feature.playable-video {
  min-height: auto;
  padding: 14px;
}

.video-feature.playable-video::after { content: none; }

.video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #020b13;
  border-radius: var(--radius);
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-poster {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  overflow: hidden;
  color: inherit;
  background: var(--navy);
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  isolation: isolate;
}

.video-poster::before {
  content: "";
  position: absolute;
  inset: -18px;
  z-index: 0;
  background-image: var(--media-bg);
  background-position: center;
  background-size: cover;
  filter: blur(18px);
  opacity: .86;
  transform: scale(1.08);
}

.video-poster img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  object-position: center;
  transition: transform .35s ease;
}

.video-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(0deg, rgba(7,23,38,.48), rgba(7,23,38,.08));
  pointer-events: none;
}

.video-poster:hover img { transform: none; }

.clean-video-brand {
  position: absolute;
  z-index: 3;
  left: 18px;
  top: 18px;
  padding: 8px 10px;
  color: #062033;
  background: var(--blue);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
}

.video-meta {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 20px 8px 8px;
}

.video-meta span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.video-meta strong {
  font: 900 clamp(26px, 3vw, 42px)/1.05 "Manrope", Arial, sans-serif;
}

.video-meta p {
  margin: 0;
  color: #b8cad8;
}

.play-button {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: #062033;
  background: var(--blue);
  border-radius: 50%;
  font-size: 0;
  transform: translate(-50%, -50%);
  box-shadow: 0 10px 26px rgba(0,0,0,.24);
}

.play-button::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 13px;
  height: 15px;
  margin: 0;
  background: #062033;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  transform: translate(-42%, -50%);
}

.video-message-section {
  padding-top: clamp(42px, 6vw, 72px);
  background: var(--paper);
}

.video-message-section .section-intro {
  max-width: 800px;
  margin-bottom: 34px;
}

.video-message-section .section-intro h2 {
  font-size: clamp(36px, 4.6vw, 62px);
}

.video-message-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
  gap: 18px;
  align-items: stretch;
}

.home-main-video {
  min-height: auto;
  display: flex;
  align-items: center;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.video-feature.playable-video.home-main-video {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.home-main-video .video-frame {
  width: 100%;
  min-height: 0;
  background: transparent;
  border-radius: var(--radius);
}

.home-main-video img {
  min-height: 0;
  object-fit: cover;
}

.home-main-video .video-poster {
  background: transparent;
}

.home-main-video .video-poster::before {
  content: none;
}

.conversation-card {
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 12px;
  height: 100%;
  padding: clamp(22px, 3vw, 34px);
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 20px 55px rgba(7, 23, 38, .16);
}

.conversation-card .eyebrow {
  color: var(--blue-deep);
  margin: 0;
}

.conversation-card h3 {
  margin: 0;
  font: 900 clamp(28px, 2.8vw, 38px)/.98 "Manrope", Arial, sans-serif;
}

.conversation-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.conversation-card ul,
.steps-grid ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.conversation-card li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
  font-weight: 800;
}

.conversation-card .button-large {
  min-height: 52px;
  font-size: 14px;
}

.conversation-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 8px;
  height: 8px;
  background: var(--blue);
  border-radius: 50%;
}

.video-caption {
  position: absolute;
  z-index: 2;
  left: 26px;
  right: 26px;
  bottom: 24px;
}

.video-caption strong {
  display: block;
  margin-top: 8px;
  font: 900 clamp(26px, 3vw, 42px)/1.05 "Manrope", Arial, sans-serif;
}

.video-list { display: grid; gap: 14px; }

.video-list article {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 15px;
  align-items: center;
  min-height: 128px;
  padding: 18px;
  background: var(--navy-soft);
  border: 1px solid rgba(168, 221, 255, .14);
  border-radius: var(--radius);
}

.lesson-badge {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  color: #062033;
  background: var(--blue);
  border: 1px solid #8bcdf7;
  border-radius: 50%;
  font: 900 24px/1 "Manrope", Arial, sans-serif;
  letter-spacing: 0;
}

.video-list strong {
  display: block;
  margin-top: 8px;
  font: 900 18px/1.18 "Manrope", Arial, sans-serif;
}

.module-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.module-timeline article {
  display: grid;
  align-content: start;
  min-height: 390px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 45px rgba(53, 139, 191, .1);
}

.module-timeline ul,
.problem-card ul,
.solution-card ul {
  display: grid;
  gap: 13px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.module-timeline li,
.problem-card li,
.solution-card li {
  position: relative;
  padding-left: 20px;
  font-weight: 700;
}

.module-timeline li::before,
.problem-card li::before,
.solution-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 7px;
  height: 7px;
  background: var(--blue-mid);
  border-radius: 50%;
}

.cta-split {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 34px;
  padding: 76px max(22px, calc((100vw - 1220px) / 2));
  color: var(--ink);
  background: var(--blue-soft);
}

.cta-split .eyebrow { color: var(--blue-deep); }
.cta-split p:not(.eyebrow) { color: var(--muted); }
.cta-actions { display: grid; justify-items: end; gap: 13px; }
.question-link {
  color: var(--blue-deep);
  text-decoration: none;
  border-bottom: 1px solid rgba(30, 111, 157, .34);
  font-size: 14px;
  font-weight: 900;
}

.proof-section { background: #fff; overflow: hidden; }
.review-collage-wrap {
  overflow: visible;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.review-collage {
  width: 100%;
  height: auto;
  border-radius: 0;
}

.social-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  padding: 18px;
  background: var(--blue-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.social-panel span { color: var(--blue-deep); font-size: 12px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.social-panel div { display: flex; flex-wrap: wrap; gap: 10px; }
.social-panel a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 900;
}

.problem-overview {
  background: #fff;
  color: var(--ink);
}

.problem-overview .eyebrow {
  color: var(--blue-deep);
}

.problem-bubbles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.problem-bubbles article,
.steps-grid article {
  min-height: 270px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 45px rgba(53, 139, 191, .1);
}

.problem-bubbles article {
  color: var(--ink);
  background: var(--blue-soft);
  border-color: var(--line);
}

.problem-bubbles span,
.steps-grid span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.problem-bubbles h3,
.steps-grid h3 {
  margin: 18px 0 12px;
  font: 900 28px/1.05 "Manrope", Arial, sans-serif;
}

.problem-bubbles h3 {
  color: var(--ink);
}

.problem-bubbles p {
  margin: 0;
  color: var(--muted);
}

.results-preview {
  background: #fff;
}

.customer-results-section {
  background: var(--paper);
}

.before-after-grid {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.before-after-grid::-webkit-scrollbar,
.customer-video-grid::-webkit-scrollbar { display: none; }

.result-card {
  flex: 0 0 clamp(280px, 34vw, 430px);
  aspect-ratio: 4 / 5;
  position: relative;
  overflow: hidden;
  background: var(--navy);
  border-radius: var(--radius);
  scroll-snap-align: start;
  box-shadow: 0 22px 60px rgba(7, 23, 38, .16);
  isolation: isolate;
}

.result-card::before {
  content: "";
  position: absolute;
  inset: -18px;
  z-index: 0;
  background-image: var(--media-bg);
  background-position: center;
  background-size: cover;
  filter: blur(18px);
  opacity: .88;
  transform: scale(1.08);
}

.result-card img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.result-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(0deg, rgba(7,23,38,.82), rgba(7,23,38,0) 56%);
  pointer-events: none;
}

.result-card div {
  position: absolute;
  z-index: 3;
  left: 20px;
  right: 20px;
  bottom: 18px;
}

.result-card span,
.testimonial-video span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.result-card strong {
  display: block;
  margin-top: 7px;
  color: #fff;
  font: 900 clamp(20px, 2vw, 30px)/1.05 "Manrope", Arial, sans-serif;
}

.customer-video-section {
  background: #fff;
}

.customer-video-grid {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.customer-video-grid.compact {
  display: flex;
}

.testimonial-video {
  flex: 0 0 clamp(210px, 24vw, 290px);
  display: grid;
  gap: 12px;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  scroll-snap-align: start;
  box-shadow: 0 18px 45px rgba(53, 139, 191, .1);
}

.carousel-shell {
  position: relative;
}

.carousel-button {
  position: absolute;
  z-index: 4;
  top: 50%;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: #062033;
  background: var(--blue);
  border: 1px solid #8bcdf7;
  border-radius: 50%;
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  transform: translateY(-50%);
  cursor: pointer;
  pointer-events: auto;
  box-shadow: 0 14px 34px rgba(53, 139, 191, .24);
}

.carousel-button[data-carousel-prev] { left: -23px; }
.carousel-button[data-carousel-next] { right: -23px; }

.testimonial-video-frame {
  aspect-ratio: 9 / 16;
}

.testimonial-video strong {
  padding: 0 4px 4px;
  font: 900 18px/1.2 "Manrope", Arial, sans-serif;
}

.steps-section {
  background: #fff;
}

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

.steps-grid span {
  color: var(--blue-deep);
}

.steps-grid p {
  margin: 0;
  color: var(--muted);
}

.home-offers {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
}

.home-offers article {
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 18px;
  min-height: 360px;
  padding: clamp(28px, 4vw, 44px);
  background: var(--blue-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 45px rgba(53, 139, 191, .1);
}

.home-offers article:first-child {
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
}

.home-offers span,
.method-grid span {
  color: var(--blue-deep);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.home-offers article:first-child span { color: var(--blue-deep); }

.home-offers h3,
.method-grid h3 {
  margin: 0;
  font: 900 clamp(28px, 3.6vw, 46px)/1.02 "Manrope", Arial, sans-serif;
}

.home-offers p,
.method-grid p,
.home-course-copy p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
}

.home-offers article:first-child p { color: var(--muted); }

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

.method-grid article {
  min-height: 310px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 45px rgba(53, 139, 191, .1);
}

.method-grid h3 { margin: 18px 0 12px; font-size: 29px; }

.home-course-preview {
  min-height: auto;
  display: grid;
  align-items: center;
  color: var(--ink);
  background: var(--paper);
}

.home-course-copy {
  max-width: 760px;
}

.home-course-copy .eyebrow { color: var(--blue-deep); }
.home-course-copy h2 {
  margin: 0;
  font: 900 clamp(38px, 5vw, 68px)/.98 "Manrope", Arial, sans-serif;
}
.home-course-copy p:not(.eyebrow) {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
}
.home-course-copy .hero-actions { margin-top: 30px; }

.transformation-section {
  display: grid;
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
  background: var(--paper);
}

.coach-points { display: grid; gap: 12px; margin-top: 30px; }
.coach-points article {
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.problem-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  background: #fff;
}

.problem-card,
.solution-card {
  padding: clamp(28px, 4vw, 48px);
  border-radius: var(--radius);
}

.problem-card {
  color: #fff;
  background: var(--navy);
}

.problem-card .eyebrow { color: var(--blue); }
.problem-card li { color: #d7e7f2; }
.solution-card {
  background: var(--blue-soft);
  border: 1px solid var(--line);
}

.faq-section {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 54px;
  background: var(--paper);
}

.faq-copy {
  position: sticky;
  top: 110px;
  align-self: start;
}

.faq-copy .button { margin-top: 26px; }
.faq-list { display: grid; gap: 12px; }

.faq-list details {
  padding: 24px 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.faq-list summary {
  cursor: pointer;
  color: var(--ink);
  font: 900 20px/1.25 "Manrope", Arial, sans-serif;
}

.faq-list p { margin: 15px 0 0; }

.final-cta {
  display: grid;
  justify-items: center;
  text-align: center;
  padding: 104px max(22px, calc((100vw - 980px) / 2));
  color: #fff;
  background:
    linear-gradient(0deg, rgba(7, 23, 38, .86), rgba(7, 23, 38, .86)),
    url("https://onecdn.io/media/eb4f9f51-4f05-4786-9d35-eb1ea8283cdf/preview") center/cover;
}

.final-cta .eyebrow { color: var(--blue); }
.final-cta .hero-actions { justify-content: center; margin-top: 28px; }

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px max(22px, calc((100vw - 1220px) / 2));
  color: #b8cad8;
  background: #06111d;
}

.site-footer .brand { color: #fff; }
.site-footer > div { display: flex; gap: 20px; }
.site-footer a { text-decoration: none; font-size: 13px; font-weight: 900; }

@media (max-width: 1050px) {
  .site-header { flex-wrap: wrap; }
  .desktop-nav { order: 3; width: 100%; justify-content: space-between; overflow-x: auto; }
  .hero,
  .video-head,
  .video-layout,
  .video-message-layout,
  .cta-split,
  .home-offers,
  .transformation-section,
  .problem-section,
  .faq-section {
    grid-template-columns: 1fr;
  }
  .hero-stage { min-height: auto; }
  .coach-photo,
  .coach-photo img { min-height: 560px; }
  .course-panel { left: 18px; top: 18px; }
  .quick-facts,
  .outcome-grid,
  .module-timeline,
  .method-grid,
  .problem-bubbles,
  .customer-video-grid,
  .customer-video-grid.compact,
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .before-after-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 320px; }
  .result-card.tall,
  .result-card.wide { grid-column: auto; grid-row: auto; }
  .cta-actions { justify-items: start; }
  .faq-copy { position: static; }
  .home-course-preview { background-position: center; }
}

@media (max-width: 700px) {
  section[id] { scroll-margin-top: 214px; }
  .site-header {
    align-items: flex-start;
    gap: 10px;
    padding: 12px 16px;
  }
  .brand-logo { width: 126px; }
  .header-cta { width: 100%; }
  .desktop-nav {
    gap: 6px;
    justify-content: flex-start;
    padding: 6px;
    border-radius: var(--radius);
  }
  .desktop-nav a {
    flex: 0 0 auto;
    white-space: nowrap;
    padding: 8px 10px;
    font-size: 12px;
  }
  .hero {
    min-height: auto;
    gap: 26px;
    padding-top: 38px;
    padding-bottom: 52px;
  }
  .hero-copy h1 { font-size: clamp(34px, 11vw, 50px); line-height: 1; }
  .hero-copy > p:not(.eyebrow) { margin: 18px 0; font-size: 16px; }
  .button-large { width: 100%; padding-inline: 18px; text-align: center; }
  .hero-proof {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 24px;
  }
  .hero-proof span {
    justify-content: center;
    min-height: 42px;
    padding: 8px 10px;
    text-align: center;
  }
  .coach-photo,
  .coach-photo img { min-height: 430px; }
  .coach-photo { border-radius: 24px 24px var(--radius) var(--radius); }
  .coach-label {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
  .course-panel { left: 14px; top: 14px; width: 174px; padding: 16px; }
  .course-panel strong { font-size: 38px; }
  .course-panel-logo { width: min(132px, 100%); }
  .quick-facts,
  .outcome-grid,
  .module-timeline,
  .method-grid,
  .problem-bubbles,
  .customer-video-grid,
  .customer-video-grid.compact,
  .steps-grid { grid-template-columns: 1fr; }
  .before-after-grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .result-card { min-height: auto; aspect-ratio: 4 / 5; }
  .result-card.wide { aspect-ratio: 16 / 11; }
  .quick-facts { display: grid; }
  .quick-facts article { max-width: none; min-height: 132px; border-radius: var(--radius); }
  .section { padding-top: 78px; padding-bottom: 78px; }
  .video-message-section .section-intro h2 { font-size: clamp(34px, 10vw, 48px); }
  .section-intro h2 { font-size: clamp(34px, 10vw, 48px); }
  .video-feature,
  .video-feature img { min-height: 390px; }
  .home-main-video,
  .home-main-video img,
  .home-main-video .video-frame { min-height: 0; }
  .video-feature.playable-video { min-height: auto; }
  .video-list article { grid-template-columns: 86px 1fr; }
  .lesson-badge { width: 62px; height: 62px; font-size: 21px; }
  .social-panel { align-items: flex-start; flex-direction: column; }
  .home-offers article,
  .method-grid article { min-height: auto; }
  .carousel-button { width: 40px; height: 40px; font-size: 24px; }
  .carousel-button[data-carousel-prev] { left: -8px; }
  .carousel-button[data-carousel-next] { right: -8px; }
  .site-footer { align-items: flex-start; flex-direction: column; }
}
