:root {
  --ink: #06100a;
  --ink-soft: #0b1710;
  --green: #0d7a3b;
  --green-dark: #075e2c;
  --accent: #37cf73;
  --accent-soft: #71e79c;
  --paper: #f4f6f2;
  --white: #ffffff;
  --muted: #5b665f;
  --line: #d7ded8;
  --line-dark: #26342b;
  --shadow: 0 24px 70px rgba(8,18,11,.10);
}


/* =========================================================
   BASE
   ========================================================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 82px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);

  font-family:
    Inter,
    Arial,
    sans-serif;

  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

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

button,
input {
  font: inherit;
}


/* =========================================================
   ACCESSIBILITY
   ========================================================= */

.skip {
  position: fixed;
  left: 18px;
  top: 12px;
  z-index: 1000;

  transform: translateY(-180%);

  padding: 11px 15px;

  background: #fff;
  color: #07110b;

  border: 2px solid var(--accent);

  font-weight: 800;
  text-decoration: none;

  transition: transform .18s ease;
}

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


/* =========================================================
   HEADER
   ========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;

  height: 82px;

  padding:
    10px
    clamp(20px,5vw,76px);

  display: grid;

  grid-template-columns:
    1fr
    auto
    1fr;

  align-items: center;
  gap: 30px;

  background:
    rgba(4,12,7,.975);

  backdrop-filter: blur(14px);

  border-bottom:
    1px solid rgba(113,231,156,.16);

  color: #fff;
}


.brand,
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;

  text-decoration: none;
}


.brand img,
.footer-brand img {
  width: 50px;
  height: 50px;

  object-fit: contain;
}


.brand strong,
.footer-brand strong {
  display: block;

  font:
    800
    22px/1
    "Barlow Condensed",
    sans-serif;

  letter-spacing: .07em;
}


.brand small,
.footer-brand small {
  display: block;

  margin-top: 4px;

  color: #93a299;

  font-size: 9px;
  letter-spacing: .14em;

  text-transform: uppercase;
}


.site-header nav {
  display: flex;
  gap: 30px;
}


.site-header nav a,
.header-cta {
  font:
    800
    14px/1
    "Barlow Condensed",
    sans-serif;

  letter-spacing: .08em;

  text-transform: uppercase;
  text-decoration: none;
}


.site-header nav a {
  padding: 12px 0;

  color: #e6ece8;

  border-bottom:
    2px solid transparent;
}


.site-header nav a:hover {
  color: #fff;
  border-color: var(--accent);
}


.header-cta {
  justify-self: end;

  padding: 11px 0;

  color: #fff;

  border-bottom:
    2px solid var(--accent);
}


/* =========================================================
   COMMON
   ========================================================= */

.eyebrow {
  margin: 0 0 14px;

  color: var(--green);

  font-size: 10px;
  font-weight: 900;

  letter-spacing: .20em;

  text-transform: uppercase;
}


.eyebrow-light {
  color: var(--accent-soft);
}


.button {
  min-height: 52px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  padding: 0 24px;

  border:
    1px solid transparent;

  text-decoration: none;
  text-transform: uppercase;

  font-size: 11px;
  font-weight: 900;

  letter-spacing: .08em;

  transition:
    background .16s ease,
    color .16s ease,
    border-color .16s ease;
}


.button-green {
  background: var(--accent);
  color: #051009;
}


.button-green:hover {
  background: #4bdd84;
}


.button-outline {
  background:
    rgba(255,255,255,.025);

  color: #fff;

  border-color:
    rgba(255,255,255,.38);
}


.button-outline:hover {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;

  color: #fff;

  background:
    radial-gradient(
      circle at 88% 24%,
      rgba(55,207,115,.10),
      transparent 31%
    ),
    linear-gradient(
      128deg,
      #030805 0%,
      #061009 57%,
      #06140c 100%
    );
}


.hero::after {
  content: "";

  position: absolute;

  z-index: 0;

  top: 0;
  right: 0;
  bottom: 0;

  width: 45%;

  pointer-events: none;

  background:
    linear-gradient(
      90deg,
      rgba(3,10,6,0) 0%,
      rgba(3,12,7,.28) 20%,
      rgba(3,12,7,.58) 65%,
      rgba(3,12,7,.74) 100%
    );
}


/* =========================================================
   LARGE HIT LAB WATERMARK
   ========================================================= */

