:root {
  --ink: #0a0b0a;
  --paper: #f3f1e9;
  --lime: #c9ff26;
  --acid: #e4ff91;
  --gold: #d8ac4c;
  --line: rgba(10, 11, 10, 0.22);
  --display: "Black Han Sans", "Apple SD Gothic Neo", sans-serif;
  --body: "Noto Sans KR", "Apple SD Gothic Neo", sans-serif;
  --gutter: clamp(20px, 4vw, 68px);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  word-break: keep-all;
  overflow-x: clip;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

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

:focus-visible {
  outline: 3px solid #168fff;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -70px;
  z-index: 2000;
  padding: 12px 18px;
  background: white;
  color: black;
  font-weight: 800;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  min-height: 84px;
  padding: 18px var(--gutter);
  display: grid;
  grid-template-columns: minmax(230px, 1fr) auto minmax(230px, 1fr);
  align-items: center;
  gap: 32px;
  color: var(--ink);
  border-bottom: 1px solid rgba(10, 11, 10, 0.35);
}

.wordmark {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-size: 18px;
  line-height: 0.86;
  letter-spacing: 0.035em;
}

.wordmark small {
  font-family: var(--body);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.11em;
}

.wordmark-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--lime);
  background: var(--ink);
  font-size: 28px;
  transform: rotate(-4deg);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 36px);
  font-size: 13px;
  font-weight: 800;
}

.desktop-nav a {
  position: relative;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 2px;
  background: currentColor;
  transition: right 180ms ease;
}

.desktop-nav a:hover::after {
  right: 0;
}

.header-cta {
  justify-self: end;
  min-width: 118px;
  padding: 12px 20px;
  text-align: center;
  color: var(--lime);
  background: var(--ink);
  font-size: 13px;
  font-weight: 900;
  border: 2px solid var(--ink);
  transition: color 160ms ease, background 160ms ease;
}

.header-cta:hover {
  color: var(--ink);
  background: transparent;
}

.hero {
  position: relative;
  min-height: 860px;
  height: max(100svh, 860px);
  display: grid;
  grid-template-columns: 54% 46%;
  background: var(--lime);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  left: -7vw;
  bottom: -14vw;
  width: 44vw;
  aspect-ratio: 1;
  border: clamp(40px, 7vw, 110px) solid rgba(10, 11, 10, 0.06);
  border-radius: 50%;
}

