:root {
  --red: #ae2100;
  --startline: #003369;
  --yellow: #f1de00;
  --green: #1b573b;
  --orange: #e45e00;
  --ink: #181212;
  --navy: #0d2431;
  --lime: #dfe200;
  --muted: #6b615e;
  --paper: #f7f2ec;
  --white: #fff;
  --line: #e2d8d3;
  --header-height: 76px;
  --page-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: "Montserrat Digits", "Montserrat", "Noto Sans CJK JP", "Hiragino Sans", "Yu Gothic", Arial, Helvetica, sans-serif;
  font-size: 16px;
  letter-spacing: 1px;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 300;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: #fff;
  background: var(--ink);
  text-decoration: none;
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: none;
}

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

.page-width--narrow {
  max-width: 1020px;
}

.section {
  padding-block: 104px;
}

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

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

.section-kicker {
  margin: 0 0 18px;
  color: var(--red);
  font-family: "Montserrat Digits", "Montserrat", "Noto Sans CJK JP", "Hiragino Sans", "Yu Gothic", Arial, Helvetica, sans-serif;
  font-size: 12px;
  letter-spacing: .2em;
  text-align: center;
}

.section-kicker--light {
  color: rgba(255, 255, 255, .78);
}

.section-title {
  margin: 0;
  font-size: 40px;
  font-weight: 900;
  letter-spacing: 1px;
  line-height: 1.45;
  text-align: center;
}

.section-title--red {
  color: var(--red);
}

.section-lead {
  max-width: 780px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
  line-height: 2;
  text-align: center;
}

.section-lead--light {
  color: rgba(255, 255, 255, .82);
}

/* Header */

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  min-height: var(--header-height);
  padding: 10px 28px;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, .95);
  border-bottom: 1px solid rgba(24, 18, 18, .1);
  backdrop-filter: blur(14px);
  transition: box-shadow .25s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 8px 25px rgba(24, 18, 18, .12);
}

.site-header__brand {
  width: min(410px, 34vw);
}

.site-header__brand img {
  width: 100%;
}

.site-header__nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 12px;
  font-weight: 800;
}

.site-header__nav a {
  text-decoration: none;
}

.site-header__cta {
  display: flex;
  min-width: 232px;
  min-height: 52px;
  padding: 7px 18px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--red);
  box-shadow: 3px 3px 0 var(--ink);
  line-height: 1.25;
}

.site-header__cta small {
  margin-bottom: 3px;
  font-size: 12px;
}

.site-header__cta strong {
  color: var(--yellow);
}

.site-header__cta span {
  font-size: 12px;
  font-weight: 900;
}

.site-header__toggle {
  display: none;
}

/* Hero */

.hero {
  padding: 32px 0 24px;
  margin-top: var(--header-height);
  color: #fff;
  background: var(--red);
}

.hero__frame {
  position: relative;
  width: min(calc(100% - 64px), 1200px);
  min-height: 780px;
  margin-inline: auto;
  overflow: hidden;
  background: #241818;
}

.hero__photo,
.hero__shade,
.hero__content {
  position: absolute;
  inset: 0;
}

.hero__photo {
  background-image: url("../images/the-break-hero.webp");
  background-position: center;
  background-size: cover;
}

.hero__shade {
  background:
    linear-gradient(90deg, rgba(10, 6, 5, .45) 0%, rgba(10, 6, 5, .06) 56%, rgba(10, 6, 5, .18) 100%),
    linear-gradient(0deg, rgba(10, 6, 5, .84) 0%, rgba(10, 6, 5, .02) 56%);
}

.hero__content {
  display: flex;
  padding: 34px 40px 48px;
  flex-direction: column;
}

.hero__logo {
  width: min(820px, 78%);
}

.hero__program-lockup {
  width: min(1060px, 96%);
}

.hero__program-title {
  margin: 0;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(70px, 8.1vw, 112px);
  font-weight: 900;
  letter-spacing: -.045em;
  line-height: .88;
  text-shadow: 0 5px 14px rgba(0, 0, 0, .24);
}

.hero__plan-logos {
  display: grid;
  width: min(720px, 76%);
  margin-top: 18px;
  align-items: center;
  gap: 30px;
  grid-template-columns: .82fr 1.18fr;
}

.hero__plan-logos img {
  width: 100%;
  max-height: 66px;
  object-fit: contain;
}

.hero__copy {
  margin-top: auto;
}

.hero__eyebrow {
  margin: 0 0 15px;
  font-size: 15px;
  font-weight: 800;
}

.hero h1 {
  margin: 0;
  font-size: clamp(42px, 5.5vw, 76px);
  font-weight: 900;
  letter-spacing: 1px;
  line-height: 1.38;
}

.hero h1 span {
  display: inline;
  padding: .02em .14em .08em;
  color: var(--ink);
  background: #fff;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.hero__description {
  max-width: 730px;
  margin: 20px 0 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.9;
}

.proof-bar {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 64px), 1200px);
  margin: -18px auto 0;
}

.proof-bar > img {
  width: 100%;
  filter: drop-shadow(0 11px 16px rgba(24, 18, 18, .14));
}

.proof-bar__mobile {
  display: none;
}

