:root {
  --lime: #dfe200;
  --lime-soft: #f4f5aa;
  --ink: #181714;
  --muted: #66645d;
  --paper: #f7f6f0;
  --white: #fff;
  --green: #1b573b;
  --orange: #e45e00;
  --red: #ae2100;
  --navy: #0d2431;
  --line: rgba(24, 23, 20, .16);
  --shadow: 0 18px 50px rgba(24, 23, 20, .12);
  --page: 1180px;
  --header-height: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Montserrat Digits", "Montserrat", "Noto Sans CJK JP", "Hiragino Sans", "Yu Gothic", Arial, Helvetica, sans-serif;
  font-feature-settings: "palt";
  letter-spacing: 1px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

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: 999;
  top: 8px;
  left: 8px;
  padding: 8px 14px;
  color: #fff;
  background: #000;
  transform: translateY(-150%);
}

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

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

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

.section {
  padding: clamp(76px, 9vw, 132px) 0;
}

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

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

.section-kicker--dark {
  color: rgba(24, 23, 20, .64);
}

.section-kicker--light {
  color: var(--lime);
}

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

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

.sp-only {
  display: none;
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  padding: 12px clamp(20px, 3vw, 44px);
  background: rgba(255, 255, 255, .93);
  border-bottom: 1px solid transparent;
  transition: min-height .3s ease, box-shadow .3s ease, border-color .3s ease;
  backdrop-filter: blur(14px);
}

.site-header.is-scrolled {
  min-height: 62px;
  border-color: var(--line);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .06);
}

.site-header__brand {
  position: relative;
  z-index: 3;
  width: min(290px, 30vw);
}

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

.site-header__nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.1vw, 32px);
}

.site-header__nav > a {
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.site-header__nav > a:not(.site-header__cta) {
  position: relative;
}

.site-header__nav > a:not(.site-header__cta)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--lime);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}

.site-header__nav > a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-header__cta {
  display: flex;
  min-width: 238px;
  padding: 12px 18px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--lime);
  border: 1px solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
  line-height: 1.25;
}

.site-header__cta small {
  margin-bottom: 3px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
}

.site-header__cta strong {
  font-weight: 900;
}

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

.site-header__toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: min(820px, 92vh);
  margin-top: var(--header-height);
  overflow: hidden;
  background: var(--lime);
}

.hero__photo {
  position: absolute;
  top: 0;
  bottom: 32px;
  left: 50%;
  width: min(calc(100% - 64px), 1200px);
  background-image: url("../images/JOURNEYCOACHING-TOPFV.webp");
  background-position: right top;
  background-size: cover;
  transform: translateX(-50%);
}

.hero__shade {
  position: absolute;
  top: 0;
  bottom: 32px;
  left: 50%;
  width: min(calc(100% - 64px), 1200px);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, .12));
  transform: translateX(-50%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: min(820px, 92vh);
  padding-block: 72px 100px;
}

.hero__title {
  max-width: 980px;
  margin: 0;
  color: #fff;
  font-size: 48px;
  font-weight: 900;
  font-feature-settings: normal;
  letter-spacing: -.01em;
  line-height: 1.3;
  text-shadow: 0 3px 18px rgba(0, 0, 0, .38);
}

.hero__title span {
  display: block;
}

.hero__eyebrow-copy {
  margin-bottom: 12px;
  font-size: clamp(15px, 1.7vw, 21px);
  letter-spacing: .04em;
  line-height: 1.5;
}

.hero__main-copy {
  font-size: clamp(42px, 5.2vw, 66px);
  line-height: 1.28;
}

.hero__highlight {
  width: fit-content;
  max-width: 100%;
  margin-top: 18px;
  padding: 7px 15px 9px;
  color: var(--ink);
  background: var(--lime);
  font-size: clamp(20px, 2.25vw, 30px);
  letter-spacing: 0;
  line-height: 1.35;
  text-shadow: none;
}

.hero__footer {
  position: absolute;
  right: 0;
  bottom: 55px;
  left: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: clamp(64px, 8vw, 108px);
}

.hero__lead {
  margin: 0;
  padding: 7px 11px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .72);
  font-size: clamp(16px, 1.6vw, 22px);
  font-weight: 900;
  letter-spacing: .04em;
  line-height: 1.7;
}

.hero__lead strong {
  display: inline-block;
  margin-top: 3px;
  padding: 0 10px 2px;
  background: var(--lime);
  font-weight: 900;
}

.hero__discipline {
  flex: 0 0 auto;
  margin: 0;
  padding: 8px 12px;
  color: #fff;
  background: transparent;
  border: 2px solid #fff;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: .04em;
  line-height: 1.4;
}

.intro {
  background: #fff;
  text-align: center;
}

.intro__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.intro__copy {
  max-width: 820px;
  margin: 0 0 38px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: .04em;
  line-height: 2;
}

.intro__copy p {
  margin: 0;
}

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

.intro__lead {
  margin: 0 0 26px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.9;
}

.intro__lead span {
  display: block;
}

.intro__logo {
  width: min(600px, 88%);
  max-height: 190px;
  margin: 18px auto 28px;
  object-fit: contain;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-height: 72px;
  padding: 18px 28px;
  border: 1px solid currentColor;
  color: var(--ink);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.4;
  text-decoration: none;
  transition: color .25s ease, background .25s ease, transform .25s ease, box-shadow .25s ease;
}

.button > span:first-child {
  width: 100%;
  text-align: center;
}

.button > span:last-child {
  position: absolute;
  right: 26px;
}

.button--session {
  min-height: 88px;
}

.button__label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.button__offer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #5e5b55;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 1px;
}

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

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

.button--wide {
  width: min(760px, 100%);
}

