:root {
  --color-action-primary: #00f0d0;
  --color-action-hover: #00d8bc;
  --color-navy-primary: #102033;
  --color-navy-secondary: #263f63;
  --color-court-green: #22d84f;
  --color-court-blue: #3387ff;
  --color-rally-yellow: #f7e12b;
  --color-soft-mint: #e9fff3;
  --color-warm-white: #fbfff8;
  --color-white: #ffffff;
  --color-slate-primary: #435166;
  --color-slate-muted: #69778c;
  --color-border-subtle: #d5efe5;
  --shadow-panel: 0 16px 36px rgba(16, 32, 51, 0.1);
  --shadow-soft: 0 10px 24px rgba(16, 32, 51, 0.075);
  --radius-card: 8px;
  --radius-panel: 10px;
  --space-page: clamp(20px, 4vw, 64px);
  --content-max: 1180px;
  --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --type-page-title: 800;
  --type-section-title: 700;
  --type-card-title: 700;
  --type-label: 700;
  --type-meta: 600;
  --type-copy: 400;
  --type-copy-strong: 600;
  --type-section-eyebrow-size: 0.78rem;
  --type-card-label-size: 0.68rem;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(112deg, rgba(79, 124, 255, 0.08), rgba(79, 124, 255, 0) 32%),
    linear-gradient(18deg, rgba(53, 200, 90, 0.08), rgba(53, 200, 90, 0) 44%),
    var(--color-warm-white);
  color: var(--color-navy-primary);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

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

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-140%);
  border-radius: 8px;
  background: var(--color-navy-primary);
  color: var(--color-white);
  padding: 10px 14px;
}

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

.site-header {
  position: relative;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 7px var(--space-page);
  background: #ffffff;
  border-bottom: 1px solid rgba(16, 32, 51, 0.06);
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.partner-banner[hidden] {
  display: none;
}

.partner-banner {
  position: relative;
  background:
    linear-gradient(90deg, rgba(233, 255, 243, 0.72), rgba(255, 255, 255, 0.98) 64%),
    var(--color-white);
  border-bottom: 1px solid rgba(16, 32, 51, 0.08);
  color: var(--color-navy-primary);
}

.partner-banner::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--color-action-primary), var(--color-court-green));
}

.partner-banner-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 13px var(--space-page) 11px;
}

.partner-banner-label {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 7px;
  min-height: 28px;
  border-radius: 999px;
  background: var(--color-action-primary);
  color: var(--color-navy-primary);
  box-shadow: 0 8px 22px rgba(0, 240, 208, 0.2);
  padding: 7px 12px;
  font-size: 0.72rem;
  font-weight: var(--type-meta);
  letter-spacing: 0.03em;
  line-height: 1;
  text-transform: uppercase;
}

.partner-banner-label::before {
  content: "";
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--color-rally-yellow);
  box-shadow: 0 0 0 3px rgba(247, 225, 43, 0.22);
}

.partner-banner-main,
.partner-banner-support {
  margin: 0;
}

.partner-banner-main {
  font-weight: var(--type-meta);
  line-height: 1.25;
}

.partner-banner-support {
  color: var(--color-slate-primary);
  font-size: 0.92rem;
  line-height: 1.35;
}

.anchor-target {
  position: relative;
  top: -72px;
  display: block;
  height: 0;
  overflow: hidden;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 114px;
  overflow: hidden;
}

.brand img {
  width: 114px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--color-slate-primary);
  font-size: 0.9rem;
  font-weight: 700;
}

.site-nav a,
.button {
  text-decoration: none;
}

.site-nav a:focus-visible,
.button:focus-visible,
.focus-tile:focus-visible {
  outline: 3px solid rgba(20, 217, 195, 0.45);
  outline-offset: 3px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding: 14px 20px;
  border: 1px solid transparent;
  font-weight: 800;
  line-height: 1.1;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.header-cta {
  min-height: 38px;
  border-color: #00a894;
  border-bottom-width: 2px;
  padding: 9px 14px;
  font-size: 0.9rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.38),
    0 8px 18px rgba(0, 240, 208, 0.24),
    0 2px 0 rgba(0, 168, 148, 0.82);
}

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

.button-primary {
  border-color: #00a894;
  border-bottom-width: 3px;
  background: var(--color-action-primary);
  color: #061a18;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.38),
    0 12px 24px rgba(0, 240, 208, 0.24),
    0 3px 0 rgba(0, 168, 148, 0.86);
}

.button-primary:hover {
  border-color: #008f80;
  background: var(--color-action-hover);
  color: #061a18;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.42),
    0 14px 26px rgba(0, 216, 188, 0.28),
    0 3px 0 rgba(0, 143, 128, 0.9);
}

.button-secondary {
  background: #ffffff;
  border-color: rgba(16, 32, 51, 0.2);
  color: var(--color-navy-primary);
  box-shadow: 0 8px 18px rgba(16, 32, 51, 0.06);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(220px, auto) minmax(230px, 1fr);
  align-items: center;
  gap: 20px;
  border-top: 1px solid rgba(16, 32, 51, 0.08);
  background: var(--color-white);
  padding: 18px var(--space-page);
}

.site-footer .brand,
.site-footer .brand img {
  width: 92px;
}

.footer-brand-block,
.footer-contact-block {
  display: grid;
  gap: 6px;
}

.footer-brand-block p,
.footer-contact-block p {
  margin: 0;
  color: var(--color-slate-primary);
  font-size: 0.84rem;
  line-height: 1.45;
}

.footer-contact-block {
  justify-items: center;
  text-align: center;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
  color: var(--color-slate-primary);
  font-size: 0.9rem;
  font-weight: 700;
}

.site-footer nav span {
  color: var(--color-slate-primary);
}

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

.site-footer .footer-email {
  color: var(--color-action-primary);
  font-weight: 700;
}

.site-footer a:hover {
  color: #056b61;
}

.section-shell {
  scroll-margin-top: 72px;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: clamp(56px, 7vw, 88px) var(--space-page);
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 560px) minmax(430px, 1fr);
  gap: clamp(38px, 5vw, 76px);
  align-items: center;
  min-height: 0;
  padding-left: max(var(--space-page), calc((100vw - var(--content-max)) / 2));
  padding-right: 0;
  padding-top: clamp(34px, 3.8vw, 52px);
  padding-bottom: clamp(28px, 3.4vw, 46px);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.88) 39%, rgba(255, 255, 255, 0.18) 64%, rgba(255, 255, 255, 0) 100%),
    linear-gradient(133deg, rgba(255, 255, 255, 0.8) 0%, rgba(51, 135, 255, 0.28) 42%, rgba(51, 135, 255, 0.72) 70%, rgba(0, 240, 208, 0.62) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0) 0 13%, rgba(255, 255, 255, 0.34) 13% 13.35%, rgba(255, 255, 255, 0) 13.35% 100%),
    linear-gradient(164deg, rgba(255, 255, 255, 0) 0 51%, rgba(247, 225, 43, 0.18) 51% 51.5%, rgba(255, 255, 255, 0) 51.5% 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.52) 0%, rgba(255, 255, 255, 0.16) 45%, rgba(255, 255, 255, 0) 78%);
}

.hero::after {
  position: absolute;
  z-index: 0;
  right: clamp(12px, 2vw, 34px);
  top: clamp(92px, 9vw, 138px);
  width: min(46vw, 660px);
  height: clamp(96px, 11vw, 152px);
  border-radius: 999px 0 0 999px;
  background:
    linear-gradient(90deg, rgba(0, 240, 208, 0), rgba(0, 240, 208, 0.44) 42%, rgba(247, 225, 43, 0.34));
  filter: blur(18px);
  opacity: 0.62;
  content: "";
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 700px;
  transform: translateY(clamp(-34px, -2.2vw, -18px));
}

.eyebrow {
  margin: 0 0 10px;
  color: #056b61;
  font-size: var(--type-section-eyebrow-size);
  font-weight: var(--type-label);
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 700px;
  margin-bottom: 20px;
  color: var(--color-navy-primary);
  font-size: clamp(3.1rem, 4vw, 3.9rem);
  font-weight: var(--type-page-title);
  line-height: 1.06;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero h1 {
  margin-bottom: 18px;
  font-size: clamp(3.45rem, 4.55vw, 4.5rem);
  line-height: 1.02;
}

h1 span {
  display: block;
}

@media (min-width: 1180px) {
  h1 span {
    white-space: nowrap;
  }
}

h2 {
  margin-bottom: 14px;
  color: var(--color-navy-primary);
  font-size: clamp(2rem, 3.4vw, 3.1rem);
  font-weight: var(--type-section-title);
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: var(--color-navy-primary);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: var(--type-card-title);
  line-height: 1.18;
}

.hero-subhead,
.section-intro p,
.final-copy p {
  color: var(--color-slate-primary);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
}

.hero-subhead {
  max-width: 560px;
  margin-bottom: 12px;
  color: var(--color-slate-primary);
  font-size: clamp(1.06rem, 1.15vw, 1.14rem);
  line-height: 1.58;
  text-wrap: pretty;
}

.hero-subhead-mobile {
  display: none;
}

.proof-badge {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 5px 8px;
  align-items: center;
  width: fit-content;
  max-width: 560px;
  margin-bottom: 18px;
  border: 1px solid rgba(16, 32, 51, 0.1);
  border-left: 4px solid var(--color-action-primary);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 8px 16px rgba(16, 32, 51, 0.05);
  padding: 8px 14px 8px 22px;
  color: var(--color-navy-secondary);
  line-height: 1.28;
}

.proof-badge::after {
  position: absolute;
  left: 10px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--color-rally-yellow);
  box-shadow: 0 0 0 2px rgba(247, 225, 43, 0.16);
  content: "";
  transform: translateY(-50%);
}

.proof-badge strong {
  color: var(--color-navy-primary);
  font-size: 0.9rem;
  font-weight: var(--type-copy-strong);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: clamp(24px, 3vw, 38px);
}

.section-cta .button {
  min-width: min(100%, 260px);
  justify-content: center;
  text-align: center;
  white-space: normal;
}

.section-cta-on-dark .button {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.36),
    0 18px 34px rgba(0, 240, 208, 0.22);
}

.hero .button-primary {
  border-color: #00a894;
  border-bottom-width: 4px;
  padding-top: 15px;
  padding-bottom: 12px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.42),
    0 16px 30px rgba(0, 240, 208, 0.32),
    0 5px 0 rgba(0, 168, 148, 0.9);
}

.hero-visual {
  position: relative;
  z-index: 2;
  min-height: clamp(520px, 44vw, 620px);
}

.hero-visual::after {
  display: none;
}

.hero-visual::before {
  display: none;
}

.media-frame {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 24px 0 0 24px;
  clip-path: inset(0 round 24px 0 0 24px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.98)),
    var(--color-white);
  border: 1px solid rgba(16, 32, 51, 0.12);
  border-left: 4px solid var(--color-action-primary);
  box-shadow:
    -22px 24px 46px rgba(16, 32, 51, 0.18),
    -10px 0 0 rgba(0, 240, 208, 0.28);
}

.hero-media {
  height: clamp(520px, 44vw, 620px);
}

.hero-media .hero-poster,
.hero-media .hero-video {
  position: absolute;
  inset: 0;
}

.hero-media::before {
  display: none;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(16, 32, 51, 0.04) 0%, rgba(16, 32, 51, 0) 34%);
}

.hero-media picture,
.hero-media img,
.hero-media video,
.hero-poster,
.video-fallback {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}

.hero-media picture {
  display: block;
  z-index: 1;
}

.hero-poster img,
.hero-video {
  object-position: 48% 56%;
}

.hero-video {
  z-index: 2;
  opacity: 0;
  transition: opacity 180ms ease;
}

.hero-video.is-ready {
  opacity: 1;
}

.video-unavailable video {
  display: none;
}

.video-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background:
    linear-gradient(90deg, rgba(16, 32, 51, 0.08), transparent 46%),
    linear-gradient(135deg, var(--color-soft-mint) 0%, var(--color-warm-white) 58%, #ecffef 100%);
}

.court-line,
.court-line-wide {
  position: absolute;
  width: 72%;
  height: 3px;
  background: rgba(53, 200, 90, 0.6);
  transform: rotate(-18deg);
}

.fallback-player {
  width: 78px;
  height: 112px;
  border-radius: 48px 48px 20px 20px;
  background: var(--color-navy-secondary);
  transform: rotate(-10deg);
}

.hero-panel {
  position: absolute;
  z-index: 4;
  left: clamp(12px, 2.3vw, 34px);
  right: auto;
  bottom: clamp(20px, 2.4vw, 34px);
  width: clamp(300px, 41%, 356px);
  border: 1px solid rgba(16, 32, 51, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 18px 34px rgba(16, 32, 51, 0.18);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.hero-story-card {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  width: min(72%, 444px);
  margin: 0;
  border-color: rgba(51, 135, 255, 0.18);
  border-radius: 14px;
  padding: 16px 18px 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 36px rgba(16, 32, 51, 0.11);
}

.hero-story-card::before {
  position: absolute;
  inset: 0 0 auto;
  z-index: 1;
  height: 6px;
  background: linear-gradient(90deg, var(--color-court-blue), var(--color-action-primary) 62%, var(--color-rally-yellow));
  content: "";
}

.hero-story-portrait {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(16, 32, 51, 0.1);
  border-radius: 12px;
  aspect-ratio: 1;
  background: rgba(51, 135, 255, 0.08);
}

.hero-story-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
}

.hero-story-card figcaption {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.hero-story-card blockquote {
  margin: 0;
  color: var(--color-navy-primary);
  font-size: clamp(1.08rem, 1.32vw, 1.24rem);
  font-weight: 800;
  line-height: 1.2;
  text-wrap: balance;
}

.hero-outcome-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 2px 0 0;
  padding: 0;
  list-style: none;
}

.hero-outcome-strip li {
  border: 1px solid rgba(0, 124, 112, 0.16);
  border-radius: 999px;
  background: rgba(0, 240, 208, 0.08);
  color: #056b61;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
  padding: 7px 9px;
}

.hero-story-card strong {
  color: var(--color-navy-primary);
  font-weight: var(--type-meta);
  line-height: 1.1;
}

.leagues-page .hero-subhead strong {
  color: var(--color-navy-primary);
  font-weight: 800;
}

.league-mobile-quote-card {
  display: none;
}

.court-mission-card {
  position: relative;
  padding: 0 12px 12px;
}

.court-mission-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 0;
  background: transparent;
  content: "";
}

.mission-topline {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 -12px 12px;
  border-bottom: 0;
  background:
    linear-gradient(135deg, rgba(28, 50, 75, 0.98), rgba(16, 32, 51, 0.98)),
    var(--color-navy-primary);
  padding: 13px 12px 12px;
}

.mission-topline::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-action-primary), var(--color-court-green) 72%, var(--color-rally-yellow));
  content: "";
}

.mission-date,
.mission-time,
.mission-kicker,
.mission-status {
  font-size: var(--type-card-label-size);
  font-weight: var(--type-label);
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.mission-date {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.9);
}

.mission-date::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-rally-yellow);
  box-shadow: 0 0 0 5px rgba(247, 225, 43, 0.16);
  content: "";
}

.mission-time {
  border-radius: 999px;
  background: var(--color-action-primary);
  padding: 5px 9px;
  color: #061a18;
  box-shadow: 0 8px 16px rgba(0, 240, 208, 0.18);
  text-align: right;
}

.mission-status {
  border-radius: 999px;
  background: rgba(0, 240, 208, 0.16);
  padding: 5px 9px;
  color: #056b61;
}

.mission-status-mobile {
  display: none;
}

.mission-title-block {
  margin-bottom: 8px;
  padding: 0 2px;
}

.mission-kicker {
  margin-bottom: 3px;
}

.mission-title-block h2 {
  margin-bottom: 0;
  font-size: clamp(1.14rem, 1.45vw, 1.34rem);
  font-weight: var(--type-card-title);
  line-height: 1.08;
}

.mission-title-block p {
  margin: 0;
  color: var(--color-navy-secondary);
  font-size: 0.83rem;
  font-weight: var(--type-copy);
  line-height: 1.34;
}

.mission-goal {
  display: grid;
  gap: 5px;
  margin-bottom: 10px;
  border: 1px solid rgba(16, 32, 51, 0.1);
  border-radius: 10px;
  background: rgba(233, 255, 243, 0.58);
  padding: 10px 11px;
}

.mission-goal span {
  color: #056b61;
  font-size: var(--type-card-label-size);
  font-weight: var(--type-meta);
  letter-spacing: 0.025em;
  line-height: 1;
  text-transform: uppercase;
}

.mission-goal strong {
  color: var(--color-navy-primary);
  font-size: 0.96rem;
  font-weight: var(--type-copy-strong);
  line-height: 1.16;
}

.mission-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  border-top: 1px solid rgba(16, 32, 51, 0.1);
  padding-top: 8px;
}

.mission-footer div {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 8px;
  align-items: start;
}

.mission-check {
  position: relative;
  width: 15px;
  height: 15px;
  margin-top: 2px;
  border: 2px solid rgba(34, 216, 79, 0.78);
  border-radius: 5px;
  background: rgba(34, 216, 79, 0.12);
}

.mission-check::after {
  position: absolute;
  left: 3px;
  top: 1px;
  width: 5px;
  height: 8px;
  border-right: 2px solid var(--color-court-green);
  border-bottom: 2px solid var(--color-court-green);
  transform: rotate(40deg);
  content: "";
}

.mission-footer p {
  margin: 0;
  color: var(--color-navy-primary);
  font-size: 0.78rem;
  font-weight: var(--type-copy);
  line-height: 1.28;
}

.mission-footer strong {
  color: var(--color-navy-primary);
  font-size: 0.78rem;
  font-weight: var(--type-copy-strong);
}

.hero-secondary-mobile {
  display: none;
}

.product-panel,
.quote-card,
.expert-card {
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-panel);
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.product-panel {
  padding: clamp(20px, 3vw, 28px);
  box-shadow: var(--shadow-panel);
}

.product-panel h2 {
  font-size: clamp(1.7rem, 4vw, 2.35rem);
  line-height: 1.05;
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.panel-kicker,
.panel-time,
.status-pill {
  color: #056b61;
  font-size: 0.76rem;
  font-weight: var(--type-meta);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.panel-time,
.status-pill {
  border-radius: 999px;
  background: var(--color-soft-mint);
  padding: 6px 10px;
}

.proof-list {
  display: grid;
  gap: 14px;
  margin: 0;
}

.proof-list div {
  border-top: 1px solid var(--color-border-subtle);
  padding-top: 12px;
}

.proof-list dt,
.workout-meta span,
.phase-preview span {
  color: var(--color-slate-muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.proof-list dd {
  margin: 3px 0 0;
  color: var(--color-navy-primary);
  font-weight: 800;
}

.section-intro {
  max-width: 760px;
  margin-bottom: clamp(24px, 4vw, 40px);
}

.section-intro.compact {
  max-width: 680px;
  margin-bottom: 24px;
}

.workout-section {
  position: relative;
  isolation: isolate;
  max-width: 1240px;
}

.workout-section::before {
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  background: var(--color-white);
  content: "";
  transform: translateX(-50%);
}

.workout-section .section-intro {
  max-width: 780px;
  margin-bottom: clamp(22px, 3vw, 30px);
}

.plan-model-section {
  max-width: none;
  background: linear-gradient(180deg, #fffefa 0%, #fffdf6 100%);
  padding-top: clamp(64px, 7vw, 88px);
  padding-bottom: clamp(64px, 7vw, 88px);
  position: relative;
}

.plan-model-section::before {
  display: none;
}

.plan-model-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 3vw, 34px) clamp(36px, 5vw, 68px);
  align-items: center;
  max-width: var(--content-max);
  margin-left: auto;
  margin-right: auto;
}

.plan-model-copy {
  align-self: center;
  margin-bottom: 0;
}

.plan-model-copy h2 {
  max-width: 640px;
  margin-bottom: 14px;
  font-size: clamp(2.25rem, 3.35vw, 3.15rem);
  line-height: 1.05;
}

.plan-model-copy p:not(.eyebrow) {
  max-width: 610px;
  font-size: clamp(1rem, 1.18vw, 1.12rem);
  line-height: 1.48;
}

.plan-model-bridge {
  margin-top: 12px;
  color: var(--color-navy-secondary);
  font-size: 0.92rem;
  font-weight: var(--type-copy-strong);
  line-height: 1.36;
}

.week-plan-card {
  position: relative;
  overflow: hidden;
  grid-column: 2;
  grid-row: 1;
  justify-self: stretch;
  width: 100%;
  max-width: none;
  border: 1px solid rgba(51, 135, 255, 0.22);
  border-radius: 10px;
  background: var(--color-white);
  padding: 18px 0 14px;
  box-shadow:
    0 12px 26px rgba(16, 32, 51, 0.055),
    0 0 22px rgba(51, 135, 255, 0.07);
}

.week-plan-card::before {
  display: none;
}

.week-plan-card::after {
  display: none;
}

.week-plan-header {
  position: relative;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin: 0 clamp(18px, 2.2vw, 24px) 24px;
}

.week-plan-header span {
  color: #155ea7;
  font-size: var(--type-card-label-size);
  font-weight: var(--type-meta);
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.week-plan-header strong {
  color: var(--color-navy-secondary);
  font-size: 0.84rem;
  font-weight: var(--type-meta);
  line-height: 1.2;
  text-align: right;
}

.week-plan-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0 clamp(18px, 2.2vw, 24px);
  list-style: none;
  counter-reset: plan-workout;
  position: relative;
}

.week-plan-strip::before {
  position: absolute;
  left: calc(clamp(18px, 2.2vw, 24px) + 18px);
  right: calc(clamp(18px, 2.2vw, 24px) + 18px);
  top: 17px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-action-primary), var(--color-court-blue) 34%, var(--color-court-green) 72%, var(--color-rally-yellow));
  content: "";
}

.week-plan-strip li {
  position: relative;
  display: grid;
  gap: 7px;
  align-content: start;
  min-height: 150px;
  padding-top: 46px;
  counter-increment: plan-workout;
}

.week-plan-strip li::before {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--color-action-primary);
  color: #061a18;
  content: counter(plan-workout);
  font-size: 0.78rem;
  font-weight: var(--type-label);
  box-shadow: 0 0 0 8px rgba(0, 240, 208, 0.12);
}

.week-plan-strip li:nth-child(2)::before {
  background: var(--color-court-blue);
  color: var(--color-white);
  box-shadow: 0 0 0 7px rgba(51, 135, 255, 0.12);
}

.week-plan-strip li:nth-child(3)::before {
  background: var(--color-court-green);
  color: #062a16;
  box-shadow: 0 0 0 7px rgba(34, 216, 79, 0.1);
}

.week-plan-strip li:nth-child(4)::before {
  background: var(--color-rally-yellow);
  color: var(--color-navy-primary);
  box-shadow: 0 0 0 7px rgba(247, 225, 43, 0.14);
}

.week-plan-mode {
  color: #155ea7;
  font-size: var(--type-card-label-size);
  font-weight: var(--type-meta);
  letter-spacing: 0.035em;
  line-height: 1.1;
  text-transform: uppercase;
}

.week-plan-day {
  color: var(--color-slate-muted);
  font-size: 0.78rem;
  font-weight: var(--type-copy);
  line-height: 1.15;
}

.week-plan-strip strong {
  color: var(--color-navy-primary);
  font-size: 0.98rem;
  font-weight: var(--type-card-title);
  line-height: 1.14;
}

.week-plan-strip small {
  color: var(--color-slate-primary);
  font-size: 0.78rem;
  font-weight: var(--type-copy);
  line-height: 1.36;
}

.early-proof-quote {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 14px clamp(18px, 2.2vw, 24px) 0;
  border-top: 1px solid rgba(51, 135, 255, 0.18);
  padding: 13px 0 0;
}

.early-proof-quote > span {
  flex: 0 0 auto;
  color: #155ea7;
  padding: 0;
  font-size: var(--type-card-label-size);
  font-weight: var(--type-meta);
  letter-spacing: 0.035em;
  line-height: 1;
  text-transform: uppercase;
}

.early-proof-quote blockquote {
  margin: 0;
  color: var(--color-navy-primary);
  font-size: 0.9rem;
  font-weight: var(--type-copy);
  line-height: 1.34;
}

.early-proof-quote blockquote strong {
  color: #08766c;
  font-weight: var(--type-copy-strong);
}

.transfer-plan-card .week-plan-header {
  margin-bottom: 9px;
}

.transfer-plan-card .week-plan-header strong {
  color: var(--color-navy-primary);
  font-size: 0.92rem;
  font-weight: var(--type-copy-strong);
}

.transfer-plan-card {
  --feature-accent: var(--color-action-primary);
  --feature-accent-soft: rgba(0, 240, 208, 0.08);
}

.transfer-plan-card.is-footwork {
  --feature-accent: var(--color-action-primary);
  --feature-accent-soft: rgba(0, 240, 208, 0.08);
}

.transfer-plan-card.is-strength {
  --feature-accent: var(--color-court-blue);
  --feature-accent-soft: rgba(51, 135, 255, 0.08);
}

.transfer-plan-card.is-core {
  --feature-accent: var(--color-court-green);
  --feature-accent-soft: rgba(34, 216, 79, 0.08);
}

.transfer-plan-card.is-balance {
  --feature-accent: var(--color-rally-yellow);
  --feature-accent-soft: rgba(247, 225, 43, 0.1);
}

.transfer-plan-feature {
  position: relative;
  display: block;
  margin: 0 clamp(14px, 1.7vw, 18px);
  overflow: hidden;
  border: 1px solid rgba(0, 240, 208, 0.2);
  border-radius: 16px 16px 10px 10px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), var(--feature-accent-soft)),
    var(--color-white);
  box-shadow:
    0 10px 22px rgba(16, 32, 51, 0.06),
    0 0 0 1px rgba(255, 255, 255, 0.72);
}

.transfer-plan-feature::before {
  position: absolute;
  z-index: 2;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--feature-accent);
  content: "";
}

.transfer-plan-feature-media {
  position: relative;
  aspect-ratio: 4 / 3;
  margin: 0;
  overflow: hidden;
  background: #eef8ff;
}

.transfer-plan-feature-media img,
.transfer-plan-feature-media video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.transfer-plan-feature-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  transition: opacity 220ms ease;
}

.transfer-plan-feature-video.is-active {
  z-index: 1;
  opacity: 1;
}

.transfer-plan-list {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(8px, 1vw, 12px);
  margin: -1px clamp(14px, 1.7vw, 18px) 0;
  padding: clamp(9px, 1.1vw, 12px);
  border: 1px solid rgba(51, 135, 255, 0.2);
  border-top: 0;
  border-radius: 0 0 18px 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(245, 252, 255, 0.96)),
    var(--color-white);
  box-shadow:
    0 16px 26px rgba(16, 32, 51, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  list-style: none;
}

.transfer-plan-item {
  --transfer-accent: var(--color-action-primary);
  --transfer-accent-soft: rgba(0, 240, 208, 0.08);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(16, 32, 51, 0.12);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 252, 255, 0.94)),
    var(--color-white);
  padding: 0;
  box-shadow: inset 0 -1px 0 rgba(16, 32, 51, 0.05);
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.transfer-plan-item::before {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 6px;
  display: block;
  height: 3px;
  border-radius: 999px;
  background: var(--transfer-accent);
  content: "";
  opacity: 0;
  transform: scaleX(0.72);
  transform-origin: center;
  transition: opacity 180ms ease, transform 180ms ease;
  pointer-events: none;
}

.transfer-plan-item:nth-child(2) {
  --transfer-accent: var(--color-court-blue);
  --transfer-accent-soft: rgba(51, 135, 255, 0.08);
}

.transfer-plan-item:nth-child(3) {
  --transfer-accent: var(--color-court-green);
  --transfer-accent-soft: rgba(34, 216, 79, 0.08);
}

.transfer-plan-item:nth-child(4) {
  --transfer-accent: var(--color-rally-yellow);
  --transfer-accent-soft: rgba(247, 225, 43, 0.1);
}

.transfer-plan-item.is-active {
  border-color: color-mix(in srgb, var(--transfer-accent) 34%, rgba(16, 32, 51, 0.12));
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 252, 255, 0.94)),
    var(--color-white);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.68);
}

.transfer-plan-item.is-active::before {
  opacity: 1;
  transform: scaleX(1);
}

.transfer-plan-control {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  min-height: 38px;
  padding: 8px 12px 11px;
  text-align: center;
}

.transfer-plan-control:focus-visible {
  outline: 3px solid rgba(0, 240, 208, 0.42);
  outline-offset: -3px;
}

.transfer-plan-item.is-active .transfer-plan-control {
  padding-top: 8px;
  padding-bottom: 11px;
}

.transfer-plan-copy {
  display: block;
  min-width: 0;
}

.transfer-plan-flow {
  display: block;
  min-width: 0;
}

.transfer-plan-flow span {
  display: block;
  color: var(--color-navy-secondary);
  font-size: 0.68rem;
  font-weight: var(--type-meta);
  letter-spacing: 0.02em;
  line-height: 1.1;
  text-transform: uppercase;
}

