:root {
  --background: #f1f2f3;
  --paper: #ffffff;
  --ink: #202326;
  --graphite: #353a3f;
  --blue: #3372af;
  --blue-bright: #5696e7;
  --line: #a19f9f;
  --line-soft: rgba(161, 159, 159, 0.36);
  --blue-soft: rgba(86, 150, 231, 0.12);
  --shell: 1240px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--background);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--background);
  color: var(--ink);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 18px;
  line-height: 1.55;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

body,
button,
input,
select,
textarea {
  letter-spacing: 0;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

img {
  max-width: 100%;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  transform: translateY(-180%);
  background: var(--paper);
  padding: 10px 14px;
  color: var(--ink);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto auto auto;
  min-height: var(--header-height);
  align-items: center;
  gap: 30px;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(241, 242, 243, 0.96);
  padding: 10px max(24px, calc((100vw - var(--shell)) / 2));
}

.brand {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  place-items: center;
  background: var(--blue);
  color: var(--paper);
  font-size: 14px;
  font-weight: 800;
}

.brand > span:last-child {
  display: grid;
  line-height: 1.15;
}

.brand strong {
  font-size: 15px;
  font-weight: 800;
}

.brand small {
  margin-top: 4px;
  color: var(--graphite);
  font-size: 12px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav a {
  color: var(--graphite);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--blue);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--blue);
  border-radius: 2px;
  background: var(--blue);
  padding: 0 24px;
  color: var(--paper);
  font-weight: 800;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.button:hover {
  border-color: var(--blue-bright);
  background: var(--blue-bright);
  transform: translateY(-1px);
}

.button:focus-visible,
.text-link:focus-visible,
.video-poster:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(86, 150, 231, 0.42);
  outline-offset: 3px;
}

.button-small {
  min-height: 42px;
  padding-inline: 18px;
  font-size: 13px;
}

.button-outline {
  border-color: var(--blue);
  background: transparent;
  color: var(--blue);
}

.button-outline:hover {
  color: var(--paper);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--blue);
  color: var(--blue);
  font-weight: 800;
  text-decoration: none;
}

.hero {
  display: flex;
  min-height: calc(100svh - 138px);
  align-items: center;
  border-bottom: 1px solid var(--line-soft);
  padding: 72px 0 68px;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(440px, 0.94fr);
  align-items: center;
  gap: 84px;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero h1,
h2 {
  margin: 0;
  color: var(--blue);
  font-weight: 760;
  line-height: 0.98;
  text-wrap: balance;
}

.hero h1 {
  max-width: 760px;
  color: var(--ink);
  font-size: 76px;
}

.hero h1 span {
  color: var(--blue);
}

.hero-lead {
  max-width: 690px;
  margin: 30px 0 0;
  color: var(--graphite);
  font-size: 22px;
  line-height: 1.45;
}

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

.honest-note {
  max-width: 610px;
  margin: 34px 0 0;
  border-left: 3px solid var(--line);
  padding-left: 18px;
  color: #585d62;
  font-size: 14px;
}

.masterclass-section {
  display: flex;
  min-height: calc(100svh - var(--header-height));
  scroll-margin-top: var(--header-height);
  align-items: center;
  border-bottom: 1px solid var(--line-soft);
  background: var(--paper);
  padding: 64px 0;
}

.masterclass-shell {
  display: grid;
  gap: 38px;
}

.masterclass-head {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: end;
  gap: 72px;
  border-top: 2px solid var(--blue);
  padding-top: 28px;
}

.masterclass-head .eyebrow {
  margin-bottom: 14px;
}

.masterclass-head h2 {
  max-width: 780px;
}

.masterclass-intro {
  display: grid;
  justify-items: start;
  gap: 24px;
}

.masterclass-intro p {
  max-width: 560px;
  margin: 0;
  color: var(--graphite);
  font-size: 19px;
  line-height: 1.45;
}

.video-frame {
  width: min(100%, 1100px);
  aspect-ratio: 16 / 9;
  justify-self: center;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0a0b0c;
}

.video-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-poster {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 0;
  background: #0a0b0c;
  padding: 0;
  cursor: pointer;
}

.video-poster img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 84px;
  height: 84px;
  place-items: center;
  border: 2px solid var(--paper);
  border-radius: 50%;
  background: rgba(51, 114, 175, 0.96);
  color: var(--paper);
  font-size: 30px;
  line-height: 1;
  transform: translate(-50%, -50%);
  transition:
    background-color 180ms ease,
    transform 180ms ease;
}