.button--outline {
  background: #fff;
  box-shadow: 5px 5px 0 var(--ink);
}

.button--outline:hover {
  background: var(--lime);
  box-shadow: 7px 7px 0 var(--ink);
}

.button--lime {
  color: var(--ink);
  background: var(--lime);
  border-color: var(--lime);
  box-shadow: 0 10px 24px rgba(223, 226, 0, .2);
}

.button--lime:hover {
  background: #f0f300;
}

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

.button--orange:hover {
  color: var(--ink);
  background: var(--lime);
  border-color: var(--lime);
}

.button--diagnosis {
  min-height: 64px;
  color: #fff;
  background: var(--navy);
  border-color: var(--navy);
}

.micro-notes {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin: 22px 0 0;
  padding: 0;
  color: #5d5b55;
  font-size: 12px;
  font-weight: 700;
  list-style: none;
}

.micro-notes li {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.micro-notes li::before {
  display: grid;
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  border: 1px solid currentColor;
  border-radius: 50%;
  content: "✓";
  font-family: sans-serif;
  font-size: 12px;
  line-height: 1;
  place-items: center;
}

.micro-notes li + li::after {
  position: absolute;
  top: 50%;
  left: -12px;
  width: 3px;
  height: 3px;
  background: currentColor;
  border-radius: 50%;
  content: "";
}

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

.micro-notes li:nth-child(2) {
  color: var(--red);
  font-weight: 900;
}

.micro-notes--light li:nth-child(2) {
  color: var(--lime);
}

.problem {
  position: relative;
  overflow: hidden;
}

.problem::before {
  position: absolute;
  top: -120px;
  left: -70px;
  width: 340px;
  height: 340px;
  border: 80px solid rgba(255, 255, 255, .22);
  border-radius: 50%;
  content: "";
}

.problem__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 52px;
}

.problem-card {
  position: relative;
  min-height: 330px;
  padding: 8px 28px 24px;
  background: transparent;
  border-right: 1px solid rgba(24, 23, 20, .2);
}

.problem-card:last-child {
  border-right: 0;
}

.problem-card img {
  position: relative;
  top: auto;
  right: auto;
  width: 180px;
  height: 108px;
  margin: 0 0 14px auto;
  object-fit: contain;
  object-position: right center;
}

.problem-card h3 {
  margin: 12px 0 18px;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 900;
  letter-spacing: 1px;
  line-height: 1.55;
}

.problem-card p {
  margin: 0;
  color: #62605b;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.9;
}

.problem__answer {
  position: relative;
  width: fit-content;
  margin: 48px auto 0;
  padding: 5px 12px 8px;
  background: var(--ink);
  color: #fff;
  font-size: clamp(17px, 2.2vw, 24px);
  font-weight: 900;
  text-align: center;
  transform: rotate(-1.5deg);
}

/* Cognitive science ------------------------------------------------------ */
.cognitive {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(223, 226, 0, .12), transparent 34%),
    #f3f2ec;
}

.cognitive::before {
  position: absolute;
  top: -175px;
  right: -165px;
  width: 430px;
  height: 430px;
  border: 92px solid rgba(223, 226, 0, .34);
  border-radius: 50%;
  content: "";
}

.cognitive__inner {
  position: relative;
  z-index: 1;
}

.cognitive__header {
  max-width: 930px;
  margin-inline: auto;
  text-align: center;
}

.cognitive__header h2 {
  margin: 0;
  font-size: clamp(38px, 4.4vw, 58px);
  font-weight: 900;
  letter-spacing: 1px;
  line-height: 1.42;
  text-wrap: balance;
}

.cognitive__header > p:last-child {
  max-width: 860px;
  margin: 28px auto 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 500;
  line-height: 2.05;
}

.cognitive__process {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 46px minmax(0, 1fr) 46px minmax(0, 1fr);
  align-items: stretch;
  margin-top: 62px;
}

.cognitive__process article {
  position: relative;
  min-height: 278px;
  padding: 34px 30px 32px;
  overflow: hidden;
  background: #fff;
  border-top: 8px solid var(--lime);
  box-shadow: 0 16px 40px rgba(24, 23, 20, .08);
}

.cognitive__process article > span {
  position: absolute;
  top: 16px;
  right: 20px;
  color: rgba(24, 23, 20, .1);
  font-family: "Montserrat Digits", "Montserrat", sans-serif;
  font-size: 58px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
}

.cognitive__process small {
  position: relative;
  color: #777900;
  font-family: "Montserrat Digits", "Montserrat", sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .15em;
}

.cognitive__process h3 {
  position: relative;
  margin: 48px 0 13px;
  font-size: clamp(21px, 2vw, 27px);
  font-weight: 900;
  letter-spacing: 1px;
  line-height: 1.5;
}

.cognitive__process p {
  position: relative;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.9;
}

.cognitive__arrow {
  display: grid;
  place-items: center;
  color: var(--ink);
  font-size: 28px;
  font-weight: 900;
}

.cognitive__formula {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
  margin: 34px 0 0;
  padding: 27px 34px 29px;
  color: #fff;
  background: var(--ink);
  border-left: 10px solid var(--lime);
  font-size: clamp(18px, 2.1vw, 26px);
  font-weight: 900;
  line-height: 1.55;
  text-align: center;
}

.cognitive__formula span + span::before {
  margin-right: 30px;
  color: var(--lime);
  content: "→";
}

.cognitive__details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 34px;
  border: 1px solid var(--ink);
}

.cognitive__details article {
  padding: clamp(32px, 4vw, 48px);
  background: rgba(255, 255, 255, .68);
}

.cognitive__details article + article {
  border-left: 1px solid var(--ink);
}

.cognitive__details article.cognitive__details--accent {
  background: var(--lime);
}