.transfer-plan-item.is-active .transfer-plan-flow span {
  color: var(--color-navy);
}

.transfer-section {
  background:
    linear-gradient(180deg, #ffffff 0%, rgba(245, 251, 255, 0.78) 100%),
    var(--color-white);
}

.transfer-section-inner {
  max-width: var(--content-max);
  margin: 0 auto;
}

.transfer-section-header {
  margin-bottom: clamp(24px, 3vw, 38px);
}

.transfer-section-copy {
  width: min(100%, var(--content-max));
  max-width: var(--content-max);
}

.transfer-section-copy h2 {
  max-width: var(--content-max);
  margin-bottom: 18px;
  font-size: clamp(2.18rem, 3.5vw, 3.35rem);
  line-height: 1.05;
}

.transfer-section-copy p:not(.eyebrow) {
  max-width: 780px;
}

.landing-page .transfer-section-header {
  text-align: center;
}

.landing-page .transfer-section-copy {
  margin-left: auto;
  margin-right: auto;
}

.landing-page .transfer-section-copy h2 {
  margin-left: auto;
  margin-right: auto;
}

.landing-page .transfer-section-copy p:not(.eyebrow) {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.transfer-mobile-proof {
  display: none;
}

.transfer-matchcut {
  --transfer-active: var(--color-action-primary);
  display: grid;
  gap: 0;
  justify-self: center;
  width: min(100%, 1120px);
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  box-shadow: none;
}

.transfer-matchcut[data-active-transfer="rotation"] {
  --transfer-active: var(--color-court-blue);
}

.transfer-matchcut[data-active-transfer="getlow"] {
  --transfer-active: var(--color-court-green);
}

.transfer-matchcut[data-active-transfer="strength"] {
  --transfer-active: var(--color-rally-yellow);
}

.transfer-matchcut-stage {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 520px));
  gap: clamp(28px, 4vw, 56px);
  align-items: stretch;
  justify-content: center;
  justify-self: center;
  width: 100%;
  box-sizing: border-box;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  box-shadow: none;
}

.transfer-matchcut-panel {
  display: grid;
  justify-self: center;
  min-width: 0;
  width: 100%;
  max-width: 520px;
}

.transfer-home-panel {
  align-content: start;
}

.transfer-court-panel {
  align-content: start;
}

.transfer-panel-label {
  color: #155ea7;
  font-size: var(--type-card-label-size);
  font-weight: var(--type-meta);
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.transfer-matchcut-media {
  position: relative;
  display: grid;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(51, 135, 255, 0.22);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0)),
    #eef8ff;
  box-shadow: 0 18px 36px rgba(16, 32, 51, 0.08);
}

.transfer-matchcut-media img,
.transfer-matchcut-media video {
  grid-column: 1;
  grid-row: 1;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  object-position: 50% 44%;
}

.transfer-matchcut-media video {
  position: relative;
  width: 100%;
  height: auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease;
}

.transfer-home-media img,
.transfer-home-media video {
  object-position: 50% 43%;
  transform: scale(1.04);
}

.transfer-matchcut-media.has-motion video.is-active {
  opacity: 1;
}

.transfer-matchcut-media.has-motion img {
  opacity: 0;
}

.transfer-court-media video {
  object-fit: cover;
  object-position: center;
}

.transfer-court-media img {
  object-position: center;
}

.transfer-replace-note {
  display: none;
}

.transfer-media-footer {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 3px;
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid rgba(16, 32, 51, 0.08);
  padding: 9px 11px 10px;
}

.transfer-media-footer strong {
  color: var(--color-navy-primary);
  font-size: clamp(0.94rem, 1.05vw, 1.06rem);
  font-weight: var(--type-card-title);
  line-height: 1.08;
  text-wrap: balance;
}

.transfer-media-footer small {
  display: block;
  max-width: 440px;
  color: var(--color-slate-primary);
  font-size: clamp(0.8rem, 0.86vw, 0.88rem);
  font-weight: var(--type-copy);
  line-height: 1.32;
}

.transfer-phrase {
  display: none;
  justify-self: center;
  width: min(100%, 1028px);
  margin: -2px 0 0;
  color: rgba(21, 94, 167, 0.9);
  font-size: 0.76rem;
  font-weight: var(--type-copy-strong);
  line-height: 1.2;
}

.transfer-selector-group {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(8px, 1vw, 12px);
  justify-self: center;
  width: 100%;
  margin: 0 0 clamp(12px, 1.5vw, 18px);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  list-style: none;
}

.transfer-selector-item {
  --transfer-accent: var(--color-action-primary);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(16, 32, 51, 0.12);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 252, 255, 0.94)),
    var(--color-white);
  padding: 0;
  box-shadow: inset 0 -1px 0 rgba(16, 32, 51, 0.05);
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.transfer-selector-item::before {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 6px;
  display: block;
  height: 3px;
  border-radius: 999px;
  background: var(--transfer-accent);
  content: "";
  opacity: 0;
  transform: scaleX(0.72);
  transform-origin: center;
  transition: opacity 180ms ease, transform 180ms ease;
  pointer-events: none;
}

.transfer-selector-item:nth-child(2) {
  --transfer-accent: var(--color-court-blue);
}

.transfer-selector-item:nth-child(3) {
  --transfer-accent: var(--color-court-green);
}

.transfer-selector-item:nth-child(4) {
  --transfer-accent: var(--color-rally-yellow);
}

.transfer-selector-item.is-active {
  border-color: color-mix(in srgb, var(--transfer-accent) 34%, rgba(16, 32, 51, 0.12));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.68);
}

.transfer-selector-item.is-active::before {
  opacity: 1;
  transform: scaleX(1);
}

.transfer-selector {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 38px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--color-navy-secondary);
  cursor: pointer;
  padding: 8px 12px 11px;
  font: inherit;
  font-size: 0.68rem;
  font-weight: var(--type-meta);
  letter-spacing: 0.02em;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
}

.transfer-selector.is-active {
  color: var(--color-navy);
}

.transfer-selector:focus-visible {
  outline: 3px solid rgba(0, 240, 208, 0.42);
  outline-offset: -3px;
}

@media (prefers-reduced-motion: reduce) {
  .transfer-plan-item,
  .transfer-plan-feature-media img,
  .transfer-plan-feature-media video {
    transition: none;
  }
}

.movement-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  max-width: none;
  background:
    radial-gradient(circle at 84% 28%, rgba(0, 240, 208, 0.22), transparent 26%),
    linear-gradient(90deg, #ffffff 0 52%, var(--color-court-blue) 52% 100%);
}

.movement-section .section-intro,
.movement-proof-layout {
  max-width: var(--content-max);
  margin-left: auto;
  margin-right: auto;
}

.movement-section .section-intro {
  max-width: 960px;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
}

.movement-section .section-intro h2 {
  font-weight: var(--type-section-title);
  margin-bottom: 14px;
}

.movement-section .section-intro p {
  max-width: 920px;
  color: var(--color-slate-primary);
  font-size: 1.1rem;
  line-height: 1.58;
}

.movement-intro-copy {
  display: grid;
  max-width: 960px;
}

.movement-intro-copy p {
  max-width: 920px;
  margin-bottom: 0;
  color: var(--color-slate-primary);
  font-size: 1.04rem;
  font-weight: 500;
  line-height: 1.5;
}

.focus-section {
  max-width: none;
  padding-top: clamp(36px, 4.4vw, 54px);
  padding-bottom: clamp(36px, 4.4vw, 54px);
  background: linear-gradient(180deg, #fffefa 0%, #fffdf6 100%);
}

.focus-section .section-intro {
  max-width: none;
  margin-bottom: 0;
  text-align: center;
}

.focus-section .section-intro h2 {
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(2.15rem, 3vw, 2.85rem);
  line-height: 1.06;
}

.focus-section .movement-intro-copy {
  justify-items: center;
  max-width: none;
}

.focus-section .movement-intro-copy p {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.focus-section .section-intro .movement-lead {
  margin-bottom: 0;
  color: var(--color-navy-primary);
  font-size: clamp(1.4rem, 2vw, 1.72rem);
  font-weight: var(--type-card-title);
  line-height: 1.18;
  text-wrap: balance;
}

.workout-section,
.proof-section {
  padding-top: clamp(60px, 7vw, 88px);
}

.focus-section .eyebrow,
.workout-section .eyebrow {
  color: var(--color-slate-muted);
}

.movement-grid,
.workout-layout,
.proof-layout,
.reassurance-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.8fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}

.workout-section .workout-layout {
  grid-template-columns: minmax(0, 1.55fr) minmax(340px, 0.72fr);
  gap: clamp(18px, 2.6vw, 34px);
  align-items: center;
}

.reassurance-layout {
  grid-template-columns: 1fr;
  align-items: stretch;
  min-width: 0;
}

.movement-proof-layout {
  position: relative;
  width: 100%;
  max-width: var(--content-max);
}

.movement-system-layout {
  display: grid;
  gap: 0;
  min-width: 0;
}

.movement-statement {
  max-width: 640px;
}

.movement-body {
  display: grid;
  max-width: var(--content-max);
  min-width: 0;
}

.movement-proof-feature {
  position: relative;
  display: grid;
  min-width: 0;
  max-width: var(--content-max);
  margin: 0;
  padding: 0;
}

.court-diagram,
.compact-court-goal,
.final-court {
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-panel);
  background: linear-gradient(135deg, rgba(233, 255, 243, 0.86), rgba(247, 255, 249, 0.98));
  padding: clamp(18px, 3vw, 28px);
}

.mini-court {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border: 3px solid rgba(53, 200, 90, 0.52);
  border-radius: 16px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.78)),
    repeating-linear-gradient(90deg, rgba(53, 200, 90, 0.08), rgba(53, 200, 90, 0.08) 14px, transparent 14px, transparent 28px);
}

.mini-court.compact {
  min-height: 220px;
}

.net,
.kitchen {
  position: absolute;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(16, 32, 51, 0.2);
}

.net {
  top: 50%;
}

.kitchen {
  top: 34%;
  box-shadow: 0 112px 0 rgba(16, 32, 51, 0.12);
}

.path {
  position: absolute;
  display: block;
  height: 5px;
  border-radius: 999px;
  background: var(--color-action-primary);
  transform-origin: left center;
}

.path-one {
  left: 22%;
  top: 56%;
  width: 36%;
  transform: rotate(-20deg);
}

.path-two {
  left: 48%;
  top: 43%;
  width: 28%;
  background: var(--color-court-green);
  transform: rotate(32deg);
}

.ball-dot {
  position: absolute;
  right: 18%;
  top: 33%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-rally-yellow);
  box-shadow: 0 0 0 8px rgba(245, 214, 41, 0.18);
}

.step {
  position: absolute;
  border-radius: 999px;
  background: var(--color-white);
  border: 1px solid var(--color-border-subtle);
  padding: 8px 10px;
  color: var(--color-navy-primary);
  font-size: 0.82rem;
  font-weight: var(--type-meta);
}

.step-start {
  left: 12%;
  top: 60%;
}

.step-reach {
  right: 14%;
  top: 42%;
}

.step-reset {
  left: 47%;
  bottom: 18%;
}

.outcome-list,
.check-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.outcome-list li,
.check-list li {
  position: relative;
  padding-left: 28px;
}

.outcome-list li::before,
.check-list li::before {
  position: absolute;
  left: 0;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-action-primary);
  content: "";
}

.outcome-list span,
.check-list li {
  color: var(--color-navy-primary);
  font-weight: var(--type-meta);
}

.outcome-list p {
  margin: 4px 0 0;
  color: var(--color-slate-primary);
}

.quote-card {
  margin: 24px 0 0;
  padding: 22px;
  box-shadow: var(--shadow-soft);
}

.quote-card blockquote {
  margin: 0 0 12px;
  color: var(--color-navy-primary);
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.35;
}

.quote-card figcaption,
.quote-card span {
  color: #056b61;
  font-size: 0.82rem;
  font-weight: var(--type-meta);
}

.movement-video-proof {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.82fr);
  gap: 0;
  align-items: stretch;
  min-width: 0;
  width: 100%;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.movement-proof-copy {
  display: grid;
  gap: clamp(13px, 1.6vw, 18px);
  align-content: center;
  min-width: 0;
  padding: clamp(28px, 4vw, 56px);
  background: transparent;
}

.movement-video-proof-centered {
  justify-self: stretch;
  z-index: 1;
  width: 100%;
  margin-top: 0;
}

.video-frame {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 0;
  margin-top: 0;
  overflow: hidden;
  padding: clamp(24px, 4vw, 46px);
  background: transparent;
  transition: transform 180ms ease;
}

.video-frame::before {
  display: none;
}

.video-frame::after {
  display: none;
}

.video-frame video {
  position: relative;
  z-index: 1;
  width: min(100%, 450px);
  aspect-ratio: 9 / 16;
  height: auto;
  max-height: min(66vh, 680px);
  border: 1px solid rgba(16, 32, 51, 0.12);
  border-radius: 14px;
  background: var(--color-white);
  box-shadow:
    0 22px 44px rgba(16, 32, 51, 0.16),
    0 0 0 5px rgba(0, 240, 208, 0.08);
  object-fit: cover;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.video-frame:hover,
.video-frame:focus-within {
  transform: translateY(-2px);
}

.video-frame:hover::before,
.video-frame:focus-within::before {
  border-color: rgba(20, 217, 195, 0.36);
  transform: rotate(-1.4deg);
}

.video-frame:hover video,
.video-frame:focus-within video {
  border-color: rgba(20, 217, 195, 0.34);
  box-shadow: 0 22px 42px rgba(16, 32, 51, 0.17);
}

.movement-video-proof figcaption {
  position: relative;
  display: grid;
  align-content: center;
  justify-self: start;
  max-width: 390px;
  gap: 6px;
  border: 1px solid rgba(51, 135, 255, 0.28);
  border-radius: 10px;
  background: var(--color-white);
  padding: clamp(16px, 1.45vw, 18px) clamp(16px, 1.65vw, 20px);
  box-shadow:
    0 0 0 1px rgba(0, 240, 208, 0.07),
    0 14px 30px rgba(16, 32, 51, 0.06),
    0 0 24px rgba(51, 135, 255, 0.08);
}

.movement-video-proof figcaption::after {
  display: block;
  width: 30px;
  height: 3px;
  margin-bottom: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-action-primary), var(--color-court-green) 78%, var(--color-rally-yellow));
  content: "";
}

.movement-video-proof figcaption > * {
  position: relative;
  z-index: 1;
}

.movement-video-proof figcaption > span {
  color: #155ea7;
  font-size: var(--type-card-label-size);
  font-weight: var(--type-meta);
  letter-spacing: 0.035em;
  line-height: 1;
  text-transform: uppercase;
}

.movement-video-proof strong {
  display: block;
  max-width: 340px;
  color: var(--color-navy-primary);
  font-size: clamp(1.1rem, 1.34vw, 1.24rem);
  font-weight: var(--type-card-title);
  line-height: 1.22;
  text-wrap: balance;
}

.movement-video-proof figcaption > p {
  max-width: 360px;
  margin: 0;
  color: var(--color-slate-primary);
  font-size: 0.86rem;
  font-weight: 720;
  line-height: 1.42;
}

.reassurance-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  max-width: none;
  background:
    linear-gradient(135deg, rgba(51, 135, 255, 0.1), rgba(0, 240, 208, 0.035) 44%, rgba(255, 255, 255, 0) 70%),
    linear-gradient(180deg, #f8fcff 0%, #ffffff 100%);
}

.reassurance-section::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(51, 135, 255, 0.12) 1px, transparent 1px),
    linear-gradient(180deg, rgba(34, 216, 79, 0.1) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: linear-gradient(120deg, rgba(0, 0, 0, 0.9), transparent 58%);
  opacity: 0.42;
  content: "";
  pointer-events: none;
}

.clarity-section {
  max-width: none;
  background:
    linear-gradient(180deg, var(--color-white), #fbfcfb);
}

.reassurance-section > *,
.clarity-section > * {
  max-width: var(--content-max);
  margin-left: auto;
  margin-right: auto;
}

.reassurance-section .section-intro {
  max-width: var(--content-max);
  margin-bottom: clamp(18px, 2.5vw, 30px);
}

.reassurance-section .section-intro h2 {
  margin-bottom: 12px;
}

.body-section-recognition {
  max-width: 760px;
  margin: 0;
  color: var(--color-slate-primary);
  font-size: clamp(1.02rem, 1.4vw, 1.16rem);
  font-weight: 650;
  line-height: 1.48;
}

.body-aware-system {
  display: grid;
  gap: clamp(14px, 1.8vw, 20px);
  width: 100%;
  min-width: 0;
}

.body-proof-module {
  border: 1px solid rgba(51, 135, 255, 0.13);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  min-width: 0;
  max-width: 100%;
  box-shadow:
    0 8px 18px rgba(16, 32, 51, 0.035),
    0 1px 0 rgba(255, 255, 255, 0.82) inset;
}

.body-proof-card {
  gap: clamp(16px, 2vw, 24px);
}

.body-proof-step {
  display: grid;
  gap: clamp(9px, 1vw, 12px);
  min-width: 0;
}

.body-proof-copy {
  align-items: start;
}

.body-step-label {
  margin: 0;
  color: #056b61;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
}

.body-proof-heading {
  display: grid;
  gap: 0;
  min-width: 0;
}

.body-panel-kicker {
  color: #056b61;
  font-size: 0.72rem;
  font-weight: var(--type-meta);
  letter-spacing: 0.055em;
  line-height: 1;
  text-transform: uppercase;
}

.body-proof-header h3,
.body-proof-heading h3 {
  margin: 0;
  color: var(--color-navy-primary);
  font-size: clamp(1.22rem, 2vw, 1.72rem);
  font-weight: var(--type-card-title);
  letter-spacing: 0;
  line-height: 1.08;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.body-proof-header h2,
.body-proof-heading h2 {
  margin: 0;
  color: var(--color-navy-primary);
  font-size: clamp(1.22rem, 2vw, 1.72rem);
  font-weight: var(--type-card-title);
  letter-spacing: 0;
  line-height: 1.08;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.body-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: flex-start;
}

.body-support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(10px, 1.4vw, 14px);
  align-items: stretch;
}

.body-support-tile {
  position: relative;
  display: flex;
  min-height: clamp(64px, 7vw, 82px);
  align-items: center;
  border: 1px solid rgba(16, 32, 51, 0.11);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 252, 255, 0.96));
  color: var(--color-navy-primary);
  padding: clamp(14px, 1.6vw, 18px);
  font-size: clamp(1rem, 1.2vw, 1.13rem);
  font-weight: 760;
  line-height: 1.16;
  box-shadow:
    0 10px 20px rgba(16, 32, 51, 0.045),
    0 1px 0 rgba(255, 255, 255, 0.92) inset;
}

.body-support-tile::before {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  margin-right: 10px;
  border-radius: 999px;
  background: var(--color-court-green);
  box-shadow: 0 0 0 4px rgba(34, 216, 79, 0.12);
  content: "";
}

.body-support-tile.is-selected {
  border-color: rgba(0, 168, 148, 0.5);
  background:
    linear-gradient(135deg, rgba(0, 240, 208, 0.2), rgba(255, 255, 255, 0.98) 64%);
  box-shadow:
    0 0 0 3px rgba(0, 240, 208, 0.13),
    0 14px 26px rgba(16, 32, 51, 0.075);
}

.body-support-tile.is-selected::before {
  background: var(--color-action-primary);
  box-shadow: 0 0 0 4px rgba(0, 240, 208, 0.16);
}

.body-heading-break {
  display: inline;
}

.body-chip {
  display: inline-flex;
  max-width: 100%;
  min-height: 38px;
  align-items: center;
  border: 1px solid rgba(16, 32, 51, 0.12);
  border-radius: 999px;
  background: #ffffff;
  color: var(--color-navy-primary);
  padding: 8px 12px;
  font-size: 0.9rem;
  font-weight: 560;
  line-height: 1;
  white-space: normal;
  box-shadow: 0 6px 14px rgba(16, 32, 51, 0.035);
}

.body-chip.is-selected {
  border-color: rgba(0, 240, 208, 0.76);
  background: var(--color-action-primary);
  color: #061a18;
  box-shadow:
    0 0 0 4px rgba(0, 240, 208, 0.13),
    0 10px 18px rgba(16, 32, 51, 0.07);
}

.body-chip-more {
  border-style: dashed;
  background: rgba(16, 32, 51, 0.035);
  color: var(--color-navy-secondary);
  white-space: normal;
}

.body-proof-heading p,
.body-proof-reassurance,
.body-proof-footer,
.body-version-card p {
  margin: 0;
  color: var(--color-slate-primary);
  font-weight: 520;
  line-height: 1.42;
}

.body-proof-module {
  display: grid;
  gap: clamp(12px, 1.4vw, 16px);
  padding: clamp(14px, 1.6vw, 18px);
}

.body-proof-header {
  display: grid;
  gap: clamp(12px, 1.5vw, 16px);
}

.body-proof-heading p {
  max-width: 760px;
}

.body-proof-reassurance {
  max-width: none;
  border: 1px solid rgba(0, 168, 148, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.82);
  padding: clamp(12px, 1.4vw, 16px);
  color: var(--color-navy-secondary);
  font-size: clamp(0.98rem, 1.1vw, 1.05rem);
  font-weight: 680;
}

.body-proof-divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(16, 32, 51, 0.08), rgba(51, 135, 255, 0.18), rgba(16, 32, 51, 0.06));
}

.body-step-header {
  display: block;
}

.body-step-header p:not(.body-step-label) {
  margin: 0;
  color: var(--color-slate-primary);
  font-size: 0.92rem;
  font-weight: 650;
  line-height: 1.3;
}

.body-version-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.96fr) minmax(0, 0.96fr);
  gap: clamp(8px, 1.2vw, 12px);
  align-items: end;
}

.body-version-card {
  display: grid;
  grid-template-rows: auto auto;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(16, 32, 51, 0.075);
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 6px 14px rgba(16, 32, 51, 0.04);
}

.body-version-card-featured {
  border-color: rgba(0, 240, 208, 0.5);
  box-shadow:
    0 8px 18px rgba(16, 32, 51, 0.06),
    0 0 0 2px rgba(0, 240, 208, 0.08);
}

.body-version-video {
  position: relative;
  aspect-ratio: 16 / 10.5;
  overflow: hidden;
  background: var(--color-navy-primary);
}

.body-version-card:not(.body-version-card-featured) .body-version-video {
  aspect-ratio: 16 / 9.6;
}

.body-version-card-featured .body-version-video {
  aspect-ratio: 16 / 8.9;
  min-height: 0;
}

.body-version-video::after {
  position: absolute;
  inset: auto 0 0;
  height: 55%;
  background: linear-gradient(180deg, rgba(16, 32, 51, 0), rgba(16, 32, 51, 0.48));
  content: "";
  pointer-events: none;
}

.body-version-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
}

.body-version-video span {
  position: absolute;
  left: 10px;
  top: 10px;
  z-index: 1;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-navy-primary);
  padding: 6px 9px;
  font-size: 0.66rem;
  font-weight: var(--type-meta);
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.body-version-card-featured .body-version-video span {
  background: var(--color-action-primary);
  color: #061a18;
}

.body-version-card:not(.body-version-card-featured) .body-version-video span {
  background: rgba(255, 255, 255, 0.94);
  color: var(--color-navy-primary);
}

.body-version-card:not(.body-version-card-featured) {
  border-color: rgba(16, 32, 51, 0.06);
  box-shadow: none;
}

.body-version-card:not(.body-version-card-featured) .body-version-video,
.body-version-card:not(.body-version-card-featured) figcaption {
  opacity: 0.88;
}

.body-version-card figcaption {
  display: grid;
  gap: 5px;
  padding: 10px 12px 11px;
}

.body-version-card strong {
  color: var(--color-navy-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  font-weight: 650;
  line-height: 1.12;
}

.body-version-card p {
  color: var(--color-slate-primary);
  font-size: 0.8rem;
  font-weight: 520;
}

.body-proof-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-slate-primary);
  font-weight: 560;
}

.body-proof-footer::before {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--color-court-green);
  content: "";
}

.modification-showcase {
  display: grid;
  gap: clamp(12px, 1.6vw, 16px);
  align-items: start;
  overflow: visible;
  width: min(100%, 940px);
  margin-left: auto;
  margin-right: auto;
  padding: 0;
}

.progression-stack {
  position: relative;
  display: grid;
  grid-template-columns: minmax(160px, 0.72fr) minmax(0, 1.34fr) minmax(160px, 0.72fr);
  gap: clamp(14px, 2vw, 22px);
  align-items: center;
  width: 100%;
  min-height: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  margin: 0;
  padding: clamp(6px, 1vw, 10px) 0 0;
  box-shadow: none;
}

.progression-stack::before,
.progression-stack::after {
  position: absolute;
  z-index: 0;
  content: "";
  pointer-events: none;
}

.progression-stack::before {
  display: none;
}

.progression-stack::after {
  display: none;
}

.progression-moment {
  position: relative;
  z-index: 1;
  min-width: 0;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(16, 32, 51, 0.1);
  border-radius: 12px;
  background: var(--color-white);
  box-shadow:
    0 12px 26px rgba(16, 32, 51, 0.07),
    0 1px 0 rgba(255, 255, 255, 0.84) inset;
}

.progression-moment::before {
  display: none;
}

.progression-moment:nth-child(1),
.progression-moment:nth-child(3) {
  filter: saturate(0.95);
  transform: translateY(8px);
}

.progression-moment:nth-child(2) {
  z-index: 2;
  border-color: rgba(0, 240, 208, 0.58);
  border-radius: 16px;
  box-shadow:
    0 24px 52px rgba(16, 32, 51, 0.14),
    0 0 0 5px rgba(0, 240, 208, 0.13),
    0 2px 0 rgba(255, 255, 255, 0.9) inset;
}

.progression-moment:nth-child(2)::before {
  display: none;
}

.progression-moment:nth-child(1) {
  transform-origin: right center;
}

.progression-moment:nth-child(3) {
  transform-origin: left center;
}

.progression-video {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  margin: 8px 8px 0;
  border-radius: 10px;
  background: var(--color-navy-primary);
}

.progression-moment-supporting .progression-video {
  aspect-ratio: 16 / 11;
  margin: 7px 7px 0;
}

.progression-moment-featured .progression-video {
  aspect-ratio: 16 / 10;
  margin: 9px 9px 0;
}

.progression-video::after {
  position: absolute;
  inset: auto 0 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(16, 32, 51, 0), rgba(16, 32, 51, 0.56));
  content: "";
  pointer-events: none;
}

.progression-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
}

.progression-moment:nth-child(1) .progression-video video {
  object-position: 48% 43%;
}

.progression-moment:nth-child(2) .progression-video video {
  object-position: 50% 42%;
}

.progression-moment:nth-child(3) .progression-video video {
  object-position: 52% 43%;
}

.progression-video span {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 1;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-navy-primary);
  padding: 7px 9px;
  font-size: 0.7rem;
  font-weight: var(--type-meta);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.progression-moment:first-child .progression-video span {
  background: var(--color-rally-yellow);
  color: #061a18;
}

.progression-moment:nth-child(2) .progression-video span {
  border: 1px solid rgba(0, 240, 208, 0.42);
  background: var(--color-action-primary);
  color: #061a18;
}

.progression-moment figcaption {
  position: static;
  z-index: 1;
  display: grid;
  gap: 6px;
  align-items: start;
  padding: 12px 14px 14px;
  color: var(--color-navy-primary);
}

.progression-moment-supporting figcaption {
  padding: 10px 12px 11px;
}

.progression-moment-featured figcaption {
  padding: 14px 16px 14px;
}

.progression-moment figcaption > strong {
  color: var(--color-navy-primary);
  font-size: clamp(0.96rem, 1.1vw, 1.08rem);
  line-height: 1.08;
}

.progression-moment:nth-child(2) figcaption > strong {
  font-size: clamp(1.28rem, 1.75vw, 1.62rem);
}

.progression-moment figcaption span {
  color: var(--color-slate-primary);
  font-size: 0.82rem;
  font-weight: 720;
  line-height: 1.22;
}

.progression-moment-featured figcaption > span:not(.progression-mobile-label):not(.modification-transfer-line) {
  font-size: 0.96rem;
}

.progression-mobile-label {
  display: block;
  color: #056b61;
  font-size: 0.68rem;
  font-weight: var(--type-meta);
  letter-spacing: 0.045em;
  line-height: 1;
  text-transform: uppercase;
}

.modification-transfer-line {
  grid-column: 1 / -1;
  display: block;
  margin-top: 9px;
  border-top: 1px solid rgba(16, 32, 51, 0.1);
  padding-top: 9px;
  color: var(--color-slate-primary);
  font-size: 0.92rem;
  font-weight: 720;
  line-height: 1.32;
}

.modification-transfer-line strong {
  display: inline;
  color: #056b61;
  font-size: inherit;
  font-weight: 720;
  letter-spacing: 0.035em;
  line-height: inherit;
  text-transform: none;
}

.progression-mobile-detail {
  display: none;
}