.video-poster:hover img {
  transform: scale(1.012);
}

.video-poster:hover .video-play {
  background: var(--blue-bright);
  transform: translate(-50%, -50%) scale(1.05);
}

.video-fallback {
  position: absolute;
  right: 20px;
  bottom: 20px;
  background: var(--paper);
  padding: 10px 14px;
  color: var(--blue);
  font-weight: 800;
}

.five-map {
  position: relative;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}

.map-head,
.map-output {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
}

.map-head span,
.map-output span {
  color: var(--graphite);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.map-head strong {
  color: var(--blue);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 38px;
}

.five-map ol {
  position: relative;
  display: grid;
  gap: 0;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.five-map ol::before {
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 21px;
  width: 2px;
  background: var(--blue-bright);
  content: "";
}

.five-map li {
  position: relative;
  display: grid;
  grid-template-columns: 44px 150px 1fr;
  min-height: 66px;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--line-soft);
}

.five-map li:last-child {
  border-bottom: 1px solid var(--line-soft);
}

.five-map li > span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 44px;
  height: 28px;
  place-items: center;
  background: var(--background);
  color: var(--blue);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 12px;
  font-weight: 800;
}

.five-map li strong {
  font-size: 20px;
}

.five-map li small {
  color: var(--graphite);
  font-size: 14px;
}

.map-output strong {
  color: var(--blue);
  font-size: 15px;
  text-align: right;
}

.signal-band {
  border-bottom: 1px solid var(--line-soft);
  background: var(--paper);
}

.signal-layout {
  display: grid;
  grid-template-columns: 80px minmax(260px, 0.72fr) 1.28fr;
  min-height: 138px;
  align-items: center;
  gap: 32px;
}

.signal-number {
  color: var(--blue-bright);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 14px;
}

.signal-layout p,
.signal-layout strong {
  margin: 0;
  font-size: 22px;
}

.signal-layout p {
  color: var(--graphite);
}

.signal-layout strong {
  color: var(--blue);
}

.section {
  padding: 112px 0;
  border-bottom: 1px solid var(--line-soft);
}

.split-intro {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: start;
  gap: 96px;
}

h2 {
  font-size: 58px;
}

h2 span {
  color: var(--ink);
}

.fit-statement > p {
  max-width: 760px;
  margin: 0;
  color: var(--ink);
  font-size: 28px;
  line-height: 1.35;
}

.plain-list {
  display: grid;
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
}

.plain-list li {
  position: relative;
  border-top: 1px solid var(--line-soft);
  padding: 16px 0 16px 32px;
  color: var(--graphite);
}

.plain-list li:last-child {
  border-bottom: 1px solid var(--line-soft);
}

.plain-list li::before {
  position: absolute;
  top: 23px;
  left: 2px;
  width: 12px;
  height: 4px;
  background: var(--blue-bright);
  content: "";
}

.diagnosis {
  background: var(--paper);
}

.section-heading {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  column-gap: 80px;
  align-items: end;
}

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

.section-heading > p:last-child {
  max-width: 520px;
  margin: 0;
  color: var(--graphite);
}

.breakdown-table {
  margin-top: 64px;
  border-top: 2px solid var(--blue);
}

.breakdown-table article {
  display: grid;
  grid-template-columns: 60px 0.85fr 1.15fr;
  align-items: baseline;
  gap: 28px;
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}