.cognitive__label {
  margin: 0 0 16px;
  font-family: "Montserrat Digits", "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
}

.cognitive__details h3 {
  margin: 0 0 18px;
  font-size: clamp(24px, 2.7vw, 34px);
  font-weight: 900;
  letter-spacing: 1px;
  line-height: 1.5;
}

.cognitive__details p:not(.cognitive__label) {
  margin: 0;
  color: #504f4a;
  font-size: 14px;
  font-weight: 500;
  line-height: 2;
}

.cognitive__details strong {
  display: block;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(24, 23, 20, .35);
  font-size: 19px;
  font-weight: 900;
  line-height: 1.7;
}

.belief {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(10, 13, 15, .66), rgba(10, 13, 15, .48) 54%, rgba(10, 13, 15, .56)),
    linear-gradient(115deg, rgba(223, 226, 0, .08), transparent 42%),
    url("../images/belief-daily-life-background.webp") center / cover no-repeat;
}

.belief::before {
  position: absolute;
  top: -115px;
  right: -15px;
  color: rgba(223, 226, 0, .08);
  content: "“";
  font-family: Georgia, "Times New Roman", serif;
  font-size: 520px;
  line-height: 1;
  pointer-events: none;
}

.belief__kicker {
  position: relative;
  margin-bottom: 34px;
  text-align: left;
}

.belief__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, .96fr);
  gap: clamp(54px, 8vw, 112px);
  align-items: start;
}

.belief__headline {
  position: sticky;
  top: calc(var(--header-height) + 40px);
}

.belief__headline h2 {
  margin: 0;
  font-size: clamp(30px, 2.4vw, 34px);
  font-weight: 900;
  letter-spacing: .03em;
  line-height: 1.45;
}

.belief__line {
  display: block;
  white-space: nowrap;
}

.belief__story {
  max-width: 650px;
  counter-reset: belief-chapter;
}

.belief__chapter {
  position: relative;
  counter-increment: belief-chapter;
  padding: 48px 0 0 54px;
  border-top: 1px solid rgba(255, 255, 255, .25);
}

.belief__chapter::before {
  position: absolute;
  top: 45px;
  left: 0;
  color: var(--lime);
  content: "0" counter(belief-chapter);
  font-family: Montserrat, "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
}

.belief__chapter > p {
  margin: 0 0 30px;
  color: rgba(255, 255, 255, .78);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 2.15;
}

.belief__chapter > p:last-child {
  margin-bottom: 0;
}

.belief__chapter br {
  display: block;
}

.belief__impulse {
  position: relative;
  margin: clamp(60px, 8vw, 100px) 0;
  padding: 24px 0 26px 32px;
  border-left: 7px solid var(--lime);
  color: #fff;
  font-size: clamp(25px, 3vw, 40px);
  font-weight: 900;
  letter-spacing: .04em;
  line-height: 1.55;
}

.belief__impulse span {
  display: block;
}

.belief__impulse span:last-child {
  color: var(--lime);
}

.belief__chapter--middle {
  margin-top: 0;
}

.belief__chapter .belief__possibility {
  color: var(--lime);
  font-size: 17px;
  font-weight: 800;
}

.belief__turn {
  margin: clamp(68px, 9vw, 112px) 0;
  color: #fff;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 900;
  letter-spacing: .04em;
  line-height: 1.55;
  text-align: center;
}

.belief__turn::after {
  display: block;
  width: 64px;
  height: 5px;
  margin: 24px auto 0;
  background: var(--lime);
  content: "";
}

.belief__chapter--future h3 {
  margin: 0 0 42px;
  color: #fff;
  font-size: clamp(25px, 3vw, 38px);
  font-weight: 900;
  letter-spacing: .03em;
  line-height: 1.55;
}

.belief__chapter .belief__final {
  margin-top: 52px;
  color: var(--lime);
  font-size: clamp(25px, 3vw, 38px);
  font-weight: 900;
  letter-spacing: .04em;
  line-height: 1.55;
}

.belief__footer {
  position: relative;
  margin-top: clamp(64px, 8vw, 96px);
  padding-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, .22);
}

.belief__story-link {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 0 auto;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  color: var(--lime);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-decoration: underline;
  text-underline-offset: 7px;
  transition: color .2s ease;
}

.belief__story-link:hover,
.belief__story-link:focus-visible {
  color: #fff;
}

.about {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  color: #fff;
}

.about__background,
.about__overlay {
  position: absolute;
  inset: 0;
}

.about__background {
  background-image: url("../images/about-background.webp");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.about__overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .6), rgba(0, 0, 0, .28) 58%, rgba(0, 0, 0, .1)),
    linear-gradient(180deg, rgba(0, 0, 0, .06), rgba(0, 0, 0, .44));
}

.about__inner {
  position: relative;
  z-index: 1;
}

.about .section-kicker {
  text-align: left;
}

.about__title {
  margin: 0 0 14px;
  font-size: 40px;
  font-weight: 900;
  letter-spacing: 1px;
  line-height: 1.3;
}

.about__lead {
  max-width: 720px;
  margin: 0 0 28px;
  font-size: clamp(20px, 2.8vw, 34px);
  font-weight: 900;
  line-height: 1.55;
}

.about__text {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, .84);
  font-size: 14px;
  font-weight: 500;
  line-height: 2.1;
}

.about__message {
  margin: 56px 0 0;
  font-size: clamp(25px, 3.5vw, 46px);
  font-weight: 900;
  letter-spacing: 1px;
}

.about__wordmark {
  width: min(760px, 90%);
  margin-top: 6px;
  opacity: .55;
}

.program-overview {
  background: #fff;
}

.program-flow {
  display: block;
  width: min(1050px, 100%);
  margin: 52px auto 70px;
}