.hero-watermark {
  position: absolute;

  z-index: 0;

  left: -6%;
  top: 50%;

  width:
    min(
      94vw,
      1080px
    );

  transform:
    translateY(-50%);

  pointer-events: none;
  user-select: none;

  opacity: .21;
}


.hero-watermark img {
  width: 100%;
  height: auto;

  filter:
    saturate(1.45)
    brightness(1.08)
    contrast(1.08);
}


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


/* =========================================================
   HERO LAYOUT
   ========================================================= */

.hero-inner {
  position: relative;

  z-index: 2;

  max-width: 1320px;

  margin: 0 auto;

  padding:
    clamp(72px,7.5vw,104px)
    clamp(20px,5vw,62px);

  display: grid;

  grid-template-columns:
    minmax(0,1.16fr)
    minmax(400px,.68fr);

  gap:
    clamp(54px,5.5vw,88px);

  align-items: center;
}


/* =========================================================
   HERO LEFT
   ========================================================= */

.hero-copy {
  position: relative;
  z-index: 2;
}


.hero-copy h1,
.section-heading h2,
.coach-copy h2,
.training-copy h2,
.payment-heading h2,
.terms-intro h2 {
  margin: 0;

  font-family:
    "Barlow Condensed",
    sans-serif;

  text-transform: uppercase;

  letter-spacing: -.025em;
}


.hero-copy h1 {
  max-width: 800px;

  font-size:
    clamp(
      62px,
      6.5vw,
      94px
    );

  line-height: .88;

  text-shadow:
    0 2px 14px rgba(0,0,0,.44);
}


.hero-lede {
  max-width: 660px;

  margin: 28px 0 0;

  color: #e0e6e1;

  font-size:
    clamp(
      16px,
      1.35vw,
      19px
    );

  line-height: 1.7;

  text-shadow:
    0 1px 9px rgba(0,0,0,.55);
}


.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;

  gap: 14px;

  margin-top: 36px;
}


/* =========================================================
   HERO PACKAGE SUMMARY
   ========================================================= */

.team-summary {
  position: relative;

  z-index: 5;

  min-width: 0;

  border: 0;

  background: transparent;

  box-shadow: none;
}


/* softer, shorter hero divider */

.team-summary::before {
  content: "";

  position: absolute;

  left: 0;
  top: 8px;
  bottom: 6px;

  width: 2px;

  pointer-events: none;

  background:
    linear-gradient(
      180deg,
      rgba(55,207,115,0) 0%,
      rgba(55,207,115,.76) 9%,
      rgba(55,207,115,.76) 91%,
      rgba(55,207,115,0) 100%
    );
}


.team-summary-content {
  padding:
    6px
    0
    6px
    clamp(26px,2.8vw,38px);
}


.summary-kicker {
  margin: 0;

  color: var(--accent-soft);

  font-size: 9px;
  font-weight: 900;

  letter-spacing: .20em;

  text-transform: uppercase;
}


/* =========================================================
   HERO PRICE
   ========================================================= */

.snapshot-price {
  margin-top: 15px;

  padding-bottom: 19px;

  border-bottom:
    1px solid rgba(255,255,255,.20);
}


.snapshot-price span {
  display: block;

  color: #aeb9b1;

  font-size: 8px;
  font-weight: 800;

  letter-spacing: .13em;

  text-transform: uppercase;
}


.snapshot-price strong {
  display: block;

  margin-top: 5px;

  color: #fff;

  font:
    900
    clamp(58px,4.6vw,70px)/.9
    "Barlow Condensed",
    sans-serif;

  text-shadow:
    0 2px 12px rgba(0,0,0,.58);
}


/* =========================================================
   COMPACT 2 x 2 HERO SNAPSHOT
   ========================================================= */

.snapshot-quick-grid {
  display: grid;

  grid-template-columns:
    1fr
    1fr;

  margin-top: 8px;

  border-bottom:
    1px solid rgba(255,255,255,.16);
}


.snapshot-quick-item {
  min-height: 88px;

  padding:
    16px
    16px
    15px
    0;
}


.snapshot-quick-item:nth-child(even) {
  padding-left: 18px;
  padding-right: 0;

  border-left:
    1px solid rgba(255,255,255,.15);
}


.snapshot-quick-item:nth-child(-n+2) {
  border-bottom:
    1px solid rgba(255,255,255,.15);
}


.snapshot-quick-item strong,
.snapshot-quick-item span {
  display: block;
}