.modification-proof-bar {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-items: center;
  width: 100%;
  max-width: 100%;
  margin: 0;
  border-top: 1px solid rgba(16, 32, 51, 0.08);
  padding: clamp(12px, 1.6vw, 16px) 0 0;
}

.modification-proof-bar::before,
.modification-proof-bar::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.modification-proof-bar::before {
  display: none;
  left: 2px;
  top: 18px;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--color-action-primary);
  box-shadow: 0 0 0 5px rgba(20, 217, 195, 0.1);
}

.modification-proof-bar::after {
  display: none;
}

.modification-proof-bar p {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 8px;
  margin: 0;
  border: 1px solid rgba(16, 32, 51, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.82);
  padding: 9px 10px;
  color: var(--color-slate-primary);
  font-size: 0.9rem;
  font-weight: 650;
  line-height: 1.3;
}

.modification-proof-bar p + p {
  border-left: 0;
}

.modification-proof-bar p::before {
  display: none;
}

.modification-proof-bar span {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  border: 1px solid rgba(34, 216, 79, 0.32);
  border-radius: 999px;
  background: rgba(34, 216, 79, 0.12);
  padding: 6px 9px;
  color: #066537;
  font-size: 0.72rem;
  font-weight: var(--type-meta);
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 6px 14px rgba(16, 32, 51, 0.04);
}

.body-tags {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 16px;
}

.body-tags span {
  position: relative;
  border-bottom: 1px solid rgba(220, 232, 229, 0.9);
  padding: 8px 0 8px 18px;
  color: var(--color-navy-primary);
  font-weight: 800;
}

.body-tags span::before {
  position: absolute;
  left: 0;
  top: 17px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-court-green);
  content: "";
}

.focus-builder {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(14px, 2vw, 20px);
  align-items: start;
  max-width: var(--content-max);
  margin-left: auto;
  margin-right: auto;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  box-shadow: none;
}

.focus-builder::before,
.focus-builder::after {
  display: none;
}

.focus-builder::after {
  inset: auto 22px 34%;
  height: 1px;
  border: 0;
  border-top: 1px dashed rgba(5, 107, 97, 0.22);
  border-radius: 0;
}

.focus-builder > * {
  position: relative;
  z-index: 1;
}

.focus-choice-panel {
  display: grid;
  gap: clamp(10px, 1.6vw, 16px);
}

.focus-selector-panel {
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  box-shadow: none;
}

.focus-selector-label {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin: 0 0 12px;
  border: 1px solid rgba(16, 32, 51, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  padding: 7px 11px;
  color: var(--color-navy-primary);
  font-size: var(--type-card-label-size);
  font-weight: var(--type-meta);
  letter-spacing: 0.025em;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 8px 16px rgba(16, 32, 51, 0.035);
}

.focus-selector-label::before {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--color-rally-yellow);
  box-shadow: 0 0 0 5px rgba(247, 225, 43, 0.12);
  content: "";
}

.focus-step-label {
  margin: 0 0 10px;
  color: var(--color-navy-primary);
  font-size: var(--type-card-label-size);
  font-weight: var(--type-meta);
  letter-spacing: 0.025em;
  line-height: 1.1;
  text-transform: uppercase;
}

.focus-step-label span {
  display: none;
}

.focus-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  align-items: stretch;
  width: 100%;
  max-width: 100%;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  box-shadow: none;
}

.focus-progress-panel > .focus-selector-panel {
  margin: 0;
}

.focus-progress-panel > .focus-selector-panel .focus-grid {
  width: 100%;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  box-shadow: none;
}

.focus-progress-panel > .focus-selector-panel .focus-tile {
  padding: 17px 54px 16px 18px;
}

.focus-tile {
  position: relative;
  min-height: 86px;
  overflow: hidden;
  border: 1px solid rgba(16, 32, 51, 0.12);
  border-radius: 12px;
  background: var(--color-white);
  padding: 10px 14px;
  color: var(--color-navy-primary);
  font: inherit;
  text-align: left;
  cursor: pointer;
  box-shadow: none;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.focus-tile::before {
  position: absolute;
  left: 0;
  right: auto;
  top: 0;
  bottom: 0;
  display: block;
  width: 4px;
  height: auto;
  border-radius: 12px 0 0 12px;
  background: rgba(20, 217, 195, 0);
  content: "";
  transition: background 180ms ease, width 180ms ease;
}

.focus-tile::after {
  position: absolute;
  right: 16px;
  top: 17px;
  display: none;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 999px;
  background: var(--color-action-primary);
  color: transparent;
  font-size: 0.78rem;
  font-weight: var(--type-label);
  line-height: 1;
  content: "";
}

.focus-tile:hover {
  transform: translateY(-1px);
  border-color: rgba(51, 135, 255, 0.28);
  background:
    linear-gradient(90deg, rgba(0, 240, 208, 0.035), rgba(255, 255, 255, 0) 58%),
    var(--color-white);
  box-shadow: 0 10px 22px rgba(16, 32, 51, 0.06);
}

.focus-tile.selected {
  border-color: rgba(0, 240, 208, 0.34);
  background: var(--color-white);
  color: var(--color-navy-primary);
  box-shadow:
    0 10px 22px rgba(16, 32, 51, 0.055),
    0 0 0 1px rgba(0, 240, 208, 0.1) inset;
  transform: translateY(-1px);
}

.focus-tile.selected::before {
  width: 6px;
  background: var(--color-action-primary);
  box-shadow: none;
}

.focus-tile.selected::after {
  display: grid;
  border: 2px solid rgba(255, 255, 255, 0.86);
  background: var(--color-action-primary);
  color: #061a18;
  content: "✓";
  box-shadow:
    0 0 0 5px rgba(0, 240, 208, 0.08),
    0 6px 12px rgba(16, 32, 51, 0.1);
}

.focus-tile span {
  display: block;
  max-width: none;
  margin-bottom: 8px;
  color: inherit;
  font-size: clamp(0.96rem, 1.12vw, 1.06rem);
  font-weight: var(--type-copy-strong);
  line-height: 1.12;
}

.focus-tile.selected span {
  max-width: none;
  color: var(--color-navy-primary);
}

.focus-tile strong {
  display: block;
  color: var(--color-slate-primary);
  font-size: 0.82rem;
  font-weight: var(--type-copy);
  line-height: 1.32;
}

.focus-tile.selected strong {
  color: var(--color-navy-secondary);
  font-weight: var(--type-copy-strong);
}

.focus-tile em {
  position: absolute;
  right: 58px;
  top: 20px;
  display: inline-flex;
  width: fit-content;
  max-width: calc(100% - 70px);
  margin: 0;
  border-radius: 999px;
  background: var(--color-rally-yellow);
  padding: 3px 7px;
  color: #061a18;
  font-size: 0.56rem;
  font-style: normal;
  font-weight: var(--type-meta);
  letter-spacing: 0.03em;
  line-height: 1;
  text-transform: uppercase;
}

.focus-selected-summary {
  display: none;
  max-width: 44rem;
  margin: 8px 0 0;
  color: var(--color-slate-primary);
  font-size: 0.95rem;
  font-weight: 680;
  line-height: 1.42;
}

.focus-preview {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: start;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  box-shadow: none;
  overflow: visible;
}

.focus-movement {
  position: relative;
  min-height: 0;
  aspect-ratio: 16 / 10.5;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(16, 32, 51, 0.26);
  border-radius: 12px;
  background: var(--color-navy-primary);
  box-shadow: 0 16px 28px rgba(16, 32, 51, 0.16);
}

.focus-movement video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
}

.focus-movement::after {
  position: absolute;
  inset: auto 0 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(16, 32, 51, 0), rgba(16, 32, 51, 0.72));
  content: "";
}

.focus-movement figcaption {
  position: absolute;
  z-index: 1;
  left: 14px;
  right: 14px;
  bottom: 12px;
  width: fit-content;
  max-width: calc(100% - 28px);
  border-radius: 999px;
  background: rgba(16, 32, 51, 0.74);
  color: var(--color-white);
  padding: 7px 10px;
  font-size: 0.82rem;
  font-weight: var(--type-meta);
  line-height: 1.15;
}

.focus-progress-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.68fr);
  gap: clamp(18px, 2.2vw, 28px);
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  box-shadow: none;
  min-width: 0;
}

.focus-progress-panel::before {
  display: none;
}

.focus-preview::before {
  display: none;
}

.focus-plan-kicker,
.focus-progress-panel h3,
.focus-progress-panel > p:not(.focus-plan-kicker) {
  position: relative;
  z-index: 1;
  grid-column: 1;
  margin-left: 0;
  margin-right: 0;
}

.focus-response-card {
  position: relative;
  display: grid;
  z-index: 1;
  grid-column: 2;
  grid-template-columns: 1fr;
  gap: 0;
  align-self: start;
  align-items: start;
  margin-top: 41px;
  overflow: hidden;
  border: 1px solid rgba(51, 135, 255, 0.24);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 1)),
    var(--color-white);
  padding: 0;
  box-shadow:
    0 12px 24px rgba(16, 32, 51, 0.045),
    0 0 20px rgba(51, 135, 255, 0.055);
}

.focus-response-card::before {
  position: absolute;
  inset: 0 0 auto;
  display: block;
  height: 5px;
  background: linear-gradient(90deg, var(--color-action-primary), var(--color-court-blue) 46%, var(--color-court-green) 80%, var(--color-rally-yellow));
  content: "";
}

.focus-response-card::after {
  display: none;
}

.focus-preview-strap {
  display: grid;
  gap: 7px;
  align-content: center;
  border-bottom: 1px solid rgba(51, 135, 255, 0.14);
  padding: clamp(17px, 1.7vw, 21px) clamp(16px, 1.65vw, 20px) 16px;
}

.focus-preview-strap span {
  color: #155ea7;
  font-size: 0.66rem;
  font-weight: var(--type-meta);
  letter-spacing: 0.06em;
  line-height: 1.08;
  text-transform: uppercase;
}

.focus-preview-strap > strong {
  display: block;
  color: var(--color-navy-primary);
  font-size: clamp(1.08rem, 1.34vw, 1.34rem);
  font-weight: var(--type-card-title);
  line-height: 1.08;
}

.focus-shapes {
  display: grid;
  gap: 11px;
  border-top: 0;
  padding: 14px clamp(16px, 1.65vw, 20px) clamp(16px, 1.65vw, 20px);
}

.focus-shapes span {
  color: #155ea7;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.045em;
  line-height: 1.08;
  text-transform: uppercase;
}

.focus-shapes ul {
  position: relative;
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.focus-shapes ul::before {
  position: absolute;
  left: 14px;
  top: 15px;
  bottom: 15px;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(0, 240, 208, 0.5), rgba(51, 135, 255, 0.32), rgba(34, 216, 79, 0.36));
  content: "";
}

.focus-shapes li {
  position: relative;
  margin: 0;
  min-height: 34px;
  border: 1px solid rgba(16, 32, 51, 0.075);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(0, 240, 208, 0.035), rgba(255, 255, 255, 0) 44%),
    var(--color-white);
  padding: 8px 10px 8px 42px;
  color: var(--color-navy-primary);
  font-size: 0.87rem;
  font-weight: 620;
  line-height: 1.25;
  box-shadow: none;
}

.focus-shapes li:nth-child(2) {
  background:
    linear-gradient(90deg, rgba(51, 135, 255, 0.035), rgba(255, 255, 255, 0) 44%),
    var(--color-white);
}

.focus-shapes li:nth-child(3) {
  background:
    linear-gradient(90deg, rgba(34, 216, 79, 0.035), rgba(255, 255, 255, 0) 44%),
    var(--color-white);
}

.focus-shapes li::before {
  position: absolute;
  left: 9px;
  top: 50%;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 16px;
  height: 16px;
  transform: translateY(-50%);
  border-radius: 999px;
  background: var(--color-action-primary);
  box-shadow: 0 0 0 5px rgba(0, 240, 208, 0.11);
  content: "";
}

.focus-shapes li:nth-child(2)::before {
  background: var(--color-court-blue);
  box-shadow: 0 0 0 5px rgba(51, 135, 255, 0.11);
}

.focus-shapes li:nth-child(3)::before {
  background: var(--color-court-green);
  box-shadow: 0 0 0 5px rgba(34, 216, 79, 0.11);
}

.focus-start-row {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, auto);
  align-items: center;
  gap: 0;
  justify-items: center;
  min-width: 0;
  margin-top: 20px;
}

.focus-start-button {
  min-height: 44px;
  padding: 12px 16px;
  justify-content: center;
  white-space: normal;
}

.focus-progress-panel h3 {
  max-width: 43rem;
  margin-top: 0;
  margin-bottom: 3px;
  color: var(--color-navy-primary);
  font-size: clamp(1.38rem, 1.85vw, 1.72rem);
  line-height: 1.08;
}

.focus-progress-panel > p:not(.focus-plan-kicker) {
  max-width: 48rem;
  margin-top: 0;
  margin-bottom: 0;
  color: var(--color-slate-primary);
  font-size: 0.94rem;
  font-weight: 720;
  line-height: 1.38;
}

.how-it-works-section {
  position: relative;
  isolation: isolate;
  max-width: none;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(51, 135, 255, 0.98), rgba(51, 135, 255, 0.86) 42%, rgba(0, 240, 208, 0.38) 100%),
    var(--color-court-blue);
  padding-left: max(var(--space-page), calc((100vw - var(--content-max)) / 2));
  padding-right: max(var(--space-page), calc((100vw - var(--content-max)) / 2));
}

.how-works-intro {
  max-width: var(--content-max);
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.how-works-intro h2 {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  color: var(--color-white);
  text-shadow: 0 2px 12px rgba(16, 32, 51, 0.18);
}

.how-tiles-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 18px);
  max-width: min(1040px, 100%);
  margin: clamp(28px, 3.8vw, 42px) auto 0;
}

.how-tile {
  display: grid;
  align-content: start;
  gap: 14px;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.98);
  padding: clamp(15px, 1.7vw, 18px);
  box-shadow:
    0 18px 34px rgba(16, 32, 51, 0.14),
    0 1px 0 rgba(255, 255, 255, 0.62) inset;
}

.how-tile h3 {
  margin: 0;
  color: var(--color-navy-primary);
  font-size: clamp(1.05rem, 1.35vw, 1.24rem);
  font-weight: var(--type-card-title);
  line-height: 1.1;
}

.how-focus-panel {
  min-width: 0;
}

.how-tile .how-focus-panel .focus-grid {
  grid-template-columns: 1fr;
  gap: 7px;
}

.how-tile .how-focus-panel .focus-tile {
  display: grid;
  align-content: center;
  min-height: 35px;
  border: 1px solid rgba(0, 240, 208, 0.2);
  border-radius: 8px;
  background: rgba(51, 135, 255, 0.11);
  padding: 8px 10px;
  color: var(--color-navy-primary);
  box-shadow: none;
}

.how-tile .how-focus-panel .focus-tile::after,
.how-tile .how-focus-panel .focus-tile.selected::after {
  display: none;
}

.how-tile .how-focus-panel .focus-tile span {
  margin-bottom: 0;
  font-size: 0.78rem;
  font-weight: var(--type-copy-strong);
  line-height: 1.1;
}

.how-tile .how-focus-panel .focus-tile:hover {
  border-color: rgba(0, 240, 208, 0.48);
  background: rgba(0, 240, 208, 0.12);
  box-shadow: 0 8px 16px rgba(16, 32, 51, 0.06);
}

.how-tile .how-focus-panel .focus-tile.selected {
  border-color: var(--color-action-primary);
  background: var(--color-action-primary);
  color: var(--color-navy-primary);
  box-shadow:
    0 10px 18px rgba(16, 32, 51, 0.12),
    0 0 0 3px rgba(0, 240, 208, 0.16);
}

.how-media-thumb {
  position: relative;
  align-self: start;
  overflow: hidden;
  width: 100%;
  min-width: 0;
  margin: 0;
  border: 1px solid rgba(16, 32, 51, 0.1);
  border-radius: 8px;
  background: var(--color-white);
  box-shadow: 0 10px 18px rgba(16, 32, 51, 0.08);
  aspect-ratio: 16 / 9;
}

button.how-media-thumb {
  display: block;
  cursor: pointer;
  padding: 0;
  text-align: inherit;
}

.how-media-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.how-media-thumb video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.how-video-thumb:focus-visible {
  outline: 3px solid rgba(0, 240, 208, 0.72);
  outline-offset: 3px;
}

.how-video-thumb.is-playing {
  cursor: default;
}

.how-court-thumb img {
  object-position: 50% 58%;
}

.how-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  background: rgba(0, 240, 208, 0.94);
  box-shadow: 0 10px 22px rgba(16, 32, 51, 0.22);
  transform: translate(-50%, -50%);
}

.how-play-button::before {
  position: absolute;
  top: 50%;
  left: 53%;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid var(--color-navy-primary);
  content: "";
  transform: translate(-50%, -50%);
}

.how-works-cta {
  margin-top: clamp(28px, 4vw, 44px);
}

.focus-plan-kicker {
  margin-top: 0;
  margin-bottom: -4px;
  color: #056b61;
}

.phase-map {
  position: relative;
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px 10px;
  padding: 4px 0 0;
}

.phase-map::before {
  position: absolute;
  left: 5%;
  right: 5%;
  top: 50%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(20, 217, 195, 0), rgba(20, 217, 195, 0.28), rgba(53, 200, 90, 0.2), rgba(20, 217, 195, 0));
  content: "";
  transform: translateY(-50%);
}

.phase-node {
  position: relative;
  z-index: 1;
  min-height: 78px;
  border: 1px solid rgba(213, 239, 229, 0.72);
  border-radius: var(--radius-card);
  background: rgba(247, 255, 249, 0.72);
  padding: 12px;
  color: var(--color-slate-muted);
  opacity: 0.68;
}

.phase-node::before {
  display: block;
  width: 9px;
  height: 9px;
  margin-bottom: 10px;
  border-radius: 999px;
  background: rgba(105, 119, 140, 0.34);
  content: "";
}

.phase-node strong,
.phase-node small {
  display: block;
}

.phase-node strong {
  color: var(--color-navy-primary);
  font-size: 0.92rem;
  line-height: 1.12;
}

.phase-node small {
  margin-top: 4px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.phase-node.active {
  border-color: rgba(20, 217, 195, 0.58);
  background: rgba(233, 255, 243, 0.94);
  box-shadow: inset 0 3px 0 var(--color-action-primary), 0 10px 20px rgba(20, 217, 195, 0.08);
  color: var(--color-slate-primary);
  opacity: 1;
}

.phase-node.active::before {
  background: var(--color-action-primary);
  box-shadow: 0 0 0 5px rgba(20, 217, 195, 0.12);
}

.phase-stack {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: phase-stop;
}

.phase-stack li {
  position: relative;
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 14px;
  border-top: 1px solid rgba(213, 239, 229, 0.82);
  padding: 14px 0 14px 34px;
  counter-increment: phase-stop;
}

.phase-stack li::before {
  position: absolute;
  left: 0;
  top: 17px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--color-action-primary);
  color: var(--color-navy-primary);
  content: counter(phase-stop);
  font-size: 0.62rem;
  font-weight: var(--type-meta);
  line-height: 18px;
  text-align: center;
  box-shadow: 0 0 0 6px rgba(20, 217, 195, 0.1);
}

.phase-stack li:not(:last-child)::after {
  position: absolute;
  left: 8px;
  top: 35px;
  bottom: -12px;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(20, 217, 195, 0.42), rgba(53, 200, 90, 0.18));
  content: "";
}

.phase-stack span,
.phase-stack strong,
.phase-stack small {
  display: block;
}

.phase-stack span {
  grid-column: 1;
  grid-row: 1 / span 2;
  padding-top: 2px;
  color: #056b61;
  font-size: 0.72rem;
  font-weight: var(--type-meta);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.phase-stack strong {
  grid-column: 2;
  color: var(--color-navy-primary);
  font-size: 0.98rem;
  line-height: 1.2;
}

.phase-stack small {
  grid-column: 2;
  margin-top: -6px;
  color: var(--color-slate-primary);
  font-size: 0.86rem;
  line-height: 1.3;
}

.phase-more {
  border-bottom: 1px solid rgba(213, 239, 229, 0.9);
}

.week-route {
  position: relative;
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

.week-route-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(213, 239, 229, 0.82);
  padding-top: 14px;
}

.week-route-header span {
  color: #056b61;
  font-size: 0.74rem;
  font-weight: var(--type-meta);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.week-route-header strong {
  color: var(--color-navy-primary);
  font-size: 0.94rem;
  line-height: 1.2;
  text-align: right;
}

.week-route-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: week-stop;
}

.week-route-list::before {
  position: absolute;
  left: 12%;
  right: 12%;
  top: 19px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(20, 217, 195, 0.22), rgba(53, 200, 90, 0.34), rgba(20, 217, 195, 0.22));
  content: "";
}

.week-route-list li {
  position: relative;
  min-height: 158px;
  border: 1px solid rgba(213, 239, 229, 0.86);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.86);
  padding: 42px 13px 14px;
  box-shadow: 0 10px 22px rgba(16, 32, 51, 0.045);
  counter-increment: week-stop;
}

.week-route-list li::before {
  position: absolute;
  left: 13px;
  top: 11px;
  z-index: 1;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--color-action-primary);
  color: var(--color-navy-primary);
  content: counter(week-stop);
  font-size: 0.68rem;
  font-weight: var(--type-meta);
  line-height: 22px;
  text-align: center;
  box-shadow: 0 0 0 7px rgba(20, 217, 195, 0.12);
}

.week-route-list span,
.week-route-list strong,
.week-route-list small {
  display: block;
}

.week-route-list span {
  margin-bottom: 8px;
  color: #056b61;
  font-size: 0.68rem;
  font-weight: var(--type-meta);
  letter-spacing: 0.04em;
  line-height: 1.1;
  text-transform: uppercase;
}

.week-route-list strong {
  color: var(--color-navy-primary);
  font-size: 0.92rem;
  line-height: 1.16;
}

.week-route-list small {
  margin-top: 7px;
  color: var(--color-slate-primary);
  font-size: 0.78rem;
  font-weight: 650;
  line-height: 1.32;
}

.phase-continuation {
  grid-column: 1 / -1;
  display: block;
  border-top: 1px solid rgba(213, 239, 229, 0.78);
  background: transparent;
  padding: 10px 0 0;
  box-shadow: none;
}

.phase-continuation span {
  color: #056b61;
  font-size: 0.7rem;
  font-weight: var(--type-meta);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.phase-continuation p {
  margin: 0;
  color: var(--color-slate-primary);
  font-size: 0.86rem;
  font-weight: 720;
  line-height: 1.34;
}

.phase-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 10px;
  align-items: center;
}

.phase-chip-row span {
  position: relative;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  padding: 6px 9px;
  color: var(--color-navy-primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  text-transform: none;
}

.phase-chip-row span:not(:last-child)::after {
  position: absolute;
  right: -9px;
  top: 50%;
  color: rgba(5, 107, 97, 0.58);
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(5, 107, 97, 0.34);
  font-size: 0.72rem;
  font-weight: 700;
  transform: translateY(-50%);
}

.focus-week-preview {
  position: relative;
  z-index: 1;
  grid-column: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.56fr) minmax(0, 1fr);
  gap: 10px 14px;
  margin-top: 0;
  border-top: 0;
  background: transparent;
  padding: 0;
  min-width: 0;
}

.focus-week-preview::before {
  display: none;
}

.focus-week-preview-header {
  display: none;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px 16px;
  align-items: baseline;
}

.focus-week-preview-header span {
  color: #056b61;
  font-size: 0.74rem;
  font-weight: var(--type-meta);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.focus-week-preview-header strong {
  max-width: none;
  color: var(--color-navy-primary);
  font-size: 0.96rem;
  line-height: 1.22;
  text-align: left;
}

.featured-workout {
  position: relative;
  grid-column: 1;
  display: grid;
  grid-template-columns: 1fr;
  align-items: end;
  min-height: 168px;
  overflow: hidden;
  border: 0;
  border-radius: 12px;
  background: var(--color-navy-primary);
  padding: 14px;
  box-shadow: 0 10px 20px rgba(16, 32, 51, 0.1);
}

.featured-workout .focus-movement {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  aspect-ratio: auto;
  border: 0;
  border-radius: inherit;
  box-shadow: none;
}

.featured-workout .focus-movement figcaption {
  display: none;
}

.featured-workout::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  background:
    linear-gradient(90deg, rgba(16, 32, 51, 0.16), rgba(16, 32, 51, 0.18) 48%, rgba(16, 32, 51, 0.46)),
    linear-gradient(0deg, rgba(16, 32, 51, 0.88), rgba(16, 32, 51, 0.08) 62%);
  content: "";
  pointer-events: none;
}

.featured-workout-day {
  position: absolute;
  left: 14px;
  top: 14px;
  z-index: 2;
  display: inline-grid;
  place-items: center;
  width: fit-content;
  min-height: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  padding: 6px 8px;
  color: #056b61;
  font-size: 0.64rem;
  font-weight: var(--type-meta);
  letter-spacing: 0.04em;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
}

.featured-workout > div:last-child {
  position: relative;
  z-index: 2;
  align-self: end;
  min-width: 0;
  max-width: 31rem;
  padding: 52px 0 0;
}

.featured-workout h4 {
  margin: 0 0 8px;
  color: var(--color-white);
  font-size: clamp(1.08rem, 1.45vw, 1.32rem);
  line-height: 1.08;
}

.featured-workout p {
  max-width: 34rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 680;
  line-height: 1.38;
}

.week-teasers {
  position: relative;
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  align-self: start;
  border-left: 0;
  padding-left: 14px;
}

.week-teasers::before {
  position: absolute;
  left: 10%;
  right: 10%;
  top: 17px;
  bottom: auto;
  display: block;
  width: auto;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(20, 217, 195, 0.16), rgba(20, 217, 195, 0.38), rgba(53, 200, 90, 0.14));
  content: "";
}

.week-teasers div {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-content: center;
  align-items: center;
  gap: 4px 9px;
  min-height: 0;
  border: 1px solid rgba(20, 217, 195, 0.2);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.82);
  padding: 28px 11px 11px;
  box-shadow: 0 6px 12px rgba(16, 32, 51, 0.035);
}

.week-teasers div::before {
  position: absolute;
  left: 11px;
  top: 10px;
  width: 9px;
  height: 9px;
  border: 3px solid var(--color-white);
  border-radius: 999px;
  background: var(--color-action-primary);
  content: "";
  box-shadow: 0 0 0 5px rgba(20, 217, 195, 0.1);
}

.week-teasers span,
.week-teasers strong,
.week-teasers small {
  display: block;
}

.week-teasers span {
  grid-column: auto;
  grid-row: auto;
  margin-bottom: 0;
  color: #056b61;
  font-size: 0.66rem;
  font-weight: var(--type-meta);
  letter-spacing: 0.04em;
  line-height: 1.1;
  text-transform: uppercase;
}

.week-teasers strong {
  grid-column: auto;
  color: var(--color-navy-primary);
  font-size: 0.86rem;
  line-height: 1.14;
  white-space: normal;
}

.week-teasers small {
  grid-column: auto;
  display: inline-block;
  width: fit-content;
  border-radius: 999px;
  background: rgba(233, 255, 243, 0.9);
  padding: 4px 7px;
  color: var(--color-slate-primary);
  font-size: 0.62rem;
  font-weight: 700;
  line-height: 1.1;
}

.focus-court {
  display: grid;
  gap: 14px;
  align-content: center;
}

.focus-court-lines {
  position: relative;
  min-height: 260px;
  border: 3px solid rgba(255, 255, 255, 0.86);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.58) 1px, transparent 1px) 50% 0 / 50% 100% no-repeat,
    linear-gradient(180deg, rgba(255, 255, 255, 0.58) 1px, transparent 1px) 0 50% / 100% 50% no-repeat,
    linear-gradient(145deg, rgba(53, 200, 90, 0.78), rgba(20, 217, 195, 0.62));
  box-shadow: inset 0 0 0 1px rgba(16, 32, 51, 0.06), 0 14px 26px rgba(16, 32, 51, 0.08);
  overflow: hidden;
}

.focus-court-net,
.focus-court-kitchen,
.focus-court-center {
  position: absolute;
  background: rgba(255, 255, 255, 0.82);
  content: "";
}

.focus-court-net {
  left: 0;
  right: 0;
  top: 49%;
  height: 3px;
}

.focus-court-kitchen {
  left: 0;
  right: 0;
  top: 34%;
  height: 2px;
  box-shadow: 0 76px 0 rgba(255, 255, 255, 0.58);
}

.focus-court-center {
  bottom: 0;
  left: 50%;
  width: 2px;
  height: 51%;
  transform: translateX(-50%);
}

.focus-start-dot,
.focus-end-dot {
  position: absolute;
  z-index: 2;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--color-navy-primary);
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.52);
  transition: left 220ms ease, top 220ms ease, background 180ms ease;
}

.focus-start-dot {
  left: 45%;
  top: 69%;
}

.focus-end-dot {
  left: 77%;
  top: 45%;
  background: var(--color-rally-yellow);
}

.focus-path {
  position: absolute;
  z-index: 1;
  height: 5px;
  border-radius: 999px;
  background: var(--color-navy-primary);
  transform-origin: left center;
  transition: left 220ms ease, top 220ms ease, width 220ms ease, transform 220ms ease;
}