.proof-caption {
  margin: 13px 0 0;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

/* Problem */

.problem {
  padding-top: 116px;
}

.problem-grid {
  display: grid;
  margin-top: 48px;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.problem-grid article {
  min-height: 178px;
  padding: 0 14px 18px;
  overflow: hidden;
  color: var(--ink);
  background: #fff;
  border-top: 7px solid var(--yellow);
  text-align: center;
}

.problem-grid article > img {
  width: calc(100% + 28px);
  height: 78px;
  margin-inline: -14px;
  object-fit: cover;
  object-position: center 35%;
}

.problem-grid article:nth-child(1) > img {
  object-position: center 42%;
}

.problem-grid article:nth-child(2) > img {
  object-position: center 37%;
}

.problem-grid article:nth-child(3) > img {
  object-position: center 31%;
}

.problem-grid article:nth-child(4) > img {
  object-position: center 29%;
}

.problem-grid article:nth-child(5) > img {
  object-position: center 34%;
}

.problem-grid article:nth-child(6) > img {
  object-position: center 36%;
}

.problem-grid span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 48px;
  height: 40px;
  margin: -17px auto 7px;
  place-items: center;
  color: var(--red);
  background: #fff;
  border: 3px solid var(--red);
  font-family: "Montserrat Digits", "Montserrat", "Noto Sans CJK JP", "Hiragino Sans", "Yu Gothic", Arial, Helvetica, sans-serif;
  font-size: 20px;
  line-height: 1;
}

.problem-grid h3 {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
}

.problem__answer {
  margin: 46px 0 0;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.75;
  text-align: center;
}

.problem__answer strong {
  color: var(--yellow);
  font-size: 27px;
}

/* Buttons / CTA */

.button {
  display: flex;
  min-height: 66px;
  padding: 13px 24px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 0;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button__label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 1px;
  line-height: 1.4;
  text-align: center;
}

.button__offer {
  display: flex;
  margin-bottom: 3px;
  align-items: center;
  gap: 7px;
  font-size: 12px;
}

.button__offer strong {
  color: var(--red);
  font-size: 12px;
}

.button__arrow {
  font-size: 26px;
  line-height: 1;
}

.button--yellow {
  color: var(--ink);
  background: var(--yellow);
  box-shadow: 4px 4px 0 #fff;
}

.button--line {
  color: #fff;
  background: var(--red);
  box-shadow: 3px 3px 0 var(--ink);
}

.button--red {
  color: #fff;
  background: var(--red);
}

.button--center {
  width: min(100%, 620px);
  margin: 38px auto 0;
}

.micro-notes {
  display: flex;
  margin: 14px 0 0;
  padding: 0;
  justify-content: center;
  gap: 18px;
  list-style: none;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.micro-notes li::before {
  display: inline-grid;
  width: 15px;
  height: 15px;
  margin-right: 5px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  content: "✓";
  font-size: 12px;
}

.micro-notes--light {
  color: rgba(255, 255, 255, .8);
}

/* Session */

.session {
  color: #fff;
  background: #100d0d;
}

.session-shell {
  display: grid;
  overflow: hidden;
  grid-template-columns: minmax(0, 1.55fr) minmax(310px, .75fr);
  border: 1px solid rgba(255, 255, 255, .26);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .38);
}

.session-main {
  padding: 58px;
  background:
    linear-gradient(rgba(174, 33, 0, .9), rgba(91, 20, 8, .93)),
    url("../images/program-after.webp") center/cover;
}

.session-main .section-kicker {
  text-align: left;
}

.session-main h2 {
  margin: 0;
  font-size: 40px;
  line-height: 1.45;
}

.session-main > p:not(.section-kicker) {
  margin: 20px 0 0;
  font-size: 14px;
  line-height: 1.9;
}

.session-points {
  display: grid;
  margin: 30px 0;
  padding: 0;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  list-style: none;
}

.session-points li {
  padding: 13px 14px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .25);
  font-size: 12px;
  font-weight: 700;
}

.session-points span {
  display: block;
  margin-bottom: 4px;
  color: var(--yellow);
  font-family: "Montserrat Digits", "Montserrat", "Noto Sans CJK JP", "Hiragino Sans", "Yu Gothic", Arial, Helvetica, sans-serif;
  font-size: 12px;
}

.session-main .button {
  width: 100%;
}

.diagnosis {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 42px 34px;
  color: var(--navy);
  background: #f4f7f7;
  text-align: center;
}

.diagnosis__eyebrow {
  margin: 0 0 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 900;
}

.diagnosis__icon {
  width: 100px;
  height: 100px;
  margin: 6px auto 14px;
  padding: 24px;
  background: #fff;
  border-radius: 50%;
}

.diagnosis__icon svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.diagnosis h3 {
  margin: 0 0 16px;
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 900;
  letter-spacing: 1px;
  line-height: 1.45;
}

.diagnosis__maincopy {
  margin: 0;
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.75;
}

.diagnosis__description {
  margin: 14px 0 0;
  color: #52616b;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.85;
}

.diagnosis ul {
  margin: 14px 0;
  padding: 0;
  list-style: none;
}

.diagnosis li {
  position: relative;
  display: block;
  padding-left: 18px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.8;
  text-align: left;
}

.diagnosis li::before {
  position: absolute;
  top: .72em;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--lime);
  border: 1px solid var(--navy);
  border-radius: 50%;
  content: "";
}

.diagnosis .button {
  width: 100%;
  margin-top: 24px;
}