.program-flow img {
  width: 100%;
}

.program-heading {
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 0 0 36px;
  font-size: 30px;
  font-weight: 900;
  letter-spacing: 1px;
}

.program-heading::before,
.program-heading::after {
  flex: 1;
  height: 1px;
  background: var(--line);
  content: "";
}

.program-heading span {
  position: relative;
  text-align: center;
}

.program-heading span::after {
  position: absolute;
  right: 10%;
  bottom: -7px;
  left: 10%;
  height: 6px;
  background: var(--lime);
  content: "";
  transform: skewX(-18deg);
}

.program-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.program-grid::before {
  position: absolute;
  z-index: 0;
  top: 46px;
  right: 0;
  left: 0;
  height: 2px;
  background: var(--ink);
  content: "";
}

.program-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: visible;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.program-card__stage {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  height: 62px;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 1px;
  text-align: center;
}

.program-card__stage::after {
  position: absolute;
  top: 38px;
  left: 50%;
  width: 16px;
  height: 16px;
  box-sizing: border-box;
  background: #fff;
  border: 4px solid;
  border-radius: 50%;
  content: "";
  transform: translateX(-50%);
}

.program-card__image {
  position: relative;
  height: 220px;
  overflow: visible;
  border: 17px solid;
}

.program-card__image::after {
  display: none;
}

.program-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
  transition: transform .6s ease;
}

.program-card:hover .program-card__image img {
  transform: none;
}

.program-card--before .program-card__image {
  border-color: var(--green);
}

.program-card--before .program-card__stage {
  color: var(--green);
}

.program-card--before .program-card__stage::after {
  border-color: var(--green);
}

.program-card--journey .program-card__image {
  border-color: var(--orange);
}

.program-card--journey .program-card__stage {
  color: var(--orange);
}

.program-card--journey .program-card__stage::after {
  border-color: var(--orange);
}

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

.program-card--after .program-card__stage {
  color: var(--red);
}

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

.program-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  padding: 24px 12px 0;
  border-top: 0;
  text-align: center;
}

.program-card--before .program-card__body {
  border-color: var(--green);
}

.program-card--journey .program-card__body {
  border-color: var(--orange);
}

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

.program-card__phase {
  margin: 0 0 12px;
  color: #77746d;
  font-family: "Montserrat Digits", "Montserrat", "Noto Sans CJK JP", "Hiragino Sans", "Yu Gothic", Arial, Helvetica, sans-serif;
  font-size: 12px;
  letter-spacing: .14em;
}

.program-card__logo {
  width: auto;
  height: 62px;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
}

.program-card__logo--countdown {
  height: 48px;
}

.program-card__logo--break {
  height: 58px;
}

.program-card__after-logos {
  display: grid;
  width: min(320px, 100%);
  height: 62px;
  align-items: center;
  gap: 10px;
  margin-inline: auto;
  grid-template-columns: 1fr auto 1fr;
}

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

.program-card__after-logos span {
  color: var(--muted);
  font-weight: 900;
}

.program-card__tagline {
  margin: 18px 0 10px !important;
  color: var(--ink) !important;
  font-size: 16px !important;
  font-weight: 900 !important;
}

.program-card__body > p:not(.program-card__phase, .program-card__tagline) {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.9;
}

.text-link {
  position: relative;
  display: inline-flex;
  justify-content: center;
  gap: 30px;
  width: min(240px, 100%);
  margin-top: auto;
  padding: 12px 18px;
  color: #fff !important;
  border: 0;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
}

.text-link span {
  position: absolute;
  right: 18px;
}

.program-card--before .text-link {
  background: var(--green);
}

.program-card--journey .text-link {
  background: var(--orange);
}

.program-card--after .text-link {
  background: var(--red);
}

.recommended {
  position: relative;
  min-height: 780px;
  overflow: hidden;
  color: #fff;
}

.recommended__background,
.recommended__shade {
  position: absolute;
  inset: 0;
}

.recommended__background {
  background-image: url("../images/recommended-background.webp");
  background-position: center;
  background-size: cover;
}

.recommended__shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .54), rgba(0, 0, 0, .14) 50%, rgba(0, 0, 0, .52)),
    linear-gradient(180deg, rgba(0, 0, 0, .28), rgba(0, 0, 0, .54));
}

.recommended__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-block: clamp(80px, 9vw, 130px);
  text-align: center;
}

.recommended__label {
  position: absolute;
  top: 0;
  left: 0;
  padding: 8px 18px;
  color: var(--ink);
  background: var(--lime);
  font-family: "Montserrat Digits", "Montserrat", "Noto Sans CJK JP", "Hiragino Sans", "Yu Gothic", Arial, Helvetica, sans-serif;
  font-size: 12px;
  letter-spacing: .08em;
}

.recommended__title {
  margin: 0 0 28px;
  font-size: 46px;
  font-weight: 900;
  letter-spacing: 1px;
  line-height: 1.35;
}

.recommended__logo {
  width: min(650px, 94%);
  max-height: 170px;
  object-fit: contain;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, .28));
}

.recommended__programs {
  display: grid;
  width: min(820px, 100%);
  align-items: center;
  gap: 18px;
  grid-template-columns: 1fr auto .82fr auto 1fr;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, .28));
}

.recommended__programs img {
  width: 100%;
  max-height: 105px;
  object-fit: contain;
}

.recommended__programs span {
  color: #fff;
  font-size: 30px;
  font-weight: 900;
}

@media (max-width: 600px) {
  .recommended__programs {
    gap: 7px;
  }

  .recommended__programs span {
    font-size: 20px;
  }
}

