@font-face {
  font-family: "Haas Roman";
  src: url("assets/6fEIirQbdEmTYPjKSNMBJnrEcy4.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Haas Medium";
  src: url("assets/fIHZlYJA5GJPKag0QQceMPZNlI.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Haas Bold";
  src: url("assets/kFTr6A0sEE0xhB8JhNJ2Pl1bD5g.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --cream: #fdfbf0;
  --red: #e33c30;
  --black: #050505;
  --charcoal: #252525;
  --line: rgba(0, 0, 0, 0.13);
  --page-x: clamp(22px, 3.1vw, 58px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --hero-scroll: 0;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  color: #050505;
  background: var(--cream);
  font-family: "Haas Roman", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

button,
a {
  color: inherit;
  font: inherit;
}

a {
  text-decoration: none;
}

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

button {
  border: 0;
  cursor: pointer;
}

h1,
h2,
h3,
h4,
p,
figure,
blockquote {
  margin: 0;
}

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

::selection {
  color: white;
  background: var(--red);
}

.top-nav {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  padding: 24px clamp(22px, 3.2vw, 60px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
  transition: padding 0.4s var(--ease);
}

.top-nav.scrolled {
  padding-top: 14px;
}

.brand-mark,
.menu-button {
  pointer-events: auto;
  background: white;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.07);
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: var(--red);
  font-family: "Haas Bold", sans-serif;
  font-size: 16px;
  letter-spacing: -0.05em;
  opacity: 0;
  transform: translateY(-12px);
  animation: nav-in 0.8s 1.1s var(--ease) forwards;
}

.menu-button {
  min-width: 106px;
  height: 46px;
  padding: 0 17px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  letter-spacing: 0.04em;
  opacity: 0;
  transform: translateY(-12px);
  animation: nav-in 0.8s 1.15s var(--ease) forwards;
}

.menu-button i {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6px solid #000;
  transition: transform 0.3s var(--ease);
}

.menu-button:hover i {
  transform: rotate(180deg);
}

@keyframes nav-in {
  to {
    opacity: 1;
    transform: none;
  }
}

.menu-panel {
  position: fixed;
  z-index: 100;
  inset: 0;
  padding: 28px var(--page-x) 34px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  color: white;
  background: var(--black);
  clip-path: inset(0 0 100% 0);
  visibility: hidden;
  transition: clip-path 0.75s var(--ease), visibility 0s 0.75s;
}

.menu-panel.open {
  clip-path: inset(0);
  visibility: visible;
  transition: clip-path 0.75s var(--ease), visibility 0s;
}

.menu-topline,
.menu-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
}

.menu-close {
  padding: 10px 0 10px 20px;
  color: white;
  background: transparent;
}

.menu-close b {
  margin-left: 8px;
  font-size: 24px;
  font-weight: 400;
  vertical-align: -2px;
}

.menu-links {
  width: min(760px, 100%);
  margin: auto;
}

.menu-links a {
  padding: 5px 0;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  overflow: hidden;
}

.menu-links em {
  padding-top: 15px;
  color: var(--red);
  font-style: normal;
  font-size: 12px;
}

.menu-links span {
  display: block;
  font-family: "Haas Medium", sans-serif;
  font-size: clamp(44px, 6vw, 86px);
  line-height: 0.95;
  letter-spacing: -0.045em;
  transition: color 0.25s, transform 0.45s var(--ease);
}

.menu-links a:hover span {
  color: var(--red);
  transform: translateX(14px);
}

.menu-panel .menu-links a,
.menu-panel .menu-topline,
.menu-panel .menu-footer {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.4s, transform 0.6s var(--ease);
}

.menu-panel.open .menu-links a,
.menu-panel.open .menu-topline,
.menu-panel.open .menu-footer {
  opacity: 1;
  transform: none;
}

.menu-panel.open .menu-links a:nth-child(1) { transition-delay: 0.22s; }
.menu-panel.open .menu-links a:nth-child(2) { transition-delay: 0.28s; }
.menu-panel.open .menu-links a:nth-child(3) { transition-delay: 0.34s; }
.menu-panel.open .menu-links a:nth-child(4) { transition-delay: 0.4s; }
.menu-panel.open .menu-links a:nth-child(5) { transition-delay: 0.46s; }
.menu-panel.open .menu-links a:nth-child(6) { transition-delay: 0.52s; }

.menu-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 18px;
}

.hero {
  position: relative;
  isolation: isolate;
  height: clamp(650px, 48.5vw, 780px);
  min-height: 650px;
  overflow: hidden;
  background: #91dbe2;
}

.hero-sky {
  position: absolute;
  z-index: -3;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.045) translateY(calc(var(--hero-scroll) * 0.055px));
  animation: hero-bg-in 1.6s var(--ease) forwards;
}

@keyframes hero-bg-in {
  from { transform: scale(1.15); filter: saturate(0.5); }
}

.hero-title {
  position: absolute;
  z-index: -1;
  top: 0;
  left: var(--page-x);
  right: var(--page-x);
  color: var(--red);
  font-family: "Haas Bold", Arial, sans-serif;
  font-size: clamp(88px, 11.72vw, 180px);
  line-height: 1;
  letter-spacing: -0.052em;
  text-transform: uppercase;
}

.hero-title > span {
  display: flex;
  justify-content: space-between;
  overflow: hidden;
}

.hero-title b {
  display: block;
  font-weight: 700;
  transform: translateY(110%);
  animation: title-in 1.05s 0.15s var(--ease) forwards;
}

.hero-title span:nth-child(2) b:first-child { animation-delay: 0.26s; }
.hero-title span:nth-child(2) b:last-child { animation-delay: 0.36s; }

@keyframes title-in {
  to { transform: none; }
}

.hero-athlete {
  position: absolute;
  z-index: 1;
  top: 14px;
  left: 50%;
  width: min(32vw, 470px);
  height: calc(100% - 14px);
  object-fit: contain;
  object-position: bottom;
  transform: translate3d(-50%, calc(12% + var(--hero-scroll) * 0.03px), 0) scale(0.96);
  opacity: 0;
  filter: saturate(0.94);
  animation: athlete-in 1.25s 0.42s var(--ease) forwards;
}

@keyframes athlete-in {
  to { opacity: 1; transform: translate3d(-50%, calc(var(--hero-scroll) * 0.03px), 0) scale(1); }
}

.hero-punchline,
.hero-copy {
  position: absolute;
  z-index: 3;
  bottom: clamp(74px, 6.7vw, 104px);
  font-size: 18px;
  opacity: 0;
  transform: translateY(28px);
  animation: copy-in 0.9s 0.95s var(--ease) forwards;
}

.hero-punchline {
  left: var(--page-x);
  font-family: "Haas Bold", sans-serif;
  font-size: clamp(28px, 2.3vw, 38px);
  line-height: 1.1;
}

.hero-copy {
  right: var(--page-x);
  width: min(350px, 28vw);
  animation-delay: 1.05s;
}

.hero-copy p {
  margin-bottom: 36px;
  line-height: 1.35;
}

@keyframes copy-in {
  to { opacity: 1; transform: none; }
}

.button {
  width: fit-content;
  min-height: 46px;
  padding: 0 19px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  border-radius: 7px;
  font-family: "Haas Medium", sans-serif;
  font-weight: 500;
  transition: transform 0.35s var(--ease), color 0.3s, background 0.3s;
}

.button span {
  font-size: 20px;
  transition: transform 0.35s var(--ease);
}

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

.button:hover span {
  transform: translateX(5px);
}

.button-dark {
  color: white;
  background: black;
}

.button-dark:hover {
  background: var(--red);
}

.button-light {
  color: black;
  background: white;
}

.button-light:hover {
  color: white;
  background: var(--red);
}

.scroll-cue {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 9px;
  transform: translateX(-50%);
  color: rgba(0, 0, 0, 0.6);
  font-size: 10px;
  letter-spacing: 0.18em;
}

.scroll-cue i {
  position: relative;
  width: 32px;
  height: 1px;
  background: rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.scroll-cue i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #000;
  animation: scroll-line 1.8s infinite var(--ease);
}

@keyframes scroll-line {
  from { transform: translateX(-110%); }
  to { transform: translateX(110%); }
}

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

.section-tag {
  width: fit-content;
  min-height: 46px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  border: 1px solid rgba(0, 0, 0, 0.09);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.035);
  font-family: "Haas Medium", sans-serif;
}

.section-tag i {
  width: 13px;
  height: 13px;
  border-radius: 3px;
  background: var(--red);
}

.section-tag.light {
  color: #000;
  background: white;
}

.section-tag.centered {
  margin-left: auto;
  margin-right: auto;
}

.about {
  min-height: 1480px;
  padding: 160px var(--page-x) 180px;
}

.about-heading {
  width: min(1020px, 78vw);
  margin: 42px auto 0;
  font-family: "Haas Medium", sans-serif;
  font-size: clamp(42px, 4.15vw, 64px);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.035em;
}

.about-stage {
  position: relative;
  min-height: 760px;
  margin-top: 84px;
}

.about-thumb {
  position: absolute;
  top: 0;
  left: 3%;
  width: 215px;
  height: 162px;
  border-radius: 8px;
  overflow: hidden;
}

.about-thumb img,
.about-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-stat {
  position: absolute;
  top: 180px;
  left: 24%;
  display: flex;
  align-items: center;
  gap: 42px;
}

.about-stat strong {
  font-family: "Haas Medium", sans-serif;
  font-size: clamp(72px, 8vw, 122px);
  line-height: 0.8;
  font-weight: 500;
  letter-spacing: -0.05em;
}

.about-stat > span {
  font-family: "Haas Medium", sans-serif;
  line-height: 1.2;
}

.about-copy {
  position: absolute;
  top: 335px;
  left: 24%;
  width: min(510px, 42vw);
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.about-copy > p {
  font-size: 19px;
  line-height: 1.35;
}

.review-row {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
}

.review-faces {
  display: flex;
}

.review-faces img {
  width: 45px;
  height: 45px;
  object-fit: cover;
  border: 2px solid var(--cream);
  border-radius: 50%;
}

.review-faces img + img {
  margin-left: -13px;
}

.about-portrait {
  position: absolute;
  top: 395px;
  right: 1.8%;
  width: 375px;
  height: 435px;
  overflow: hidden;
  border-radius: 8px;
}

.section-intro {
  padding: 0 var(--page-x) 80px;
}

.section-intro h2,
.journal-copy h2 {
  margin-top: 36px;
  font-family: "Haas Medium", sans-serif;
  font-size: clamp(44px, 4.2vw, 64px);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.services {
  padding-bottom: 130px;
}

.program {
  min-height: 720px;
  padding: 45px var(--page-x) 80px;
  display: grid;
  grid-template-columns: minmax(360px, 42%) minmax(0, 58%);
  gap: 54px;
  align-items: center;
}

.program-copy {
  max-width: 520px;
}

.program-number {
  display: block;
  margin-bottom: 26px;
  color: rgba(0, 0, 0, 0.4);
  font-size: 12px;
  letter-spacing: 0.14em;
}

.program-copy h3 {
  font-family: "Haas Medium", sans-serif;
  font-size: clamp(34px, 2.65vw, 44px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.14em;
}

.program-copy > p {
  margin: 34px 0 28px;
  font-size: 18px;
  line-height: 1.38;
}

.program-copy ul {
  margin-bottom: 32px;
  display: grid;
  gap: 11px;
}

.program-copy li {
  display: flex;
  align-items: center;
  gap: 11px;
}

.program-copy li::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 2px;
  background: var(--red);
}

.program-media {
  height: 584px;
  overflow: hidden;
  border-radius: 8px;
}

.program-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 1.4s var(--ease);
}

.program-media.in img {
  transform: scale(1);
}

.program-copy h4 {
  margin: 34px 0 22px;
  font-family: "Haas Medium", sans-serif;
  font-size: 26px;
  font-weight: 500;
}

.result-grid {
  margin-bottom: 33px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 40px;
}

.result-grid span {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}

.result-grid b {
  font-weight: 400;
}

.result-grid i {
  position: relative;
  height: 11px;
  margin-top: 11px;
  display: block;
  overflow: hidden;
  border-radius: 999px;
  background: #0b0b0b;
}

.result-grid i::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--score);
  border-radius: inherit;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.1s 0.25s var(--ease);
}