.button--diagnosis {
  min-height: 64px;
  color: #fff;
  background: var(--navy);
  box-shadow: none;
  font-size: 13px;
  font-weight: 900;
}

.diagnosis__note {
  margin: 12px 0 0;
  color: #657078;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

/* Transformation */

.transform {
  background:
    radial-gradient(circle at 50% 35%, rgba(255, 255, 255, .88), transparent 42%),
    var(--paper);
}

.transform__inner {
  max-width: 1280px;
}

.transform-flow {
  display: grid;
  margin-top: 66px;
  grid-template-columns: minmax(0, .98fr) 44px minmax(0, 1.12fr) 44px minmax(0, .98fr);
  align-items: stretch;
}

.transform-card {
  position: relative;
  min-width: 0;
  overflow: visible;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(72, 43, 32, .09);
}

.transform-card__number {
  position: absolute;
  z-index: 3;
  top: -37px;
  left: 50%;
  display: grid;
  width: 74px;
  height: 74px;
  color: var(--red);
  background: #fffaf6;
  border: 2px solid rgba(226, 99, 51, .32);
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(72, 43, 32, .05);
  font-family: "Montserrat Digits", "Montserrat", "Noto Sans CJK JP", "Hiragino Sans", "Yu Gothic", Arial, Helvetica, sans-serif;
  font-size: 25px;
  letter-spacing: .08em;
  place-items: center;
  transform: translateX(-50%);
}

.transform-card--before > img,
.transform-card--after > img {
  width: 100%;
  aspect-ratio: 1.52 / 1;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
}

.transform-card--after > img {
  object-position: 58% center;
}

.transform-card__label {
  margin: 0;
  padding: 7px 12px 8px;
  color: var(--yellow);
  background: #222a30;
  font-family: "Montserrat Digits", "Montserrat", "Noto Sans CJK JP", "Hiragino Sans", "Yu Gothic", Arial, Helvetica, sans-serif;
  font-size: 13px;
  letter-spacing: .22em;
  line-height: 1;
  text-align: center;
}

.transform-card--after .transform-card__label {
  color: var(--ink);
  background: #ffcd24;
}

.transform-card__body {
  padding: 22px 24px 24px;
  text-align: center;
}

.transform-card__body h3 {
  margin: 0;
  font-size: clamp(19px, 1.65vw, 25px);
  font-weight: 900;
  letter-spacing: .05em;
  line-height: 1.65;
}

.transform-card__body h3 em {
  color: var(--red);
  font-style: normal;
}

.transform-card__body > p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  line-height: 1.8;
}

.transform-card--method {
  display: flex;
  padding: 54px 28px 30px;
  flex-direction: column;
  justify-content: center;
  background: #fff;
  border: 2px solid rgba(174, 33, 0, .38);
  box-shadow: none;
}

.transform-card--method > h3 {
  margin: 0;
  color: var(--red);
  font-size: clamp(21px, 2vw, 29px);
  font-weight: 900;
  letter-spacing: .09em;
  line-height: 1.6;
  text-align: center;
}

.transform-card--method > h3 span {
  position: relative;
  z-index: 1;
}

.transform-card--method > h3 span::after {
  position: absolute;
  z-index: -1;
  right: -8px;
  bottom: 2px;
  left: -8px;
  height: 9px;
  background: #f8e7db;
  content: "";
}

.transform-methods {
  display: grid;
  margin-top: 30px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.transform-method {
  position: relative;
  min-width: 0;
  padding: 0 7px;
  text-align: center;
}

.transform-method + .transform-method {
  border-left: 1px dashed rgba(174, 33, 0, .24);
}

.transform-method + .transform-method::before {
  position: absolute;
  top: 28px;
  left: -9px;
  color: #978b85;
  content: "×";
  background: #fff;
  font-size: 17px;
  font-weight: 500;
  line-height: 1;
}

.transform-method__icon {
  display: grid;
  width: 68px;
  height: 68px;
  margin: 0 auto 12px;
  place-items: center;
  color: var(--red);
  border: 1px solid rgba(174, 33, 0, .22);
  border-radius: 14px;
  background: #fff;
}

.transform-method__icon svg {
  width: 44px;
  height: 44px;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.transform-method h4 {
  margin: 0;
  font-size: clamp(13px, 1.15vw, 16px);
  font-weight: 900;
  letter-spacing: .02em;
  line-height: 1.5;
  white-space: nowrap;
}

.transform-method p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.75;
  text-wrap: balance;
}

.transform-flow__arrow {
  display: grid;
  align-self: center;
  color: var(--red);
  font-family: "Montserrat Digits", "Montserrat", "Noto Sans CJK JP", "Hiragino Sans", "Yu Gothic", Arial, Helvetica, sans-serif;
  font-size: 38px;
  line-height: 1;
  place-items: center;
}

/* Programs */

.program-grid {
  display: grid;
  max-width: 1220px;
  margin: 54px auto 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 20px;
}

.program-card {
  position: relative;
  padding: 28px;
  color: var(--ink);
  background: #fff;
  border: 2px solid #fff;
}

.program-card--main {
  border: 12px solid var(--red);
  box-shadow: 0 0 0 1px #fff;
}

.program-card--light {
  background: #f4efeb;
}

.program-card.program-card--startline {
  background: #f2f6fa;
  border-color: rgba(0, 51, 105, .35);
}

.program-card--startline .program-card__badge,
.program-card.program-card--startline h3,
.program-card--startline li::before,
.program-card--startline .program-schedule summary,
.program-card--startline .program-schedule__row > strong {
  color: var(--startline);
}

.program-card--break-single {
  border-color: rgba(174, 33, 0, .35);
}

.program-card__badge {
  margin: 0 0 18px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
}

.program-card__visual {
  height: 220px;
  overflow: hidden;
}

.program-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.program-card__logo {
  width: min(370px, 85%);
  max-height: 95px;
  margin: 25px auto 16px;
  object-fit: contain;
}

.program-card__logo--startline {
  width: min(310px, 78%);
}

.program-card__bundle-logos {
  display: grid;
  height: 95px;
  align-items: center;
  gap: 9px;
  margin: 25px auto 16px;
  grid-template-columns: .82fr auto 1fr;
}

.program-card__bundle-logos img {
  width: 100%;
  max-height: 70px;
  object-fit: contain;
}

.program-card__bundle-logos span {
  color: var(--red);
  font-size: 22px;
  font-weight: 900;
}

.program-card__schedule-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}