.snapshot-quick-item strong {
  color: var(--accent);

  font:
    800
    21px/1.03
    "Barlow Condensed",
    sans-serif;

  text-transform: uppercase;

  letter-spacing: .02em;

  text-shadow:
    0 2px 8px rgba(0,0,0,.48);
}


.snapshot-quick-item:nth-child(3) strong {
  font-size: 18px;
}


.snapshot-quick-item span {
  margin-top: 7px;

  color: #cbd5ce;

  font-size: 8px;

  line-height: 1.45;
}


/* =========================================================
   COMPACT MEMBERSHIP DATE
   ========================================================= */

.snapshot-membership-compact {
  margin-top: 16px;

  padding:
    13px
    0
    15px;

  border-bottom:
    1px solid rgba(255,255,255,.16);
}


.snapshot-membership-compact span,
.snapshot-membership-compact strong {
  display: block;
}


.snapshot-membership-compact span {
  color: var(--accent-soft);

  font-size: 8px;
  font-weight: 900;

  letter-spacing: .15em;

  text-transform: uppercase;
}


.snapshot-membership-compact strong {
  margin-top: 6px;

  color: #fff;

  font:
    800
    18px/1
    "Barlow Condensed",
    sans-serif;

  text-transform: uppercase;

  letter-spacing: .02em;

  white-space: nowrap;
}


/* =========================================================
   HERO PAYMENT
   ========================================================= */

.snapshot-payment-heading {
  margin-top: 18px;

  color: #aab5ad;

  font-size: 8px;
  font-weight: 900;

  letter-spacing: .17em;

  text-transform: uppercase;
}


.snapshot-payments {
  display: grid;

  grid-template-columns:
    .70fr
    1.30fr;

  margin-top: 11px;
}


.snapshot-payment {
  min-width: 0;

  padding-right: 15px;
}


.snapshot-payment + .snapshot-payment {
  padding-left: 18px;
  padding-right: 0;

  border-left:
    1px solid rgba(255,255,255,.20);
}


.snapshot-payment span,
.snapshot-payment strong,
.snapshot-payment small {
  display: block;
}


.snapshot-payment span {
  color: #aeb9b1;

  font-size: 8px;
  font-weight: 800;

  letter-spacing: .13em;

  text-transform: uppercase;
}


.snapshot-payment strong {
  margin-top: 6px;

  color: #fff;

  font:
    800
    22px/1.08
    "Barlow Condensed",
    sans-serif;

  text-shadow:
    0 2px 9px rgba(0,0,0,.52);
}


.snapshot-payment:last-child strong {
  white-space: nowrap;

  font-size: 19px;
}


.snapshot-payment strong i {
  display: inline-block;

  margin: 0 3px;

  color: var(--accent);

  font-style: normal;

  font-size: 12px;

  transform:
    translateY(-2px);
}


.snapshot-payment small {
  margin-top: 6px;

  color: #9fab9f;

  font-size: 7px;

  line-height: 1.45;
}


.snapshot-link {
  display: inline-block;

  margin-top: 20px;

  color: var(--accent-soft);

  font:
    800
    11px/1
    "Barlow Condensed",
    sans-serif;

  letter-spacing: .10em;

  text-transform: uppercase;
  text-decoration: none;

  text-shadow:
    0 1px 5px rgba(0,0,0,.52);
}


.snapshot-link:hover {
  color: #fff;
}


/* =========================================================
   HERO STATS STRIP
   ========================================================= */

.trust-strip {
  display: grid;

  grid-template-columns:
    repeat(4,1fr);

  background:
    linear-gradient(
      90deg,
      #08612f,
      #0d7a3b
    );

  color: #fff;

  border-top:
    1px solid rgba(255,255,255,.12);

  border-bottom:
    1px solid rgba(5,44,22,.28);
}


.trust-strip div {
  min-height: 72px;

  padding:
    17px
    clamp(18px,2.6vw,34px);

  display: flex;

  flex-direction: column;

  justify-content: center;

  border-right:
    1px solid rgba(255,255,255,.19);
}


.trust-strip div:last-child {
  border-right: 0;
}


.trust-strip strong,
.trust-strip span {
  display: block;
}


.trust-strip strong {
  font:
    800
    18px/1
    "Barlow Condensed",
    sans-serif;

  text-transform: uppercase;

  letter-spacing: .05em;
}


.trust-strip span {
  margin-top: 5px;

  color: #dceee2;

  font-size: 9px;

  line-height: 1.4;
}


/* =========================================================
   GENERAL SECTION
   ========================================================= */

.section {
  padding:
    clamp(70px,8vw,104px)
    clamp(20px,5vw,72px);
}