.focus-path::after {
  position: absolute;
  right: -1px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 10px solid var(--color-navy-primary);
  content: "";
  transform: translateY(-50%);
}

.focus-path-primary {
  left: 48%;
  top: 71%;
  width: 38%;
  transform: rotate(-35deg);
}

.focus-path-return {
  left: 56%;
  top: 52%;
  width: 24%;
  background: rgba(16, 32, 51, 0.72);
  transform: rotate(142deg);
}

.focus-path-return::after {
  border-left-color: rgba(16, 32, 51, 0.72);
}

.focus-court p {
  margin: 0;
  color: var(--color-navy-primary);
  font-size: 0.98rem;
  font-weight: var(--type-copy-strong);
}

.focus-plan-card {
  align-self: stretch;
  border: 1px solid rgba(213, 239, 229, 0.9);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.88);
  padding: 22px;
  box-shadow: var(--shadow-soft);
}

.focus-plan-kicker {
  margin: 0 0 8px;
  color: #056b61;
  font-size: 0.78rem;
  font-weight: var(--type-meta);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.focus-plan-card h3 {
  margin: 0 0 10px;
  color: var(--color-navy-primary);
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 1.08;
}

.focus-plan-card > p:not(.focus-plan-kicker) {
  margin: 0 0 20px;
  color: var(--color-slate-primary);
}

.focus-plan-list {
  display: grid;
  gap: 12px;
  margin: 0;
}

.focus-plan-list div {
  border-top: 1px solid rgba(213, 239, 229, 0.9);
  padding-top: 12px;
}

.focus-plan-list dt {
  color: var(--color-slate-muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.focus-plan-list dd {
  margin: 3px 0 0;
  color: var(--color-navy-primary);
  font-weight: var(--type-copy-strong);
}

.focus-preview-note {
  grid-column: 1 / -1;
  margin: -2px 0 0;
  border-top: 1px solid rgba(213, 239, 229, 0.8);
  padding-top: 10px;
  color: var(--color-slate-primary);
  font-size: 0.8rem;
}

.focus-preview[data-focus-state="performance"] .focus-start-dot {
  left: 47%;
  top: 72%;
}

.focus-preview[data-focus-state="performance"] .focus-end-dot {
  left: 45%;
  top: 31%;
  background: var(--color-court-blue);
}

.focus-preview[data-focus-state="performance"] .focus-path-primary {
  left: 49%;
  top: 73%;
  width: 42%;
  transform: rotate(-88deg);
}

.focus-preview[data-focus-state="performance"] .focus-path-return {
  left: 48%;
  top: 34%;
  width: 28%;
  transform: rotate(72deg);
}

.focus-preview[data-focus-state="pain"] .focus-start-dot {
  left: 42%;
  top: 68%;
}

.focus-preview[data-focus-state="pain"] .focus-end-dot {
  left: 58%;
  top: 57%;
  background: var(--color-action-primary);
}

.focus-preview[data-focus-state="pain"] .focus-path-primary {
  left: 45%;
  top: 70%;
  width: 22%;
  transform: rotate(-28deg);
}

.focus-preview[data-focus-state="pain"] .focus-path-return {
  left: 49%;
  top: 61%;
  width: 18%;
  transform: rotate(154deg);
}

.focus-preview[data-focus-state="resilience"] .focus-start-dot {
  left: 50%;
  top: 70%;
}

.focus-preview[data-focus-state="resilience"] .focus-end-dot {
  left: 29%;
  top: 46%;
  background: var(--color-court-green);
}

.focus-preview[data-focus-state="resilience"] .focus-path-primary {
  left: 52%;
  top: 72%;
  width: 30%;
  transform: rotate(-142deg);
}

.focus-preview[data-focus-state="resilience"] .focus-path-return {
  left: 33%;
  top: 50%;
  width: 22%;
  transform: rotate(25deg);
}

.workout-preview {
  min-height: 0;
}

.workout-preview h3 {
  font-size: clamp(1.55rem, 2.6vw, 2.15rem);
}

.workout-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 24px 0;
}

.workout-meta div,
.phase-preview {
  border-top: 1px solid var(--color-border-subtle);
  padding-top: 12px;
}

.workout-meta strong,
.phase-preview strong {
  display: block;
  margin-top: 4px;
  color: var(--color-navy-primary);
  font-size: 1.05rem;
}

.workout-video-preview {
  display: flex;
  flex-direction: column;
  align-self: stretch;
}

.workout-video-preview-final {
  align-self: stretch;
}

.video-placeholder-frame {
  position: relative;
  display: grid;
  width: 100%;
  height: 100%;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid rgba(0, 240, 208, 0.2);
  border-radius: var(--radius-panel);
  background:
    radial-gradient(circle at 80% 22%, rgba(247, 225, 43, 0.18), transparent 14%),
    radial-gradient(circle at 22% 82%, rgba(0, 240, 208, 0.18), transparent 24%),
    linear-gradient(135deg, rgba(16, 32, 51, 0.99), rgba(24, 48, 72, 0.97)),
    var(--color-navy-primary);
  box-shadow: 0 22px 46px rgba(16, 32, 51, 0.16);
  aspect-ratio: 16 / 9;
}

.video-placeholder-frame::before {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  content: "";
}

.video-placeholder-frame::after {
  position: absolute;
  inset: auto 0 0;
  height: 5px;
  background: linear-gradient(90deg, var(--color-action-primary), var(--color-court-green) 78%, var(--color-rally-yellow));
  content: "";
}

.video-placeholder-frame.is-final-video {
  height: auto;
  min-height: 0;
  border-color: rgba(16, 32, 51, 0.18);
  border-radius: 8px;
  background: var(--color-navy-primary);
  box-shadow: 0 18px 34px rgba(16, 32, 51, 0.13);
}

.video-placeholder-frame.is-final-video::before,
.video-placeholder-frame.is-final-video::after {
  display: none;
}

.video-placeholder-frame video {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
}

.video-context-overlay {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: calc(100% - 28px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(16, 32, 51, 0.78);
  padding: 7px 10px;
  color: var(--color-white);
  line-height: 1;
  box-shadow: 0 10px 20px rgba(16, 32, 51, 0.2);
  pointer-events: none;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.video-context-overlay {
  left: 14px;
  top: 14px;
}

.video-context-overlay span {
  color: var(--color-action-primary);
  font-size: 0.63rem;
  font-weight: var(--type-meta);
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.video-placeholder-frame.is-final-video::after {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  display: block;
  height: 82px;
  background: linear-gradient(180deg, rgba(16, 32, 51, 0), rgba(16, 32, 51, 0.42));
  content: "";
  pointer-events: none;
}

.video-label {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 1;
  border-radius: 999px;
  background: rgba(0, 240, 208, 0.16);
  border: 1px solid rgba(0, 240, 208, 0.36);
  padding: 8px 12px;
  color: var(--color-action-primary);
  font-size: 0.76rem;
  font-weight: var(--type-meta);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.video-play-button {
  position: relative;
  z-index: 1;
  width: 86px;
  height: 86px;
  place-self: center;
  border: 2px solid rgba(0, 240, 208, 0.72);
  border-radius: 50%;
  background: rgba(0, 240, 208, 0.18);
  box-shadow:
    0 20px 44px rgba(0, 0, 0, 0.22),
    0 0 0 10px rgba(0, 240, 208, 0.08);
  cursor: pointer;
}

.video-play-button::before {
  position: absolute;
  top: 50%;
  left: 53%;
  width: 0;
  height: 0;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-left: 23px solid var(--color-action-primary);
  content: "";
  transform: translate(-50%, -50%);
}

.video-placeholder-copy {
  position: absolute;
  right: 22px;
  bottom: 20px;
  left: 22px;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  color: var(--color-white);
}

.video-placeholder-copy strong {
  max-width: 360px;
  font-size: clamp(1.45rem, 2.5vw, 2.05rem);
  line-height: 1.05;
}

.video-placeholder-copy span {
  max-width: 170px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
  font-weight: 650;
  text-align: right;
}

.app-snapshot {
  overflow: hidden;
  border-radius: 8px;
  background: transparent;
  padding: 0;
  box-shadow: none;
}

.workout-receipt-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(16, 32, 51, 0.09);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  padding: clamp(16px, 1.65vw, 20px);
  box-shadow: 0 12px 24px rgba(16, 32, 51, 0.06);
}

.workout-receipt-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--color-action-primary), var(--color-court-blue) 34%, var(--color-court-green) 72%, var(--color-rally-yellow));
  content: "";
}

.receipt-header > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  border-radius: 999px;
  background: rgba(51, 135, 255, 0.09);
  padding: 6px 10px;
  color: #155ea7;
  font-size: var(--type-card-label-size);
  font-weight: var(--type-meta);
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.receipt-header > span::before {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--color-court-blue);
  box-shadow: 0 0 0 4px rgba(51, 135, 255, 0.12);
  content: "";
}

.receipt-header h4 {
  margin: 10px 0 3px;
  color: var(--color-navy-primary);
  font-size: clamp(1.32rem, 1.65vw, 1.54rem);
  font-weight: var(--type-card-title);
  line-height: 1.06;
}

.receipt-header p {
  margin: 0;
  color: var(--color-slate-primary);
  font-size: 0.88rem;
  font-weight: var(--type-copy);
  line-height: 1.28;
}

.receipt-list {
  display: grid;
  gap: 0;
  margin: 14px 0 0;
}

.receipt-list div {
  position: relative;
  display: grid;
  grid-template-columns: 8px 88px minmax(0, 1fr);
  gap: 12px;
  align-items: baseline;
  border-top: 1px solid rgba(16, 32, 51, 0.08);
  padding: 9px 0;
}

.receipt-marker {
  align-self: stretch;
  width: 4px;
  min-height: 22px;
  border-radius: 999px;
}

.receipt-marker-equipment {
  background: var(--color-action-primary);
  box-shadow: 0 0 0 5px rgba(0, 240, 208, 0.09);
}

.receipt-marker-modify {
  background: var(--color-court-blue);
  box-shadow: 0 0 0 5px rgba(51, 135, 255, 0.11);
}

.receipt-marker-goal {
  background: var(--color-rally-yellow);
  box-shadow: 0 0 0 5px rgba(247, 225, 43, 0.14);
}

.receipt-list dt,
.receipt-list dd {
  margin: 0;
}

.receipt-list dt {
  color: var(--color-slate-muted);
  font-size: 0.62rem;
  font-weight: var(--type-meta);
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.receipt-list dd {
  color: var(--color-slate-primary);
  font-size: 0.88rem;
  font-weight: var(--type-copy);
  line-height: 1.28;
}

.receipt-list .receipt-court-goal dd {
  color: var(--color-navy-primary);
  font-weight: var(--type-copy-strong);
}

.receipt-list .receipt-court-goal {
  border: 1px solid rgba(51, 135, 255, 0.14);
  border-radius: 8px;
  background: rgba(51, 135, 255, 0.045);
  margin-top: 6px;
  padding: 10px 11px;
}

.receipt-list .receipt-court-goal dt {
  color: #155ea7;
}

.receipt-actions {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 14px;
}

.receipt-actions .button {
  width: 100%;
  min-height: 40px;
  padding: 9px 12px;
  font-size: 0.82rem;
}

.week-preview {
  margin-top: 22px;
}

.week-preview > span {
  color: var(--color-slate-muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.week-preview ol {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.week-preview li {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--color-border-subtle);
  border-radius: 16px;
  padding: 8px 10px;
  color: var(--color-navy-primary);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.2;
}

.week-preview li.active {
  border-color: rgba(20, 217, 195, 0.68);
  background: var(--color-soft-mint);
}

.week-preview li strong {
  display: inline-grid;
  width: 30px;
  height: 30px;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(20, 217, 195, 0.16);
  color: #056b61;
  font-size: 0.82rem;
}

.compact-court-goal p {
  margin: 16px 0 0;
  color: var(--color-navy-primary);
  font-weight: var(--type-copy-strong);
}

.proof-section,
.testimonial-section {
  max-width: none;
}

.proof-section {
  background:
    radial-gradient(circle at 86% 8%, rgba(0, 240, 208, 0.12), transparent 24%),
    linear-gradient(135deg, rgba(16, 32, 51, 0.99), rgba(24, 48, 72, 0.98)),
    var(--color-navy-primary);
}

.testimonial-section {
  max-width: none;
  background:
    linear-gradient(180deg, #dceeff 0%, #eaf5ff 58%, #f2f9ff 100%),
    #e6f3ff;
}

.proof-section > *,
.testimonial-section > * {
  max-width: var(--content-max);
  margin-left: auto;
  margin-right: auto;
}

.proof-section .section-intro .eyebrow {
  color: var(--color-action-primary);
}

.proof-section .section-intro h2 {
  color: var(--color-white);
}

.expertise-section .section-intro {
  margin-bottom: clamp(22px, 3vw, 34px);
  text-align: center;
}

.expertise-section .section-intro h2 {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.proof-section .section-intro p:not(.eyebrow) {
  max-width: 660px;
  color: rgba(225, 236, 248, 0.82);
}

.proof-journey {
  display: grid;
  gap: clamp(24px, 3.4vw, 40px);
}

.expert-proof-band {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  gap: clamp(16px, 2.4vw, 24px);
}

.expert-proof-band::before {
  display: none;
}

.expert-card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: rgba(250, 251, 247, 0.97);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.14);
}

.expert-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 8.8;
  object-fit: cover;
  object-position: 50% 42%;
}

.expert-card div {
  display: grid;
  align-content: start;
  padding: clamp(18px, 2.2vw, 24px);
}

.expert-card .eyebrow,
.featured-proof-video .eyebrow {
  width: fit-content;
  border: 1px solid rgba(0, 240, 208, 0.24);
  border-radius: 999px;
  background: rgba(0, 240, 208, 0.12);
  color: #056b61;
  padding: 6px 9px;
  font-size: var(--type-card-label-size);
  font-weight: var(--type-meta);
  letter-spacing: 0.025em;
  margin-bottom: 8px;
}

.expert-card h3,
.featured-proof-video h3 {
  font-size: clamp(1.35rem, 1.8vw, 1.72rem);
  font-weight: var(--type-card-title);
  line-height: 1.08;
}

.expert-card p,
.featured-proof-copy p,
.testimonial-proof-header p {
  color: var(--color-slate-primary);
  font-weight: 560;
  line-height: 1.5;
}

.expert-card p:last-child {
  margin-bottom: 0;
}

.expert-portrait {
  object-position: 50% 0%;
}

.expert-proof-list {
  display: grid;
  gap: 7px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.expert-proof-list li {
  position: relative;
  padding-left: 20px;
  color: var(--color-slate-primary);
  font-size: 0.92rem;
  font-weight: 620;
}

.expert-proof-list li::before {
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--color-court-green);
  box-shadow: 0 0 0 4px rgba(34, 216, 79, 0.12);
  content: "";
}

.featured-proof-video {
  display: grid;
  grid-template-columns: minmax(280px, 0.74fr) minmax(420px, 1fr);
  overflow: hidden;
  border: 1px solid rgba(53, 200, 90, 0.24);
  border-radius: 16px;
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.featured-proof-video[hidden],
.featured-proof-video.is-hidden {
  display: none !important;
}

.featured-proof-copy {
  display: grid;
  align-content: center;
  padding: clamp(24px, 4vw, 44px);
}

.featured-proof-copy p:last-child {
  margin-bottom: 0;
}

.featured-proof-media {
  min-height: 330px;
  background: var(--color-navy-primary);
}

.featured-proof-media video {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
}

.testimonial-proof {
  display: grid;
  gap: clamp(10px, 1.2vw, 14px);
}

.testimonial-section .testimonial-proof {
  position: relative;
}

.testimonial-proof-header {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 20px;
  text-align: center;
}

.testimonial-proof-title {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
  color: var(--color-navy-primary);
  font-size: clamp(2rem, 3.35vw, 3.05rem);
  font-weight: var(--type-section-title);
  line-height: 1.08;
  letter-spacing: 0;
}

.testimonial-proof-header p {
  max-width: none;
  margin-bottom: 0;
  color: rgba(225, 236, 248, 0.78);
  font-size: 0.88rem;
  font-weight: 650;
  line-height: 1.3;
  white-space: nowrap;
}

.testimonial-outcome-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.testimonial-feature-grid {
  gap: clamp(14px, 2vw, 18px);
}

.testimonial-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 214px;
  margin: 0;
  padding: 24px;
  border: 1px solid rgba(16, 32, 51, 0.18);
  background: #ffffff;
  box-shadow: 0 1px 0 rgba(16, 32, 51, 0.04);
}

.testimonial-avatar {
  width: 64px;
  height: 64px;
  border: 2px solid rgba(20, 217, 195, 0.18);
  border-radius: 999px;
  flex: 0 0 auto;
  box-shadow: 0 6px 12px rgba(16, 32, 51, 0.08);
  object-fit: cover;
  object-position: 50% 28%;
}

.testimonial-card > span {
  width: fit-content;
  border: 1px solid rgba(0, 240, 208, 0.22);
  border-radius: 999px;
  background: rgba(0, 240, 208, 0.1);
  color: #056b61;
  padding: 7px 10px;
  font-size: 0.72rem;
  font-weight: var(--type-meta);
  letter-spacing: 0.025em;
  line-height: 1;
  text-transform: uppercase;
}

.testimonial-card:nth-child(2) > span,
.testimonial-card:nth-child(3) > span {
  border-color: rgba(34, 216, 79, 0.24);
  background: rgba(34, 216, 79, 0.1);
  color: #067a3d;
}

.testimonial-carousel-card:nth-child(1) > span {
  border-color: rgba(0, 240, 208, 0.22);
  background: rgba(0, 240, 208, 0.1);
  color: #056b61;
}

.testimonial-card blockquote {
  margin-bottom: 2px;
  font-size: 1.05rem;
  font-weight: var(--type-copy);
  line-height: 1.46;
}

.testimonial-card figcaption {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 64px;
  color: #08766c;
  font-size: 0.94rem;
  font-weight: var(--type-copy-strong);
  line-height: 1.28;
}

.testimonial-carousel {
  position: relative;
  display: grid;
  gap: 8px;
  margin-top: 0;
  overflow: visible;
}

.testimonial-carousel-header {
  position: absolute;
  top: calc(-38px - clamp(12px, 1.5vw, 18px));
  right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 18px;
}

.testimonial-carousel-header h4 {
  margin: 0;
  color: rgba(245, 250, 252, 0.94);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  font-weight: var(--type-card-title);
  line-height: 1.18;
}

.testimonial-carousel-controls {
  display: flex;
  gap: 8px;
}

.testimonial-carousel-button {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(16, 32, 51, 0.28);
  border-radius: 999px;
  background: var(--color-white);
  color: var(--color-navy-primary);
  cursor: pointer;
  font: inherit;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.testimonial-carousel-button:hover,
.testimonial-carousel-button:focus-visible {
  border-color: rgba(0, 168, 148, 0.42);
  background: rgba(0, 240, 208, 0.08);
  outline: none;
  transform: translateY(-1px);
}

.testimonial-carousel-button:disabled {
  cursor: not-allowed;
  opacity: 0.42;
  transform: none;
}

.testimonial-carousel-viewport {
  display: grid;
  grid-auto-columns: calc((100% - 32px) / 3);
  grid-auto-flow: column;
  grid-template-rows: repeat(2, minmax(308px, auto));
  gap: 16px;
  margin-top: clamp(18px, 2.2vw, 28px);
  overflow-x: auto;
  padding: 4px 2px 14px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.testimonial-carousel::after {
  content: none;
}

.testimonial-carousel-viewport::-webkit-scrollbar {
  display: none;
}

.testimonial-carousel-card {
  display: grid;
  flex: 0 0 calc((100% - 32px) / 3);
  min-height: 308px;
  scroll-snap-align: start;
}

.testimonial-carousel-card:nth-child(1) {
  order: 1;
}

.testimonial-carousel-card:nth-child(4) {
  order: 2;
}

.testimonial-carousel-card:nth-child(2) {
  order: 3;
}

.testimonial-carousel-card:nth-child(5) {
  order: 4;
}

.testimonial-carousel-card:nth-child(3) {
  order: 5;
}

.testimonial-carousel-card:nth-child(8) {
  order: 6;
}

.testimonial-carousel-card:nth-child(6) {
  order: 7;
}

.testimonial-carousel-card:nth-child(7) {
  order: 8;
}

.testimonial-carousel-card:nth-child(9) {
  order: 9;
}

.testimonial-carousel-card:nth-child(10) {
  order: 10;
}

.testimonial-carousel-card blockquote {
  font-size: 1.05rem;
}

.testimonial-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  min-height: 10px;
}

.testimonial-carousel-dot {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(16, 32, 51, 0.28);
  cursor: pointer;
  padding: 0;
}

.testimonial-carousel-dot.is-active {
  width: 24px;
  background: var(--color-action-primary);
}

.star-row {
  display: none;
}

.star-row span {
  display: none;
}

.clarity-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.76fr) minmax(0, 1.24fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.clarity-layout .section-intro {
  position: sticky;
  top: 104px;
  margin: 0;
}

.clarity-layout .section-intro h2 {
  max-width: 390px;
  margin-bottom: 18px;
  font-size: clamp(2.15rem, 3.4vw, 3.2rem);
  line-height: 1.08;
}

.clarity-layout .section-intro p {
  max-width: 370px;
}

.clarity-reassurance {
  max-width: 360px;
  margin-top: 14px;
  color: var(--color-slate-primary);
  font-size: 0.94rem;
  font-weight: var(--type-copy);
  line-height: 1.45;
}

.clarity-cta {
  grid-column: 1 / -1;
}

.clarity-faq {
  display: grid;
  gap: 10px;
}

.clarity-faq details {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(16, 32, 51, 0.1);
  border-radius: 8px;
  background: var(--color-white);
  box-shadow: 0 8px 18px rgba(16, 32, 51, 0.035);
  transition:
    background 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.clarity-faq details:hover,
.clarity-faq details:focus-within {
  border-color: rgba(0, 240, 208, 0.34);
  background: var(--color-white);
  box-shadow: 0 12px 24px rgba(16, 32, 51, 0.07);
}

.clarity-faq details[open] {
  border-color: rgba(0, 240, 208, 0.42);
  background: var(--color-white);
  box-shadow: 0 14px 30px rgba(16, 32, 51, 0.08);
}

.clarity-faq details[open]::before {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--color-action-primary);
  content: "";
}

.clarity-faq summary {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  cursor: pointer;
  list-style: none;
  min-height: 68px;
  padding: 18px 70px 18px 22px;
  color: var(--color-navy-primary);
  font-size: clamp(0.98rem, 1.35vw, 1.08rem);
  font-weight: var(--type-copy-strong);
  line-height: 1.28;
}

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

.clarity-faq summary::before,
.clarity-faq summary::after {
  position: absolute;
  right: 34px;
  top: 50%;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: var(--color-navy-primary);
  content: "";
  transform: translateY(-50%);
}

.clarity-faq summary::before {
  z-index: 1;
}

.clarity-faq summary::after {
  z-index: 1;
  transform: translateY(-50%) rotate(90deg);
  transition: transform 160ms ease;
}

.clarity-faq summary > span:first-child {
  min-width: 0;
}

.clarity-faq summary .faq-action {
  color: transparent;
  font-size: 0.78rem;
  font-weight: var(--type-meta);
  white-space: nowrap;
}

.clarity-faq summary .faq-action::before {
  content: "";
}

.clarity-faq details[open] .faq-action {
  color: transparent;
}

.clarity-faq details[open] .faq-action::before {
  content: "";
}

.clarity-faq details[open] summary::after {
  transform: translateY(-50%) rotate(0deg);
}

.clarity-faq details[open] summary::before,
.clarity-faq details[open] summary::after {
  background: var(--color-action-primary);
}

.clarity-faq summary:focus-visible {
  outline: 3px solid rgba(20, 217, 195, 0.38);
  outline-offset: -3px;
}

.clarity-faq p {
  max-width: 680px;
  margin: -2px 70px 18px 22px;
  color: var(--color-slate-primary);
  font-size: 0.96rem;
  font-weight: var(--type-copy);
  line-height: 1.52;
}

.final-cta {
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: center;
  max-width: none;
  width: 100%;
  min-height: clamp(460px, 46vw, 590px);
  margin: 0;
  padding-left: max(var(--space-page), calc((100vw - var(--content-max)) / 2));
  padding-right: max(var(--space-page), calc((100vw - var(--content-max)) / 2));
  overflow: hidden;
  background: var(--color-navy-primary);
}

.final-cta::before,
.final-cta::after {
  position: absolute;
  z-index: -1;
  content: "";
  pointer-events: none;
}

.final-cta::before {
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 32, 51, 0.96) 0%, rgba(16, 32, 51, 0.86) 34%, rgba(16, 32, 51, 0.32) 60%, rgba(16, 32, 51, 0.02) 100%),
    linear-gradient(0deg, rgba(16, 32, 51, 0.16), rgba(16, 32, 51, 0) 58%, rgba(16, 32, 51, 0.08));
}

.final-cta::after {
  display: none;
}

.final-scene {
  position: absolute;
  inset: 0;
  z-index: -2;
  margin: 0;
  background: var(--color-navy-primary);
}

.final-scene img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 67% 55%;
  filter: saturate(1.1) brightness(1.08) contrast(1.01);
  transform: none;
}

.final-copy {
  align-self: center;
  max-width: 570px;
  padding-top: clamp(48px, 6vw, 72px);
  padding-bottom: clamp(56px, 6.5vw, 82px);
}

.final-copy .eyebrow {
  color: var(--color-action-primary);
}

.final-copy h2 {
  max-width: 520px;
  color: var(--color-white);
  font-size: clamp(2.12rem, 3.25vw, 3.25rem);
  line-height: 1.05;
}

.final-copy p {
  max-width: 540px;
  color: rgba(239, 247, 255, 0.84);
  font-size: clamp(1.02rem, 1.26vw, 1.16rem);
  line-height: 1.55;
}

.final-action {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  align-items: center;
  justify-content: flex-start;
  margin-top: 22px;
}

.final-action .button-primary {
  border-color: #00a894;
  border-bottom-width: 4px;
  padding-top: 15px;
  padding-bottom: 12px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.42),
    0 14px 28px rgba(0, 240, 208, 0.28),
    0 4px 0 rgba(0, 168, 148, 0.9);
}

.final-action p {
  flex-basis: 100%;
  max-width: 430px;
  margin: 0;
  color: rgba(239, 247, 255, 0.72);
  font-size: 0.9rem;
  font-weight: 650;
  line-height: 1.48;
}

.final-secondary-link {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.96rem;
  font-weight: 800;
  text-decoration-color: rgba(20, 217, 195, 0.6);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.final-secondary-link:hover,
.final-secondary-link:focus-visible {
  color: var(--color-action-primary);
}

/* Court Pop section upgrade: distinct sport energy after the hero. */
.plan-model-section {
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0) 0 11%, rgba(255, 255, 255, 0.56) 11% 11.35%, rgba(255, 255, 255, 0) 11.35% 100%),
    linear-gradient(135deg, #ffffff 0%, #f5fbff 40%, rgba(51, 135, 255, 0.16) 74%, rgba(0, 240, 208, 0.16) 100%);
}

.plan-model-section::after,
.movement-section::before,
.transfer-section::before,
.focus-section::before,
.workout-section::after,
.clarity-section::before {
  position: absolute;
  content: "";
  pointer-events: none;
}

.plan-model-section::after {
  display: none;
}

.plan-model-section .week-plan-card {
  position: relative;
  overflow: hidden;
  border-color: rgba(51, 135, 255, 0.28);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 252, 255, 0.98)),
    var(--color-white);
  box-shadow:
    0 24px 48px rgba(16, 32, 51, 0.12),
    0 0 0 5px rgba(0, 240, 208, 0.08);
}

.transfer-plan-card {
  position: relative;
  overflow: visible;
  border: 0;
  background: transparent;
  padding: 0;
  box-shadow: none;
}

.plan-model-section .transfer-plan-card {
  overflow: visible;
  border: 0;
  background: transparent;
  padding: 0;
  box-shadow: none;
}

.plan-model-section .week-plan-card::before {
  position: absolute;
  inset: 0 0 auto;
  z-index: 2;
  height: 5px;
  background: linear-gradient(90deg, var(--color-court-blue), var(--color-action-primary) 66%, var(--color-rally-yellow));
  content: "";
  pointer-events: none;
}

.transfer-plan-card::before {
  display: none;
}

.plan-model-section .transfer-plan-card::before {
  display: none;
}

.transfer-plan-card .week-plan-header {
  display: none;
}

.transfer-plan-feature-media,
.workout-video-shell,
.workout-player,
.progression-moment,
.body-version-card,
.focus-movement {
  border-color: rgba(51, 135, 255, 0.22);
}