.program-card h3 {
  margin: 0;
  color: var(--red);
  font-size: 22px;
  line-height: 1.6;
  text-align: center;
}

.program-card ul {
  display: grid;
  margin: 24px 0;
  padding: 0;
  grid-template-columns: 1fr 1fr;
  gap: 9px 18px;
  list-style: none;
}

.program-card li {
  position: relative;
  padding-left: 18px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.6;
}

.program-card li::before {
  position: absolute;
  top: 1px;
  left: 0;
  color: var(--red);
  content: "●";
}

.program-card__included {
  margin: 0;
  padding: 12px;
  color: #fff;
  background: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-align: center;
}

.program-schedule {
  scroll-margin-top: calc(var(--header-height) + 18px);
  margin-top: 12px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
}

.program-card--light .program-schedule {
  background: rgba(255, 255, 255, .65);
}

.program-schedule summary {
  position: relative;
  padding: 13px 42px 13px 15px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.5;
  cursor: pointer;
  list-style: none;
}

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

.program-schedule summary::after {
  position: absolute;
  top: 50%;
  right: 16px;
  font-size: 18px;
  line-height: 1;
  content: "＋";
  transform: translateY(-50%);
}

.program-schedule[open] summary::after {
  content: "−";
}

.program-schedule__list {
  padding: 0 14px 12px;
  border-top: 1px solid var(--line);
}

.program-schedule__row {
  display: grid;
  padding: 12px 0;
  grid-template-columns: 44px 1fr;
  gap: 10px;
  border-bottom: 1px solid var(--line);
}

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

.program-schedule__row > strong {
  color: var(--red);
  font-size: 14px;
  font-weight: 900;
}

.program-schedule__row span,
.program-schedule__row small,
.program-schedule__row em {
  display: block;
}

.program-schedule__row span {
  font-size: 12px;
  font-weight: 900;
  line-height: 1.5;
}

.program-schedule__row small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.5;
}

.program-schedule__row em {
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
  font-style: normal;
  line-height: 1.5;
}

.programs__summary {
  margin: 44px 0 0;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
}

.programs__summary strong {
  color: var(--yellow);
  font-size: 28px;
}

/* Phases */

.phase-grid {
  display: grid;
  margin-top: 50px;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.phase-grid article {
  position: relative;
  display: flex;
  min-height: 370px;
  padding: 190px 20px 24px;
  flex-direction: column;
  color: #fff;
  background:
    linear-gradient(0deg, rgba(20, 12, 11, .96) 0%, rgba(20, 12, 11, .58) 57%, rgba(20, 12, 11, .06) 100%),
    var(--phase-image) center/cover;
  border-bottom: 8px solid var(--red);
}

.phase-grid span {
  color: var(--yellow);
  font-family: "Montserrat Digits", "Montserrat", "Noto Sans CJK JP", "Hiragino Sans", "Yu Gothic", Arial, Helvetica, sans-serif;
  font-size: 12px;
}

.phase-grid h3 {
  margin: 9px 0;
  font-size: 18px;
  line-height: 1.55;
}

.phase-grid p {
  margin: 0;
  color: rgba(255, 255, 255, .75);
  font-size: 12px;
  line-height: 1.75;
}

/* Foundations */

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

.foundation-grid article {
  padding: 30px 24px;
  color: var(--ink);
  background: #fff;
}

.foundation-grid span {
  color: var(--red);
  font-family: "Montserrat Digits", "Montserrat", "Noto Sans CJK JP", "Hiragino Sans", "Yu Gothic", Arial, Helvetica, sans-serif;
  font-size: 36px;
}

.foundation-grid h3 {
  margin: 14px 0 8px;
  font-size: 18px;
}

.foundation-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.startline-feature {
  display: grid;
  max-width: 980px;
  margin: 38px auto 0;
  padding: 38px;
  grid-template-columns: 1.25fr .75fr;
  align-items: center;
  gap: 34px;
  color: var(--ink);
  background: #fff;
}

.startline-feature__badge {
  display: inline-block;
  margin: 0 0 14px;
  padding: 6px 10px;
  color: #fff;
  background: var(--startline);
  font-size: 12px;
  font-weight: 900;
}

.startline-feature img {
  width: 280px;
  max-height: 70px;
  object-fit: contain;
  object-position: left center;
}

.startline-feature h3 {
  margin: 18px 0 10px;
  color: var(--startline);
  font-size: 20px;
  line-height: 1.6;
}

.startline-feature p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
}