/* =========================================================
   TEAM PACKAGE
   ========================================================= */

.package {
  position: relative;

  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #ffffff 76%,
      #fbfcfb 100%
    );

  padding-top:
    clamp(64px,6vw,84px);

  padding-bottom:
    clamp(48px,5vw,66px);
}


.package::before {
  content: "";

  position: absolute;

  top: 0;
  left: 50%;

  width:
    min(
      1200px,
      calc(100% - 40px)
    );

  height: 2px;

  transform:
    translateX(-50%);

  background:
    linear-gradient(
      90deg,
      rgba(13,122,59,0),
      rgba(13,122,59,.42) 24%,
      rgba(13,122,59,.42) 76%,
      rgba(13,122,59,0)
    );
}


.package-heading {
  max-width: 1200px;

  margin: 0 auto 40px;

  display: grid;

  grid-template-columns:
    1.1fr
    .75fr;

  gap:
    clamp(36px,7vw,92px);

  align-items: end;
}


.section-heading h2,
.payment-heading h2,
.terms-intro h2 {
  font-size:
    clamp(
      46px,
      5.1vw,
      70px
    );

  line-height: .94;
}


.package-heading > p,
.payment-heading > p {
  margin: 0;

  color: var(--muted);

  font-size: 14px;

  line-height: 1.75;
}


.package-inclusions {
  max-width: 1200px;

  margin: 0 auto;

  border-top:
    1px solid var(--line);
}


.inclusion-row {
  display: grid;

  grid-template-columns:
    minmax(260px,.78fr)
    minmax(0,1.22fr);

  gap:
    clamp(34px,6vw,84px);

  padding: 30px 0;

  border-bottom:
    1px solid var(--line);

  align-items: start;
}


.inclusion-row-featured {
  position: relative;

  margin: 0 -24px;

  padding: 31px 24px;

  background:
    linear-gradient(
      90deg,
      #eef6f1 0%,
      #f4f8f5 58%,
      #f8faf8 100%
    );

  border-top:
    1px solid #d4e2d8;

  border-bottom:
    1px solid #d4e2d8;
}


.inclusion-row-featured::before {
  content: "";

  position: absolute;

  left: 0;
  top: 23px;
  bottom: 23px;

  width: 3px;

  background: var(--green);
}


.inclusion-heading h3 {
  max-width: 460px;

  margin: 9px 0 0;

  font:
    800
    clamp(29px,2.7vw,38px)/1
    "Barlow Condensed",
    sans-serif;

  text-transform: uppercase;

  letter-spacing: -.01em;
}


.package-kicker {
  margin: 0;

  color: var(--green);

  font-size: 9px;
  font-weight: 900;

  letter-spacing: .16em;

  text-transform: uppercase;
}


.inclusion-list {
  list-style: none;

  margin: 0;
  padding: 3px 0 0;

  display: grid;

  grid-template-columns:
    1fr
    1fr;

  gap:
    12px
    28px;
}


.inclusion-list li {
  position: relative;

  padding-left: 25px;

  color: #2e3832;

  font-size: 13px;

  line-height: 1.45;
}


.inclusion-list li::before {
  content: "✓";

  position: absolute;

  left: 0;
  top: -1px;

  color: var(--green);

  font-size: 16px;
  font-weight: 900;
}


.membership-dates {
  margin: 13px 0 0;

  font:
    800
    21px/1.1
    "Barlow Condensed",
    sans-serif;

  text-transform: uppercase;
}


.membership-dates span {
  display: block;

  margin-top: 7px;

  color: var(--muted);

  font:
    700
    9px/1.35
    Inter,
    sans-serif;

  letter-spacing: .10em;

  text-transform: uppercase;
}


.fine-print {
  max-width: 1200px;

  margin: 17px auto 0;

  color: var(--muted);

  font-size: 9px;

  line-height: 1.55;
}


/* =========================================================
   PLAYER DEVELOPMENT
   ========================================================= */

.coach-section {
  background: var(--ink);

  color: #fff;

  border-top:
    1px solid rgba(55,207,115,.10);
}


.coach-inner {
  max-width: 1240px;

  margin: 0 auto;

  padding:
    clamp(64px,6.5vw,84px)
    clamp(20px,5vw,62px)
    clamp(48px,4.5vw,62px);

  display: grid;

  grid-template-columns:
    minmax(0,.92fr)
    minmax(0,1.08fr);

  gap:
    clamp(46px,7vw,90px);

  align-items: start;
}