.hero-copy {
  position: relative;
  z-index: 3;
  padding: clamp(142px, 17vh, 188px) clamp(28px, 5vw, 90px) 80px var(--gutter);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow,
.section-number {
  margin: 0 0 28px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow span {
  display: inline-block;
  margin-right: 12px;
  padding: 5px 8px;
  color: var(--lime);
  background: var(--ink);
}

.hero h1,
.section-heading h2,
.program-intro h2,
.training-title h2,
.review-heading h2,
.steps-heading h2,
.final-cta h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.88;
}

.hero h1 {
  font-size: clamp(76px, 8.2vw, 138px);
}

.hero h1 em,
.section-heading h2 em,
.training-title h2 em,
.final-cta h2 em {
  font-style: normal;
  color: var(--paper);
  -webkit-text-stroke: 2px var(--ink);
  text-shadow: 5px 5px 0 var(--ink);
}

.hero-lead {
  max-width: 590px;
  margin: clamp(30px, 4vh, 54px) 0 0;
  font-size: clamp(17px, 1.4vw, 22px);
  line-height: 1.65;
  font-weight: 700;
}

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

.button {
  min-height: 58px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  font-size: 15px;
  font-weight: 900;
  border: 2px solid var(--ink);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button-dark {
  min-width: 220px;
  color: var(--lime);
  background: var(--ink);
  box-shadow: 6px 6px 0 rgba(10, 11, 10, 0.25);
}

.button:hover {
  transform: translate(-2px, -2px);
  box-shadow: 9px 9px 0 rgba(10, 11, 10, 0.25);
}

.text-link {
  padding-block: 8px;
  font-size: 14px;
  font-weight: 900;
  border-bottom: 2px solid currentColor;
}

.hero-price-note {
  margin: 22px 0 0;
  font-size: 13px;
  font-weight: 600;
}

.hero-price-note strong {
  font-weight: 900;
}

.hero-visual {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: #242424;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15), transparent 28%, rgba(0, 0, 0, 0.46));
  pointer-events: none;
}

.hero-visual img {
  height: 100%;
  object-fit: cover;
  object-position: 56% center;
  filter: saturate(0.82) contrast(1.07);
  transform: scale(1.01);
}

.hero-photo-label {
  position: absolute;
  z-index: 3;
  right: 26px;
  bottom: 30px;
  left: 26px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  color: white;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.hero-photo-label strong {
  font-size: 14px;
  letter-spacing: -0.02em;
}

.hero-stamp {
  position: absolute;
  z-index: 4;
  top: 112px;
  right: -8px;
  width: 170px;
  padding: 16px 20px;
  color: var(--ink);
  background: var(--lime);
  font-family: var(--display);
  font-size: 26px;
  line-height: 0.92;
  transform: rotate(4deg);
  box-shadow: 7px 7px 0 rgba(0, 0, 0, 0.42);
}

.hero-stamp b {
  display: block;
  margin-top: 10px;
  font-family: var(--body);
  font-size: 8px;
  letter-spacing: 0.08em;
}

.hero-index {
  position: absolute;
  z-index: 5;
  left: calc(54% - 25px);
  bottom: 40px;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  color: var(--lime);
  background: var(--ink);
  font-family: var(--display);
  font-size: 18px;
}

.marquee {
  color: var(--lime);
  background: var(--ink);
  border-top: 1px solid var(--lime);
  border-bottom: 1px solid var(--lime);
  overflow: hidden;
}

.marquee-track {
  width: max-content;
  padding: 14px 0 16px;
  display: flex;
  align-items: center;
  gap: 28px;
  font-family: var(--display);
  font-size: clamp(25px, 2.6vw, 42px);
  white-space: nowrap;
  animation: marquee 24s linear infinite;
}

.marquee-track i {
  font-family: var(--body);
  font-style: normal;
  font-size: 18px;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.scoreboard {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 2px solid var(--ink);
}

.score-cell {
  min-height: 170px;
  padding: 26px var(--gutter) 24px 26px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-content: center;
  border-right: 1px solid var(--line);
}

.score-cell:last-child {
  border-right: 0;
}

.score-cell > span {
  grid-column: 1 / -1;
  margin-bottom: 4px;
  font-size: 11px;
  font-weight: 800;
}

.score-cell strong {
  font-family: var(--display);
  font-size: clamp(52px, 5.5vw, 88px);
  line-height: 1;
  font-weight: 400;
}

.score-cell small {
  align-self: end;
  margin: 0 0 10px 8px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.section-dark {
  color: var(--paper);
  background: var(--ink);
}

.difference {
  padding: clamp(90px, 11vw, 180px) var(--gutter);
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1fr);
  gap: clamp(44px, 7vw, 120px);
}

.section-heading {
  position: sticky;
  top: 40px;
  align-self: start;
}

.section-heading h2,
.training-title h2 {
  font-size: clamp(54px, 6vw, 102px);
}

.section-heading h2 em,
.training-title h2 em {
  color: var(--ink);
  -webkit-text-stroke-color: var(--lime);
  text-shadow: 5px 5px 0 var(--lime);
}

.difference-list {
  border-top: 1px solid rgba(243, 241, 233, 0.38);
}

.difference-row {
  padding: 32px 0 38px;
  display: grid;
  grid-template-columns: 52px minmax(180px, 0.8fr) 1fr;
  gap: 22px;
  align-items: start;
  border-bottom: 1px solid rgba(243, 241, 233, 0.38);
}

.difference-no {
  font-family: var(--display);
  font-size: 20px;
  color: var(--lime);
}

.difference-row h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(28px, 2.6vw, 43px);
  line-height: 1.03;
  font-weight: 400;
}

.difference-row p {
  margin: 2px 0 0;
  color: rgba(243, 241, 233, 0.7);
  font-size: 15px;
  line-height: 1.8;
}

.programs {
  padding: clamp(90px, 10vw, 160px) var(--gutter);
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(40px, 7vw, 120px);
  background:
    linear-gradient(rgba(10, 11, 10, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 11, 10, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 38px 38px;
}

.program-intro {
  align-self: start;
}

.program-intro h2,
.review-heading h2,
.steps-heading h2 {
  font-size: clamp(58px, 6vw, 106px);
}

.program-intro > p:last-child,
.review-heading > p:last-child {
  max-width: 460px;
  margin: 34px 0 0;
  font-size: 14px;
  line-height: 1.8;
  font-weight: 600;
}

.program-stack {
  display: grid;
  gap: 14px;
}

.program-card {
  position: relative;
  min-height: 235px;
  padding: clamp(26px, 3vw, 44px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  color: var(--paper);
  background: var(--ink);
  border: 2px solid var(--ink);
  box-shadow: 8px 8px 0 rgba(10, 11, 10, 0.15);
  overflow: hidden;
}

.program-featured {
  color: var(--ink);
  background: var(--lime);
}

.program-card::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -70px;
  width: 180px;
  height: 180px;
  border: 26px solid currentColor;
  border-radius: 50%;
  opacity: 0.07;
}

.program-tag {
  position: absolute;
  right: 0;
  top: 0;
  padding: 7px 13px;
  color: var(--lime);
  background: var(--ink);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.program-index {
  font-family: var(--display);
  font-size: 14px;
  color: var(--lime);
}

.program-featured .program-index {
  color: var(--ink);
}

.program-card h3 {
  margin: 28px 0 12px;
  font-family: var(--display);
  font-size: clamp(31px, 3vw, 52px);
  line-height: 1;
  font-weight: 400;
}

.program-card p {
  max-width: 510px;
  margin: 0;
  color: rgba(243, 241, 233, 0.66);
  font-size: 14px;
  line-height: 1.75;
}

.program-featured p {
  color: rgba(10, 11, 10, 0.68);
}

.program-price {
  min-width: 150px;
  align-self: center;
  display: grid;
  justify-items: end;
  position: relative;
  z-index: 2;
}

.program-price span {
  font-size: 11px;
  font-weight: 800;
}

.program-price strong {
  font-family: var(--display);
  font-size: clamp(64px, 6vw, 98px);
  line-height: 0.9;
  font-weight: 400;
}

.program-price strong small {
  font-family: var(--body);
  font-size: 15px;
  font-weight: 900;
}

.program-price em {
  margin-top: 9px;
  font-style: normal;
  font-size: 10px;
  font-weight: 700;
}

.program-price-text strong {
  margin-block: 10px;
  font-size: 56px;
}

.training {
  padding: clamp(90px, 10vw, 160px) var(--gutter) 80px;
}

.training-title {
  max-width: 1060px;
  margin-bottom: clamp(60px, 7vw, 110px);
}

.training-grid {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  grid-template-rows: auto auto;
  gap: clamp(16px, 2vw, 34px);
  align-items: start;
}

.training-photo {
  margin: 0;
  overflow: hidden;
}

.training-photo img {
  object-fit: cover;
  filter: saturate(0.8) contrast(1.08);
}

.training-photo-tall {
  grid-row: 1 / 3;
}

.training-photo-tall img {
  height: min(920px, 72vw);
  object-position: center;
}

.training-photo-wide img {
  height: min(500px, 39vw);
  object-position: center 38%;
}

.training-photo figcaption {
  padding: 14px 0 0;
  display: flex;
  gap: 20px;
  color: rgba(243, 241, 233, 0.72);
  font-size: 12px;
  font-weight: 700;
}

.training-photo figcaption span {
  color: var(--lime);
  font-family: var(--display);
  font-size: 16px;
}

.training-copy {
  min-height: 320px;
  padding: clamp(28px, 4vw, 64px);
  color: var(--ink);
  background: var(--lime);
  transform: rotate(1deg);
}

.tape-label {
  display: inline-block;
  padding: 6px 8px;
  color: var(--lime);
  background: var(--ink);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.training-copy > p {
  margin: 34px 0;
  font-family: var(--display);
  font-size: clamp(30px, 3vw, 52px);
  line-height: 1.05;
}

.training-copy ul {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 24px;
  list-style: none;
  font-size: 12px;
  font-weight: 800;
}

.training-copy li::before {
  content: "+";
  margin-right: 7px;
  font-family: var(--display);
}

.photo-disclosure {
  margin: 44px 0 0;
  color: rgba(243, 241, 233, 0.54);
  font-size: 11px;
}

.reviews {
  display: grid;
  grid-template-columns: 40% 60%;
  border-bottom: 2px solid var(--ink);
}

.review-heading {
  padding: clamp(80px, 9vw, 145px) var(--gutter);
  color: var(--ink);
  background: var(--lime);
}

.review-list {
  padding: clamp(80px, 9vw, 145px) var(--gutter);
}

.review-item {
  margin: 0;
  padding: 0 0 40px;
  display: grid;
  grid-template-columns: 50px 1fr;
  border-bottom: 1px solid var(--line);
}

.review-item + .review-item {
  padding-top: 40px;
}

.review-item > span {
  font-family: var(--display);
  color: #6e7400;
}

.review-item p {
  margin: 0;
  font-size: clamp(22px, 2.1vw, 36px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.45;
}

.review-item footer {
  grid-column: 2;
  margin-top: 18px;
  color: rgba(10, 11, 10, 0.52);
  font-size: 10px;
  font-weight: 800;
}

.steps {
  padding: clamp(90px, 10vw, 160px) var(--gutter);
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(50px, 8vw, 140px);
}

.steps-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: round;
}

.steps-list li {
  position: relative;
  min-height: 160px;
  padding: 24px 0 36px 100px;
  border-top: 2px solid var(--ink);
  counter-increment: round;
}

.steps-list li::before {
  content: counter(round, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 23px;
  font-family: var(--display);
  font-size: 58px;
  line-height: 1;
}

.steps-list span {
  display: block;
  margin-bottom: 12px;
  color: #687500;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.steps-list strong {
  display: block;
  font-family: var(--display);
  font-size: 34px;
  font-weight: 400;
}

.steps-list p {
  margin: 12px 0 0;
  color: rgba(10, 11, 10, 0.63);
  font-size: 14px;
  line-height: 1.65;
}

.final-cta {
  min-height: 720px;
  padding: clamp(85px, 10vw, 150px) var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  color: var(--ink);
  background: var(--lime);
  border-top: 2px solid var(--ink);
}

.final-cta-copy > p {
  margin: 0 0 50px;
  font-size: 12px;
  font-weight: 900;
}

.final-cta h2 {
  font-size: clamp(82px, 10vw, 172px);
}

.final-cta-actions {
  align-self: end;
}

.giant-call {
  position: relative;
  min-height: 220px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--lime);
  background: var(--ink);
  border: 2px solid var(--ink);
  box-shadow: 12px 12px 0 rgba(10, 11, 10, 0.22);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.giant-call:hover {
  transform: translate(-4px, -4px);
  box-shadow: 16px 16px 0 rgba(10, 11, 10, 0.22);
}

.giant-call span {
  font-size: 12px;
  font-weight: 900;
}

.giant-call strong {
  font-family: var(--display);
  font-size: clamp(34px, 4vw, 70px);
  line-height: 1;
  font-weight: 400;
}

.giant-call b {
  position: absolute;
  right: 26px;
  top: 22px;
  font-size: 34px;
}

.social-links {
  margin-top: 26px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.social-links a {
  min-height: 54px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 2px solid var(--ink);
  font-size: 12px;
  font-weight: 900;
}

.social-links a:hover {
  color: var(--lime);
  background: var(--ink);
}

.site-footer {
  padding: 48px var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 40px;
  color: var(--paper);
  background: var(--ink);
  border-top: 1px solid rgba(243, 241, 233, 0.2);
}

.footer-brand {
  font-family: var(--display);
  font-size: 30px;
  line-height: 1;
}

.footer-brand span {
  display: block;
  margin-top: 6px;
  color: var(--lime);
  font-family: var(--body);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.footer-info p,
.footer-note {
  margin: 0 0 7px;
  color: rgba(243, 241, 233, 0.62);
  font-size: 11px;
  line-height: 1.65;
}

.footer-note {
  align-self: end;
  max-width: 240px;
}

.mobile-contact {
  display: none;
}

.motion-ready .reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 620ms ease, transform 620ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.motion-ready .reveal.is-visible,
.capture .reveal {
  opacity: 1;
  transform: none;
}

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

  .desktop-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 57% 43%;
  }

  .hero-index {
    left: calc(57% - 25px);
  }

  .difference,
  .programs,
  .steps {
    grid-template-columns: 1fr;
  }

  .section-heading {
    position: static;
  }

  .program-intro > p:last-child {
    max-width: 650px;
  }

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

  .review-heading {
    min-height: 500px;
  }

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

  .footer-note {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  :root {
    --gutter: 20px;
  }

  body {
    padding-bottom: 72px;
  }

  .site-header {
    min-height: 68px;
    padding-block: 12px;
    border-bottom-color: rgba(10, 11, 10, 0.24);
  }

  .wordmark {
    font-size: 14px;
  }

  .wordmark-mark {
    width: 36px;
    height: 36px;
    font-size: 24px;
  }

  .header-cta {
    min-width: 90px;
    padding: 10px 13px;
    font-size: 11px;
  }

  .hero {
    min-height: auto;
    height: auto;
    padding-top: 68px;
    display: flex;
    flex-direction: column;
  }

  .hero-copy {
    min-height: 620px;
    padding: 64px var(--gutter) 50px;
  }

  .eyebrow {
    margin-bottom: 22px;
    font-size: 10px;
  }

  .hero h1 {
    font-size: clamp(63px, 19vw, 82px);
    line-height: 0.9;
  }

  .hero h1 em,
  .section-heading h2 em,
  .training-title h2 em,
  .final-cta h2 em {
    -webkit-text-stroke-width: 1.5px;
    text-shadow: 3px 3px 0 currentColor;
  }

  .hero h1 em {
    text-shadow: 3px 3px 0 var(--ink);
  }

  .hero-lead {
    margin-top: 28px;
    font-size: 15px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
    margin-top: 28px;
  }

  .button-dark {
    width: 100%;
  }

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

  .hero-price-note {
    font-size: 11px;
    line-height: 1.6;
  }

  .hero-visual {
    height: 620px;
  }

  .hero-visual img {
    object-position: 58% center;
  }

  .hero-stamp {
    top: 28px;
    width: 142px;
    font-size: 21px;
  }

  .hero-photo-label {
    align-items: start;
    flex-direction: column;
  }

  .hero-index {
    left: var(--gutter);
    bottom: 590px;
  }

  .marquee-track {
    font-size: 25px;
  }

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

  .score-cell {
    min-height: 132px;
    padding: 20px;
    border-bottom: 1px solid var(--line);
  }

  .score-cell:nth-child(2n) {
    border-right: 0;
  }

  .score-cell strong {
    font-size: 56px;
  }

  .difference {
    padding-block: 88px;
  }

  .section-heading h2,
  .training-title h2,
  .program-intro h2,
  .review-heading h2,
  .steps-heading h2 {
    font-size: clamp(49px, 14vw, 68px);
  }

  .section-heading h2 em,
  .training-title h2 em {
    text-shadow: 3px 3px 0 var(--lime);
  }

  .difference-list {
    margin-top: 50px;
  }

  .difference-row {
    grid-template-columns: 38px 1fr;
    gap: 12px;
  }

  .difference-row p {
    grid-column: 2;
  }

  .programs,
  .training,
  .steps {
    padding-block: 88px;
  }

  .program-card {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .program-price {
    justify-items: start;
    padding-top: 22px;
    border-top: 1px solid currentColor;
  }

  .program-price strong {
    font-size: 72px;
  }

  .training-title {
    margin-bottom: 50px;
  }

  .training-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .training-photo-tall {
    grid-row: auto;
  }

  .training-photo-tall img,
  .training-photo-wide img {
    height: 560px;
  }

  .training-photo-wide img {
    object-position: center;
  }

  .training-copy {
    min-height: 0;
    transform: none;
  }

  .training-copy ul {
    grid-template-columns: 1fr;
  }

  .review-heading {
    min-height: 480px;
    padding-block: 88px;
  }

  .review-list {
    padding-block: 72px;
  }

  .review-item {
    grid-template-columns: 35px 1fr;
  }

  .review-item p {
    font-size: 21px;
  }

  .steps-list li {
    padding-left: 76px;
  }

  .steps-list li::before {
    font-size: 46px;
  }

  .final-cta {
    min-height: 780px;
    padding-block: 86px;
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .final-cta-copy > p {
    margin-bottom: 34px;
    line-height: 1.6;
  }

  .final-cta h2 {
    font-size: clamp(73px, 22vw, 96px);
  }

  .giant-call {
    min-height: 190px;
    padding: 24px;
  }

  .giant-call strong {
    font-size: clamp(34px, 10vw, 48px);
  }

  .social-links {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding-block: 46px 60px;
    grid-template-columns: 1fr;
  }

  .footer-note {
    grid-column: auto;
  }

  .mobile-contact {
    position: fixed;
    z-index: 900;
    left: 0;
    right: 0;
    bottom: 0;
    height: 72px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    color: var(--lime);
    background: var(--ink);
    border-top: 1px solid var(--lime);
  }

  .mobile-contact a {
    min-width: 0;
    padding: 10px 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid rgba(201, 255, 38, 0.28);
  }

  .mobile-contact a:last-child {
    border-right: 0;
  }

  .mobile-contact span {
    font-size: 9px;
    opacity: 0.7;
  }

  .mobile-contact strong {
    font-size: 14px;
  }
}

@media (max-width: 380px) {
  .hero h1 {
    font-size: 61px;
  }

  .wordmark small {
    display: none;
  }

  .header-cta {
    min-width: 82px;
  }

  .training-photo-tall img,
  .training-photo-wide img {
    height: 510px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .motion-ready .reveal {
    opacity: 1;
    transform: none;
  }
}