.startline-feature ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.startline-feature li {
  padding: 10px 0 10px 25px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  font-weight: 800;
}

.startline-feature li::before {
  margin-left: -25px;
  padding-right: 10px;
  color: var(--startline);
  content: "✓";
}

/* 20-session curriculum */

.curriculum .section-lead {
  max-width: 820px;
  margin-inline: auto;
}

.curriculum-flow {
  display: grid;
  gap: 18px;
  max-width: 980px;
  margin: 50px auto 0;
}

.curriculum-phase {
  display: grid;
  overflow: hidden;
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 22px 54px rgba(42, 12, 7, .2);
  grid-template-columns: minmax(230px, .72fr) minmax(0, 1.8fr);
}

.curriculum-phase > header {
  display: flex;
  min-height: 100%;
  padding: 32px 28px;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid rgba(174, 33, 0, .14);
  background:
    linear-gradient(150deg, rgba(228, 94, 0, .16), transparent 64%),
    #fff7f3;
}

.curriculum-phase > header div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.curriculum-phase > header span,
.curriculum-phase > header small {
  color: var(--red);
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
}

.curriculum-phase > header small {
  color: #9b6b5f;
  font-size: 9px;
}

.curriculum-phase > header h3 {
  margin: 52px 0 0;
  color: var(--ink);
  font-size: clamp(21px, 2vw, 27px);
  line-height: 1.5;
}

.curriculum-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.curriculum-list li {
  display: grid;
  min-height: 0;
  padding: 21px 26px;
  align-items: start;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 32px minmax(0, 1fr);
}

.curriculum-list li:last-child {
  border-bottom: 0;
}

.curriculum-list > li > small {
  display: grid;
  width: 32px;
  height: 32px;
  margin-top: 2px;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  background: var(--red);
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: 900;
}

.curriculum-list h4 {
  margin: 0 0 5px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.55;
}

.curriculum-list p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
}

.change-proof-grid {
  display: grid;
  gap: 14px;
  margin-top: 42px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.change-proof-grid article {
  padding: 25px 22px 27px;
  border: 1px solid #d4e0ec;
  border-radius: 12px;
  background: #f7faff;
}

.change-proof-grid span {
  color: var(--startline);
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .13em;
}

.change-proof-grid h3 {
  margin: 20px 0 12px;
  color: var(--startline);
  font-size: 17px;
  line-height: 1.6;
}

.change-proof-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.85;
}

.change-proof__source {
  margin: 18px 0 0;
  color: #8e7d76;
  font-size: 11px;
  text-align: right;
}

.voices .section-kicker,
.voices .section-title--red {
  color: var(--startline);
}

.voices__subheading {
  margin: 58px 0 24px;
  color: var(--ink);
  font-size: clamp(21px, 2.4vw, 30px);
  font-weight: 900;
  text-align: center;
}

.mid-cta--photo {
  position: relative;
  overflow: hidden;
  background: url("../images/recommended-background.jpg") center 44%/cover;
}

.mid-cta--photo .mid-cta__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(21, 10, 8, .93), rgba(21, 10, 8, .7)),
    rgba(21, 10, 8, .26);
}

.mid-cta--photo .page-width {
  position: relative;
  z-index: 1;
}

/* Difference */

.comparison-table {
  margin-top: 46px;
  overflow-x: auto;
  border: 1px solid var(--line);
}

.comparison-table table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
}

.comparison-table th,
.comparison-table td {
  padding: 16px 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}

.comparison-table thead th {
  color: #fff;
  background: var(--ink);
}

.comparison-table thead th:last-child {
  background: var(--red);
}

.comparison-table tbody th {
  width: 40%;
  background: var(--paper);
  font-weight: 700;
  text-align: left;
}

.comparison-table tbody td {
  width: 20%;
  color: #aaa;
  font-size: 19px;
  font-weight: 900;
}

.comparison-table tbody td:last-child {
  color: var(--red);
  background: #fff7f4;
}