.coach-section .development-panel {
  min-height: 485px;
}


.coach-media {
  position: relative;

  align-self: start;
}


.coach-copy {
  padding-top: 23px;
}


.coach-copy h2 {
  font-size:
    clamp(
      49px,
      5.4vw,
      74px
    );

  line-height: .91;
}


.coach-copy > p {
  max-width: 640px;

  color: #c9d2cb;

  font-size: 14px;

  line-height: 1.72;
}


.coach-copy > p:first-of-type {
  margin-top: 24px;
}


.coach-values {
  display: flex;

  flex-wrap: wrap;

  gap:
    9px
    23px;

  margin-top: 24px;

  padding-top: 17px;

  border-top:
    1px solid rgba(255,255,255,.15);

  color: var(--accent);

  font:
    800
    14px/1
    "Barlow Condensed",
    sans-serif;

  text-transform: uppercase;

  letter-spacing: .08em;
}


/* =========================================================
   TRAINING
   ========================================================= */

.training-section {
  background: #fff;
}


.training-inner {
  max-width: 1240px;

  margin: 0 auto;

  padding:
    clamp(72px,8vw,106px)
    clamp(20px,5vw,62px);

  display: grid;

  grid-template-columns:
    minmax(0,.88fr)
    minmax(0,1.12fr);

  gap:
    clamp(46px,6vw,80px);

  align-items: center;
}


.training-copy h2 {
  font-size:
    clamp(
      46px,
      5vw,
      68px
    );

  line-height: .94;
}


.training-copy > p:not(.eyebrow) {
  color: var(--muted);

  font-size: 14px;

  line-height: 1.75;
}


.location-cards {
  display: grid;

  grid-template-columns:
    1fr
    1fr;

  gap: 14px;

  margin-top: 30px;
}


.location-cards article {
  padding: 22px;

  border:
    1px solid var(--line);

  background: var(--paper);
}


.location-cards span,
.location-cards strong,
.location-cards small {
  display: block;
}


.location-cards span {
  color: var(--green);

  font-size: 8px;
  font-weight: 900;

  letter-spacing: .14em;

  text-transform: uppercase;
}


.location-cards strong {
  margin-top: 7px;

  font:
    800
    23px/1
    "Barlow Condensed",
    sans-serif;

  text-transform: uppercase;
}


.location-cards small {
  margin-top: 7px;

  color: var(--muted);

  font-size: 9px;

  line-height: 1.5;
}


.training-photo {
  margin: 0;

  aspect-ratio:
    4 / 3;

  overflow: hidden;

  background: #0b110d;
}


.training-photo img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  object-position: center;
}


/* =========================================================
   PAYMENT
   ========================================================= */

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


.payment-inner {
  max-width: 1200px;

  margin: 0 auto;

  padding:
    clamp(72px,8vw,106px)
    clamp(20px,5vw,62px);
}


.payment-heading {
  display: grid;

  grid-template-columns:
    1.1fr
    .78fr;

  gap:
    clamp(36px,7vw,88px);

  align-items: end;

  margin-bottom: 42px;
}


.enrollment-card {
  background: #fff;

  border:
    1px solid #ccd5ce;

  padding:
    clamp(26px,4vw,44px);

  box-shadow: var(--shadow);
}


.choice-grid {
  display: grid;

  grid-template-columns:
    1fr
    1fr;

  gap: 16px;
}


.choice {
  cursor: pointer;

  text-align: left;

  background: #fff;
  color: var(--ink);

  border:
    1px solid #cbd4cd;

  padding: 26px;

  min-height: 240px;

  display: flex;

  flex-direction: column;

  transition:
    border-color .15s ease,
    background .15s ease,
    box-shadow .15s ease;
}


.choice:hover {
  border-color: #9fb5a6;
}


.choice.selected {
  border-color: var(--green);

  background: #eff6f1;

  box-shadow:
    inset 0 0 0 1px
    var(--green);
}


.choice-topline {
  display: flex;

  justify-content: space-between;
  align-items: center;

  gap: 14px;
}


.choice-label {
  color: var(--green);

  font-size: 9px;
  font-weight: 900;

  letter-spacing: .16em;

  text-transform: uppercase;
}


.choice-badge {
  padding:
    5px 8px;

  border:
    1px solid #bdd1c2;

  color: #4d5b52;

  font-size: 8px;
  font-weight: 800;

  letter-spacing: .09em;

  text-transform: uppercase;
}