.program-copy.in .result-grid i::after {
  transform: scaleX(1);
}

.class-stats {
  margin: 36px 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.class-stats small {
  margin-bottom: 9px;
  display: block;
  color: rgba(0, 0, 0, 0.52);
  font-size: 14px;
}

.class-stats strong {
  font-family: "Haas Medium", sans-serif;
  font-size: 18px;
  font-weight: 500;
}

.dark-zone {
  color: white;
  background: var(--black);
}

.why-wrap {
  padding: 130px var(--page-x) 120px;
}

.why-wrap > .section-tag {
  margin: 0 auto;
  display: flex;
}

.why-wrap > h2,
.pricing > h2,
.faqs > h2 {
  margin: 28px auto 0;
  text-align: center;
  font-family: "Haas Medium", sans-serif;
  font-size: clamp(46px, 4.2vw, 64px);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.why-lead {
  width: min(660px, 80vw);
  margin: 20px auto 70px;
  text-align: center;
  font-size: 19px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.68);
}

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

.benefit-card {
  min-height: 405px;
  padding: 25px 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 9px;
  overflow: hidden;
  background: var(--charcoal);
  transition: transform 0.5s var(--ease), background 0.35s;
}

.benefit-card:hover {
  transform: translateY(-10px);
  background: #303030;
}

.benefit-icon {
  width: 40px;
  height: 40px;
  margin-bottom: auto;
  display: grid;
  place-items: center;
  border-radius: 6px;
  color: white;
  background: var(--red);
  font-size: 21px;
}

.benefit-card h3 {
  margin-bottom: 12px;
  font-family: "Haas Medium", sans-serif;
  font-size: 18px;
  font-weight: 500;
}

.benefit-card p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.38;
}