.recommended__lead {
  margin: 20px 0 28px;
  color: rgba(255, 255, 255, .87);
  font-size: 14px;
  font-weight: 600;
  line-height: 2;
}

.recommended__diagram {
  width: min(850px, 100%);
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.recommended__diagram img {
  width: 100%;
}

.recommended__included {
  margin: 20px 0 28px;
  color: var(--lime);
  font-size: 13px;
  font-weight: 900;
}

.recommended .button {
  width: min(520px, 100%);
}

.conversion {
  background: #111;
}

.conversion__shell {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(310px, .75fr);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(7, 9, 11, .52), rgba(7, 9, 11, .12) 68%, transparent),
    url("../images/conversion-background.webp") center / cover no-repeat;
  border: 1px solid rgba(255, 255, 255, .26);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .38);
}

.conversion__main {
  padding: clamp(42px, 5vw, 72px);
  color: #fff;
  background:
    radial-gradient(circle at 85% 15%, rgba(223, 226, 0, .12), transparent 32%),
    linear-gradient(100deg, rgba(10, 15, 19, .94), rgba(7, 9, 11, .69) 78%, rgba(7, 9, 11, .24));
}

.conversion__main .section-kicker {
  text-align: left;
}

.conversion__main h2 {
  margin: 0 0 22px;
  font-size: 44px;
  font-weight: 900;
  letter-spacing: 1px;
  line-height: 1.35;
}

.conversion__main > p {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, .76);
  font-size: 14px;
  font-weight: 500;
}

.conversion__points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 18px;
  margin: 32px 0;
  padding: 0;
  list-style: none;
}

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

.conversion__points span {
  display: block;
  margin-bottom: 3px;
  color: var(--lime);
  font-family: "Montserrat Digits", "Montserrat", "Noto Sans CJK JP", "Hiragino Sans", "Yu Gothic", Arial, Helvetica, sans-serif;
  font-size: 12px;
  letter-spacing: .14em;
}

.conversion__main .button {
  width: min(570px, 100%);
}

.conversion__main .micro-notes {
  max-width: 570px;
}

.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 > p:not(.diagnosis__eyebrow, .diagnosis__note, .diagnosis__maincopy, .diagnosis__description) {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
}

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

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

.diagnosis li + li::before {
  margin: 0;
  content: "";
}

.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;
}

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

.reasons__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 52px;
}

.reason-card {
  grid-column: span 3;
  min-height: 220px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
}

.reason-card--large {
  grid-column: span 2;
  min-height: 290px;
}

.reason-card__number {
  color: #a7aa00;
  font-family: "Montserrat Digits", "Montserrat", "Noto Sans CJK JP", "Hiragino Sans", "Yu Gothic", Arial, Helvetica, sans-serif;
  font-size: 54px;
  letter-spacing: .1em;
  line-height: 1;
}

.reason-card h3 {
  margin: 20px 0 14px;
  font-size: clamp(19px, 2vw, 25px);
  font-weight: 900;
  letter-spacing: 1px;
  line-height: 1.55;
}

.reason-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
}

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

.voices__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 48px;
}

.voice-card {
  display: flex;
  overflow: hidden;
  flex-direction: column;
  padding: 0;
  background: #fff;
  border-top: 5px solid var(--lime);
}

.voice-card__photo {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.participant-photo--anna {
  object-position: center 32%;
}

.participant-photo--taiga,
.participant-photo--angie {
  object-position: right center;
}

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

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

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

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

.participant-photo--mizu {
  object-position: center 28%;
}

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

.voice-card__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px 22px 26px;
}

.voices__grid .voice-card__profile {
  margin-top: auto;
}

.voice-card__label {
  margin: 0 0 8px;
  color: #8a8c00;
  font-size: 12px;
  font-weight: 900;
}

.voice-card h3 {
  margin: 0 0 15px;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.65;
}

.voice-card__content > p:not(.voice-card__label, .voice-card__profile) {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
}

.voice-card__profile {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin: 22px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 12px;
}

.voice-card__profile strong {
  font-size: 14px;
  font-weight: 900;
}

.voice-card__profile span {
  color: var(--muted);
  font-weight: 600;
}

.voices__draft-note {
  margin: 20px 0 0;
  color: #8a877f;
  font-size: 12px;
  font-weight: 500;
  text-align: right;
}

.voices__more {
  display: flex;
  justify-content: center;
  margin-top: 42px;
}

.voices__more .button {
  width: min(440px, 100%);
}

.program-help {
  text-align: center;
}

.program-help > .page-width > p:not(.section-kicker) {
  max-width: 690px;
  margin: 22px auto 32px;
  color: var(--muted);
  font-size: 14px;
}

.proof {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  color: #fff;
  background-image: url("../images/recommended-background.webp");
  background-position: center;
  background-size: cover;
}

.proof__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .68), rgba(0, 0, 0, .3)),
    linear-gradient(180deg, rgba(0, 0, 0, .1), rgba(0, 0, 0, .55));
}

.proof__inner {
  position: relative;
  z-index: 1;
  padding-block: clamp(80px, 9vw, 125px);
  text-align: center;
}

.proof h2 {
  margin: 0;
  font-size: clamp(25px, 3vw, 38px);
  font-weight: 900;
  line-height: 1.55;
}

.proof__main-number {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin: 24px 0 30px;
  color: var(--lime);
}

.proof__main-number strong {
  font-family: "Montserrat Digits", "Montserrat", "Noto Sans CJK JP", "Hiragino Sans", "Yu Gothic", Arial, Helvetica, sans-serif;
  font-size: clamp(76px, 11vw, 150px);
  letter-spacing: 1px;
  line-height: 1;
}

.proof__main-number span {
  margin-left: 12px;
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 900;
}

.proof__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(860px, 100%);
  margin: 0 auto;
}