.choice > strong {
  margin-top: 22px;

  font:
    800
    47px/1
    "Barlow Condensed",
    sans-serif;
}


.choice > strong small {
  color: var(--muted);

  font:
    700
    10px
    Inter,
    sans-serif;

  text-transform: uppercase;

  letter-spacing: .06em;
}


.choice-schedule {
  display: grid;

  grid-template-columns:
    1fr
    1fr;

  gap: 10px;

  margin-top: 23px;

  padding-top: 16px;

  border-top:
    1px solid #d6ded8;
}


.choice-schedule span {
  color: #49534c;

  font-size: 10px;

  line-height: 1.4;
}


.choice-schedule b {
  display: block;

  color: var(--ink);

  font:
    800
    20px/1
    "Barlow Condensed",
    sans-serif;
}


.choice-schedule-single {
  grid-template-columns: 1fr;
}


.choice > p {
  margin: auto 0 0;

  padding-top: 18px;

  color: var(--muted);

  font-size: 10px;

  line-height: 1.5;
}


.reveal {
  margin-top: 18px;
}


.hidden {
  display: none;
}


.schedule-card,
.paid-full-card {
  background: #f3f7f4;

  border-left:
    4px solid var(--green);

  padding: 22px;
}


.schedule-heading,
.schedule-row {
  display: flex;

  justify-content: space-between;
  align-items: center;

  gap: 22px;
}


.schedule-heading {
  padding-bottom: 14px;

  border-bottom:
    1px solid #ccd5cf;

  font-size: 12px;
  font-weight: 800;
}


.schedule-heading strong,
.schedule-row > strong {
  font-family:
    "Barlow Condensed",
    sans-serif;
}


.schedule-heading strong {
  font-size: 24px;
}


.schedule-row {
  padding: 15px 0;

  border-bottom:
    1px solid #d7ded9;
}


.schedule-row span,
.schedule-row small {
  display: block;
}


.schedule-row span {
  font-size: 11px;
  font-weight: 800;
}


.schedule-row small {
  margin-top: 3px;

  color: var(--muted);

  font-size: 9px;
}


.schedule-row > strong {
  font-size: 28px;
}


.schedule-row.active > strong {
  color: var(--green);
}


.schedule-card > p {
  margin: 16px 0 0;

  color: var(--muted);

  font-size: 9px;

  line-height: 1.55;
}


.paid-full-card span {
  display: block;

  color: var(--green);

  font-size: 9px;
  font-weight: 900;

  text-transform: uppercase;

  letter-spacing: .14em;
}


.paid-full-card strong {
  display: block;

  margin-top: 5px;

  font:
    800
    50px/1
    "Barlow Condensed",
    sans-serif;
}


.paid-full-card p {
  margin: 8px 0 0;

  color: var(--muted);

  font-size: 11px;
}


.agreement {
  display: grid;

  gap: 15px;

  margin-top: 22px;

  padding-top: 20px;

  border-top:
    1px solid var(--line);
}


.agreement label {
  display: flex;

  align-items: flex-start;

  gap: 11px;

  cursor: pointer;
}


.agreement input {
  width: 18px;
  height: 18px;

  flex: 0 0 auto;

  accent-color: var(--green);
}


.agreement span {
  color: #414a44;

  font-size: 10px;

  line-height: 1.55;
}


.checkout-summary {
  display: grid;

  grid-template-columns:
    .9fr
    .9fr
    auto;

  align-items: center;

  gap: 22px;

  margin-top: 24px;

  padding: 20px 22px;

  background: var(--ink);

  color: #fff;
}


.checkout-summary span,
.checkout-summary strong {
  display: block;
}


.checkout-summary span {
  color: #aab5ad;

  font-size: 8px;

  text-transform: uppercase;

  letter-spacing: .13em;
}


.checkout-summary strong {
  margin-top: 4px;

  font:
    700
    24px/1
    "Barlow Condensed",
    sans-serif;
}


.disabled {
  opacity: .36;

  pointer-events: none;

  filter: grayscale(.35);
}


.stripe-note {
  max-width: 760px;

  margin: 13px auto 0;

  text-align: center;

  color: var(--muted);

  font-size: 9px;

  line-height: 1.5;
}


/* =========================================================
   TERMS
   ========================================================= */

.terms-section {
  background: var(--ink);

  color: #fff;
}