.transfer-plan-control,
.transfer-selector,
.workout-focus-button,
.focus-tile,
.body-chip {
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.transfer-plan-control:hover,
.transfer-plan-control:focus-visible,
.workout-focus-button:hover,
.workout-focus-button:focus-visible {
  box-shadow: none;
}

.transfer-plan-item:hover,
.transfer-plan-item:focus-within,
.transfer-selector-item:hover,
.transfer-selector-item:focus-within {
  border-color: color-mix(in srgb, var(--transfer-accent) 32%, rgba(16, 32, 51, 0.13));
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 252, 255, 0.94)),
    var(--color-white);
  box-shadow: inset 0 -1px 0 rgba(16, 32, 51, 0.05);
}

.transfer-plan-item.is-active:hover,
.transfer-plan-item.is-active:focus-within,
.transfer-selector-item.is-active:hover,
.transfer-selector-item.is-active:focus-within {
  border-color: color-mix(in srgb, var(--transfer-accent) 42%, rgba(16, 32, 51, 0.13));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.68);
}

.workout-focus-button:hover,
.workout-focus-button:focus-visible {
  border-color: rgba(0, 240, 208, 0.48);
  box-shadow:
    0 8px 18px rgba(16, 32, 51, 0.08),
    0 0 0 4px rgba(0, 240, 208, 0.08);
}

.workout-focus-button.is-active {
  border-color: rgba(0, 240, 208, 0.7);
  background:
    linear-gradient(90deg, rgba(0, 240, 208, 0.2), rgba(51, 135, 255, 0.08)),
    var(--color-white);
  box-shadow:
    inset 0 -3px 0 var(--color-action-primary),
    0 12px 22px rgba(16, 32, 51, 0.08);
}

.movement-section {
  background:
    radial-gradient(circle at 82% 29%, rgba(0, 240, 208, 0.2), transparent 23%),
    linear-gradient(90deg, #ffffff 0 52%, var(--color-court-blue) 52% 100%);
}

.movement-section::before {
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0) 0 61%, rgba(255, 255, 255, 0.22) 61% 61.25%, rgba(255, 255, 255, 0) 61.25% 100%),
    linear-gradient(164deg, rgba(255, 255, 255, 0) 0 74%, rgba(247, 225, 43, 0.18) 74% 74.35%, rgba(255, 255, 255, 0) 74.35% 100%),
    linear-gradient(90deg, rgba(51, 135, 255, 0) 0 14%, rgba(51, 135, 255, 0.08) 14% 14.25%, rgba(51, 135, 255, 0) 14.25% 100%);
  opacity: 1;
}

.movement-proof-layout {
  position: relative;
  z-index: 1;
}

.movement-video-proof figcaption {
  border-color: rgba(0, 240, 208, 0.42);
  border-left: 5px solid var(--color-action-primary);
  box-shadow:
    0 18px 34px rgba(16, 32, 51, 0.1),
    0 0 0 5px rgba(0, 240, 208, 0.06);
}

.movement-video-proof figcaption > span {
  color: #075c9d;
}

.video-frame video {
  border-color: rgba(0, 240, 208, 0.5);
  box-shadow:
    0 22px 42px rgba(16, 32, 51, 0.2),
    0 0 0 5px rgba(0, 240, 208, 0.16),
    -8px 8px 0 rgba(247, 225, 43, 0.18);
}

.transfer-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%),
    var(--color-white);
}

.transfer-section::before {
  display: none;
}

.transfer-matchcut-stage {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

.reassurance-section {
  background:
    linear-gradient(135deg, rgba(51, 135, 255, 0.16), rgba(0, 240, 208, 0.07) 44%, rgba(255, 255, 255, 0) 72%),
    linear-gradient(180deg, #f3f9ff 0%, #ffffff 100%);
}

.reassurance-section::before {
  background:
    linear-gradient(90deg, rgba(51, 135, 255, 0.2) 1px, transparent 1px),
    linear-gradient(180deg, rgba(51, 135, 255, 0.14) 1px, transparent 1px),
    linear-gradient(156deg, rgba(255, 255, 255, 0) 0 58%, rgba(247, 225, 43, 0.18) 58% 58.4%, rgba(255, 255, 255, 0) 58.4% 100%);
  background-size: 100px 100px, 100px 100px, auto;
  opacity: 0.56;
}

.body-proof-module {
  border-color: rgba(51, 135, 255, 0.22);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 252, 255, 0.98)),
    var(--color-white);
  box-shadow:
    0 20px 44px rgba(16, 32, 51, 0.09),
    inset 0 0 0 1px rgba(0, 240, 208, 0.06);
}

.body-panel-kicker,
.progression-mobile-label,
.modification-transfer-line strong {
  color: #075c9d;
}

.body-chip {
  border-color: rgba(51, 135, 255, 0.2);
}

.body-chip.is-selected {
  border-color: rgba(0, 168, 148, 0.74);
  box-shadow:
    inset 0 -2px 0 rgba(0, 168, 148, 0.72),
    0 10px 18px rgba(16, 32, 51, 0.1);
}

.body-version-card-featured,
.progression-moment:nth-child(2) {
  border-color: rgba(0, 240, 208, 0.72);
}

.landing-page .reassurance-section {
  background:
    radial-gradient(circle at 15% 20%, rgba(0, 240, 208, 0.18), transparent 28%),
    linear-gradient(180deg, #f5fbff 0%, #ffffff 82%);
}

.landing-page .reassurance-section::before {
  background:
    linear-gradient(90deg, rgba(51, 135, 255, 0.2) 1px, transparent 1px),
    linear-gradient(180deg, rgba(0, 240, 208, 0.12) 1px, transparent 1px);
  background-size: 112px 112px;
  mask-image: linear-gradient(118deg, rgba(0, 0, 0, 0.78), transparent 66%);
  opacity: 0.48;
}

.landing-page .reassurance-section .section-intro {
  max-width: 760px;
  text-align: center;
}

.landing-page .reassurance-section .section-intro p {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.landing-page .body-aware-system {
  gap: 12px;
}

.landing-page .body-proof-module {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.landing-page .body-proof-card {
  gap: 14px;
}

.landing-page .body-proof-copy {
  gap: clamp(12px, 1.4vw, 16px);
}

.landing-page .body-step-label {
  color: #075c9d;
}

.landing-page .body-support-tile {
  justify-content: center;
  text-align: center;
  border-color: rgba(0, 240, 208, 0.18);
  background:
    linear-gradient(135deg, rgba(38, 63, 99, 0.98), rgba(16, 32, 51, 0.98));
  color: var(--color-white);
  box-shadow:
    0 10px 20px rgba(16, 32, 51, 0.12),
    0 1px 0 rgba(255, 255, 255, 0.08) inset;
}

.landing-page .body-support-tile::before {
  display: none;
}

.landing-page .body-map {
  position: relative;
  display: grid;
  grid-template-columns: minmax(190px, 0.92fr) minmax(270px, 340px) minmax(190px, 0.92fr);
  grid-template-rows: repeat(5, minmax(66px, auto));
  gap: 12px clamp(14px, 2vw, 24px);
  align-items: center;
  width: min(100%, 1010px);
  min-height: 610px;
  margin: 0 auto;
}

.landing-page .body-map-figure {
  position: relative;
  z-index: 1;
  grid-column: 2;
  grid-row: 1 / 6;
  align-self: center;
  justify-self: center;
  width: min(100%, 330px);
  min-width: 0;
}

.landing-page .body-map-figure img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 18px 28px rgba(16, 32, 51, 0.14));
}

.landing-page .body-map-callout {
  position: relative;
  z-index: 2;
  min-height: 62px;
  padding: 14px 16px;
  font-size: clamp(1rem, 1.05vw, 1.12rem);
  line-height: 1.14;
}

.landing-page .body-map-knee {
  grid-column: 3;
  grid-row: 3;
}

.landing-page .body-map-hip {
  grid-column: 1;
  grid-row: 4;
}

.landing-page .body-map-arthritis {
  grid-column: 3;
  grid-row: 1;
}

.landing-page .body-map-back {
  grid-column: 1;
  grid-row: 3;
}

.landing-page .body-map-calf {
  grid-column: 3;
  grid-row: 4;
}

.landing-page .body-map-elbow {
  grid-column: 1;
  grid-row: 2;
}

.landing-page .body-map-shoulder {
  grid-column: 1;
  grid-row: 1;
}

.landing-page .body-map-foot {
  grid-column: 3;
  grid-row: 5;
}

.landing-page .body-map-osteoporosis {
  grid-column: 3;
  grid-row: 2;
}

.landing-page .body-proof-reassurance {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  border: 0;
  background: transparent;
  padding: 0;
  color: var(--color-slate-primary);
  font-size: clamp(0.94rem, 1vw, 1rem);
  text-align: center;
}

.focus-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(51, 135, 255, 0.92), rgba(51, 135, 255, 0.78) 54%, rgba(0, 240, 208, 0.34) 100%),
    var(--color-court-blue);
}

.focus-section::before {
  display: none;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0) 0 14%, rgba(255, 255, 255, 0.34) 14% 14.28%, rgba(255, 255, 255, 0) 14.28% 100%),
    linear-gradient(164deg, rgba(255, 255, 255, 0) 0 47%, rgba(247, 225, 43, 0.28) 47% 47.44%, rgba(255, 255, 255, 0) 47.44% 100%);
  opacity: 0.72;
}

.focus-section .section-intro h2,
.focus-section .section-intro .movement-lead {
  color: var(--color-white);
}

.focus-section .movement-intro-copy p,
.focus-section .section-intro p {
  color: rgba(239, 247, 255, 0.88);
}

.focus-selector-label,
.focus-tile,
.focus-response-card {
  border-color: rgba(255, 255, 255, 0.34);
}

.focus-selector-label {
  background: rgba(255, 255, 255, 0.94);
}

.focus-tile {
  box-shadow: 0 12px 24px rgba(16, 32, 51, 0.09);
}

.focus-tile:hover,
.focus-tile.selected {
  border-color: rgba(0, 240, 208, 0.72);
  box-shadow:
    0 14px 26px rgba(16, 32, 51, 0.12),
    0 0 0 4px rgba(0, 240, 208, 0.12);
}

.focus-response-card {
  box-shadow:
    0 18px 34px rgba(16, 32, 51, 0.14),
    0 0 0 5px rgba(255, 255, 255, 0.14);
}

.workout-section {
  overflow: hidden;
}

.workout-section::before {
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%),
    var(--color-white);
}

.workout-section::after {
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(51, 135, 255, 0.14) 1px, transparent 1px),
    linear-gradient(180deg, rgba(0, 240, 208, 0.08) 1px, transparent 1px);
  background-size: 128px 128px;
  mask-image: linear-gradient(110deg, transparent, black 18%, transparent 70%);
  opacity: 0.48;
}

.workout-section .section-intro {
  position: relative;
  border-left: 5px solid var(--color-action-primary);
  padding-left: clamp(16px, 2vw, 22px);
}

.workout-player,
.week-plan-card {
  box-shadow:
    0 22px 44px rgba(16, 32, 51, 0.11),
    0 0 0 5px rgba(51, 135, 255, 0.06);
}

.proof-section {
  background:
    radial-gradient(circle at 84% 8%, rgba(0, 240, 208, 0.18), transparent 25%),
    linear-gradient(135deg, rgba(16, 32, 51, 0.99), rgba(18, 56, 96, 0.98) 68%, rgba(0, 124, 152, 0.96)),
    var(--color-navy-primary);
}

.expert-card,
.testimonial-card {
  border-color: rgba(0, 240, 208, 0.2);
}

.expert-card::before,
.testimonial-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--color-court-blue), var(--color-action-primary));
  content: "";
}

.expert-card::before {
  content: none;
}

.testimonial-card {
  position: relative;
  overflow: hidden;
}

.testimonial-card:nth-child(2)::before {
  background: linear-gradient(90deg, var(--color-court-green), var(--color-action-primary));
}

.testimonial-card:nth-child(3)::before {
  background: linear-gradient(90deg, var(--color-court-blue), var(--color-court-green));
}

.clarity-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(180deg, #ffffff, #f4f9ff),
    var(--color-white);
}

.clarity-section::before {
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(51, 135, 255, 0.1) 1px, transparent 1px),
    linear-gradient(180deg, rgba(51, 135, 255, 0.08) 1px, transparent 1px),
    radial-gradient(circle at 18% 12%, rgba(0, 240, 208, 0.12), transparent 24%);
  background-size: 112px 112px, 112px 112px, auto;
  opacity: 0.62;
}

.clarity-faq details {
  border-color: rgba(51, 135, 255, 0.16);
}

.final-cta::before {
  background:
    linear-gradient(90deg, rgba(16, 32, 51, 0.96) 0%, rgba(16, 32, 51, 0.86) 34%, rgba(16, 32, 51, 0.28) 60%, rgba(16, 32, 51, 0.02) 100%),
    linear-gradient(163deg, rgba(255, 255, 255, 0) 0 58%, rgba(247, 225, 43, 0.28) 58% 58.45%, rgba(255, 255, 255, 0) 58.45% 100%),
    linear-gradient(0deg, rgba(0, 240, 208, 0.16), rgba(16, 32, 51, 0) 58%, rgba(51, 135, 255, 0.18));
}

[data-proof-status]::after {
  display: none;
}

.cindy-page {
  background:
    linear-gradient(112deg, rgba(51, 135, 255, 0.09), rgba(51, 135, 255, 0) 34%),
    linear-gradient(18deg, rgba(0, 240, 208, 0.07), rgba(0, 240, 208, 0) 46%),
    #ffffff;
}

.cindy-page .site-header {
  padding-top: 18px;
  padding-bottom: 10px;
}

.cindy-page .hero h1 span {
  white-space: normal;
}

.cindy-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(430px, 0.86fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
  max-width: none;
  padding-left: max(var(--space-page), calc((100vw - var(--content-max)) / 2));
  padding-right: max(var(--space-page), calc((100vw - var(--content-max)) / 2));
  padding-top: clamp(42px, 5.2vw, 74px);
  padding-bottom: clamp(34px, 4.2vw, 62px);
  background:
    linear-gradient(100deg, #ffffff 0%, rgba(255, 255, 255, 0.98) 58%, rgba(51, 135, 255, 0.08) 100%),
    var(--color-white);
}

.cindy-hero::before {
  position: absolute;
  inset: auto max(var(--space-page), calc((100vw - var(--content-max)) / 2)) clamp(24px, 4vw, 54px) auto;
  width: min(44vw, 620px);
  height: clamp(120px, 14vw, 190px);
  background:
    radial-gradient(circle at 52% 48%, rgba(0, 240, 208, 0.28), rgba(0, 240, 208, 0) 58%),
    radial-gradient(circle at 78% 58%, rgba(34, 216, 79, 0.13), rgba(34, 216, 79, 0) 54%);
  filter: blur(22px);
  opacity: 0.78;
  content: "";
  pointer-events: none;
}

.cindy-hero::after {
  display: none;
}

.cindy-hero-copy,
.cindy-hero-proof {
  position: relative;
  z-index: 1;
}

.cindy-hero h1 {
  max-width: 610px;
  font-size: clamp(3rem, 4.55vw, 5.05rem);
  line-height: 1.02;
}

.cindy-hero .hero-subhead {
  max-width: 620px;
  font-size: clamp(1.08rem, 1.45vw, 1.26rem);
}

.cindy-proof-line {
  max-width: 620px;
  margin: 14px 0 14px;
  color: #056b61;
  font-size: 0.96rem;
  font-weight: 850;
  line-height: 1.35;
}

.cindy-hero .cta-row {
  margin-top: 0;
}

.cindy-hero-proof {
  position: relative;
  display: grid;
  align-items: end;
  width: min(100%, 650px);
  max-width: 650px;
  min-height: clamp(490px, 40vw, 580px);
  justify-self: end;
  transform: translateX(-8px);
}

.cindy-hero-video {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border: 1px solid rgba(16, 32, 51, 0.1);
  border-radius: 28px;
  background: #dfeff4;
  box-shadow: 0 22px 54px rgba(16, 32, 51, 0.12);
}

.cindy-hero-video::after {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 78%, rgba(16, 32, 51, 0.42), rgba(16, 32, 51, 0) 34%),
    linear-gradient(90deg, rgba(16, 32, 51, 0.14), rgba(16, 32, 51, 0.02) 42%, rgba(255, 255, 255, 0.12)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(16, 32, 51, 0.18));
  content: "";
  pointer-events: none;
}

.cindy-hero-video video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% 50%;
}

.cindy-story-card,
.cindy-week-card,
.cindy-exposed-card,
.cindy-plan-panel {
  border: 1px solid rgba(16, 32, 51, 0.12);
  border-radius: 14px;
  background: var(--color-white);
  box-shadow: 0 18px 36px rgba(16, 32, 51, 0.11);
}

.cindy-story-card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  overflow: hidden;
  width: min(76%, 468px);
  margin: 14px clamp(14px, 2.4vw, 22px) clamp(14px, 2.4vw, 22px) auto;
  border: 1px solid rgba(51, 135, 255, 0.18);
  padding: clamp(16px, 1.8vw, 20px);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
}

.cindy-story-card::before {
  position: absolute;
  inset: 0 0 auto;
  z-index: 1;
  height: 6px;
  background: linear-gradient(90deg, var(--color-court-blue), var(--color-action-primary) 62%, var(--color-rally-yellow));
  content: "";
}

.cindy-portrait {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(16, 32, 51, 0.1);
  border-radius: 12px;
  aspect-ratio: 1;
  background: rgba(51, 135, 255, 0.08);
}

.cindy-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
}

.cindy-story-card figcaption {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.cindy-story-card span,
.cindy-exposed-header span,
.cindy-plan-header span {
  color: #075c9d;
  font-size: var(--type-card-label-size);
  font-weight: var(--type-meta);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cindy-story-card blockquote {
  margin: 0;
  color: var(--color-navy-primary);
  font-size: clamp(1.14rem, 1.42vw, 1.34rem);
  font-weight: 800;
  line-height: 1.2;
  text-wrap: balance;
}

.cindy-outcome-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 2px 0 0;
  padding: 0;
  list-style: none;
}

.cindy-outcome-strip li {
  border: 1px solid rgba(0, 124, 112, 0.16);
  border-radius: 999px;
  background: rgba(0, 240, 208, 0.08);
  color: #056b61;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
  padding: 7px 9px;
}

.cindy-story-card strong {
  color: var(--color-navy-primary);
  font-weight: var(--type-meta);
  line-height: 1.1;
}

.cindy-court-progression-section,
.cindy-focus-section,
.cindy-modification-section {
  max-width: var(--content-max);
}

.cindy-court-progression-section {
  position: relative;
  padding-top: clamp(40px, 5vw, 56px);
  padding-bottom: clamp(40px, 5vw, 56px);
}

.cindy-court-progression-row {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 0.9fr);
  gap: clamp(28px, 4.2vw, 54px);
  align-items: start;
}

.cindy-court-progression-section .section-intro {
  margin: 0;
}

.cindy-court-progression-section .section-intro p:not(.eyebrow) {
  max-width: 520px;
}

.cindy-court-proof-stack {
  display: grid;
  gap: 12px;
}

.cindy-exposed-card,
.cindy-plan-panel {
  position: relative;
  overflow: hidden;
  padding: 0;
}

.cindy-exposed-card::after {
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, rgba(51, 135, 255, 0.78), rgba(0, 240, 208, 0.82));
  content: "";
}

.cindy-exposed-header,
.cindy-plan-header {
  display: grid;
  gap: 5px;
  border-bottom: 1px solid rgba(16, 32, 51, 0.08);
  padding: clamp(14px, 1.8vw, 18px) clamp(16px, 2.1vw, 22px);
}

.cindy-exposed-header strong,
.cindy-plan-header strong {
  max-width: 440px;
  color: var(--color-navy-primary);
  font-size: clamp(1.18rem, 1.72vw, 1.42rem);
  font-weight: var(--type-card-title);
  line-height: 1.18;
}

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

.cindy-exposed-list li {
  display: grid;
  grid-template-columns: minmax(86px, auto) minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  border-top: 1px solid rgba(16, 32, 51, 0.07);
  padding: clamp(11px, 1.45vw, 14px) clamp(16px, 2.1vw, 22px);
}

.cindy-exposed-list li:first-child {
  border-top: 0;
}

.cindy-exposed-list li > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  border-radius: 999px;
  background: rgba(51, 135, 255, 0.14);
  padding: 7px 11px;
  color: #075c9d;
  font-size: 0.72rem;
  font-weight: var(--type-meta);
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.cindy-exposed-list li:nth-child(2) > span {
  background: rgba(0, 240, 208, 0.18);
  color: #056b61;
}

.cindy-exposed-list li:nth-child(3) > span {
  background: rgba(247, 225, 43, 0.18);
  color: var(--color-navy-primary);
}

.cindy-plan-panel {
  display: grid;
  align-content: start;
}

.cindy-plan-list {
  display: grid;
  margin: 0;
  padding: clamp(12px, 1.7vw, 17px) clamp(16px, 2.1vw, 22px);
  gap: 8px;
}

.cindy-plan-list div {
  display: grid;
  grid-template-columns: minmax(112px, 0.42fr) minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  border: 1px solid rgba(16, 32, 51, 0.07);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.72);
  padding: 10px 14px;
}

.cindy-plan-list div:first-child {
  border-color: rgba(0, 240, 208, 0.42);
  background: linear-gradient(90deg, rgba(0, 240, 208, 0.1), rgba(51, 135, 255, 0.045));
}

.cindy-plan-list dt {
  color: #056b61;
  font-size: 0.76rem;
  font-weight: var(--type-meta);
  letter-spacing: 0.04em;
  line-height: 1.1;
  text-transform: uppercase;
}

.cindy-plan-list dd {
  margin: 0;
  color: var(--color-navy-primary);
  font-weight: var(--type-card-title);
  line-height: 1.25;
}

.cindy-exposed-list strong {
  display: block;
  color: var(--color-navy-primary);
  font-size: 1.02rem;
  font-weight: var(--type-card-title);
  line-height: 1.22;
}

.cindy-focus-section {
  max-width: none;
  background: var(--color-white);
  padding-top: clamp(42px, 5vw, 62px);
  padding-bottom: clamp(32px, 4.6vw, 54px);
}

.cindy-focus-builder {
  max-width: var(--content-max);
  margin: 0 auto;
  background: transparent;
  gap: clamp(10px, 1.4vw, 14px);
}

.cindy-focus-builder .focus-progress-panel {
  grid-template-columns: minmax(300px, 0.72fr) minmax(340px, 0.78fr);
  gap: clamp(18px, 2.4vw, 30px);
  align-items: start;
}

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

.cindy-focus-grid .focus-tile {
  min-height: 68px;
  padding: 11px 46px 10px 14px;
}

.cindy-focus-grid .focus-tile.selected {
  min-height: 74px;
}

.cindy-focus-grid .focus-tile:not(.selected) {
  background: var(--color-white);
  box-shadow: 0 8px 18px rgba(16, 32, 51, 0.035);
}

.cindy-focus-grid .focus-tile span {
  margin-bottom: 4px;
  font-size: 0.94rem;
  line-height: 1.08;
}

.cindy-focus-grid .focus-tile strong {
  font-size: 0.76rem;
  line-height: 1.22;
}

.cindy-focus-grid .focus-tile em {
  position: static;
  margin: 0 0 4px;
  max-width: calc(100% - 34px);
  font-size: 0.52rem;
}

.cindy-focus-grid .focus-tile::after {
  right: 12px;
  top: 12px;
  width: 27px;
  height: 27px;
}

.cindy-focus-builder .focus-choice-panel .section-intro h2 {
  max-width: 760px;
  margin-bottom: 10px;
  font-size: clamp(2.05rem, 3.1vw, 2.85rem);
}

.cindy-focus-builder .movement-intro-copy p {
  max-width: 760px;
  margin-bottom: 0;
  font-size: 1rem;
}

.cindy-focus-builder .focus-response-card {
  margin-top: 35px;
}

.cindy-modification-section {
  max-width: none;
  background: #ffffff;
  padding-top: clamp(34px, 4.6vw, 56px);
  padding-bottom: clamp(44px, 5.5vw, 68px);
}

.cindy-modification-section > .section-intro,
.cindy-modification-section > .reassurance-layout {
  max-width: var(--content-max);
  margin-left: auto;
  margin-right: auto;
}

.cindy-modification-section .section-intro {
  margin-bottom: clamp(18px, 2.5vw, 30px);
}

.cindy-modification-section .section-intro h2 {
  margin-bottom: 18px;
}

.cindy-modification-section .section-intro p {
  max-width: 850px;
  color: var(--color-slate-primary);
  font-size: 1.1rem;
  line-height: 1.58;
}

.cindy-modification-showcase {
  background: transparent;
  width: min(100%, 820px);
}

.cindy-modification-showcase .progression-stack::before,
.cindy-modification-showcase .progression-stack::after {
  background: linear-gradient(90deg, var(--color-court-blue), var(--color-action-primary) 66%, var(--color-rally-yellow));
}

.cindy-modification-showcase .progression-stack {
  grid-template-columns: minmax(130px, 0.64fr) minmax(0, 1.12fr) minmax(130px, 0.64fr);
  gap: clamp(10px, 1.6vw, 18px);
  padding-top: 0;
}

.cindy-modification-showcase .progression-moment:nth-child(1),
.cindy-modification-showcase .progression-moment:nth-child(3) {
  transform: translateY(6px) scale(0.92);
}

.cindy-modification-showcase .progression-moment:nth-child(2) {
  box-shadow:
    0 18px 38px rgba(16, 32, 51, 0.12),
    0 0 0 4px rgba(0, 240, 208, 0.11),
    0 2px 0 rgba(255, 255, 255, 0.9) inset;
}

.cindy-modification-showcase .progression-video,
.cindy-modification-showcase .progression-moment-featured .progression-video {
  aspect-ratio: 16 / 8.7;
}

.cindy-modification-showcase .progression-moment-supporting .progression-video {
  aspect-ratio: 16 / 9.4;
}

.cindy-modification-showcase .progression-moment-featured figcaption {
  padding: 12px 14px;
}

.cindy-modification-showcase .progression-moment:nth-child(2) figcaption > strong {
  font-size: clamp(1.12rem, 1.42vw, 1.36rem);
}

.cindy-modification-showcase .modification-transfer-line {
  margin-top: 7px;
  padding-top: 7px;
  font-size: 0.86rem;
}

.cindy-modification-showcase .progression-mobile-label,
.cindy-modification-showcase .modification-transfer-line strong {
  color: #056b61;
}

.cindy-product-section {
  max-width: none;
  background:
    linear-gradient(180deg, rgba(51, 135, 255, 0.045) 0%, rgba(255, 255, 255, 0) 34%),
    #ffffff;
}

.cindy-product-bridge {
  max-width: 720px;
  margin-top: 12px;
  color: var(--color-navy-secondary);
  font-size: 0.98rem;
  font-weight: 720;
}

.cindy-product-section > .section-intro,
.cindy-product-section > .cindy-workout-layout {
  max-width: var(--content-max);
  margin-left: auto;
  margin-right: auto;
}

.cindy-workout-layout {
  grid-template-columns: minmax(0, 1.55fr) minmax(340px, 0.72fr);
  margin-top: clamp(22px, 3vw, 32px);
}

.cindy-week-card {
  overflow: hidden;
  padding: 0;
}

.cindy-week-card .week-plan-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: clamp(16px, 2vw, 22px);
}

.legal-page {
  background:
    linear-gradient(180deg, #ffffff 0 430px, #f3f8ff 430px 100%),
    #ffffff;
}

.legal-page .site-header {
  position: sticky;
}

.legal-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
  gap: clamp(22px, 4vw, 48px);
  align-items: end;
  max-width: none;
  padding-top: clamp(46px, 6vw, 80px);
  padding-bottom: clamp(38px, 5vw, 66px);
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%),
    var(--color-white);
}

.legal-hero::after {
  display: none;
}

.legal-hero-copy,
.legal-summary-card {
  max-width: var(--content-max);
}

.legal-hero h1 {
  max-width: 760px;
  margin-bottom: 16px;
  font-size: clamp(2.7rem, 5vw, 5.1rem);
}

.legal-hero p {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--color-slate-primary);
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
}

.legal-hero a,
.legal-document a {
  color: #075c9d;
  font-weight: 700;
}

.legal-meta-card,
.legal-summary-card {
  border: 1px solid rgba(16, 32, 51, 0.14);
  border-radius: 14px;
  background: var(--color-white);
  box-shadow: 0 16px 34px rgba(16, 32, 51, 0.09);
}

.legal-meta-card {
  display: inline-grid;
  gap: 3px;
  margin-top: 22px;
  padding: 14px 16px;
}

.legal-meta-card span,
.legal-summary-card span,
.legal-toc-inner > span {
  color: #075c9d;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.legal-meta-card strong {
  color: var(--color-navy-primary);
  font-size: 1rem;
  font-weight: 700;
}

.legal-summary-card {
  position: relative;
  overflow: hidden;
  padding: 22px;
}

.legal-summary-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--color-court-blue), var(--color-action-primary) 56%, var(--color-rally-yellow));
  content: "";
}

.legal-summary-card p {
  margin: 8px 0 0;
  color: var(--color-navy-primary);
  font-size: 1rem;
  font-weight: var(--type-meta);
  line-height: 1.42;
}