.proof__stats > div {
  padding: 8px 16px;
  border-left: 1px solid rgba(255, 255, 255, .28);
}

.proof__stats > div:last-child {
  border-right: 1px solid rgba(255, 255, 255, .28);
}

.proof__stats strong {
  font-family: "Montserrat Digits", "Montserrat", "Noto Sans CJK JP", "Hiragino Sans", "Yu Gothic", Arial, Helvetica, sans-serif;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1;
}

.proof__stats span {
  margin-left: 3px;
  font-size: 13px;
  font-weight: 900;
}

.proof__stats small {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, .68);
  font-size: 12px;
}

.proof__copy {
  margin: 38px 0 0;
  color: rgba(255, 255, 255, .86);
  font-size: 13px;
  font-weight: 600;
}

.closing {
  position: relative;
  min-height: 760px;
  color: #fff;
  background-image: url("../images/closing-background.webp");
  background-position: center;
  background-size: cover;
}

.closing__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 12, 15, .36), rgba(5, 12, 15, .76)),
    linear-gradient(90deg, rgba(0, 0, 0, .32), transparent, rgba(0, 0, 0, .28));
}

.closing__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 760px;
  padding-block: 90px;
  text-align: center;
}

.closing h2 {
  margin: 0;
  font-size: clamp(38px, 4.4vw, 52px);
  font-weight: 900;
  letter-spacing: 1px;
  line-height: 1.35;
}

.closing__inner > p:not(.section-kicker) {
  margin: 22px 0 34px;
  color: rgba(255, 255, 255, .82);
  font-size: 15px;
  font-weight: 600;
}

.closing__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(580px, 100%);
}

.closing__actions .button {
  width: 100%;
}