.fit-grid {
  display: grid;
  margin-top: 35px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.fit-grid article {
  padding: 28px;
  border: 2px solid var(--line);
}

.fit-grid article:last-child {
  border-color: var(--red);
  background: #fff7f4;
}

.fit-grid h3 {
  margin: 0 0 18px;
  color: var(--red);
  font-size: 18px;
}

.fit-grid ul {
  margin: 0;
  padding-left: 1.2em;
}

.fit-grid li {
  margin-top: 9px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

/* Voices / record */

.voice-grid {
  display: grid;
  margin-top: 50px;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.voice-grid article {
  display: flex;
  overflow: hidden;
  flex-direction: column;
  background: var(--paper);
}

.voice-grid > article > img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.participant-photo--kochi {
  object-position: center 58%;
}

.participant-photo--kanon {
  object-position: center 42%;
}

.participant-photo--momoko {
  object-position: center 34%;
}

.participant-photo--k {
  object-position: center 58%;
}

.participant-photo--sessan {
  object-position: center;
}

.voice-grid article > div {
  display: flex;
  flex: 1;
  padding: 24px;
  flex-direction: column;
}

.voice-card__tag {
  margin: 0 0 10px;
  color: var(--startline);
  font-family: "Montserrat Digits", "Montserrat", "Noto Sans CJK JP", "Hiragino Sans", "Yu Gothic", Arial, Helvetica, sans-serif;
  font-size: 12px;
}

.voice-grid h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
}

.voice-grid article div > p:not(.voice-card__tag) {
  margin: 13px 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.75;
}

.voice-grid small {
  display: block;
  margin-top: auto;
  padding-top: 14px;
  color: var(--startline);
  border-top: 1px solid var(--line);
  font-size: 12px;
  font-weight: 800;
}

.track-record {
  position: relative;
  min-height: 560px;
  color: #fff;
  background: url("../images/recommended-background.webp") center/cover;
}

.track-record__shade {
  position: absolute;
  inset: 0;
  background: rgba(12, 8, 8, .66);
}

.track-record__content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 560px;
  padding-block: 72px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.track-record__content > p:first-child {
  margin: 0 0 18px;
  font-size: 18px;
  font-weight: 900;
}

.track-record h2 {
  margin: 0;
  color: var(--yellow);
}

.track-record h2 strong {
  font-family: "Montserrat Digits", "Montserrat", "Noto Sans CJK JP", "Hiragino Sans", "Yu Gothic", Arial, Helvetica, sans-serif;
  font-size: 88px;
  letter-spacing: 1px;
}

.track-record h2 span {
  font-size: 19px;
}

.track-record__content > div {
  display: flex;
  margin-top: 22px;
  gap: 40px;
}

.track-record__content > div p {
  margin: 0;
  font-size: 13px;
}

.track-record__content > div strong {
  font-family: "Montserrat Digits", "Montserrat", "Noto Sans CJK JP", "Hiragino Sans", "Yu Gothic", Arial, Helvetica, sans-serif;
  font-size: 35px;
}

.track-record__content > p:last-child {
  margin: 30px 0 0;
  font-size: 13px;
  line-height: 1.9;
}

/* Final / related */

.final-cta {
  position: relative;
  color: #fff;
  background: url("../images/closing-background.webp") center 42%/cover;
}

.final-cta__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20, 8, 7, .92), rgba(20, 8, 7, .54));
}

.final-cta__content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.final-cta h2 {
  margin: 0;
  font-size: 48px;
  line-height: 1.45;
}

.final-cta__content > p:not(.section-kicker) {
  margin: 24px 0 0;
  font-size: 15px;
  line-height: 2;
}

.full-package-banner {
  display: grid;
  max-width: 1000px;
  margin: 50px auto 0;
  overflow: hidden;
  grid-template-columns: 1fr 1fr;
  color: #fff;
  background: var(--ink);
}

.full-package-banner > div {
  display: flex;
  padding: 45px;
  flex-direction: column;
  justify-content: center;
}

.full-package-banner > div > p {
  margin: 0 0 15px;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 900;
}

.full-package-banner > div > img {
  width: 370px;
}

.full-package-banner__logos {
  display: grid;
  width: min(440px, 100%);
  align-items: center;
  gap: 9px;
  grid-template-columns: 1fr auto .82fr auto 1fr;
}