.legal-content-shell {
  display: grid;
  grid-template-columns: minmax(210px, 260px) minmax(0, 820px);
  gap: clamp(22px, 4vw, 54px);
  align-items: start;
  max-width: 1180px;
  padding-top: clamp(38px, 5vw, 64px);
}

.legal-toc {
  position: sticky;
  top: 82px;
}

.legal-toc-inner {
  display: grid;
  max-height: calc(100vh - 112px);
  overflow: auto;
  border: 1px solid rgba(16, 32, 51, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  padding: 16px;
  box-shadow: 0 16px 32px rgba(16, 32, 51, 0.08);
}

.legal-toc-inner > span {
  margin-bottom: 10px;
}

.legal-toc a {
  border-top: 1px solid rgba(16, 32, 51, 0.08);
  padding: 9px 0;
  color: var(--color-slate-primary);
  font-size: 0.84rem;
  font-weight: var(--type-meta);
  line-height: 1.25;
  text-decoration: none;
}

.legal-toc a:hover {
  color: #075c9d;
}

.legal-document {
  display: grid;
  gap: 16px;
}

.legal-section {
  scroll-margin-top: 96px;
  border: 1px solid rgba(16, 32, 51, 0.12);
  border-radius: 14px;
  background: var(--color-white);
  padding: clamp(22px, 3vw, 34px);
  box-shadow: 0 12px 28px rgba(16, 32, 51, 0.06);
}

.legal-section h2 {
  margin-bottom: 14px;
  font-size: clamp(1.35rem, 2vw, 1.72rem);
  line-height: 1.12;
}

.legal-section h3 {
  margin: 22px 0 10px;
  color: var(--color-navy-secondary);
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  line-height: 1.2;
}

.legal-section h2 + h3 {
  margin-top: 6px;
}

.legal-section p,
.legal-section li {
  color: var(--color-slate-primary);
  font-size: 0.98rem;
  line-height: 1.72;
}

.legal-section p {
  margin-bottom: 14px;
}

.legal-section p:last-child,
.legal-section ul:last-child {
  margin-bottom: 0;
}

.legal-section ul {
  display: grid;
  gap: 9px;
  margin: 0 0 16px;
  padding-left: 20px;
}

.legal-section li::marker {
  color: var(--color-court-blue);
}

.warmup-page {
  background:
    linear-gradient(180deg, #ffffff 0 560px, #f3f8ff 560px 100%),
    #ffffff;
}

.warmup-page .site-header {
  position: sticky;
}

.warmup-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 390px);
  gap: clamp(24px, 5vw, 60px);
  align-items: end;
  max-width: none;
  padding-top: clamp(44px, 6vw, 82px);
  padding-bottom: clamp(20px, 3vw, 36px);
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%),
    var(--color-white);
}

.warmup-hero h1 {
  max-width: 760px;
  margin-bottom: 16px;
  font-size: clamp(2.7rem, 5vw, 5.1rem);
}

.warmup-hero-copy p:not(.eyebrow),
.warmup-video-copy p {
  max-width: 720px;
  color: var(--color-slate-primary);
  font-size: clamp(1.08rem, 1.5vw, 1.24rem);
  line-height: 1.55;
}

.warmup-meta,
.warmup-court-card {
  border: 1px solid rgba(16, 32, 51, 0.14);
  border-radius: 14px;
  background: var(--color-white);
  box-shadow: 0 16px 34px rgba(16, 32, 51, 0.09);
}

.warmup-meta {
  display: inline-grid;
  gap: 3px;
  margin-top: 22px;
  padding: 14px 16px;
}

.warmup-meta span,
.warmup-court-card span,
.warmup-block-header .eyebrow {
  color: #075c9d;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.warmup-meta strong {
  color: var(--color-navy-primary);
  font-size: 1rem;
  font-weight: 700;
}

.warmup-court-card {
  position: relative;
  overflow: hidden;
  padding: 22px;
}

.warmup-court-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--color-court-blue), var(--color-action-primary) 56%, var(--color-rally-yellow));
  content: "";
}

.warmup-court-card p {
  margin: 8px 0 0;
  color: var(--color-navy-primary);
  font-size: 1rem;
  font-weight: var(--type-meta);
  line-height: 1.42;
}

.warmup-video-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.58fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: center;
  max-width: var(--content-max);
  padding-top: clamp(22px, 3vw, 38px);
}

.warmup-video-copy {
  max-width: 440px;
}

.warmup-video-copy h2 {
  font-size: clamp(2rem, 3vw, 2.7rem);
}

.warmup-video-copy p {
  margin-bottom: 0;
  font-size: 1.02rem;
}

.warmup-video-frame {
  overflow: hidden;
  border: 1px solid rgba(16, 32, 51, 0.14);
  border-radius: 16px;
  background: var(--color-navy-primary);
  box-shadow:
    0 24px 46px rgba(16, 32, 51, 0.16),
    0 0 0 5px rgba(0, 240, 208, 0.1);
}

.warmup-video-frame iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  border: 0;
}

.warmup-plan {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: clamp(22px, 4vw, 42px);
  align-items: start;
  max-width: var(--content-max);
  padding-top: clamp(30px, 4vw, 56px);
}

.warmup-block {
  overflow: hidden;
  border: 1px solid rgba(16, 32, 51, 0.12);
  border-radius: 16px;
  background: var(--color-white);
  box-shadow: 0 16px 32px rgba(16, 32, 51, 0.08);
}

.warmup-block-header {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 4px 18px;
  align-items: end;
  background: linear-gradient(135deg, rgba(28, 50, 75, 0.98), rgba(16, 32, 51, 0.98));
  padding: 20px clamp(18px, 2.5vw, 26px) 19px;
}

.warmup-block-header::after {
  position: absolute;
  inset: auto 0 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-court-blue), var(--color-action-primary) 66%, var(--color-rally-yellow));
  content: "";
}

.warmup-block-header .eyebrow {
  grid-column: 1;
  margin-bottom: 0;
  color: var(--color-action-primary);
}

.warmup-block-header h2 {
  grid-column: 1;
  margin: 0;
  color: var(--color-white);
  font-size: clamp(1.9rem, 3vw, 2.55rem);
}

.warmup-block-header > span {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  border-radius: 999px;
  background: var(--color-action-primary);
  color: #061a18;
  padding: 8px 11px;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.warmup-list {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: warmup-step;
}

.warmup-list li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-height: 58px;
  border-top: 1px solid rgba(16, 32, 51, 0.08);
  padding: 12px clamp(16px, 2.4vw, 24px);
  counter-increment: warmup-step;
}

.warmup-list li:first-child {
  border-top: 0;
}

.warmup-list li::before {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(51, 135, 255, 0.12);
  color: #075c9d;
  content: counter(warmup-step);
  font-size: 0.76rem;
  font-weight: 700;
}

.warmup-list-activate li::before {
  background: rgba(0, 240, 208, 0.16);
  color: #056b61;
}

.warmup-list span {
  color: var(--color-navy-primary);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
}

.warmup-list strong {
  justify-self: end;
  border-radius: 999px;
  background: #f3f8ff;
  color: var(--color-navy-secondary);
  padding: 7px 10px;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.12;
  text-align: right;
  white-space: nowrap;
}

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

  .progression-video video {
    animation: none !important;
  }

}