.closing__diagnosis-link {
  margin-top: 20px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.closing__logo {
  width: min(440px, 78%);
  margin-top: 76px;
}

.site-footer {
  padding: 54px 0 100px;
  color: #fff;
  background: #0b0b0a;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(360px, 1.3fr);
  align-items: center;
  gap: 34px 70px;
}

.site-footer__brand img {
  width: 280px;
}

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

.site-footer__brand p {
  margin-top: 12px;
}

.site-footer__nav {
  display: grid;
  grid-template-columns: repeat(3, auto);
  justify-content: end;
  gap: 10px 28px;
}

.site-footer__nav a {
  color: rgba(255, 255, 255, .78);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.site-footer__nav a:hover {
  color: var(--lime);
}

.site-footer small {
  grid-column: 1 / -1;
  text-align: right;
}

.mobile-cta {
  display: none;
}

@media (min-width: 1021px) {
  .hero__title span {
    white-space: nowrap;
  }

  .intro .section-kicker {
    color: #666800;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: .1em;
    line-height: 1.5;
  }

  .hero__lead {
    margin-left: 24px;
    font-size: 25px;
  }
}

@media (max-width: 1020px) {
  :root {
    --header-height: 64px;
  }

  .site-header__brand {
    width: 250px;
  }

  .site-header__toggle {
    position: relative;
    z-index: 3;
    display: grid;
    width: 44px;
    height: 44px;
    padding: 12px;
    background: transparent;
    border: 0;
    place-content: center;
  }

  .site-header__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    margin: 3px 0;
    background: var(--ink);
    transition: transform .25s ease;
  }

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

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

  .site-header__nav {
    position: fixed;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    padding: 90px 34px;
    background: var(--lime);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-14px);
    transition: opacity .25s ease, transform .25s ease;
  }

  .site-header__nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .site-header__nav > a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(0, 0, 0, .18);
    font-size: 18px;
  }

  .site-header__cta {
    margin-top: 12px;
    padding: 17px 20px !important;
    background: #fff;
  }

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

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

  .hero,
  .hero__inner {
    min-height: 720px;
  }

  .hero__title {
    font-size: clamp(calc(72px - 5pt), calc(9.5vw - 5pt), calc(96px - 5pt));
  }

  .hero__footer {
    gap: 40px;
  }

  .hero__discipline {
    font-size: 18px;
  }

  .problem__grid,
  .voices__grid {
    grid-template-columns: 1fr;
  }

  .problem-card {
    min-height: 0;
  }

  .belief__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .belief__headline {
    position: static;
  }

  .belief__story {
    max-width: 780px;
  }

  .program-grid {
    grid-template-columns: 1fr;
    max-width: 700px;
    margin-inline: auto;
    padding: 0 0 0 40px;
    gap: 90px;
  }

  .program-grid::before {
    top: 10px;
    right: auto;
    bottom: 0;
    left: 10px;
    width: 2px;
    height: auto;
  }

  .program-card {
    display: flex;
    width: 100%;
    max-width: none;
    margin-inline: 0;
  }

  .program-card__stage {
    align-items: flex-start;
    justify-content: flex-start;
    height: 52px;
    font-size: 16px;
    text-align: left;
  }

  .program-card__stage::after {
    top: 2px;
    left: -38px;
    transform: none;
  }

  .program-card__image {
    height: 300px;
    min-height: 0;
  }

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

  .diagnosis {
    padding-block: 60px;
  }

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

  .reason-card,
  .reason-card--large {
    grid-column: auto;
    min-height: 245px;
  }

  .voices__grid {
    max-width: 760px;
    margin-inline: auto;
  }

  .voice-card {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 0;
  }

  .voice-card__photo {
    height: 100%;
    min-height: 260px;
  }
}

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

  body {
    padding-bottom: 68px;
  }

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

  .section {
    padding: 70px 0;
  }

  .sp-only {
    display: block;
  }

  .section-kicker {
    margin-bottom: 10px;
    font-size: 12px;
  }

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

  .section-description {
    margin-top: 18px;
    font-size: 12px;
    line-height: 1.9;
  }

  .section-description br {
    display: none;
  }

  .site-header {
    min-height: var(--header-height);
    padding: 7px 16px;
    backdrop-filter: none;
  }

  .site-header__brand {
    width: min(235px, 72vw);
  }

  .hero {
    min-height: 650px;
    margin-top: var(--header-height);
  }

  .hero__photo {
    top: 18px;
    bottom: 18px;
    width: calc(100% - 36px);
    background-image: url("../images/JOURNEYCOACHING-TOPFV-sp.webp");
    background-position: center;
  }

  .hero__shade {
    top: 18px;
    bottom: 18px;
    width: calc(100% - 36px);
    background: linear-gradient(180deg, transparent 62%, rgba(0, 0, 0, .12));
  }

  .hero__inner {
    justify-content: flex-end;
    min-height: 650px;
    padding: 44px 18px 80px;
  }

  .hero__title {
    font-size: 34px;
    letter-spacing: 0;
    line-height: 1.25;
  }

  .hero__title span {
    padding: 0;
    box-shadow: none;
  }

  .hero__eyebrow-copy {
    margin-bottom: 9px;
    font-size: 12px;
    line-height: 1.5;
  }

  .hero__main-copy {
    font-size: clamp(29px, 8.8vw, 36px);
    line-height: 1.3;
  }

  .hero__main-break {
    display: none;
  }

  #reasons-title {
    font-size: 26px;
    letter-spacing: -.02em;
  }

  .hero__highlight {
    margin-top: 14px;
    padding: 6px 9px 7px;
    font-size: clamp(14px, 4.2vw, 17px);
    line-height: 1.5;
  }

  .hero__footer {
    right: 0;
    bottom: 38px;
    left: 0;
    display: grid;
    gap: 18px;
    align-items: end;
    justify-content: stretch;
  }

  .hero__lead {
    margin: 0;
    width: fit-content;
    padding: 4px 7px;
    font-size: 11px;
  }

  .hero__discipline {
    width: fit-content;
    padding: 5px 8px;
    border-width: 1.5px;
    font-size: 12px;
  }

  .intro__copy {
    margin-bottom: 28px;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.9;
  }

  .intro__lead {
    margin-bottom: 22px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.9;
  }

  .intro__logo {
    width: 100%;
    margin: 12px auto 22px;
  }

  .button {
    min-height: 62px;
    padding: 15px 18px;
    font-size: 14px;
  }

  .micro-notes {
    gap: 15px;
    font-size: 12px;
  }

  .micro-notes li + li::after {
    left: -8px;
  }

  .problem::before {
    display: none;
  }

  .problem__grid {
    gap: 12px;
    margin-top: 34px;
  }

  .problem-card {
    padding: 18px 8px 28px;
    border-right: 0;
    border-bottom: 1px solid rgba(24, 23, 20, .2);
  }

  .problem-card img {
    top: auto;
    right: auto;
    width: 160px;
    height: 98px;
    margin-inline: auto;
    object-position: center;
  }

  .problem-card h3 {
    margin: 18px 0 10px;
    font-size: 20px;
  }

  .problem-card p {
    font-size: 12px;
  }

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

  .cognitive::before {
    top: -90px;
    right: -100px;
    width: 230px;
    height: 230px;
    border-width: 50px;
  }

  .cognitive__header h2 {
    font-size: 29px;
    line-height: 1.5;
  }

  .cognitive__header > p:last-child {
    margin-top: 22px;
    font-size: 12px;
    line-height: 1.95;
    text-align: left;
  }

  .cognitive__header > p:last-child br {
    display: none;
  }

  .cognitive__process {
    grid-template-columns: minmax(0, 1fr);
    margin-top: 38px;
  }

  .cognitive__process article {
    min-height: 0;
    padding: 26px 24px 28px;
  }

  .cognitive__process article > span {
    top: 14px;
    right: 17px;
    font-size: 48px;
  }

  .cognitive__process h3 {
    margin-top: 36px;
    font-size: 21px;
  }

  .cognitive__process p {
    font-size: 12px;
  }

  .cognitive__arrow {
    height: 38px;
    font-size: 23px;
    transform: rotate(90deg);
  }

  .cognitive__formula {
    display: block;
    margin-top: 28px;
    padding: 22px 22px 24px;
    border-left-width: 7px;
    font-size: 17px;
    line-height: 1.7;
    text-align: left;
  }

  .cognitive__formula span {
    display: block;
  }

  .cognitive__formula span + span {
    margin-top: 3px;
  }

  .cognitive__formula span + span::before {
    display: none;
  }

  .cognitive__details {
    grid-template-columns: minmax(0, 1fr);
    margin-top: 28px;
  }

  .cognitive__details article {
    padding: 30px 24px 32px;
  }

  .cognitive__details article + article {
    border-top: 1px solid var(--ink);
    border-left: 0;
  }

  .cognitive__details h3 {
    font-size: 23px;
  }

  .cognitive__details p:not(.cognitive__label) {
    font-size: 12px;
    line-height: 1.95;
  }

  .cognitive__details strong {
    font-size: 17px;
  }

  .belief::before {
    top: -42px;
    right: -24px;
    font-size: 270px;
  }

  .belief {
    background-position: center, center, 62% center;
  }

  .belief__kicker {
    margin-bottom: 24px;
  }

  .belief__grid {
    gap: 38px;
  }

  .belief__headline h2 {
    font-size: 21px;
    line-height: 1.5;
  }

  .belief__chapter {
    padding: 40px 0 0 38px;
  }

  .belief__chapter::before {
    top: 39px;
    font-size: 11px;
  }

  .belief__chapter > p {
    margin-bottom: 24px;
    font-size: 12px;
    letter-spacing: .5px;
    line-height: 2;
  }

  .belief__impulse {
    margin-block: 58px;
    padding: 18px 0 20px 20px;
    border-left-width: 4px;
    font-size: 24px;
    line-height: 1.6;
  }

  .belief__chapter .belief__possibility {
    font-size: 14px;
    line-height: 1.9;
  }

  .belief__turn {
    margin-block: 64px;
    font-size: 23px;
    text-align: left;
  }

  .belief__turn::after {
    width: 52px;
    height: 4px;
    margin: 20px 0 0;
  }

  .belief__chapter--future h3 {
    margin-bottom: 34px;
    font-size: 24px;
  }

  .belief__chapter .belief__final {
    margin-top: 44px;
    font-size: 24px;
    line-height: 1.65;
  }

  .belief__footer {
    margin-top: 54px;
    padding-top: 26px;
  }

  .belief__story-link {
    width: fit-content;
    margin: 0;
    justify-content: flex-start;
    font-size: 12px;
    line-height: 1.7;
  }

  .about {
    min-height: 590px;
  }

  .about__background {
    background-position: 62% center;
  }

  .about__overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, .16), rgba(0, 0, 0, .68));
  }

  .about__inner {
    padding-top: 215px;
  }

  .about__title {
    font-size: 28px;
  }

  .about__lead {
    font-size: 21px;
  }

  .about__text {
    font-size: 12px;
    line-height: 1.95;
  }

  .about__text br {
    display: none;
  }

  .about__message {
    margin-top: 30px;
    font-size: 23px;
  }

  .program-flow {
    width: min(440px, 100%);
    margin: 36px auto 50px;
  }

  .program-heading {
    gap: 10px;
    margin-bottom: 25px;
    font-size: 19px;
  }

  .program-grid {
    gap: 78px;
    padding-left: 32px;
  }

  .program-grid::before {
    left: 8px;
  }

  .program-card {
    display: flex;
  }

  .program-card__image {
    height: 210px;
    min-height: 0;
  }

  .program-card__stage::after {
    left: -32px;
  }

  .program-card__body {
    padding: 24px 14px 0;
  }

  .program-card__logo {
    height: 54px;
  }

  .program-card__logo--countdown {
    height: 42px;
  }

  .recommended {
    min-height: 0;
  }

  .recommended__background {
    background-position: 54% center;
  }

  .recommended__shade {
    background: linear-gradient(180deg, rgba(0, 0, 0, .28), rgba(0, 0, 0, .66));
  }

  .recommended__inner {
    padding-block: 85px 70px;
  }

  .recommended__label {
    left: 50%;
    transform: translateX(-50%);
  }

  .recommended__title {
    font-size: 32px;
  }

  .recommended__lead {
    font-size: 12px;
  }

  .recommended__lead br {
    display: none;
  }

  .recommended__diagram {
    padding: 0;
  }

  .recommended__included {
    font-size: 12px;
  }

  .conversion {
    padding: 0;
  }

  .conversion .page-width {
    width: 100%;
  }

  .conversion__main {
    padding: 58px 20px;
  }

  .conversion__main h2 {
    font-size: 33px;
  }

  .conversion__main > p {
    font-size: 12px;
  }

  .conversion__points {
    grid-template-columns: 1fr;
    gap: 8px;
    margin: 26px 0;
  }

  .diagnosis {
    padding: 55px 20px;
  }

  .reasons__grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 34px;
  }

  .reason-card,
  .reason-card--large {
    min-height: 0;
    padding: 24px 22px;
    box-shadow: 4px 4px 0 var(--ink);
  }

  .reason-card h3 {
    margin: 14px 0 8px;
    font-size: 19px;
  }

  .voice-card {
    display: block;
    padding: 0;
  }

  .voice-card__photo {
    height: 220px;
  }

  .proof {
    min-height: 610px;
  }

  .proof__main-number {
    margin: 24px 0 34px;
  }

  .proof__main-number strong {
    font-size: 74px;
  }

  .proof__stats {
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: rgba(255, 255, 255, .25);
  }

  .proof__stats > div {
    padding: 18px 8px;
    background: rgba(0, 0, 0, .42);
    border: 0 !important;
  }

  .proof__stats strong {
    font-size: 34px;
  }

  .proof__copy {
    font-size: 12px;
  }

  .closing,
  .closing__inner {
    min-height: 660px;
  }

  .closing {
    background-position: 60% center;
  }

  .closing h2 {
    font-size: 38px;
  }

  .closing__inner > p:not(.section-kicker) {
    font-size: 12px;
  }

  .closing__logo {
    margin-top: 58px;
  }

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

  .site-footer__inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .site-footer__nav {
    width: 100%;
    grid-template-columns: 1fr 1fr;
    justify-content: stretch;
    gap: 0;
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .16);
  }

  .site-footer__nav a {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
  }

  .site-footer img {
    width: 235px;
  }

  .site-footer small {
    text-align: left;
  }

  .mobile-cta {
    position: fixed;
    z-index: 90;
    right: 10px;
    bottom: 8px;
    left: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 68px;
    padding: 12px 18px;
    color: var(--ink);
    background: var(--lime);
    border: 1px solid var(--ink);
    box-shadow: 3px 3px 0 var(--ink);
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
  }

  .mobile-cta__label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    line-height: 1.2;
  }

  .mobile-cta__label small {
    color: #57551a;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
  }

  .mobile-cta__label strong {
    color: var(--red);
    font-weight: 900;
  }

  .mobile-cta__arrow {
    position: absolute;
    right: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !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;
}

.conversion__shell {
  border: 0;
}

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

.proof h2 {
  color: rgba(255, 255, 255, .72);
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: 700;
}