.full-package-banner__logos img {
  width: 100%;
  max-height: 58px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.full-package-banner__logos span {
  color: #fff;
  font-size: 18px;
  font-weight: 900;
}

.full-package-banner h3 {
  margin: 18px 0 24px;
  font-size: 21px;
  line-height: 1.6;
}

.full-package-banner > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.full-package-banner .button {
  width: 230px;
}

.related-grid {
  display: grid;
  max-width: 1000px;
  margin: 26px auto 0;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.related-grid article {
  display: grid;
  min-height: 0;
  grid-template-columns: 1fr;
  background: var(--paper);
}

.related-grid article > img {
  width: 100%;
  height: auto;
  aspect-ratio: 761 / 568;
  object-fit: contain;
}

.related-grid article > div {
  display: flex;
  min-height: 250px;
  padding: 28px;
  flex-direction: column;
  justify-content: flex-start;
}

.related-grid small {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
}

.related-grid div > img {
  width: 100%;
  max-height: 55px;
  margin: 13px 0;
  object-fit: contain;
  object-position: left center;
}

.related-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.related-card--green {
  --related-color: #1b573b;
}

.related-card--orange {
  --related-color: #e45e00;
}

.related-card--red {
  --related-color: #ae2100;
}

.related-card small {
  color: var(--related-color);
  font-size: 18px;
}

.related-card__button {
  display: flex;
  min-height: 48px;
  margin-top: auto;
  padding: 11px 16px;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  background: var(--related-color);
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
}

.related-card__button span {
  font-size: 18px;
  line-height: 1;
}

/* Footer */

.site-footer {
  padding: 62px 0 84px;
  color: #fff;
  background: var(--ink);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr auto;
  align-items: center;
  gap: 30px;
}

.site-footer__inner > a img {
  width: 360px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  font-size: 12px;
  font-weight: 700;
}

.site-footer nav a {
  color: rgba(255, 255, 255, .75);
  text-decoration: none;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, .45);
  font-size: 12px;
}

.mobile-cta {
  display: none;
}

@media (max-width: 1360px) {
  .site-header__nav {
    gap: 13px;
  }

  .site-header__nav > a:not(.site-header__cta) {
    display: none;
  }
}

@media (max-width: 1000px) {

  .hero__frame {
    min-height: 700px;
  }

  .session-shell {
    grid-template-columns: 1fr;
  }

  .problem-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .transform-flow {
    margin-top: 58px;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .transform-card {
    width: min(100%, 620px);
    margin-inline: auto;
  }

  .transform-card--method {
    min-height: 390px;
  }

  .transform-flow__arrow {
    transform: rotate(90deg);
  }

  .program-grid {
    max-width: 680px;
    grid-template-columns: 1fr;
  }

  .phase-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .phase-grid article:last-child {
    grid-column: 2;
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 60px;
  }

  body {
    padding-bottom: 72px;
    font-size: 14px;
  }

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

  .section {
    padding-block: 70px;
  }

  .section-title {
    font-size: 28px;
    line-height: 1.5;
  }

  .section-lead {
    font-size: 13px;
    line-height: 1.85;
  }

  .site-header {
    min-height: var(--header-height);
    padding: 9px 16px;
  }

  .site-header__brand {
    width: 245px;
    max-width: 70vw;
  }

  .site-header__toggle {
    position: relative;
    z-index: 2;
    display: block;
    width: 40px;
    height: 40px;
    padding: 0;
    background: transparent;
    border: 0;
  }

  .site-header__toggle span {
    position: absolute;
    right: 5px;
    width: 27px;
    height: 2px;
    background: var(--red);
    transition: transform .2s ease, top .2s ease;
  }

  .site-header__toggle span:first-child {
    top: 14px;
  }

  .site-header__toggle span:last-child {
    top: 25px;
  }

  .site-header__toggle[aria-expanded="true"] span:first-child {
    top: 20px;
    transform: rotate(45deg);
  }

  .site-header__toggle[aria-expanded="true"] span:last-child {
    top: 20px;
    transform: rotate(-45deg);
  }

  .site-header__nav {
    position: fixed;
    inset: var(--header-height) 0 0;
    display: none;
    padding: 35px 22px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
  }

  .site-header__nav.is-open {
    display: flex;
  }

  .site-header__nav > a:not(.site-header__cta) {
    display: block;
    padding: 18px 5px;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
  }

  .site-header__cta {
    margin-top: 22px;
  }

  .hero {
    padding: 14px 0 18px;
  }

  .hero__frame {
    width: calc(100% - 28px);
    min-height: 660px;
  }

  .hero__photo {
    background-image: url("../images/THEBREAK-TOPFV-sp.webp");
    background-position: 48% center;
  }

  .hero__shade {
    background: linear-gradient(0deg, rgba(10, 6, 5, .91) 0%, rgba(10, 6, 5, .08) 70%);
  }

  .hero__content {
    padding: 18px 18px 28px;
  }

  .hero__logo {
    width: 100%;
    margin-top: 2px;
  }

  .hero__plan-logos {
    width: min(84%, 360px);
    gap: 7px;
    margin-top: 10px;
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .hero__plan-logos img:first-child {
    width: 65%;
  }

  .hero__plan-logos img:last-child {
    width: 84%;
  }

  .hero__program-title {
    font-size: clamp(42px, 13.5vw, 54px);
    line-height: .92;
  }

  .hero__eyebrow {
    font-size: 12px;
  }

  .hero h1 {
    font-size: 34px;
    line-height: 1.55;
  }

  .hero h1 span:last-child {
    font-size: 28px;
    white-space: nowrap;
  }

  .hero__description {
    margin-top: 14px;
    font-size: 12px;
    line-height: 1.7;
  }

  .proof-bar {
    width: min(calc(100% - 40px), 560px);
    margin-top: 20px;
  }

  .proof-bar > img {
    display: none;
  }

  .proof-bar__mobile {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .proof-bar__mobile span {
    display: block;
    width: 100%;
    aspect-ratio: 2.45 / 1;
    background-color: #fff;
    background-image: url("../images/track-record-bar.webp");
    background-repeat: no-repeat;
    background-size: auto 100%;
    border-radius: 14px;
    box-shadow: 0 5px 12px rgba(24, 18, 18, .1);
  }

  .proof-bar__mobile span:nth-child(1) {
    background-position: 11% center;
  }

  .proof-bar__mobile span:nth-child(2) {
    background-position: 38% center;
  }

  .proof-bar__mobile span:nth-child(3) {
    background-position: 65% center;
  }

  .proof-bar__mobile span:nth-child(4) {
    background-position: 92% center;
  }

  .problem {
    padding-top: 76px;
  }

  .problem-grid {
    margin-top: 32px;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .problem-grid article {
    min-height: 144px;
    padding: 0 8px 14px;
  }

  .problem-grid article > img {
    width: calc(100% + 16px);
    height: 66px;
    margin-inline: -8px;
  }

  .problem-grid span {
    width: 42px;
    height: 34px;
    margin-top: -15px;
    margin-bottom: 5px;
    border-width: 2px;
    font-size: 17px;
  }

  .problem-grid h3 {
    font-size: 12px;
  }

  .problem__answer {
    margin-top: 32px;
    font-size: 15px;
  }

  .problem__answer strong {
    font-size: 18px;
  }

  .session-shell {
    grid-template-columns: 1fr;
    border-radius: 16px;
  }

  .session-main,
  .diagnosis {
    padding: 36px 24px;
  }

  .session-main h2 {
    font-size: 28px;
  }

  .session-points {
    grid-template-columns: 1fr;
  }

  .button {
    min-height: 62px;
    padding: 11px 15px;
  }

  .button__label {
    font-size: 14px;
  }

  .micro-notes {
    flex-wrap: wrap;
    gap: 8px 14px;
    font-size: 12px;
  }

  .diagnosis h3 {
    font-size: 22px;
  }

  .transform-flow {
    margin-top: 55px;
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .transform-card {
    width: min(100%, 560px);
    min-height: 0;
    margin-inline: auto;
  }

  .transform-card--before > img,
  .transform-card--after > img {
    min-height: 0;
  }

  .transform-card--method {
    min-height: 390px;
    padding: 54px 20px 32px;
  }

  .transform-method {
    padding-inline: 5px;
  }

  .transform-method p {
    font-size: 11px;
  }

  .transform-card__body h3 {
    font-size: 24px;
  }

  .transform-flow__arrow {
    transform: rotate(90deg);
  }

  .program-grid {
    margin-top: 35px;
    grid-template-columns: 1fr;
  }

  .program-card {
    padding: 20px;
  }

  .program-card--main {
    border-width: 8px;
  }

  .program-card--light {
    margin-top: 0;
  }

  .program-card__visual {
    height: 180px;
  }

  .program-card h3 {
    font-size: 18px;
  }

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

  .programs__summary {
    font-size: 16px;
  }

  .programs__summary strong {
    font-size: 21px;
  }

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

  .phase-grid article,
  .phase-grid article:last-child {
    min-height: 310px;
    padding-top: 160px;
    grid-column: auto;
  }

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

  .foundation-grid article {
    padding: 22px 16px;
  }

  .foundation-grid span {
    font-size: 28px;
  }

  .foundation-grid h3 {
    font-size: 15px;
  }

  .startline-feature {
    padding: 24px;
    grid-template-columns: 1fr;
  }

  .curriculum-flow {
    margin-top: 34px;
  }

  .curriculum-phase {
    grid-template-columns: 1fr;
  }

  .curriculum-phase > header {
    min-height: 0;
    padding: 23px 20px;
    border-right: 0;
    border-bottom: 1px solid rgba(174, 33, 0, .14);
  }

  .curriculum-phase > header h3 {
    margin-top: 24px;
    font-size: 21px;
  }

  .curriculum-list li {
    padding: 18px 17px;
    gap: 13px;
    grid-template-columns: 30px minmax(0, 1fr);
  }

  .curriculum-list > li > small {
    width: 30px;
    height: 30px;
  }

  .curriculum-list h4 {
    font-size: 14px;
  }

  .change-proof-grid {
    margin-top: 30px;
    grid-template-columns: 1fr;
  }

  .change-proof-grid article {
    padding: 22px 20px;
  }

  .change-proof__source {
    text-align: left;
  }

  .voices__subheading {
    margin-top: 44px;
  }

  .voices #voices-title {
    font-size: 25px;
    letter-spacing: -.02em;
  }

  .mid-cta--photo {
    background-position: 67% center;
  }

  .mid-cta--photo .mid-cta__overlay {
    background: rgba(18, 8, 6, .78);
  }

  .comparison-table th,
  .comparison-table td {
    min-width: 110px;
    padding: 12px 10px;
    font-size: 12px;
  }

  .comparison-table tbody th {
    min-width: 180px;
  }

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

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

  .track-record {
    min-height: 480px;
  }

  .track-record__content {
    min-height: 480px;
    padding-block: 50px;
  }

  .track-record h2 strong {
    font-size: 60px;
  }

  .track-record__content > div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 35px;
  }

  .final-cta h2 {
    font-size: 32px;
  }

  .full-package-banner {
    grid-template-columns: 1fr;
  }

  .full-package-banner > div {
    padding: 30px 24px;
  }

  .full-package-banner > img {
    height: 260px;
  }

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

  .related-grid article {
    min-height: 220px;
  }

  .site-footer {
    padding-bottom: 35px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .site-footer__inner > a img {
    width: 290px;
  }

  .site-footer nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .mobile-cta {
    position: fixed;
    z-index: 90;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    min-height: 72px;
    padding: 7px 18px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    background: var(--yellow);
    border-top: 2px solid var(--ink);
    text-decoration: none;
  }

  .mobile-cta small {
    font-size: 12px;
  }

  .mobile-cta strong {
    color: var(--red);
  }

  .mobile-cta span {
    margin-top: 3px;
    font-size: 14px;
    font-weight: 900;
  }

  body.menu-open .mobile-cta {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

/* Shared page consistency */

.site-header__cta small {
  font-size: 11px;
  font-weight: 600;
}

.site-header__cta small strong {
  font-weight: 600;
}

.site-header__cta span {
  font-size: 14px;
}

.session-shell,
.program-card {
  border-color: transparent;
}

.program-card--main {
  border-color: var(--red);
}

.track-record__message {
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(28px, 3.8vw, 48px);
  font-weight: 900;
  line-height: 1.5;
}

.track-record__label {
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: 700;
}