.benefit-image {
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 46%;
}

.benefit-image > div {
  padding: 25px 16px 25px 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.benefit-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pricing {
  padding: 70px var(--page-x) 125px;
}

.plan-grid {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.plan-card {
  position: relative;
  min-height: 460px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  background: var(--charcoal);
}

.plan-content {
  padding: 26px 20px 26px 24px;
  display: flex;
  flex-direction: column;
}

.plan-card h3 {
  margin-bottom: 6px;
  font-family: "Haas Medium", sans-serif;
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.plan-card p {
  max-width: 270px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.35;
}

.price {
  margin: 28px 0;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.price strong {
  font-family: "Haas Medium", sans-serif;
  font-size: 30px;
  font-weight: 500;
}

.price span {
  color: rgba(255, 255, 255, 0.72);
}

.plan-card .button {
  width: 100%;
  margin-bottom: 24px;
}

.plan-card ul {
  margin-top: auto;
  display: grid;
  gap: 12px;
}

.plan-card li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.88);
}

.plan-card li::before {
  content: "✦";
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  display: grid;
  place-items: center;
  border-radius: 4px;
  background: var(--red);
  font-size: 13px;
}

.plan-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.plan-card:hover > img {
  transform: scale(1.04);
}

.popular {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  padding: 7px 10px;
  border-radius: 4px;
  color: white;
  background: var(--red);
  font-family: "Haas Medium", sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
}

.tax-note {
  margin-top: 22px;
  text-align: center;
  color: rgba(255, 255, 255, 0.48);
  font-size: 13px;
}

.stories {
  padding: 90px 0 130px;
  overflow: hidden;
}

.marquee-row {
  width: max-content;
  display: flex;
}

.marquee-track {
  display: flex;
  gap: 18px;
  padding-right: 18px;
  animation: marquee-left 42s linear infinite;
}

.marquee-row:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-reverse .marquee-track {
  animation-name: marquee-right;
  animation-duration: 46s;
}

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

@keyframes marquee-right {
  from { transform: translateX(-100%); }
}

.story-card {
  position: relative;
  width: 300px;
  height: 466px;
  flex: 0 0 300px;
  overflow: hidden;
  border-radius: 8px;
  color: white;
  background: #222;
}

.story-card::after {
  content: "";
  position: absolute;
  inset: 28% 0 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
}

.story-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.story-card:hover img {
  transform: scale(1.05);
}

.story-card > div {
  position: absolute;
  z-index: 2;
  right: 14px;
  bottom: 18px;
  left: 14px;
}

.story-card blockquote {
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.3;
}

.story-card h3 {
  font-family: "Haas Medium", sans-serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
}

.story-card p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.stories-title {
  margin: 70px 0;
  text-align: center;
  font-family: "Haas Medium", sans-serif;
  font-size: clamp(62px, 8vw, 122px);
  font-weight: 500;
  line-height: 0.82;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.faqs {
  padding: 135px var(--page-x) 165px;
}

.faqs > h2 {
  text-transform: uppercase;
}

.faq-lead {
  width: min(650px, 80vw);
  margin: 30px auto 76px;
  text-align: center;
  font-size: 19px;
  line-height: 1.35;
}

.accordion {
  width: min(650px, 100%);
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

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

.faq-item button {
  width: 100%;
  min-height: 78px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  text-align: left;
  background: transparent;
  font-family: "Haas Medium", sans-serif;
  font-size: 18px;
}

.faq-item button i {
  position: relative;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  border-radius: 4px;
  background: rgba(227, 60, 48, 0.11);
}

.faq-item button i::before,
.faq-item button i::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 1.5px;
  background: var(--red);
  transform: translate(-50%, -50%);
  transition: transform 0.35s var(--ease);
}

.faq-item button i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.open button i::after {
  transform: translate(-50%, -50%);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.55s var(--ease);
}

.faq-answer p {
  min-height: 0;
  overflow: hidden;
  padding-right: 60px;
  color: rgba(0, 0, 0, 0.62);
  line-height: 1.45;
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.open .faq-answer p {
  padding-bottom: 26px;
}

.journal {
  padding: 40px var(--page-x) 120px;
}

.journal-copy {
  max-width: 820px;
}

.journal-copy > p {
  max-width: 560px;
  margin-top: 22px;
  font-size: 18px;
  line-height: 1.4;
}

.article-grid {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.article-card {
  position: relative;
  height: 650px;
  overflow: hidden;
  border-radius: 8px;
  color: white;
  background: #222;
}

.article-card::after {
  content: "";
  position: absolute;
  inset: 32% 0 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.94));
}

.article-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}

.article-card:hover img {
  transform: scale(1.055);
}

.article-card > div {
  position: absolute;
  z-index: 2;
  right: 16px;
  bottom: 28px;
  left: 16px;
}

.article-card span {
  display: block;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  letter-spacing: 0.12em;
}

.article-card h3 {
  font-family: "Haas Medium", sans-serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.08;
}

.article-card p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  line-height: 1.32;
}

.footer {
  color: white;
  background: #000;
  overflow: hidden;
}

.footer-main {
  min-height: 500px;
  padding: 70px var(--page-x) 45px;
  display: grid;
  grid-template-columns: 1.7fr 0.85fr 0.45fr;
  gap: 64px;
}

.footer-main h2 {
  font-family: "Haas Medium", sans-serif;
  font-size: clamp(28px, 2.4vw, 38px);
  font-weight: 500;
  line-height: 1.15;
}

.footer-contact,
.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-contact small {
  margin-bottom: 23px;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.12em;
}

.footer-contact a {
  margin-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 18px;
}

.footer-contact p {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.5;
}

.footer-links {
  gap: 11px;
}

.footer-links a,
.footer-bottom a {
  transition: color 0.25s;
}

.footer-links a:hover,
.footer-bottom a:hover {
  color: var(--red);
}

.footer-bottom {
  min-height: 84px;
  padding: 20px var(--page-x);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
}

.footer-bottom > p {
  text-align: center;
}

.footer-bottom > a {
  justify-self: end;
}

.socials {
  display: flex;
  gap: 11px;
}

.socials a {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  font-family: Arial, sans-serif;
}

.footer-strip {
  height: 178px;
  overflow: hidden;
}

.footer-strip-track {
  width: max-content;
  height: 100%;
  display: flex;
  gap: 9px;
  animation: footer-run 48s linear infinite;
}

.footer-strip img {
  width: 245px;
  height: 100%;
  object-fit: cover;
}

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

.reveal {
  opacity: 0;
  transform: translateY(45px);
  filter: blur(8px);
  transition: opacity 0.9s var(--ease), transform 1s var(--ease), filter 0.9s var(--ease);
}

.reveal.in {
  opacity: 1;
  transform: none;
  filter: none;
}

.media-reveal {
  clip-path: inset(0 0 100% 0 round 8px);
  transition: clip-path 1.15s var(--ease), opacity 0.8s, transform 1s var(--ease), filter 0.9s var(--ease);
}

.media-reveal.in {
  clip-path: inset(0 round 8px);
}

@media (max-width: 1199px) {
  .hero-title { font-size: 11.2vw; }
  .hero-athlete { width: 37vw; }
  .about { min-height: 1380px; }
  .about-stat, .about-copy { left: 20%; }
  .about-portrait { right: 0; width: 32vw; }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .benefit-card { min-height: 320px; }
  .plan-card { grid-template-columns: 1fr 42%; }
  .footer-main { grid-template-columns: 1.3fr 1fr 0.6fr; gap: 36px; }
}

@media (max-width: 809px) {
  :root { --page-x: 18px; }

  .top-nav { padding: 16px 18px; }
  .brand-mark { width: 42px; height: 42px; }
  .menu-button { min-width: 95px; height: 42px; }
  .menu-panel { padding: 20px 18px 24px; }
  .menu-footer { align-items: flex-start; flex-direction: column; gap: 6px; }

  .hero {
    height: 820px;
    min-height: 720px;
  }

  .hero-title {
    top: 76px;
    left: 14px;
    right: 14px;
    font-size: 18.2vw;
    line-height: 0.9;
  }

  .hero-title > span:nth-child(2) { flex-wrap: wrap; }
  .hero-title > span:nth-child(2) b:last-child { width: 100%; text-align: right; }
  .hero-athlete { top: 165px; width: min(88vw, 520px); height: 545px; }
  .hero-punchline { bottom: 46px; font-size: 26px; }
  .hero-copy { right: 18px; bottom: 44px; width: 50%; font-size: 14px; }
  .hero-copy p { display: none; }
  .scroll-cue { display: none; }

  .about { min-height: auto; padding: 100px 18px 110px; }
  .about-heading { width: 100%; margin-top: 34px; font-size: 40px; }
  .about-stage { min-height: 1000px; margin-top: 55px; display: flex; flex-direction: column; }
  .about-thumb { position: relative; top: auto; left: auto; width: 48%; height: 160px; }
  .about-stat { position: relative; top: auto; left: auto; margin: 42px 0 0 18%; gap: 22px; }
  .about-stat strong { font-size: 78px; }
  .about-copy { position: relative; top: auto; left: auto; width: 82%; margin: 38px 0 0 18%; }
  .about-copy > p { font-size: 17px; }
  .about-portrait { position: relative; top: auto; right: auto; width: 66%; height: 420px; margin: 52px 0 0 auto; }

  .section-intro { padding: 0 18px 45px; }
  .section-intro h2, .journal-copy h2 { font-size: 42px; }
  .services { padding-bottom: 80px; }
  .program { min-height: 0; padding: 45px 18px 90px; grid-template-columns: 1fr; gap: 38px; }
  .program-copy { max-width: none; }
  .program-copy h3 { font-size: 31px; letter-spacing: 0.08em; }
  .program-copy > p { font-size: 17px; }
  .program-media { height: 480px; grid-row: 1; }
  .program-copy { grid-row: 2; }
  .result-grid { grid-template-columns: 1fr; }
  .class-stats { gap: 10px; }
  .class-stats strong { font-size: 15px; }

  .why-wrap { padding: 100px 18px 80px; }
  .why-wrap > h2, .pricing > h2, .faqs > h2 { font-size: 42px; }
  .why-lead { width: 100%; font-size: 17px; }
  .benefit-grid { grid-template-columns: 1fr; }
  .benefit-card { min-height: 275px; }
  .benefit-image { grid-template-columns: 1fr 45%; }

  .pricing { padding: 70px 18px 100px; }
  .plan-grid { margin-top: 50px; grid-template-columns: 1fr; }
  .plan-card { min-height: 620px; grid-template-columns: 1fr; }
  .plan-card > img { height: 310px; grid-row: 1; }
  .plan-content { grid-row: 2; }
  .popular { top: 14px; }

  .stories { padding: 70px 0 90px; }
  .story-card { width: 260px; height: 405px; flex-basis: 260px; }
  .stories-title { margin: 56px 0; font-size: 16vw; }

  .faqs { padding: 100px 18px 115px; }
  .faq-lead { width: 100%; margin-bottom: 50px; font-size: 17px; }
  .faq-item button { min-height: 72px; font-size: 17px; }
  .faq-answer p { padding-right: 24px; }

  .journal { padding: 30px 18px 80px; }
  .article-grid { margin-top: 48px; grid-template-columns: 1fr; }
  .article-card { height: 540px; }

  .footer-main { min-height: 620px; padding: 58px 18px 40px; grid-template-columns: 1fr; gap: 42px; }
  .footer-contact { order: 3; }
  .footer-links { display: grid; grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { padding: 24px 18px; grid-template-columns: 1fr; gap: 18px; text-align: center; }
  .socials { justify-content: center; }
  .footer-bottom > a { justify-self: center; }
  .footer-strip { height: 145px; }
  .footer-strip img { width: 195px; }
}

@media (max-width: 480px) {
  .hero { height: 760px; min-height: 700px; }
  .hero-title { font-size: 18.3vw; }
  .hero-athlete { top: 150px; height: 505px; }
  .hero-copy { width: auto; }
  .hero-punchline { font-size: 23px; }
  .about-heading { font-size: 36px; }
  .about-stat { margin-left: 8%; }
  .about-copy { width: 92%; margin-left: 8%; }
  .program-media { height: 400px; }
  .program-copy h3 { font-size: 27px; letter-spacing: 0.055em; }
  .plan-card { min-height: 0; }
  .article-card { height: 500px; }
}

@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; }
  .reveal { opacity: 1; transform: none; filter: none; }
  .media-reveal { clip-path: none; }
}