.terms-inner {
  max-width: 1200px;

  margin: 0 auto;

  padding:
    clamp(68px,8vw,98px)
    clamp(20px,5vw,62px);

  display: grid;

  grid-template-columns:
    .75fr
    1.25fr;

  gap:
    clamp(44px,7vw,86px);
}


.terms-intro h2 {
  font-size:
    clamp(
      48px,
      5.4vw,
      72px
    );

  line-height: .90;
}


.terms-grid {
  display: grid;

  grid-template-columns:
    1fr
    1fr;

  gap:
    0
    34px;
}


.terms-grid article {
  padding: 20px 0;

  border-top:
    1px solid var(--line-dark);
}


.terms-grid h3 {
  margin: 0 0 8px;

  color: var(--accent);

  font:
    800
    18px/1
    "Barlow Condensed",
    sans-serif;

  text-transform: uppercase;

  letter-spacing: .07em;
}


.terms-grid p {
  margin: 0;

  color: #c6d0c8;

  font-size: 11px;

  line-height: 1.65;
}


.terms-grid a {
  color: #fff;
}


/* =========================================================
   FOOTER
   ========================================================= */

footer {
  background: #fff;
}


.footer-inner {
  max-width: 1240px;

  margin: 0 auto;

  padding:
    34px
    clamp(20px,5vw,62px);

  display: grid;

  grid-template-columns:
    1fr
    minmax(470px,.85fr);

  align-items: center;

  gap: 44px;
}


.footer-details {
  display: grid;

  grid-template-columns:
    1fr
    1.2fr;

  gap: 42px;

  align-items: start;
}


footer address {
  font-style: normal;

  color: #566158;

  font-size: 11px;

  line-height: 1.55;
}


footer address strong,
.footer-contact > strong {
  display: block;

  margin-bottom: 6px;

  color: var(--green);

  font-size: 9px;

  text-transform: uppercase;

  letter-spacing: .12em;
}


.footer-contact {
  display: flex;

  flex-direction: column;

  align-items: flex-start;

  gap: 5px;

  color: var(--ink);
}


.footer-contact a {
  color: var(--ink);

  font-size: 11px;
  font-weight: 800;

  text-decoration: none;

  line-height: 1.35;
}