.breakdown-table span,
.outcome-list span {
  color: var(--blue-bright);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 13px;
}

.breakdown-table h3,
.breakdown-table p {
  margin: 0;
}

.breakdown-table h3 {
  color: var(--blue);
  font-size: 22px;
}

.breakdown-table p {
  color: var(--graphite);
}

.method {
  background: var(--blue);
  color: var(--paper);
}

.method-layout {
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  align-items: start;
  gap: 84px;
}

.method .eyebrow {
  color: var(--paper);
  opacity: 0.74;
}

.method h2 {
  color: var(--paper);
}

.method-copy > p:last-child {
  max-width: 480px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.unit-flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.62);
  border-bottom: 1px solid rgba(255, 255, 255, 0.62);
}

.unit-node {
  min-width: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.34);
  padding: 22px 18px 26px;
}

.unit-node:last-child {
  border-right: 0;
}

.unit-node span {
  display: block;
  margin-bottom: 54px;
  color: var(--paper);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 40px;
}

.unit-node strong {
  display: block;
  font-size: 17px;
}

.unit-node p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  line-height: 1.4;
}

.route {
  background: var(--background);
}

.route .section-heading {
  display: block;
}

.route .section-heading h2 {
  max-width: 820px;
}

.cycle {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: stretch;
  margin-top: 70px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cycle > div {
  min-width: 0;
  padding: 26px 20px 30px;
}

.cycle > div:first-child {
  padding-left: 0;
}

.cycle > div:last-child {
  padding-right: 0;
}

.cycle i {
  display: grid;
  place-items: center;
  color: var(--blue-bright);
  font-size: 32px;
  font-style: normal;
}

.cycle span {
  color: var(--blue-bright);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 12px;
}

.cycle strong {
  display: block;
  margin-top: 34px;
  color: var(--blue);
  font-size: 21px;
}

.cycle p {
  margin: 12px 0 0;
  color: var(--graphite);
  font-size: 14px;
  line-height: 1.45;
}

.cycle-caption {
  max-width: 760px;
  margin: 34px 0 0 auto;
  color: var(--graphite);
  font-size: 22px;
  text-align: right;
}

.outcome {
  background: var(--paper);
}

.outcome-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 96px;
}

.outcome-list {
  border-top: 2px solid var(--blue);
}

.outcome-list article {
  display: grid;
  grid-template-columns: 48px 0.8fr 1.2fr;
  align-items: baseline;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}

.outcome-list h3,
.outcome-list p {
  margin: 0;
}

.outcome-list h3 {
  color: var(--blue);
  font-size: 19px;
}

.outcome-list p {
  color: var(--graphite);
  font-size: 15px;
}

.program .section-heading {
  grid-template-columns: 0.9fr 1.1fr;
}

.program-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 68px;
  border-top: 2px solid var(--blue);
  border-bottom: 1px solid var(--line);
}

.program-rail article {
  min-width: 0;
  border-right: 1px solid var(--line);
  padding: 28px 24px 34px;
}

.program-rail article:first-child {
  padding-left: 0;
}

.program-rail article:last-child {
  border-right: 0;
  padding-right: 0;
}

.program-rail span {
  color: var(--blue-bright);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.program-rail h3 {
  margin: 54px 0 0;
  color: var(--blue);
  font-size: 21px;
  line-height: 1.22;
}

.program-rail p {
  margin: 18px 0 0;
  color: var(--graphite);
  font-size: 15px;
}

.full-program {
  border-bottom: 1px solid var(--line);
}

.full-program summary {
  padding: 24px 0;
  color: var(--blue);
  font-weight: 800;
  cursor: pointer;
}

.full-program ol {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 56px;
  margin: 0;
  padding: 0 0 32px 24px;
}

.full-program li {
  border-top: 1px solid var(--line-soft);
  padding: 10px 0 10px 8px;
  color: var(--graphite);
  font-size: 15px;
}

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

.offer-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 72px;
  border-bottom: 2px solid var(--blue);
  padding-bottom: 42px;
}