@media (max-width: 1020px) {
  .transfer-section-header {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .transfer-matchcut-stage {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .site-nav {
    display: none;
  }

  .hero,
  .cindy-hero,
  .cindy-court-progression-row,
  .cindy-focus-grid,
  .movement-grid,
  .movement-video-proof,
  .movement-system-layout,
  .plan-model-layout,
  .workout-layout,
  .reassurance-layout,
  .legal-hero,
  .legal-content-shell,
  .warmup-hero,
  .warmup-video-section,
  .warmup-plan,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .cindy-hero {
    max-width: var(--content-max);
    padding-left: var(--space-page);
    padding-right: var(--space-page);
  }

  .cindy-hero::before {
    inset: auto 18px 34px;
    width: auto;
    height: 120px;
    clip-path: none;
    opacity: 0.38;
  }

  .cindy-hero::after {
    display: none;
  }

  .cindy-hero-proof {
    width: min(100%, 520px);
    min-height: 0;
    justify-self: center;
    transform: none;
  }

  .cindy-hero-video {
    position: relative;
    min-height: 380px;
    border-radius: 24px;
  }

  .cindy-story-card {
    grid-template-columns: 90px minmax(0, 1fr);
    width: auto;
    margin: -64px 18px 0;
  }

  .cindy-week-card .week-plan-strip {
    grid-template-columns: 1fr;
  }

  .cindy-workout-layout {
    grid-template-columns: 1fr;
  }

  .body-proof-module {
    max-width: 720px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .cindy-focus-builder {
    max-width: 720px;
    gap: 10px;
  }

  .cindy-focus-grid .focus-tile {
    min-height: 68px;
  }

  .cindy-focus-grid .focus-tile.selected {
    min-height: 74px;
  }

  .cindy-focus-builder .focus-response-card {
    margin-top: 0;
  }

  .cindy-modification-showcase {
    width: min(100%, 720px);
  }

  .legal-toc {
    position: static;
  }

  .legal-toc-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-height: none;
  }

  .legal-toc-inner > span {
    grid-column: 1 / -1;
  }

  .final-cta {
    min-height: clamp(500px, 66vw, 620px);
  }

  .final-scene img {
    object-position: 56% 58%;
  }

  .final-copy {
    max-width: 560px;
  }

  .expert-proof-band,
  .featured-proof-video {
    grid-template-columns: 1fr;
  }

  .expert-card img {
    min-height: 260px;
    aspect-ratio: 16 / 10;
  }

  .expert-portrait {
    object-position: 50% 16%;
  }

  .featured-proof-media,
  .featured-proof-media video {
    min-height: 300px;
  }

  .testimonial-outcome-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimonial-carousel-header {
    display: flex;
  }

  .testimonial-carousel-dots {
    display: flex;
  }

  .testimonial-carousel-viewport {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 4px 2px 14px;
    scroll-snap-type: x mandatory;
  }

  .testimonial-carousel-card {
    display: grid;
    flex-basis: calc((100% - 12px) / 2);
    order: initial;
  }

  .testimonial-carousel-card:nth-child(n) {
    order: initial;
  }

  .hero {
    min-height: 0;
    max-width: var(--content-max);
    padding-left: var(--space-page);
    padding-right: var(--space-page);
    background: #ffffff;
  }

  .hero::before {
    inset: 0;
    height: auto;
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0) 0 8%, rgba(20, 217, 195, 0.12) 8% 8.7%, rgba(255, 255, 255, 0) 8.7%),
      linear-gradient(106deg, rgba(255, 255, 255, 0) 0 58%, rgba(245, 214, 41, 0.2) 58% 61%, rgba(255, 255, 255, 0) 61%);
  }

  .hero::after {
    right: 32px;
    left: auto;
    top: auto;
    bottom: 78px;
    width: min(62vw, 440px);
    height: 80px;
    border: 0;
    border-radius: 999px;
    background:
      linear-gradient(90deg, rgba(20, 217, 195, 0), rgba(20, 217, 195, 0.2), rgba(245, 214, 41, 0.24));
    filter: blur(22px);
  }

  .hero-copy {
    transform: none;
  }

  .hero-visual {
    min-height: 520px;
  }

  .hero-visual::before {
    display: none;
  }

  .hero-visual::after {
    right: 74px;
    top: 48px;
  }

  .media-frame {
    box-shadow:
      0 16px 36px rgba(16, 32, 51, 0.12),
      -7px 0 0 var(--color-action-primary),
      -12px 0 0 var(--color-rally-yellow);
  }

  .hero-media {
    height: 430px;
    border-radius: 18px;
    clip-path: inset(0 round 18px);
  }

  .hero-media::before {
    right: 78px;
    bottom: 88px;
    width: 156px;
  }

  .plan-model-layout {
    max-width: 720px;
  }

  .week-plan-card {
    grid-column: auto;
    grid-row: auto;
  }

  .movement-section {
    background:
      linear-gradient(180deg, #ffffff 0%, #f7fbff 48%, #ffffff 100%),
      var(--color-white);
  }

  .movement-section::before {
    background:
      radial-gradient(circle at 78% 64%, rgba(0, 240, 208, 0.12), transparent 30%),
      linear-gradient(90deg, rgba(51, 135, 255, 0) 0 14%, rgba(51, 135, 255, 0.07) 14% 14.3%, rgba(51, 135, 255, 0) 14.3% 100%);
  }

  .movement-video-proof {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }

  .movement-section .section-intro p {
    font-size: 1.04rem;
  }

  .focus-section .section-intro .movement-lead {
    font-size: 1.55rem;
  }

  .modification-showcase {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }

  .progression-stack {
    margin: 0;
  }

  .video-frame {
    min-height: 0;
  }

  .video-frame video {
    width: min(100%, 420px);
    max-height: min(62vh, 620px);
  }

  .movement-video-proof figcaption {
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
    padding: 16px 18px;
  }

  .movement-video-proof strong {
    font-size: 1.18rem;
  }

  .focus-builder,
  .clarity-layout {
    grid-template-columns: 1fr;
  }

  .clarity-layout .section-intro {
    position: static;
  }

  .clarity-layout .section-intro h2 {
    max-width: 560px;
    font-size: clamp(2rem, 7vw, 2.75rem);
  }

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

  .focus-tile {
    min-height: 118px;
  }

  .focus-preview {
    grid-template-columns: 1fr;
  }

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

}

@media (max-width: 720px) {
  .site-header {
    align-items: center;
    padding: 6px 18px;
  }

  .cindy-page .site-header {
    padding-top: 16px;
    padding-bottom: 8px;
  }

  .partner-banner-inner {
    align-items: center;
    flex-direction: row;
    gap: 9px;
    padding: 9px 18px 8px;
  }

  .partner-banner-label {
    min-height: 22px;
    padding: 5px 8px;
    font-size: 0.62rem;
  }

  .partner-banner-label::before {
    width: 7px;
    height: 7px;
    box-shadow: 0 0 0 2px rgba(247, 225, 43, 0.22);
  }

  .partner-banner-main {
    min-width: 0;
    font-size: 0.86rem;
    line-height: 1.2;
  }

  .partner-banner-support {
    display: none;
  }

  .brand {
    width: 92px;
  }

  .brand img {
    width: 92px;
  }

  .header-cta {
    display: none;
  }

  .section-shell {
    padding: 48px 18px;
  }

  .how-works-intro {
    text-align: center;
  }

  .how-tiles-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: min(420px, 100%);
    margin-top: 28px;
  }

  .how-tile {
    gap: 12px;
    padding: 14px;
  }

  .how-tile h3 {
    font-size: 1.12rem;
  }

  .how-tile .how-focus-panel .focus-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .how-tile .how-focus-panel .focus-tile {
    min-height: 38px;
    padding: 10px 12px;
  }

  .how-tile .how-focus-panel .focus-tile span {
    font-size: 0.82rem;
  }

  .how-works-cta {
    margin-top: 28px;
  }

  .cindy-hero {
    gap: 20px;
    justify-items: center;
    width: 100%;
    padding: 32px 18px 42px;
    background:
      linear-gradient(180deg, #ffffff 0%, #ffffff 88%, rgba(51, 135, 255, 0.07) 100%);
  }

  .cindy-hero-copy {
    display: grid;
    justify-items: center;
    justify-self: center;
    min-width: 0;
    width: min(100%, 342px);
    max-width: calc(100vw - 48px);
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .cindy-hero .eyebrow {
    margin-bottom: 10px;
    color: #057a6e;
    font-size: 0.76rem;
    letter-spacing: 0.03em;
    line-height: 1.1;
  }

  .cindy-hero h1 {
    width: 100%;
    max-width: 100%;
    margin-bottom: 16px;
    font-size: clamp(1.88rem, 7.6vw, 2.18rem);
    line-height: 1.04;
    overflow-wrap: normal;
    text-wrap: balance;
  }

  .cindy-hero .hero-subhead {
    max-width: min(30ch, 100%);
    margin-bottom: 14px;
    font-size: 0.98rem;
    line-height: 1.36;
    overflow-wrap: normal;
    text-wrap: normal;
  }

  .cindy-proof-line {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 342px;
    margin: 0 0 20px;
    border-radius: 10px;
    background: rgba(0, 240, 208, 0.09);
    padding: 9px 12px;
    color: var(--color-navy-secondary);
    font-size: 0.82rem;
    line-height: 1.28;
    text-align: center;
  }

  .cindy-hero .cta-row {
    width: 100%;
    max-width: 342px;
    margin-left: auto;
    margin-right: auto;
  }

  .cindy-hero .button-primary {
    max-width: 100%;
    min-height: 50px;
    padding: 12px 16px;
    box-shadow: 0 14px 28px rgba(0, 240, 208, 0.32);
  }

  .cindy-hero .cta-support {
    max-width: 100%;
    margin-top: 10px;
    font-size: 0.84rem;
    line-height: 1.36;
    text-align: center;
  }

  .cindy-hero-proof {
    min-width: 0;
    width: min(100%, 300px);
    max-width: calc(100vw - 36px);
    justify-self: center;
    display: grid;
    gap: 0;
    margin-top: 0;
  }

  .cindy-hero-video {
    width: 100%;
    min-height: 0;
    height: 214px;
    border-radius: 12px;
    box-shadow: 0 14px 24px rgba(16, 32, 51, 0.11);
  }

  .cindy-story-card {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    width: min(100%, 280px);
    max-width: 100%;
    margin: 10px 0 0;
    justify-self: center;
    padding: 12px;
    border-color: rgba(16, 32, 51, 0.12);
    box-shadow: 0 14px 24px rgba(16, 32, 51, 0.11);
  }

  .cindy-portrait {
    width: 64px;
  }

  .cindy-story-card figcaption {
    gap: 6px;
  }

  .cindy-story-card figcaption > span {
    font-size: 0.62rem;
  }

  .cindy-story-card blockquote {
    font-size: 0.94rem;
    line-height: 1.25;
    overflow-wrap: normal;
    text-wrap: wrap;
  }

  .cindy-outcome-strip {
    display: none;
  }

  .cindy-outcome-strip li {
    font-size: 0.68rem;
    padding: 6px 8px;
  }

  .cindy-story-card strong {
    font-size: 0.88rem;
  }

  .cindy-court-progression-section,
  .cindy-focus-section,
  .cindy-modification-section,
  .cindy-product-section {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .cindy-focus-section,
  .cindy-modification-section {
    padding-top: 38px;
    padding-bottom: 38px;
  }

  .cindy-system-copy h2 {
    font-size: clamp(2rem, 10vw, 2.75rem);
  }

  .cindy-court-progression-section {
    gap: 28px;
  }

  .cindy-exposed-header,
  .cindy-exposed-list li,
  .cindy-plan-header,
  .cindy-plan-list {
    padding: 20px;
  }

  .cindy-exposed-list li,
  .cindy-plan-list div {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .cindy-exposed-list li > span {
    width: fit-content;
  }

  .cindy-product-bridge {
    font-size: 0.94rem;
  }

  .site-footer {
    align-items: flex-start;
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .footer-contact-block {
    justify-items: start;
    text-align: left;
  }

  .site-footer nav {
    justify-content: flex-start;
  }

  .legal-hero {
    padding-top: 40px;
    padding-bottom: 34px;
  }

  .legal-hero h1 {
    font-size: clamp(2.42rem, 14vw, 3.5rem);
  }

  .legal-summary-card {
    padding: 18px;
  }

  .legal-toc-inner {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .legal-toc a {
    padding: 10px 0;
  }

  .legal-section {
    border-radius: 12px;
    padding: 20px 18px;
  }

  .legal-section p,
  .legal-section li {
    font-size: 0.94rem;
    line-height: 1.64;
  }

  .warmup-hero {
    padding-top: 40px;
    padding-bottom: 22px;
  }

  .warmup-hero h1 {
    font-size: clamp(2.42rem, 14vw, 3.5rem);
  }

  .warmup-court-card {
    padding: 18px;
  }

  .warmup-video-section {
    gap: 18px;
  }

  .warmup-video-copy h2 {
    font-size: 1.94rem;
  }

  .warmup-plan {
    gap: 18px;
  }

  .warmup-block {
    border-radius: 14px;
  }

  .warmup-block-header {
    grid-template-columns: 1fr;
    gap: 5px;
    padding: 18px;
  }

  .warmup-block-header > span {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
    margin-top: 6px;
  }

  .warmup-list li {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 10px 12px;
    align-items: start;
    padding: 13px 16px;
  }

  .warmup-list strong {
    grid-column: 2;
    justify-self: start;
    white-space: normal;
    text-align: left;
  }

  .final-cta {
    border-radius: 0;
    min-height: 620px;
  }

  .final-scene img {
    object-position: 52% 60%;
    transform: none;
  }

  .final-copy h2 {
    color: var(--color-white);
  }

  .final-copy p {
    max-width: 360px;
    font-size: 1rem;
    line-height: 1.5;
  }

  .final-action {
    align-items: flex-start;
    gap: 12px;
    margin-top: 22px;
  }

  .final-action .button {
    width: 100%;
  }

  .final-secondary-link {
    margin-top: 2px;
  }

  .final-action p {
    max-width: 360px;
    font-size: 0.88rem;
  }

  .movement-section .section-intro {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 32px;
  }

  .movement-section .section-intro h2 {
    margin-bottom: 14px;
  }

  .movement-section .section-intro p {
    width: 100%;
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.52;
  }

  .movement-intro-copy {
    width: 100%;
    max-width: 100%;
    gap: 7px;
    padding-left: 0;
  }

  .focus-section .section-intro .movement-lead {
    font-size: 1.22rem;
    line-height: 1.24;
  }

  .movement-intro-copy p {
    font-size: 0.96rem;
    line-height: 1.5;
  }

  .movement-proof-layout {
    width: 100%;
    max-width: min(100%, 360px);
    margin-left: 0;
    margin-right: 0;
  }

  .movement-system-layout {
    width: 100%;
    max-width: min(100%, 360px);
    gap: 30px;
  }

  .movement-body {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
  }

  .movement-video-proof,
  .movement-video-proof-centered {
    grid-template-columns: 1fr;
    justify-items: stretch;
    width: 100%;
    max-width: 100%;
    border-radius: 0;
  }

  .movement-video-proof .video-frame {
    order: 2;
  }

  .movement-proof-copy {
    order: 1;
    gap: 16px;
    padding: 22px 18px 18px;
  }

  .movement-video-proof .video-frame {
    min-height: 0;
    padding: 18px;
  }

  .movement-video-proof figcaption {
    justify-self: start;
    max-width: 100%;
    gap: 6px;
    padding: 15px 16px;
  }

  .movement-video-proof strong {
    font-size: clamp(1.08rem, 4.6vw, 1.22rem);
    font-weight: var(--type-meta);
    line-height: 1.22;
  }

  .movement-video-proof figcaption > p {
    font-size: 0.86rem;
    line-height: 1.42;
  }

  .movement-proof-feature {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }

  .plan-model-section {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .plan-model-layout {
    gap: 18px;
    width: 100%;
    max-width: 100%;
  }

  .plan-model-copy {
    width: 100%;
    max-width: 100%;
  }

  .plan-model-copy h2 {
    width: 100%;
    max-width: 360px;
    margin-bottom: 10px;
    font-size: clamp(1.72rem, 7.6vw, 2.12rem);
    line-height: 1.06;
  }

  .plan-model-copy p:not(.eyebrow) {
    max-width: 360px;
    font-size: 0.96rem;
    line-height: 1.48;
  }

  .plan-model-bridge {
    margin-top: 10px;
    font-size: 0.88rem;
    line-height: 1.38;
  }

  .transfer-section {
    padding-top: 38px;
    padding-bottom: 38px;
  }

  .transfer-section-header {
    gap: 18px;
    margin-bottom: 20px;
  }

  .transfer-section-copy h2 {
    margin-bottom: 12px;
  }

  .transfer-section-copy p:not(.eyebrow) {
    max-width: 380px;
  }

  .transfer-mobile-proof {
    display: grid;
    gap: 12px;
  }

  .transfer-mobile-selector {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
    border: 1px solid rgba(16, 32, 51, 0.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.88);
    padding: 6px;
    box-shadow: 0 10px 22px rgba(16, 32, 51, 0.055);
  }

  .transfer-mobile-tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    min-height: 44px;
    border: 1px solid transparent;
    border-radius: 8px;
    background: transparent;
    color: var(--color-navy-primary);
    cursor: pointer;
    padding: 9px 8px;
    font: inherit;
    font-size: 0.82rem;
    font-weight: var(--type-card-title);
    line-height: 1.08;
    text-align: center;
  }

  .transfer-mobile-tab.is-active {
    border-color: rgba(0, 240, 208, 0.35);
    background: rgba(0, 240, 208, 0.12);
    box-shadow: inset 0 -3px 0 var(--color-action-primary);
    color: var(--color-navy-primary);
  }

  .transfer-mobile-tab:focus-visible {
    outline: 3px solid rgba(0, 240, 208, 0.38);
    outline-offset: 2px;
  }

  .transfer-mobile-card figcaption span {
    display: block;
    color: #155ea7;
    font-size: 0.66rem;
    font-weight: var(--type-meta);
    letter-spacing: 0.04em;
    line-height: 1.05;
    text-transform: uppercase;
  }

  .transfer-mobile-sequence {
    display: grid;
    gap: 12px;
  }

  .transfer-mobile-card[hidden] {
    display: none;
  }

  .transfer-mobile-card {
    display: grid;
    gap: 0;
    overflow: hidden;
    border: 1px solid rgba(16, 32, 51, 0.1);
    border-radius: 12px;
    background: var(--color-white);
    box-shadow: 0 12px 24px rgba(16, 32, 51, 0.065);
  }

  .transfer-mobile-card figure {
    display: grid;
    margin: 0;
  }

  .transfer-mobile-card img,
  .transfer-mobile-card video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    height: auto;
    object-fit: cover;
    object-position: 50% 44%;
  }

  .transfer-mobile-card figure:first-child img,
  .transfer-mobile-card figure:first-child video {
    object-position: 50% 42%;
  }

  .transfer-mobile-card figcaption {
    display: grid;
    gap: 3px;
    border-top: 1px solid rgba(16, 32, 51, 0.08);
    background: rgba(255, 255, 255, 0.97);
    padding: 9px 11px 10px;
  }

  .transfer-mobile-card figcaption strong {
    color: var(--color-navy-primary);
    font-size: 0.98rem;
    font-weight: var(--type-card-title);
    line-height: 1.12;
  }

  .transfer-mobile-bridge {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 9px;
    align-items: center;
    border-top: 1px solid rgba(16, 32, 51, 0.08);
    border-bottom: 1px solid rgba(16, 32, 51, 0.08);
    background: rgba(0, 240, 208, 0.08);
    padding: 10px 11px;
  }

  .transfer-mobile-bridge span {
    display: inline-grid;
    width: 28px;
    height: 28px;
    place-items: center;
    border-radius: 50%;
    background: var(--color-action-primary);
    color: var(--color-navy-primary);
  }

  .transfer-mobile-bridge span::before {
    content: "↓";
    font-size: 1rem;
    font-weight: var(--type-copy-strong);
    line-height: 1;
  }

  .transfer-mobile-bridge p {
    margin: 0;
    color: var(--color-navy-primary);
    font-size: 0.88rem;
    font-weight: var(--type-copy-strong);
    line-height: 1.28;
  }

  .transfer-matchcut {
    display: none;
    gap: 0;
    width: 100%;
    border-radius: 0;
    padding: 0;
  }

  .transfer-matchcut-stage {
    grid-template-columns: 1fr;
    gap: 10px;
    justify-self: stretch;
    width: 100%;
    border: 0;
    border-radius: 0;
    background: transparent;
    padding: 0;
    box-shadow: none;
  }

  .transfer-matchcut-media img,
  .transfer-matchcut-media video {
    aspect-ratio: 16 / 10;
    height: auto;
  }

  .transfer-media-footer {
    padding: 9px 11px 10px;
  }

  .transfer-media-footer strong {
    font-size: 1rem;
  }

  .transfer-media-footer small {
    font-size: 0.84rem;
  }

  .transfer-selector-group {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
    width: 100%;
    margin: 0 0 10px;
    padding: 0;
  }

  .transfer-selector {
    min-height: 42px;
    padding: 9px 10px 12px;
    font-size: 0.67rem;
  }

  .transfer-selector-item::before {
    left: 16px;
    right: 16px;
    bottom: 6px;
  }

  .week-plan-card {
    justify-self: stretch;
    width: min(100%, calc(100vw - 48px));
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
    border: 0;
    border-radius: 0;
    background: transparent;
    padding: 2px 0 0;
    box-shadow: none;
  }

  .week-plan-header {
    display: grid;
    gap: 6px;
    margin: 0 0 18px;
  }

  .week-plan-header strong {
    justify-self: start;
    text-align: left;
  }

  .week-plan-strip {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
  }

  .week-plan-strip::before {
    left: 14px;
    right: auto;
    top: 0;
    bottom: 0;
    width: 3px;
    height: auto;
    background: linear-gradient(180deg, var(--color-action-primary), var(--color-court-green) 70%, var(--color-rally-yellow));
  }

  .week-plan-strip li {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 5px 12px;
    min-height: 0;
    padding: 0 0 22px;
  }

  .week-plan-strip li:last-child {
    padding-bottom: 0;
  }

  .week-plan-strip li::before {
    grid-column: 1;
    grid-row: 1 / 5;
    width: 31px;
    height: 31px;
  }

  .week-plan-mode,
  .week-plan-day,
  .week-plan-strip strong,
  .week-plan-strip small {
    grid-column: 2;
  }

  .week-plan-day {
    margin-top: 0;
    font-size: 0.78rem;
  }

  .week-plan-strip strong {
    font-size: 0.98rem;
    line-height: 1.18;
  }

  .week-plan-strip small {
    max-width: 290px;
    font-size: 0.84rem;
    line-height: 1.42;
  }

  .transfer-plan-card .week-plan-header {
    margin-bottom: 10px;
  }

  .transfer-plan-card .week-plan-header strong {
    font-size: 0.88rem;
  }

  .transfer-plan-feature {
    width: 100%;
    margin: 0;
    border-radius: 14px 14px 10px 10px;
  }

  .transfer-plan-feature-media,
  .transfer-plan-feature-media img,
  .transfer-plan-feature-media video {
    min-height: 0;
  }

  .transfer-plan-feature-media img,
  .transfer-plan-feature-media video {
    aspect-ratio: 4 / 3;
    height: auto;
  }

  .transfer-plan-feature-video {
    height: 100%;
  }

  .transfer-plan-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
    max-width: 100%;
    margin: -1px 0 0;
    padding: 9px;
    border-radius: 0 0 16px 16px;
  }

  .transfer-plan-item {
    min-width: 0;
  }

  .transfer-plan-control {
    min-height: 34px;
    min-width: 0;
    padding: 8px 9px;
  }

  .transfer-plan-item.is-active .transfer-plan-control {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .transfer-plan-flow {
    min-width: 0;
  }

  .transfer-plan-flow span {
    font-size: 0.62rem;
    line-height: 1.08;
  }

  .early-proof-quote {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    margin: 16px 0 0;
    border: 1px solid rgba(51, 135, 255, 0.16);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.84);
    padding: 13px 14px;
  }

  .early-proof-quote blockquote {
    font-size: 0.92rem;
    line-height: 1.4;
  }

  .video-frame video {
    width: min(100%, 300px);
    max-height: min(56vh, 480px);
  }

  .hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
    gap: 0;
    width: 100%;
    max-width: 100%;
    padding-top: 22px;
    padding-left: var(--space-page);
    padding-right: var(--space-page);
    padding-bottom: 32px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 46%, rgba(255, 255, 255, 0.72) 68%, rgba(255, 255, 255, 0.2) 100%),
      linear-gradient(132deg, rgba(51, 135, 255, 0.2) 0%, rgba(51, 135, 255, 0.36) 58%, rgba(0, 240, 208, 0.34) 100%);
  }

  .hero-copy {
    display: contents;
    transform: none;
  }

  .hero-copy > .eyebrow {
    display: none;
  }

  .hero::before {
    display: none;
  }

  .hero::after {
    display: none;
  }

  h1 {
    width: 100%;
    max-width: 100%;
    margin-bottom: 16px;
    font-size: clamp(1.88rem, 6.8vw, 2.16rem);
    line-height: 1.04;
    overflow-wrap: normal;
    text-wrap: balance;
  }

  .hero h1 {
    order: 1;
    position: relative;
    z-index: 2;
    width: min(376px, calc(100vw - 16px));
    max-width: calc(100vw - 16px);
    margin-bottom: 14px;
    font-size: clamp(2.48rem, 10.8vw, 2.96rem);
    line-height: 1.01;
    text-align: center;
  }

  h1 span {
    display: block;
    white-space: normal;
  }

  h1 span + span::before {
    content: "";
  }

  h2 {
    font-size: clamp(1.62rem, 6.8vw, 1.94rem);
    width: min(330px, calc(100vw - 36px));
    max-width: 100%;
    overflow-wrap: anywhere;
    text-wrap: wrap;
  }

  .eyebrow {
    font-size: 0.74rem;
  }

  .hero-subhead,
  .section-intro p,
  .final-copy p {
    font-size: 1rem;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .hero-subhead {
    order: 2;
    position: relative;
    z-index: 2;
    max-width: min(33ch, 100%);
    margin-bottom: 18px;
    font-size: 1.06rem;
    line-height: 1.45;
    overflow-wrap: normal;
    text-align: center;
    text-wrap: normal;
  }

  .hero-subhead-desktop {
    display: none;
  }

  .hero-subhead-mobile {
    display: inline;
  }

  .clarity-layout {
    gap: 26px;
  }

  .clarity-layout .section-intro h2 {
    margin-bottom: 12px;
  }

  .clarity-layout .section-intro > p:not(.clarity-reassurance) {
    max-width: 330px;
    font-size: 0.98rem;
    line-height: 1.45;
  }

  .clarity-reassurance {
    max-width: 330px;
    margin-top: 12px;
    font-size: 0.92rem;
    line-height: 1.45;
  }

  .clarity-faq {
    gap: 9px;
  }

  .clarity-faq details {
    border-radius: 9px;
  }

  .clarity-faq summary {
    min-height: 64px;
    grid-template-columns: minmax(0, 1fr);
    padding: 16px 58px 16px 16px;
    font-size: 1rem;
  }

  .clarity-faq summary .faq-action {
    display: none;
  }

  .clarity-faq summary .faq-action::before,
  .clarity-faq details[open] .faq-action::before {
    content: "";
  }

  .clarity-faq summary::before,
  .clarity-faq summary::after {
    right: 22px;
    width: 14px;
  }

  .clarity-faq p {
    margin: -1px 18px 16px 16px;
    font-size: 0.94rem;
    line-height: 1.5;
  }

  .proof-badge {
    display: none;
  }

  .proof-badge::after {
    display: none;
  }

  .proof-badge strong {
    min-width: 0;
    color: var(--color-navy-secondary);
    font-size: 0.76rem;
    line-height: 1.32;
  }

  .cta-row,
  .button {
    width: 100%;
  }

  .hero .cta-row {
    order: 4;
    position: relative;
    z-index: 2;
    max-width: 352px;
    margin-top: 16px;
    margin-bottom: 16px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero .button-primary {
    min-height: 56px;
    border-color: #00a894;
    border-bottom-width: 4px;
    padding: 14px 16px 12px;
    text-align: center;
    white-space: normal;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.42),
      0 14px 26px rgba(0, 240, 208, 0.28),
      0 5px 0 rgba(0, 168, 148, 0.9);
  }

  .hero-visual {
    order: 3;
    width: min(100%, calc(100vw - 36px));
    min-height: 0;
    display: grid;
    gap: 0;
    margin-top: 0;
    margin-bottom: 0;
  }

  .hero-panel {
    display: none;
  }

  .hero-story-card {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    padding: 12px;
  }

  .hero-story-portrait {
    width: 64px;
  }

  .hero-story-card figcaption {
    gap: 6px;
  }

  .hero-story-card blockquote {
    font-size: 0.94rem;
    line-height: 1.25;
  }

  .hero-outcome-strip {
    display: none;
  }

  .hero-outcome-strip li {
    font-size: 0.68rem;
    padding: 6px 8px;
  }

  .hero-story-card strong {
    font-size: 0.88rem;
  }

  .hero .cta-row .button-secondary {
    display: none;
  }

  .hero-secondary-mobile {
    display: none;
    order: 0;
  }

  .hero-media {
    height: 240px;
    border: 1px solid rgba(16, 32, 51, 0.08);
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(16, 32, 51, 0.12);
    clip-path: inset(0 round 12px);
  }

  .hero-media::before {
    right: 22px;
    bottom: 54px;
    width: 96px;
    height: 12px;
    border-right-width: 3px;
    border-bottom-width: 3px;
    opacity: 0.72;
  }

  .leagues-page .hero-subhead {
    max-width: min(34ch, 100%);
  }

  .leagues-page .hero-subhead strong {
    color: var(--color-navy-primary);
    font-weight: 850;
  }

  .leagues-page .hero-media::after {
    background:
      linear-gradient(180deg, rgba(16, 32, 51, 0.02) 0%, rgba(16, 32, 51, 0) 42%),
      linear-gradient(0deg, rgba(16, 32, 51, 0.32), rgba(16, 32, 51, 0) 46%);
  }

  .league-mobile-quote-card {
    position: absolute;
    left: 12px;
    bottom: 12px;
    z-index: 5;
    display: grid;
    width: min(74%, 280px);
    gap: 5px;
    margin: 0;
    border: 1px solid rgba(16, 32, 51, 0.16);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 12px 24px rgba(16, 32, 51, 0.2);
    padding: 11px 12px 10px;
    text-align: left;
  }

  .league-mobile-quote-card::before {
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    border-radius: 12px 12px 0 0;
    background: linear-gradient(90deg, var(--color-court-blue), var(--color-action-primary) 66%, var(--color-rally-yellow));
    content: "";
  }

  .league-mobile-quote-card blockquote {
    margin: 0;
    color: var(--color-navy-primary);
    font-size: 0.92rem;
    font-weight: 850;
    line-height: 1.18;
  }

  .league-mobile-quote-card figcaption {
    color: var(--color-navy-secondary);
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1;
  }

  .hero-poster img,
  .hero-video {
    object-position: 48% 54%;
  }

  .court-mission-card {
    padding: 0 12px 12px;
  }

  .court-mission-card::before {
    height: 0;
    background: transparent;
  }

  .mission-topline {
    display: flex;
    grid-template-columns: none;
    gap: 8px;
    align-items: center;
    margin: 0 -12px 10px;
    padding: 10px 12px 9px;
  }

  .mission-topline::after {
    height: 2px;
  }

  .mission-title-block {
    margin-bottom: 8px;
  }

  .mission-title-block h2 {
    width: 100%;
    font-size: 1.14rem;
    line-height: 1.12;
    overflow-wrap: normal;
  }

  .mission-title-block p {
    font-size: 0.7rem;
  }

  .mission-time {
    flex: 0 0 auto;
    justify-self: auto;
    padding: 5px 8px;
    font-size: 0.64rem;
    text-align: right;
  }

  .mission-goal {
    margin-bottom: 9px;
    padding: 10px;
  }

  .mission-goal span {
    font-size: 0.66rem;
  }

  .mission-goal strong {
    font-size: 0.98rem;
    line-height: 1.22;
  }

  .mission-footer {
    grid-template-columns: 1fr;
    gap: 7px;
    padding-top: 6px;
  }

  .mission-status-desktop {
    display: none;
  }

  .mission-status-mobile {
    display: none;
    justify-self: start;
    border-radius: 7px;
    background: rgba(16, 32, 51, 0.06);
    padding: 5px 7px;
    color: var(--color-navy-secondary);
    font-size: 0.64rem;
    letter-spacing: 0.015em;
    line-height: 1;
  }

  .mission-footer p {
    font-size: 0.86rem;
    line-height: 1.34;
  }

  .mission-footer strong {
    font-size: 0.86rem;
  }

  .mini-court {
    min-height: 280px;
  }

  .mini-court.compact {
    min-height: 180px;
  }

  .step {
    font-size: 0.74rem;
  }

  .expert-proof-band {
    padding: 10px;
    border-radius: 12px;
  }

  .expert-proof-band::before {
    display: none;
  }

  .expert-card {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
    background: rgba(250, 251, 247, 0.98);
  }

  .expert-card img {
    position: static;
    display: block;
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 11;
    object-fit: cover;
  }

  .expert-portrait {
    object-position: 50% 16%;
  }

  .expert-card div,
  .featured-proof-copy,
  .testimonial-card {
    padding: 18px;
  }

  .expert-card div {
    position: relative;
    z-index: 2;
    background: rgba(250, 251, 247, 0.98);
  }

  .expert-card .eyebrow {
    max-width: 100%;
    font-size: 0.68rem;
    line-height: 1.15;
    white-space: normal;
  }

  .expert-card h3 {
    max-width: 100%;
    font-size: clamp(1.38rem, 6.2vw, 1.72rem);
    line-height: 1.08;
    overflow-wrap: normal;
  }

  .expert-card p {
    font-size: 0.96rem;
    line-height: 1.42;
  }

  .expert-proof-list {
    gap: 7px;
    margin-top: 16px;
  }

  .expert-proof-list li {
    font-size: 0.9rem;
    line-height: 1.28;
  }

  .featured-proof-media,
  .featured-proof-media video {
    min-height: 230px;
  }

  .testimonial-proof-header {
    display: grid;
    gap: 6px;
  }

  .testimonial-proof-header p {
    white-space: normal;
  }

  .testimonial-outcome-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

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

  .testimonial-carousel-header {
    position: static;
    align-items: start;
    flex-direction: column;
    gap: 10px;
  }

  .testimonial-carousel-controls {
    align-self: stretch;
    justify-content: space-between;
  }

  .testimonial-carousel-button {
    width: 44px;
    height: 44px;
  }

  .testimonial-carousel-viewport {
    gap: 10px;
    margin-top: 8px;
    padding-right: 2px;
    padding-bottom: 10px;
  }

  .testimonial-card {
    gap: 14px;
    padding: 22px;
  }

  .testimonial-card blockquote,
  .testimonial-carousel-card blockquote {
    font-size: 1.04rem;
    line-height: 1.46;
  }

  .testimonial-card figcaption {
    font-size: 0.94rem;
  }

  .testimonial-avatar {
    width: 56px;
    height: 56px;
  }

  .testimonial-carousel-card {
    flex-basis: 100%;
    min-height: 0;
  }

  .body-tags {
    grid-template-columns: 1fr;
  }

  .reassurance-section .section-intro {
    margin-bottom: 14px;
  }

  .reassurance-section .section-intro h2 {
    margin-bottom: 10px;
  }

  .body-section-recognition {
    max-width: 340px;
    font-size: 0.96rem;
    line-height: 1.45;
  }

  .body-aware-system {
    gap: 14px;
    width: min(100%, calc(100vw - 36px));
    justify-self: start;
  }

  .body-proof-card {
    gap: 14px;
  }

  .body-proof-copy {
    display: grid;
    gap: 10px;
  }

  .body-step-header {
    display: grid;
    gap: 6px;
  }

  .body-step-header p:not(.body-step-label) {
    font-size: 0.88rem;
  }

  .body-proof-header h3,
  .body-proof-heading h3 {
    max-width: calc(100vw - 60px);
    font-size: clamp(1.08rem, 5vw, 1.3rem);
    line-height: 1.12;
  }

  .body-proof-header h2,
  .body-proof-heading h2 {
    max-width: calc(100vw - 60px);
    font-size: clamp(1.08rem, 5vw, 1.3rem);
    line-height: 1.12;
  }

  .body-chip-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
  }

  .body-support-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .body-heading-break {
    display: block;
  }

  .body-chip {
    width: 100%;
    min-height: 34px;
    padding: 7px 10px;
    font-size: 0.82rem;
  }

  .body-support-tile {
    min-height: 62px;
    border-radius: 10px;
    padding: 12px 10px;
    font-size: 0.9rem;
    line-height: 1.12;
  }

  .body-support-tile::before {
    width: 7px;
    height: 7px;
    margin-right: 8px;
  }

  .landing-page .body-map {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
    gap: 8px;
    width: 100%;
    min-height: 0;
  }

  .landing-page .body-map-figure {
    grid-column: 1 / -1;
    grid-row: auto;
    width: min(180px, 56vw);
    margin: 0 auto 8px;
  }

  .landing-page .body-map-callout,
  .landing-page .body-map-knee,
  .landing-page .body-map-hip,
  .landing-page .body-map-arthritis,
  .landing-page .body-map-back,
  .landing-page .body-map-calf,
  .landing-page .body-map-elbow,
  .landing-page .body-map-shoulder,
  .landing-page .body-map-foot,
  .landing-page .body-map-osteoporosis {
    grid-column: auto;
    grid-row: auto;
    min-height: 58px;
    padding: 12px 10px;
    font-size: 0.88rem;
    line-height: 1.12;
  }

  .body-proof-heading p,
  .body-proof-reassurance,
  .body-proof-footer,
  .body-version-card p {
    font-size: 0.88rem;
    line-height: 1.38;
  }

  .body-proof-module {
    width: min(100%, calc(100vw - 36px));
    overflow: hidden;
    gap: 12px;
    border-radius: 12px;
    padding: 12px;
  }

  .body-proof-card {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .body-version-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .body-version-card-featured {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .body-version-card:not(.body-version-card-featured) .body-version-video {
    aspect-ratio: 4 / 3;
  }

  .body-version-card:not(.body-version-card-featured) .body-version-video span {
    font-size: 0.5rem;
  }

  .body-version-card-featured .body-version-video {
    aspect-ratio: 16 / 10.5;
  }

  .body-proof-reassurance {
    border-radius: 10px;
    padding: 11px 12px;
  }

  .body-version-video span {
    left: 7px;
    top: 7px;
    max-width: calc(100% - 14px);
    padding: 5px 7px;
    font-size: 0.55rem;
    line-height: 1.05;
  }

  .body-version-card figcaption {
    align-content: center;
    min-height: 88px;
    padding: 9px 10px;
  }

  .body-version-card strong {
    font-size: 0.9rem;
  }

  .body-proof-footer {
    padding-top: 8px;
  }

  .modification-showcase {
    gap: 8px;
    padding: 0;
  }

  .progression-stack {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    align-items: stretch;
    overflow: visible;
    margin: 0;
    padding: 0;
  }

  .progression-stack::before {
    display: none;
  }

  .progression-stack::after {
    display: none;
  }

  .progression-stack .progression-moment::before {
    display: none;
  }

  .progression-stack .progression-moment:nth-child(2)::before {
    display: none;
  }

  .progression-stack .progression-moment:not(:last-child)::after {
    display: none;
  }

  .progression-moment {
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
    min-height: 0;
    overflow: hidden;
    border: 1px solid rgba(16, 32, 51, 0.08);
    border-radius: 10px;
    background: var(--color-white);
    box-shadow: 0 6px 14px rgba(16, 32, 51, 0.045);
    filter: none;
    transform: none;
  }

  .progression-moment-featured {
    grid-template-columns: 1fr;
  }

  .progression-moment-supporting {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .progression-moment:nth-child(1),
  .progression-moment:nth-child(3) {
    filter: none;
    transform: none;
  }

  .progression-moment:nth-child(2) {
    border-color: rgba(0, 240, 208, 0.58);
    border-radius: 11px;
    box-shadow:
      0 6px 14px rgba(16, 32, 51, 0.06),
      0 0 0 2px rgba(0, 240, 208, 0.09);
  }

  .progression-video {
    margin: 0;
    height: auto;
    aspect-ratio: 6 / 5;
    border-radius: 9px 9px 0 0;
  }

  .progression-moment-featured .progression-video {
    height: auto;
    aspect-ratio: 6 / 5;
    border-radius: 9px 9px 0 0;
  }

  .progression-moment-supporting .progression-video {
    height: auto;
    aspect-ratio: 6 / 5;
    border-radius: 9px 9px 0 0;
  }

  .progression-video::after {
    height: 100%;
    background: linear-gradient(180deg, rgba(16, 32, 51, 0), rgba(16, 32, 51, 0.2));
  }

  .progression-video video {
    object-position: 50% 44%;
  }

  .progression-video span {
    display: none;
  }

  .progression-moment figcaption {
    position: static;
    align-content: center;
    padding: 6px 6px 7px;
    color: var(--color-navy-primary);
  }

  .progression-moment-featured figcaption {
    padding: 6px 6px 7px;
  }

  .progression-moment figcaption > strong {
    color: var(--color-navy-primary);
    font-size: clamp(0.68rem, 3vw, 0.82rem);
    line-height: 1.08;
    overflow-wrap: anywhere;
  }

  .progression-moment:nth-child(2) figcaption > strong {
    font-size: clamp(0.72rem, 3.2vw, 0.88rem);
  }

  .progression-moment figcaption span {
    color: var(--color-slate-primary);
    font-size: 0.78rem;
    line-height: 1.22;
  }

  .progression-moment-featured .progression-rep-cue,
  .progression-moment-featured .modification-transfer-line {
    display: none;
  }

  .progression-moment figcaption .progression-mobile-label {
    margin-bottom: 2px;
    color: #056b61;
    font-size: clamp(0.46rem, 2.05vw, 0.56rem);
    font-weight: var(--type-meta);
    letter-spacing: 0.025em;
    line-height: 1.08;
    text-transform: uppercase;
  }

  .progression-mobile-detail {
    display: block;
    margin: 9px 0 0;
    border-left: 2px solid rgba(0, 240, 208, 0.58);
    padding: 2px 0 2px 10px;
    color: var(--color-slate-primary);
    font-size: 0.78rem;
    font-weight: 720;
    line-height: 1.35;
  }

  .progression-mobile-detail strong {
    color: var(--color-navy-primary);
  }

  .modification-proof-bar {
    display: grid;
    gap: 8px;
    margin-top: 0;
    padding: 12px 0 0;
  }

  .modification-transfer-line {
    margin-top: 10px;
    padding-top: 12px;
    font-size: 0.96rem;
    line-height: 1.42;
  }

  .modification-transfer-line strong {
    font-size: inherit;
    line-height: inherit;
  }

  .modification-proof-bar p {
    display: grid;
    justify-items: start;
    gap: 6px;
    border-radius: 12px;
    padding: 9px 10px;
    font-size: 0.88rem;
    line-height: 1.44;
  }

  .modification-proof-bar p + p {
    border-top: 1px solid rgba(16, 32, 51, 0.08);
    padding-top: 8px;
  }

  .modification-proof-bar p::before {
    display: none;
  }

  .modification-proof-bar::before {
    display: none;
  }

  .modification-proof-bar span {
    padding: 5px 8px;
    font-size: 0.72rem;
  }

  .focus-preview {
    grid-template-columns: 1fr;
  }

  .focus-grid {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    border-radius: 12px;
    padding: 0;
  }

  .focus-tile {
    min-height: 96px;
    padding: 18px 52px 16px 16px;
    text-align: left;
  }

  .focus-tile::before {
    display: block;
  }

  .focus-tile::after {
    left: auto;
    right: 10px;
    bottom: auto;
    top: 10px;
    transform: none;
  }

  .focus-preview {
    gap: 14px;
    padding: 0;
  }

  .focus-preview,
  .focus-preview *,
  .focus-builder,
  .focus-builder * {
    min-width: 0;
  }

  .focus-section h2 {
    max-width: calc(100vw - 36px);
    font-size: 1.78rem;
    overflow-wrap: anywhere;
  }

  .focus-section .section-intro h2 {
    max-width: calc(100vw - 36px);
    font-size: clamp(1.78rem, 7vw, 2.08rem);
    line-height: 1.08;
    overflow-wrap: anywhere;
    text-wrap: wrap;
  }

  .focus-section .section-intro .movement-lead {
    max-width: calc(100vw - 54px);
    font-size: 1.24rem;
    overflow-wrap: anywhere;
  }

  .focus-section .section-intro,
  .focus-choice-panel,
  .focus-selector-panel,
  .focus-grid,
  .focus-response-card,
  .focus-week-preview,
  .featured-workout,
  .week-teasers,
  .phase-continuation {
    width: calc(100vw - 36px);
    max-width: calc(100vw - 36px);
  }

  .focus-builder,
  .focus-preview {
    width: calc(100vw - 36px);
    max-width: calc(100vw - 36px);
    overflow: hidden;
  }

  .focus-tile span,
  .focus-progress-panel h3,
  .focus-progress-panel p,
  .featured-workout h4,
  .featured-workout p,
  .week-teasers strong,
  .week-teasers small,
.phase-continuation p {
    overflow-wrap: anywhere;
  }

  .focus-progress-panel h3 {
    max-width: calc(100vw - 72px);
    font-size: 1.34rem;
    color: var(--color-navy-primary);
  }

  .focus-progress-panel > p:not(.focus-plan-kicker) {
    max-width: calc(100vw - 72px);
    margin-bottom: 16px;
    color: var(--color-slate-primary);
    font-size: 0.94rem;
    line-height: 1.46;
  }

  .focus-movement {
    min-height: 190px;
    aspect-ratio: 16 / 10;
  }

  .focus-progress-panel {
    grid-template-columns: 1fr;
    gap: 12px;
    border-radius: 0;
    background: transparent;
    padding: 0;
  }

  .focus-progress-panel::before {
    display: none;
  }

  .focus-plan-kicker,
  .focus-progress-panel h3,
  .focus-progress-panel > p:not(.focus-plan-kicker) {
    grid-column: 1;
    margin-left: 18px;
    margin-right: 18px;
  }

  .focus-plan-kicker {
    margin-top: 18px;
  }

  .week-route-header {
    display: grid;
    gap: 5px;
  }

  .week-route-header strong {
    text-align: left;
  }

  .week-route-list {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .week-route-list::before {
    left: 23px;
    right: auto;
    top: 18px;
    bottom: 18px;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, rgba(20, 217, 195, 0.4), rgba(53, 200, 90, 0.18));
  }

  .week-route-list li {
    min-height: auto;
    padding: 14px 14px 14px 54px;
  }

  .week-route-list li::before {
    left: 12px;
    top: 15px;
  }

  .phase-continuation {
    grid-template-columns: 1fr;
    gap: 8px;
    border-radius: 14px;
  }

  .focus-week-preview {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-column: 1;
    padding: 16px;
  }

  .focus-week-preview::before {
    display: none;
  }

  .focus-week-preview-header {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .focus-week-preview-header strong {
    text-align: left;
  }

  .featured-workout {
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
    gap: 10px;
    min-height: 250px;
    padding: 16px;
  }

  .featured-workout .focus-movement {
    height: 100%;
    min-height: 0;
    aspect-ratio: auto;
  }

  .featured-workout-day {
    display: inline-grid;
    min-height: 0;
    width: fit-content;
    padding: 7px 10px;
  }

  .featured-workout h4 {
    font-size: 1.22rem;
  }

  .week-teasers {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    border-left: 0;
    padding-left: 0;
  }

  .week-teasers div {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 4px 8px;
    min-height: 0;
    padding: 10px;
  }

  .week-teasers span,
  .week-teasers small {
    grid-column: 2;
    grid-row: auto;
  }

  .phase-chip-row {
    gap: 6px;
  }

  .phase-chip-row span:not(:last-child)::after {
    display: none;
  }

  .phase-map {
    display: none;
  }

  .phase-stack {
    display: block;
  }

  .phase-stack li {
    grid-template-columns: 1fr;
    gap: 3px;
    padding: 13px 0 13px 26px;
  }

  .phase-stack span,
  .phase-stack strong,
  .phase-stack small {
    grid-column: auto;
    grid-row: auto;
  }

  .phase-stack small {
    margin-top: 0;
  }

  .phase-stack li::before {
    top: 18px;
  }

  .phase-stack li:not(:last-child)::after {
    top: 29px;
  }

  .focus-court-lines {
    min-height: 178px;
  }

  .focus-plan-card {
    padding: 18px;
  }

  .focus-plan-card > p:not(.focus-plan-kicker) {
    margin-bottom: 14px;
  }

  .focus-plan-list {
    gap: 10px;
  }

  .focus-plan-list div {
    padding-top: 10px;
  }

  .workout-preview {
    min-height: auto;
  }

  .week-preview ol {
    grid-template-columns: 1fr;
  }

  .video-placeholder-frame {
    min-height: 0;
    height: auto;
    border: 1px solid rgba(0, 240, 208, 0.2);
    border-radius: 8px;
    aspect-ratio: 16 / 9;
  }

  .workout-section .workout-layout {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .video-context-overlay {
    left: 10px;
    right: auto;
    top: 10px;
    max-width: calc(100% - 20px);
    padding: 6px 9px;
  }

  .video-play-button {
    width: 70px;
    height: 70px;
  }

  .video-placeholder-copy {
    align-items: start;
    flex-direction: column;
    gap: 6px;
  }

  .video-placeholder-copy span {
    max-width: none;
    text-align: left;
  }

  .app-snapshot {
    border-radius: 12px;
  }

  .workout-receipt-card {
    border: 1px solid rgba(16, 32, 51, 0.11);
    border-radius: 12px;
    padding: 18px;
    box-shadow: 0 12px 24px rgba(16, 32, 51, 0.07);
  }

  .receipt-header > span {
    padding: 7px 10px;
    font-size: 0.68rem;
  }

  .receipt-header h4 {
    margin-top: 12px;
    font-size: 1.46rem;
  }

  .receipt-header p {
    font-size: 0.94rem;
  }

  .receipt-list {
    gap: 0;
    margin-top: 16px;
  }

  .receipt-list div {
    grid-template-columns: 8px minmax(0, 1fr);
    gap: 3px 13px;
    align-items: start;
    padding: 13px 0;
  }

  .receipt-marker {
    grid-column: 1;
    grid-row: 1 / 3;
    min-height: 100%;
  }

  .receipt-list dt,
  .receipt-list dd {
    grid-column: 2;
  }

  .receipt-list dt {
    font-size: 0.68rem;
    line-height: 1.1;
  }

  .receipt-list dd {
    font-size: 0.96rem;
    line-height: 1.35;
  }

  .receipt-list .receipt-court-goal {
    margin-top: 8px;
    padding: 13px 12px;
  }

  .receipt-actions {
    margin-top: 16px;
  }

  .receipt-actions .button {
    min-height: 48px;
    padding: 12px 14px;
    font-size: 0.9rem;
  }

  .app-mini-plan {
    gap: 6px;
  }

  .week-preview li {
    border-radius: 16px;
    line-height: 1.25;
  }

  .expert-card div,
  .quote-card,
  .product-panel,
  .movement-video-proof figcaption {
    padding: 15px;
  }

  .movement-video-proof strong {
    font-size: 1.08rem;
    line-height: 1.22;
  }

  .movement-video-proof figcaption {
    padding: 15px;
  }

  .movement-video-outcomes {
    gap: 0;
  }

  .movement-video-outcomes li {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 3px 14px;
    padding: 17px 0;
  }

  .movement-video-outcomes li > span:not(.proof-number) {
    font-size: 1.14rem;
    line-height: 1.22;
  }

  .movement-video-outcomes p {
    font-size: 0.96rem;
    line-height: 1.46;
  }

  .movement-video-outcomes .proof-number {
    width: 34px;
    height: 34px;
    font-size: 0.72rem;
  }

  .video-frame {
    min-height: 0;
    padding: 0;
  }

  .video-frame::before {
    inset: 18px;
    border-radius: 14px;
  }

  .video-frame video {
    width: min(100%, 260px);
    max-height: none;
  }

  .final-visual {
    min-height: 0;
    width: 100%;
  }
}

@media (max-width: 360px) {
  .site-header {
    padding: 6px 18px;
  }

  .brand,
  .brand img {
    width: 88px;
  }

  .hero {
    padding-top: 26px;
  }

  .cindy-hero {
    padding-top: 28px;
  }

  h1 {
    font-size: 1.74rem;
    line-height: 1.04;
  }

  .hero h1 {
    font-size: 2.28rem;
    line-height: 1.01;
  }

  .cindy-hero h1 {
    font-size: 1.84rem;
    line-height: 1.05;
  }

  h1 span {
    display: block;
  }

  h1 span + span::before {
    content: "";
  }

  .hero-subhead {
    max-width: min(32ch, 100%);
    font-size: 1.02rem;
    line-height: 1.45;
  }

  .cindy-hero .hero-subhead {
    max-width: min(32ch, 100%);
    font-size: 0.94rem;
    line-height: 1.42;
  }

  .proof-badge {
    max-width: calc(100vw - 32px);
    margin-top: 10px;
    margin-bottom: 14px;
    padding: 0 8px;
  }

  .proof-badge strong {
    font-size: 0.74rem;
  }

  .hero .button-primary {
    min-height: 54px;
    padding: 13px 14px 11px;
    font-size: 0.84rem;
  }

  .cindy-hero .button-primary {
    min-height: 54px;
    padding: 12px 14px;
    font-size: 0.92rem;
  }

  .court-mission-card {
    padding: 0 10px 10px;
  }

  .mission-topline {
    margin: 0 -10px 8px;
    padding: 9px 10px 8px;
  }

  .mission-title-block h2 {
    font-size: 1.06rem;
  }

  .mission-title-block p,
  .mission-footer p {
    font-size: 0.82rem;
  }

  .hero-media {
    height: 230px;
  }

  .cindy-hero-video {
    height: 206px;
  }
}

@media (max-width: 760px) {
  .hero {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-copy {
    width: min(352px, calc(100vw - 32px));
    max-width: calc(100vw - 32px);
    transform: none;
  }

  .hero-visual {
    width: min(100%, calc(100vw - 32px));
    margin-left: auto;
    margin-right: auto;
  }

  .focus-section {
    overflow: hidden;
  }

  .focus-section .section-intro,
  .focus-choice-panel,
  .focus-selector-panel,
  .focus-grid,
  .focus-builder,
  .focus-preview,
  .focus-progress-panel,
  .focus-response-card,
  .focus-week-preview,
  .featured-workout,
  .week-teasers,
  .phase-continuation,
  .focus-start-row {
    width: min(100%, calc(100vw - 36px));
    max-width: calc(100vw - 36px);
  }

  .focus-section .section-intro h2,
  .focus-section .section-intro .movement-lead {
    max-width: 100%;
    overflow-wrap: normal;
    word-break: normal;
  }

  .focus-section .section-intro h2 {
    font-size: 1.7rem;
    line-height: 1.08;
  }

  .focus-preview {
    padding: 0;
    overflow: visible;
  }

  .focus-progress-panel {
    grid-template-columns: 1fr;
    width: min(100%, calc(100vw - 36px));
    max-width: calc(100vw - 36px);
    margin-left: auto;
    margin-right: auto;
    gap: 12px;
    padding: 0;
  }

  .focus-progress-panel > .focus-selector-panel {
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
  }

  .focus-progress-panel > .focus-selector-panel .focus-grid {
    width: 100%;
    max-width: 100%;
    grid-template-columns: 1fr;
  }

  .focus-progress-panel > .focus-selector-panel .focus-tile {
    min-height: 74px;
    padding: 13px 46px 12px 14px;
  }

  .focus-tile span {
    max-width: 100%;
    font-size: 0.96rem;
    line-height: 1.08;
  }

  .focus-tile strong {
    max-width: 100%;
    font-size: 0.8rem;
    line-height: 1.26;
    overflow-wrap: break-word;
  }

  .focus-tile em {
    position: static;
    margin: 0 0 6px;
    max-width: 100%;
    font-size: 0.58rem;
  }

  .focus-tile::after {
    display: none;
    right: 9px;
    top: 9px;
    width: 28px;
    height: 28px;
  }

  .focus-tile.selected::after {
    display: grid;
  }

  .focus-progress-panel h3 {
    max-width: 100%;
    font-size: 1.24rem;
    line-height: 1.12;
    overflow-wrap: break-word;
  }

  .focus-preview-strap {
    display: grid;
    gap: 6px;
    padding: 17px 14px 14px;
  }

  .focus-response-card {
    grid-column: 1;
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    margin-top: 8px;
    gap: 0;
    padding: 0;
  }

  .focus-shapes {
    padding: 14px;
  }

  .focus-preview-strap > strong {
    font-size: 1.08rem;
  }

  .focus-shapes li {
    font-size: 0.84rem;
  }

  .focus-start-row {
    grid-column: auto;
    grid-template-columns: 1fr;
    justify-items: stretch;
    gap: 8px;
    margin-top: 8px;
  }

  .focus-progress-panel > p:not(.focus-plan-kicker) {
    max-width: 100%;
    font-size: 0.9rem;
  }

  .focus-week-preview-header {
    display: none;
  }

  .focus-week-preview-header span {
    display: block;
    margin-bottom: 4px;
  }

  .focus-week-preview-header strong,
  .featured-workout h4,
  .week-teasers strong,
  .week-teasers small {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .focus-week-preview {
    display: grid;
    grid-template-columns: 1fr;
    width: min(100%, calc(100vw - 96px));
    max-width: calc(100vw - 96px);
    margin-left: auto;
    margin-right: auto;
    padding-top: 14px;
    overflow: hidden;
  }

  .featured-workout {
    grid-column: 1;
    width: 100%;
    max-width: 100%;
    min-height: 330px;
    padding: 10px;
  }

  .featured-workout .focus-movement {
    height: 100%;
    min-height: 0;
    aspect-ratio: auto;
  }

  .featured-workout > div:last-child {
    padding: 100px 2px 2px;
  }

  .week-teasers {
    grid-column: 1;
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
    gap: 8px;
  }

  .week-teasers div {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    width: 100%;
    max-width: 100%;
    gap: 4px 9px;
    padding: 11px 12px;
  }

  .week-teasers small {
    display: inline-block;
  }

  .phase-continuation {
    grid-column: 1;
    align-items: flex-start;
    border-radius: 14px;
  }

  .focus-start-row {
    display: grid;
    gap: 12px;
    margin-left: auto;
    margin-right: auto;
  }

  .focus-start-button {
    width: 100%;
    justify-content: center;
  }

  .phase-chip-row {
    width: 100%;
    gap: 6px;
  }

  .phase-chip-row span {
    font-size: 0.72rem;
  }
}

.decline-page .hero h1 {
  max-width: 600px;
  font-size: clamp(4rem, 5.65vw, 6.25rem);
  line-height: 0.98;
  text-wrap: balance;
}

.decline-page .hero h1 span {
  white-space: normal;
}

.decline-page .hero-subhead {
  max-width: 590px;
  color: var(--color-navy-secondary);
  font-size: clamp(1.15rem, 1.5vw, 1.32rem);
  font-weight: var(--type-copy-strong);
  line-height: 1.42;
}

.decline-page .hero-story-card blockquote {
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.25;
  text-wrap: auto;
}

.decline-page .hero-story-card figcaption strong {
  font-size: 0.86rem;
  font-weight: 600;
}

.landing-page .final-cta::before {
  background:
    linear-gradient(90deg, rgba(16, 32, 51, 0.96) 0%, rgba(16, 32, 51, 0.86) 34%, rgba(16, 32, 51, 0.28) 60%, rgba(16, 32, 51, 0.02) 100%),
    linear-gradient(0deg, rgba(0, 240, 208, 0.16), rgba(16, 32, 51, 0) 58%, rgba(51, 135, 255, 0.18));
}

.decline-proof-strip {
  position: relative;
  max-width: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(251, 255, 248, 0.98)),
    var(--color-warm-white);
}

.decline-proof-strip::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--color-action-primary), var(--color-court-green) 60%, var(--color-rally-yellow));
}

.decline-proof-strip > * {
  max-width: var(--content-max);
  margin-left: auto;
  margin-right: auto;
}

.decline-proof-strip .section-intro {
  text-align: center;
}

.decline-proof-strip .section-intro h2 {
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
}

.decline-proof-strip .section-intro p:not(.eyebrow) {
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
}

.decline-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
}

.decline-proof-card {
  position: relative;
  overflow: hidden;
  display: grid;
  min-height: 430px;
  margin: 0;
  border: 1px solid rgba(16, 32, 51, 0.12);
  border-radius: 10px;
  background: var(--color-navy-primary);
  box-shadow: 0 18px 34px rgba(16, 32, 51, 0.12);
}

.decline-proof-card video {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.decline-proof-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 48%;
  background: linear-gradient(180deg, rgba(16, 32, 51, 0), rgba(16, 32, 51, 0.88));
  pointer-events: none;
}

.decline-proof-card figcaption {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  gap: 7px;
  padding: 18px;
  color: var(--color-white);
}

.decline-proof-card figcaption span {
  width: fit-content;
  border-radius: 999px;
  background: var(--color-action-primary);
  color: #061a18;
  padding: 6px 10px;
  font-size: 0.72rem;
  font-weight: var(--type-label);
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.decline-proof-card figcaption strong {
  max-width: 15rem;
  font-size: clamp(1.15rem, 1.7vw, 1.45rem);
  line-height: 1.12;
}

.expert-micro-section {
  position: relative;
  max-width: none;
  margin: 0;
  padding: clamp(22px, 3vw, 34px) var(--space-page);
  background:
    linear-gradient(90deg, rgba(0, 240, 208, 0.16) 0 2px, transparent 2px 100%),
    linear-gradient(90deg, rgba(51, 135, 255, 0.09), rgba(255, 255, 255, 0.96) 36%, rgba(0, 240, 208, 0.1)),
    #ffffff;
  border-top: 1px solid rgba(16, 32, 51, 0.08);
  border-bottom: 1px solid rgba(16, 32, 51, 0.08);
}

.expert-micro-section::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: clamp(5px, 0.6vw, 8px);
  background: var(--color-action-primary);
}

.expert-micro-inner {
  display: grid;
  grid-template-columns: minmax(240px, 0.85fr) minmax(0, 1.6fr);
  gap: clamp(22px, 4vw, 52px);
  align-items: center;
  max-width: var(--content-max);
  margin: 0 auto;
}

.expert-micro-inner h2 {
  max-width: 460px;
  margin: 0;
  color: var(--color-navy-primary);
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.08;
  text-wrap: balance;
}

.expert-micro-proof {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 24px);
}

.expert-micro-proof article {
  position: relative;
  display: grid;
  gap: 4px;
  min-height: 112px;
  padding: 18px 20px 18px 22px;
  border: 1px solid rgba(16, 32, 51, 0.1);
  border-left: 4px solid var(--color-action-primary);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(51, 135, 255, 0.08) 0 1px, transparent 1px 100%),
    rgba(255, 255, 255, 0.9);
  background-size: 42px 100%, auto;
  box-shadow: 0 12px 24px rgba(16, 32, 51, 0.06);
}

.expert-micro-proof span {
  color: var(--color-navy-secondary);
  font-size: 0.72rem;
  font-weight: var(--type-label);
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
}

.expert-micro-proof h3 {
  margin: 2px 0 0;
  color: var(--color-navy-primary);
  font-size: clamp(1.03rem, 1.3vw, 1.18rem);
  line-height: 1.16;
}

.expert-micro-proof p {
  margin: 0;
  color: var(--color-slate-primary);
  font-size: 0.95rem;
  line-height: 1.35;
}

.guidance-section {
  position: relative;
  max-width: none;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0) 0 9%, rgba(255, 255, 255, 0.54) 9% 9.35%, rgba(255, 255, 255, 0) 9.35% 100%),
    linear-gradient(135deg, #ffffff 0%, #f5fbff 44%, rgba(51, 135, 255, 0.14) 76%, rgba(0, 240, 208, 0.14) 100%);
}

.guidance-section > * {
  max-width: var(--content-max);
  margin-left: auto;
  margin-right: auto;
}

.guidance-copy {
  max-width: var(--content-max);
  margin-bottom: clamp(24px, 3vw, 34px);
  text-align: center;
}

.guidance-copy h2 {
  max-width: var(--content-max);
  margin-bottom: 14px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(2.25rem, 3.35vw, 3.15rem);
  line-height: 1.05;
}

.guidance-copy p:not(.eyebrow) {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(1rem, 1.18vw, 1.12rem);
  line-height: 1.48;
}

.progression-sequence {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 1.8vw, 18px);
  counter-reset: progression-step;
}