.footer-contact a:hover {
  text-decoration: underline;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1040px) {

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


  .site-header nav {
    display: none;
  }


  .hero-inner {
    max-width: 850px;

    grid-template-columns: 1fr;
  }


  .hero::after {
    width: 100%;

    top: 48%;
    bottom: 0;

    background:
      linear-gradient(
        180deg,
        rgba(3,12,7,0),
        rgba(3,12,7,.48) 22%,
        rgba(3,12,7,.70)
      );
  }


  .hero-watermark {
    top: 29%;

    left: -12%;

    width:
      min(
        112vw,
        900px
      );

    transform: translateY(-50%);

    opacity: .18;
  }


  .team-summary {
    max-width: 720px;
  }


  .snapshot-membership-compact strong {
    white-space: normal;
  }


  .trust-strip {
    grid-template-columns:
      1fr
      1fr;
  }


  .trust-strip div:nth-child(2) {
    border-right: 0;
  }


  .trust-strip div:nth-child(-n+2) {
    border-bottom:
      1px solid rgba(255,255,255,.19);
  }


  .package-heading,
  .payment-heading,
  .coach-inner,
  .training-inner,
  .terms-inner {
    grid-template-columns: 1fr;
  }


  .package {
    padding-top:
      clamp(58px,7vw,74px);

    padding-bottom:
      clamp(44px,6vw,58px);
  }


  .coach-inner {
    max-width: 850px;

    padding-top: 62px;
    padding-bottom: 52px;
  }


  .coach-section .development-panel {
    min-height: auto;
  }


  .coach-copy {
    padding-top: 0;
  }


  .training-inner {
    max-width: 850px;
  }


  .training-photo {
    order: -1;
  }


  .checkout-summary {
    grid-template-columns:
      1fr
      1fr;
  }


  .checkout-summary .button {
    grid-column:
      1 / -1;
  }


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


  .footer-details {
    max-width: 680px;

    grid-template-columns:
      1fr
      1fr;
  }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 720px) {

  html {
    scroll-padding-top: 72px;
  }


  .site-header {
    height: 72px;

    padding-inline: 18px;
  }


  .brand img {
    width: 43px;
    height: 43px;
  }


  .brand strong {
    font-size: 19px;
  }


  .brand small {
    display: none;
  }


  .header-cta {
    font-size: 10px;
  }


  .hero-inner {
    padding:
      56px
      20px
      62px;
  }


  .hero-copy h1 {
    font-size:
      clamp(
        54px,
        15vw,
        76px
      );
  }


  .hero-lede {
    font-size: 15px;
  }


  .hero-actions {
    flex-direction: column;

    align-items: stretch;

    gap: 10px;
  }


  .hero-actions .button {
    width: 100%;
  }


  .hero-watermark {
    top: 24%;

    left: -26%;

    width: 155vw;

    transform: translateY(-50%);

    opacity: .14;
  }


  .team-summary-content {
    padding:
      8px
      0
      8px
      22px;
  }


  .snapshot-price strong {
    font-size: 62px;
  }


  .snapshot-quick-grid {
    grid-template-columns: 1fr;
  }


  .snapshot-quick-item {
    min-height: auto;

    padding: 14px 0;

    border-bottom:
      1px solid rgba(255,255,255,.14);
  }


  .snapshot-quick-item:nth-child(even) {
    padding-left: 0;

    border-left: 0;
  }


  .snapshot-quick-item:nth-child(-n+2) {
    border-bottom:
      1px solid rgba(255,255,255,.14);
  }


  .snapshot-quick-item:last-child {
    border-bottom: 0;
  }


  .snapshot-quick-item:nth-child(3) strong {
    font-size: 20px;
  }


  .snapshot-membership-compact strong {
    white-space: normal;

    font-size: 20px;

    line-height: 1.1;
  }


  .snapshot-payments {
    grid-template-columns: 1fr;

    gap: 18px;
  }


  .snapshot-payment + .snapshot-payment {
    padding:
      18px 0 0;

    border-left: 0;

    border-top:
      1px solid rgba(255,255,255,.14);
  }


  .snapshot-payment:last-child strong {
    white-space: normal;
  }


  .trust-strip {
    grid-template-columns: 1fr;
  }


  .trust-strip div {
    min-height: 65px;

    border-right: 0;

    border-bottom:
      1px solid rgba(255,255,255,.19) !important;
  }


  .trust-strip div:last-child {
    border-bottom: 0 !important;
  }


  .section,
  .payment-inner,
  .coach-inner,
  .training-inner,
  .terms-inner {
    padding-left: 20px;
    padding-right: 20px;
  }


  .package {
    padding-top: 52px;
    padding-bottom: 44px;
  }


  .package::before {
    width:
      calc(100% - 40px);
  }


  .package-heading {
    margin-bottom: 32px;
  }


  .choice-grid,
  .location-cards,
  .terms-grid,
  .checkout-summary {
    grid-template-columns: 1fr;
  }


  .inclusion-row {
    grid-template-columns: 1fr;

    gap: 18px;

    padding: 25px 0;
  }


  .inclusion-row-featured {
    margin-inline: -14px;

    padding:
      26px
      14px;
  }


  .inclusion-row-featured::before {
    top: 18px;
    bottom: 18px;
  }


  .inclusion-list {
    grid-template-columns: 1fr;
  }


  .fine-print {
    margin-top: 15px;
  }


  .coach-inner {
    padding-top: 48px;
    padding-bottom: 42px;
  }


  .coach-section .development-panel {
    min-height: auto;
  }


  .coach-copy {
    padding-top: 0;
  }


  .coach-values {
    margin-top: 21px;

    padding-top: 16px;
  }


  .coach-copy h2,
  .training-copy h2,
  .section-heading h2,
  .payment-heading h2,
  .terms-intro h2 {
    font-size:
      clamp(
        43px,
        13vw,
        58px
      );
  }


  .training-photo {
    aspect-ratio:
      4 / 3;
  }


  .choice {
    min-height: 220px;

    padding: 23px;
  }


  .choice > strong {
    font-size: 43px;
  }


  .choice-schedule {
    grid-template-columns:
      1fr
      1fr;
  }


  .schedule-heading,
  .schedule-row {
    gap: 16px;
  }


  .schedule-heading {
    align-items: flex-end;
  }


  .schedule-row > strong {
    font-size: 25px;
  }


  .checkout-summary .button {
    grid-column: auto;

    width: 100%;
  }


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


  .footer-details {
    grid-template-columns: 1fr;

    gap: 20px;
  }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 420px) {

  .header-cta {
    display: none;
  }


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


  .choice-schedule {
    grid-template-columns: 1fr;

    gap: 8px;
  }


  .hero-watermark {
    left: -37%;
    top: 22%;

    width: 170vw;

    opacity: .12;
  }
}