.offer-head > div:first-child > p:last-child {
  max-width: 610px;
  margin: 28px 0 0;
  color: var(--graphite);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 20px;
  margin-top: 44px;
}

.price-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--background);
  padding: 32px;
}

.price-card-featured {
  border: 2px solid var(--blue);
  padding: 31px;
}

.recommendation {
  position: absolute;
  top: -15px;
  left: 24px;
  background: var(--blue);
  padding: 6px 12px;
  color: var(--paper);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.price-label {
  color: var(--blue-bright);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.price-card h3 {
  min-height: 78px;
  margin: 14px 0 0;
  color: var(--blue);
  font-size: 27px;
  line-height: 1.15;
}

.price-card > div:first-of-type > p,
.price-card-featured > div:nth-of-type(2) > p {
  min-height: 82px;
  margin: 16px 0 0;
  color: var(--graphite);
  font-size: 15px;
}

.price-block {
  display: grid;
  min-height: 105px;
  align-content: end;
  border-top: 1px solid var(--line);
  margin-top: 26px;
  padding-top: 18px;
}

.price-block strong {
  color: var(--ink);
  font-size: 44px;
  line-height: 1.05;
}

.price-card ul {
  display: grid;
  gap: 0;
  margin: 28px 0 30px;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  border-top: 1px solid var(--line-soft);
  padding: 11px 0 11px 24px;
  color: var(--graphite);
  font-size: 14px;
}

.price-card li::before {
  position: absolute;
  top: 18px;
  left: 2px;
  width: 10px;
  height: 3px;
  background: var(--blue-bright);
  content: "";
}

.price-card .button {
  width: 100%;
  margin-top: auto;
}

.pricing-help {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border-bottom: 1px solid var(--line);
  margin-top: 34px;
  padding: 24px 0;
}

.pricing-help p {
  margin: 0;
  color: var(--graphite);
}

.offer-disclosure {
  display: grid;
  grid-template-columns: minmax(180px, 0.35fr) minmax(0, 1fr);
  gap: 28px;
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
  color: var(--graphite);
  font-size: 14px;
}

.offer-disclosure strong {
  color: var(--blue);
  font-size: 13px;
  text-transform: uppercase;
}

.offer-disclosure p {
  max-width: 760px;
  margin: 0;
}

.application-section {
  background: var(--background);
}

.application-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: start;
  gap: 96px;
}

.application-layout > div:first-child {
  position: sticky;
  top: calc(var(--header-height) + 38px);
}

.application-layout > div:first-child p:last-child {
  max-width: 430px;
  margin: 28px 0 0;
  color: var(--graphite);
}

.application-form {
  border-top: 2px solid var(--blue);
  padding-top: 28px;
}

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

.field {
  display: grid;
  gap: 9px;
  margin-bottom: 20px;
}

.field label {
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: var(--paper);
  padding: 14px 15px;
  color: var(--ink);
}

.field textarea {
  min-height: 132px;
  resize: vertical;
}

.form-note {
  margin: 14px 0 0;
  color: #666b70;
  font-size: 12px;
}

.form-result {
  margin-top: 28px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.form-result > strong {
  display: block;
  margin-bottom: 14px;
  color: var(--blue);
}

.form-result textarea {
  width: 100%;
  min-height: 210px;
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 14px;
  color: var(--graphite);
  font-size: 13px;
}

.result-actions {
  display: flex;
  gap: 14px;
  margin-top: 14px;
}

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

.faq-layout {
  display: grid;
  grid-template-columns: 0.62fr 1.38fr;
  gap: 96px;
}

.faq {
  border-top: 2px solid var(--blue);
}

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

.faq summary {
  position: relative;
  padding: 22px 44px 22px 0;
  color: var(--ink);
  font-weight: 800;
  list-style: none;
  cursor: pointer;
}

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

.faq summary::after {
  position: absolute;
  top: 20px;
  right: 2px;
  color: var(--blue);
  content: "+";
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 24px;
}

.faq details[open] summary::after {
  content: "−";
}

.faq p {
  max-width: 760px;
  margin: 0;
  padding: 0 54px 22px 0;
  color: var(--graphite);
}

.final-section {
  background: var(--blue);
  padding: 96px 0;
  color: var(--paper);
}

.final-layout {
  display: grid;
  grid-template-columns: 160px 1fr auto;
  align-items: end;
  gap: 42px;
}

.final-layout > span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.final-layout h2 {
  color: var(--paper);
}

.final-layout .button {
  border-color: var(--paper);
  background: var(--paper);
  color: var(--blue);
}

.final-layout .button:hover {
  background: var(--background);
}

.site-footer {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--ink);
  padding: 20px max(32px, calc((100vw - var(--shell)) / 2));
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.site-footer a {
  color: var(--paper);
  font-weight: 800;
  text-decoration: none;
}

.footer-identity,
.footer-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-identity span,
.footer-links a {
  color: rgba(255, 255, 255, 0.68);
  font-weight: 500;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--paper);
}

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

  .nav {
    display: none;
  }

  .hero-layout {
    grid-template-columns: 1fr 0.9fr;
    gap: 48px;
  }

  .hero h1 {
    font-size: 62px;
  }

  .masterclass-head {
    gap: 44px;
  }

  h2 {
    font-size: 50px;
  }

  .method-layout,
  .application-layout,
  .outcome-layout {
    gap: 56px;
  }

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

  .unit-node {
    border-bottom: 1px solid rgba(255, 255, 255, 0.34);
  }

  .unit-node:nth-child(2n) {
    border-right: 0;
  }

  .unit-node:last-child {
    grid-column: 1 / -1;
  }

  .unit-node span {
    margin-bottom: 24px;
  }

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

  .program-rail article:nth-child(2) {
    border-right: 0;
  }

  .program-rail article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .program-rail article:nth-child(3) {
    padding-left: 0;
  }

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

  .price-card h3,
  .price-card > div:first-of-type > p,
  .price-card-featured > div:nth-of-type(2) > p {
    min-height: auto;
  }

  .price-card {
    display: grid;
    grid-template-columns: 1fr 0.65fr;
    gap: 20px 48px;
  }

  .price-card ul {
    grid-column: 1;
    margin-bottom: 0;
  }

  .price-card .price-block {
    grid-column: 2;
    grid-row: 1;
    margin-top: 0;
  }

  .price-card .button {
    grid-column: 2;
    grid-row: 2;
    align-self: end;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 68px;
  }

  body {
    font-size: 17px;
  }

  .shell {
    width: min(calc(100% - 36px), var(--shell));
  }

  .site-header {
    grid-template-columns: 1fr auto;
    min-height: var(--header-height);
    gap: 16px;
    padding: 8px 18px;
  }

  .site-header > .button {
    min-height: 40px;
    padding-inline: 14px;
    font-size: 12px;
  }

  .brand strong {
    font-size: 13px;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 58px 0 44px;
  }

  .hero-layout,
  .split-intro,
  .method-layout,
  .outcome-layout,
  .application-layout,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .hero h1 {
    font-size: 52px;
  }

  .hero-lead {
    font-size: 19px;
  }

  .masterclass-section {
    min-height: auto;
    padding: 76px 0;
  }

  .masterclass-head {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 28px;
  }

  .masterclass-intro {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    justify-items: start;
    gap: 28px;
  }

  .five-map li {
    grid-template-columns: 44px 120px 1fr;
  }

  .signal-layout {
    grid-template-columns: 44px 1fr;
    gap: 12px 20px;
    padding: 24px 0;
  }

  .signal-layout strong {
    grid-column: 2;
  }

  .signal-layout p,
  .signal-layout strong {
    font-size: 18px;
  }

  .section {
    padding: 82px 0;
  }

  h2 {
    font-size: 44px;
  }

  .fit-statement > p {
    font-size: 23px;
  }

  .section-heading,
  .program .section-heading {
    display: block;
  }

  .section-heading > p:last-child {
    margin-top: 24px;
  }

  .breakdown-table article {
    grid-template-columns: 42px 1fr;
    gap: 8px 18px;
  }

  .breakdown-table p {
    grid-column: 2;
  }

  .unit-flow {
    grid-template-columns: 1fr;
  }

  .unit-node,
  .unit-node:nth-child(2n) {
    display: grid;
    grid-template-columns: 60px 150px 1fr;
    align-items: baseline;
    border-right: 0;
    padding: 18px 0;
  }

  .unit-node:last-child {
    grid-column: auto;
  }

  .unit-node span,
  .unit-node strong,
  .unit-node p {
    margin: 0;
  }

  .unit-node span {
    font-size: 28px;
  }

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

  .cycle > div,
  .cycle > div:first-child,
  .cycle > div:last-child {
    padding: 22px 0;
  }

  .cycle i {
    width: fit-content;
    transform: rotate(90deg);
  }

  .cycle strong {
    margin-top: 14px;
  }

  .cycle-caption {
    margin-left: 0;
    font-size: 19px;
    text-align: left;
  }

  .outcome-list article {
    grid-template-columns: 42px 1fr;
  }

  .outcome-list p {
    grid-column: 2;
  }

  .offer-head {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 32px;
  }

  .application-layout > div:first-child {
    position: static;
  }

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

@media (max-width: 560px) {
  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .site-header > .button {
    position: relative;
    width: 42px;
    overflow: hidden;
    padding: 0;
    color: var(--paper);
    font-size: 0;
  }

  .site-header > .button::after {
    display: block;
    color: var(--paper);
    content: "↓";
    font-size: 18px;
    line-height: 1;
  }

  .hero h1 {
    font-size: 43px;
    line-height: 1;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  .hero-actions .text-link {
    width: fit-content;
  }

  .masterclass-section {
    padding: 58px 0;
  }

  .masterclass-shell {
    gap: 28px;
  }

  .masterclass-intro {
    grid-template-columns: 1fr;
  }

  .masterclass-intro .button {
    width: 100%;
  }

  .video-play {
    width: 62px;
    height: 62px;
    font-size: 23px;
  }

  .five-map li {
    grid-template-columns: 42px 1fr;
    padding: 10px 0;
  }

  .five-map li small {
    grid-column: 2;
  }

  .map-output {
    align-items: flex-start;
    flex-direction: column;
  }

  .map-output strong {
    text-align: left;
  }

  h2 {
    font-size: 38px;
  }

  .section {
    padding: 68px 0;
  }

  .breakdown-table h3 {
    font-size: 19px;
  }

  .unit-node,
  .unit-node:nth-child(2n) {
    grid-template-columns: 50px 1fr;
  }

  .unit-node p {
    grid-column: 2;
    margin-top: 8px;
  }

  .program-rail {
    grid-template-columns: 1fr;
  }

  .program-rail article,
  .program-rail article:first-child,
  .program-rail article:nth-child(3),
  .program-rail article:last-child {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 24px 0;
  }

  .program-rail article:last-child {
    border-bottom: 0;
  }

  .program-rail h3 {
    margin-top: 28px;
  }

  .full-program ol {
    grid-template-columns: 1fr;
  }

  .price-card,
  .price-card-featured {
    display: flex;
    padding: 26px 22px;
  }

  .price-card .price-block {
    margin-top: 24px;
  }

  .price-block strong {
    font-size: 38px;
  }

  .price-card ul {
    margin: 22px 0 26px;
  }

  .pricing-help {
    align-items: flex-start;
    flex-direction: column;
  }

  .offer-disclosure {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .result-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .final-section {
    padding: 70px 0;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    padding-inline: 18px;
  }

  .footer-identity,
  .footer-links {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

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

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