.progression-sequence::before {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 38px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-action-primary), var(--color-court-blue) 38%, var(--color-court-green) 72%, var(--color-rally-yellow));
  content: "";
  opacity: 0.9;
  pointer-events: none;
}

.progression-step {
  position: relative;
  display: grid;
  align-content: start;
  gap: 0;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(16, 32, 51, 0.12);
  border-radius: 10px;
  background: var(--color-navy-primary);
  box-shadow: 0 18px 34px rgba(16, 32, 51, 0.12);
  counter-increment: progression-step;
}

.progression-step::before {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 2px solid rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  background: var(--color-action-primary);
  color: #061a18;
  content: counter(progression-step, decimal-leading-zero);
  font-size: 0.78rem;
  font-weight: var(--type-label);
  line-height: 1;
  box-shadow: 0 0 0 7px rgba(0, 240, 208, 0.16);
}

.progression-step:nth-child(2)::before {
  background: var(--color-court-blue);
  color: var(--color-white);
  box-shadow: 0 0 0 7px rgba(51, 135, 255, 0.16);
}

.progression-step:nth-child(3)::before {
  background: var(--color-court-green);
  color: #062a16;
  box-shadow: 0 0 0 7px rgba(34, 216, 79, 0.14);
}

.progression-step:nth-child(4)::before {
  background: var(--color-rally-yellow);
  color: var(--color-navy-primary);
  box-shadow: 0 0 0 7px rgba(247, 225, 43, 0.14);
}

.progression-step-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: #dfefff;
}

.progression-step-media video,
.progression-step-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 48%;
}

.progression-step::after {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 54%;
  background: linear-gradient(180deg, rgba(16, 32, 51, 0), rgba(16, 32, 51, 0.9));
  content: "";
  pointer-events: none;
}

.progression-step-caption {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  gap: 7px;
  padding: 18px;
  color: var(--color-white);
}

.progression-step-caption span {
  width: fit-content;
  border-radius: 999px;
  background: var(--color-action-primary);
  color: #061a18;
  padding: 6px 10px;
  font-size: 0.68rem;
  font-weight: var(--type-label);
  letter-spacing: 0.045em;
  line-height: 1;
  text-transform: uppercase;
}

.progression-step:nth-child(2) .progression-step-caption span {
  background: var(--color-court-blue);
  color: var(--color-white);
}

.progression-step:nth-child(3) .progression-step-caption span {
  background: var(--color-court-green);
  color: #062a16;
}

.progression-step:nth-child(4) .progression-step-caption span {
  background: var(--color-rally-yellow);
  color: var(--color-navy-primary);
}

.progression-step-caption strong {
  max-width: 15rem;
  color: var(--color-white);
  font-size: clamp(1.05rem, 1.45vw, 1.28rem);
  font-weight: var(--type-card-title);
  line-height: 1.12;
}

body.about-page {
  --about-max: 820px;
  --about-rule: rgba(16, 32, 51, 0.12);
  --about-accent-rule: linear-gradient(90deg, var(--color-court-blue), var(--color-action-primary) 56%, var(--color-court-green));
  background: #ffffff;
  color: var(--color-navy-primary);
}

.about-page .site-header {
  background: #ffffff;
}

.about-page-intro {
  position: relative;
  max-width: var(--about-max);
  margin: 0 auto;
  padding: clamp(56px, 7vw, 82px) var(--space-page) 44px;
  border-bottom: 1px solid var(--about-rule);
}

.about-page-intro::before {
  content: "";
  position: absolute;
  top: 0;
  left: var(--space-page);
  right: var(--space-page);
  height: 3px;
  background: var(--about-accent-rule);
}

.about-page-intro h1 {
  max-width: var(--about-max);
  margin: 0 0 24px;
  color: var(--color-navy-primary);
  font-size: clamp(2.45rem, 5vw, 4.2rem);
  font-weight: 850;
  line-height: 1;
  letter-spacing: 0;
  text-wrap: balance;
}

.about-intro-copy {
  display: grid;
  gap: 16px;
  max-width: 780px;
}

.about-intro-copy p {
  margin: 0;
  color: var(--color-navy-secondary);
  font-size: clamp(1.05rem, 1.35vw, 1.22rem);
  line-height: 1.58;
}

.about-section {
  max-width: var(--about-max);
  margin: 0 auto;
  padding: 48px var(--space-page);
  border-bottom: 1px solid var(--about-rule);
}

.about-section-heading {
  max-width: var(--about-max);
  margin-bottom: 24px;
}

.about-section-heading h2 {
  margin: 0;
  color: var(--color-navy-primary);
  font-size: clamp(1.65rem, 2.7vw, 2.35rem);
  font-weight: 820;
  line-height: 1.08;
  letter-spacing: 0;
  text-wrap: balance;
}

.about-section-heading p:not(.eyebrow) {
  max-width: 640px;
  margin: 16px 0 0;
  color: var(--color-slate-primary);
  font-size: clamp(1.03rem, 1.2vw, 1.16rem);
  line-height: 1.55;
}

.about-gap-section {
  background: #ffffff;
}

.about-gap-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--about-rule);
  counter-reset: about-gap;
}

.about-gap-list article {
  position: relative;
  border-bottom: 1px solid var(--about-rule);
  background: #ffffff;
  padding: 20px 0 20px 54px;
  counter-increment: about-gap;
}

.about-gap-list article::before {
  content: "0" counter(about-gap);
  position: absolute;
  left: 0;
  top: 24px;
  color: #0076ff;
  font-size: 0.76rem;
  font-weight: var(--type-label);
  letter-spacing: 0.08em;
}

.about-gap-list h3 {
  margin: 0 0 10px;
  color: var(--color-navy-primary);
  font-size: clamp(1.1rem, 1.5vw, 1.34rem);
  line-height: 1.18;
}

.about-gap-list p {
  margin: 0;
  color: var(--color-slate-primary);
  font-size: 0.98rem;
  line-height: 1.52;
}

.about-personal-section {
  max-width: var(--about-max);
  background: #ffffff;
}

.about-personal-section > * {
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}

.founder-note-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--about-rule);
}

.founder-story-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 0.35fr) minmax(0, 0.65fr);
  gap: clamp(24px, 4vw, 42px);
  align-items: start;
  border-bottom: 1px solid var(--about-rule);
  background: #ffffff;
  padding: clamp(24px, 3.2vw, 36px) 0;
}

.founder-story-figure {
  margin: 0;
}

.founder-story-figure img {
  display: block;
  width: 100%;
  max-height: 520px;
  aspect-ratio: 3 / 4;
  border: 1px solid rgba(16, 32, 51, 0.14);
  border-radius: 6px;
  object-fit: cover;
  object-position: center 24%;
}

.founder-story-figure figcaption {
  margin-top: 9px;
  color: var(--color-slate-muted);
  font-size: 0.84rem;
  line-height: 1.35;
}

.founder-story-copy {
  max-width: 720px;
  min-width: 0;
  padding-top: 4px;
}

.founder-story-card h3 {
  margin: 0 0 14px;
  color: var(--color-navy-primary);
  font-size: clamp(1.28rem, 2vw, 1.82rem);
  line-height: 1.14;
}

.founder-story-card p {
  margin: 0;
  color: var(--color-slate-primary);
  font-size: 1.02rem;
  line-height: 1.58;
}

.founder-story-card p + p {
  margin-top: 14px;
}

.about-statement-band {
  max-width: var(--about-max);
  margin: 0 auto;
  border-top: 4px solid var(--color-action-primary);
  background: var(--color-navy-primary);
  padding: clamp(26px, 4vw, 38px) var(--space-page);
}

.about-statement-band p {
  max-width: 720px;
  margin: 0;
  color: var(--color-white);
  font-size: clamp(1.22rem, 2.2vw, 1.72rem);
  font-weight: 780;
  line-height: 1.18;
  letter-spacing: 0;
}

.about-beliefs-section {
  max-width: var(--about-max);
  background: #ffffff;
  color: var(--color-navy-primary);
}

.about-beliefs-section > * {
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}

.about-belief-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--about-rule);
}

.about-belief-list li {
  position: relative;
  min-height: 0;
  border-bottom: 1px solid var(--about-rule);
  background: #ffffff;
  padding: 22px 0 22px 78px;
  color: var(--color-navy-primary);
  font-size: clamp(1rem, 1.18vw, 1.12rem);
  font-weight: var(--type-copy-strong);
  line-height: 1.36;
}

.about-belief-list li::before {
  content: "0" counter(list-item);
  position: absolute;
  left: 0;
  top: 17px;
  color: #0076ff;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  font-weight: var(--type-label);
  letter-spacing: 0;
  line-height: 1;
}

.about-team-section {
  max-width: none;
  background: #f4f9ff;
}

.about-team-section > * {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.about-team-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.about-team-card {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  min-height: 100%;
  border: 1px solid rgba(16, 32, 51, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  padding: 16px;
}

.about-team-card-with-image {
  background: rgba(255, 255, 255, 0.82);
}

.about-team-card-with-image img {
  display: block;
  width: 132px;
  height: 132px;
  border: 1px solid rgba(16, 32, 51, 0.12);
  border-radius: 6px;
  object-fit: cover;
  object-position: center top;
}

.about-team-card > div {
  min-width: 0;
  padding: 0;
}

.about-team-role {
  margin: 0 0 5px;
  color: #0076ff;
  font-size: 0.72rem;
  font-weight: var(--type-label);
  line-height: 1.2;
}

.about-team-card h3 {
  margin: 0 0 6px;
  color: var(--color-navy-primary);
  font-size: clamp(1.12rem, 1.35vw, 1.28rem);
  line-height: 1.08;
}

.about-team-card p {
  margin: 0;
  color: var(--color-slate-primary);
  font-size: 0.9rem;
  line-height: 1.48;
}

@media (max-width: 720px) {
  .about-page-intro {
    padding: 42px 18px 34px;
  }

  .about-page-intro h1 {
    font-size: clamp(2.2rem, 10vw, 3rem);
  }

  .about-section {
    padding: 38px 18px;
  }

  .about-section-heading {
    margin-bottom: 26px;
  }

  .about-section-heading h2 {
    font-size: clamp(1.62rem, 7vw, 2.1rem);
  }

  .about-gap-list {
    grid-template-columns: 1fr;
  }

  .about-gap-list article {
    min-height: 0;
  }

  .about-gap-list article {
    padding-left: 44px;
  }

  .about-belief-list li {
    padding: 18px 0 18px 54px;
  }

  .about-belief-list li::before {
    top: 17px;
    font-size: 1.28rem;
  }

  .founder-story-card {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .founder-story-figure img {
    max-height: 360px;
    aspect-ratio: 4 / 3;
  }

  .about-team-section > * {
    max-width: var(--about-max);
  }

  .about-team-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .about-team-card-with-image {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 14px;
    min-height: 0;
    padding: 13px;
  }

  .about-team-card-with-image img {
    width: 96px;
    height: 96px;
  }

  .about-team-card > div {
    padding: 0;
  }

  .decline-page .hero h1 {
    width: min(360px, calc(100vw - 16px));
    max-width: min(100%, 360px);
    font-size: clamp(3.1rem, 14vw, 3.8rem);
    line-height: 0.98;
    text-wrap: balance;
  }

  .decline-page .hero h1 span {
    white-space: normal;
  }

  .decline-page .hero-subhead {
    max-width: min(34ch, 100%);
    font-size: 1rem;
    line-height: 1.36;
  }

  .decline-proof-strip .section-intro {
    text-align: center;
  }

  .decline-proof-strip .section-intro h2,
  .decline-proof-strip .section-intro p:not(.eyebrow) {
    margin-left: auto;
    margin-right: auto;
  }

  .decline-proof-grid {
    grid-template-columns: 1fr;
  }

  .decline-proof-card,
  .decline-proof-card video {
    height: clamp(360px, 104vw, 390px);
    min-height: 0;
  }

  .decline-proof-card video {
    width: 100%;
    object-fit: cover;
  }

  .decline-proof-card:nth-child(2) video {
    object-position: 50% 72%;
  }

  .expert-micro-section {
    padding: 28px 18px;
  }

  .expert-micro-section::before {
    inset: 0 0 auto;
    width: auto;
    height: 5px;
  }

  .expert-micro-inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .expert-micro-inner h2 {
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(1.46rem, 6.2vw, 1.84rem);
    line-height: 1.08;
    text-align: center;
  }

  .expert-micro-proof {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .expert-micro-proof article {
    min-height: 0;
    padding: 16px 18px 16px 20px;
  }

  .guidance-section {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .guidance-copy {
    text-align: center;
  }

  .guidance-copy h2 {
    max-width: 360px;
    margin-bottom: 10px;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(1.72rem, 7.6vw, 2.12rem);
    line-height: 1.06;
  }

  .guidance-copy p:not(.eyebrow) {
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.96rem;
    line-height: 1.48;
  }

  .landing-page .reassurance-section .section-intro,
  .landing-page .clarity-layout .section-intro {
    text-align: center;
  }

  .landing-page .reassurance-section .section-intro h2,
  .landing-page .reassurance-section .section-intro p,
  .landing-page .clarity-layout .section-intro h2 {
    margin-left: auto;
    margin-right: auto;
  }

  .landing-page .final-copy {
    justify-self: center;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .landing-page .final-copy h2,
  .landing-page .final-copy p {
    margin-left: auto;
    margin-right: auto;
  }

  .landing-page .final-action {
    justify-content: center;
    align-items: center;
  }

  .landing-page .final-secondary-link {
    justify-self: center;
    text-align: center;
  }

  .landing-page .section-intro h2,
  .landing-page .transfer-section-copy h2,
  .landing-page .reassurance-section .section-intro h2,
  .landing-page .proof-section .section-intro h2,
  .landing-page .clarity-layout .section-intro h2,
  .landing-page .final-copy h2,
  .landing-page .testimonial-proof-title {
    width: min(360px, calc(100vw - 36px));
    max-width: min(360px, calc(100vw - 36px));
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(1.82rem, 8vw, 2.32rem);
    line-height: 1.08;
    text-align: center;
    overflow-wrap: normal;
    text-wrap: balance;
  }

  .progression-sequence {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .progression-sequence::before {
    left: 21px;
    right: auto;
    top: 20px;
    bottom: 20px;
    width: 4px;
    height: auto;
    background: linear-gradient(180deg, var(--color-action-primary), var(--color-court-blue) 35%, var(--color-court-green) 70%, var(--color-rally-yellow));
  }

  .progression-step {
    min-height: 0;
  }

  .progression-step::before {
    top: 13px;
    left: 13px;
    width: 36px;
    height: 36px;
    border-width: 2px;
    font-size: 0.7rem;
    box-shadow: 0 0 0 5px rgba(0, 240, 208, 0.14);
  }

  .progression-step-media {
    aspect-ratio: 16 / 10;
  }

  .progression-step-caption {
    padding: 64px 14px 14px;
  }

  .progression-step-caption span {
    font-size: 0.62rem;
  }

  .progression-step-caption strong {
    max-width: 17rem;
    font-size: 1.04rem;
  }

}

@media (prefers-reduced-motion: reduce) {
  .testimonial-carousel-viewport {
    scroll-behavior: auto;
  }
}
