/* ========================================================================
   TZ Academy — Stylesheet
   Brand: dark mode, orange accent, tight display headlines
   ======================================================================== */

:root {
  /* Surfaces */
  --bg-base: #0f0f0f;
  --bg-elevated: #111;
  --bg-card: #141414;
  --bg-card-soft: #171717;
  --bg-deep: #0a0a0a;
  --bg-deepest: #080808;
  --bg-bar: #1a1a1a;

  /* Borders */
  --border-subtle: #1a1a1a;
  --border-default: #222;
  --border-strong: #252525;
  --border-input: #2a2a2a;

  /* Text */
  --text-primary: #fff;
  --text-secondary: #ccc;
  --text-muted: #888;
  --text-dim: #666;
  --text-dimmer: #555;
  --text-faint: #444;

  /* Brand */
  --tz-orange: #F58030;
  --tz-orange-hover: #E26A1A;
  --basketball: #F58030;
  --soccer: #8DC864;
  --volleyball: #4DC9F5;

  /* Functional */
  --success: #22c55e;

  /* Radius */
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;
  --radius-xl: 10px;
  --radius-2xl: 12px;
  --radius-pill: 20px;

  /* Section padding */
  --section-pad-y: 64px;
  --section-pad-x: 32px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg-base);
  color: var(--text-primary);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.15s ease;
}
a:hover {
  opacity: 0.85;
}

button {
  font-family: inherit;
  cursor: pointer;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ========================================================================
   TOP UTILITY BAR
   ======================================================================== */
.utility-bar {
  background: var(--bg-bar);
  padding: 6px var(--section-pad-x);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 8px;
}
.utility-bar__status {
  display: flex;
  align-items: center;
  gap: 6px;
}
.utility-bar__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--success);
  display: inline-block;
}

/* ========================================================================
   NAV
   ======================================================================== */
.nav {
  background: var(--bg-base);
  border-bottom: 1px solid #1e1e1e;
  padding: 0 var(--section-pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 16px;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav__logo {
  height: 36px;
  width: auto;
  display: block;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav__link {
  color: #bbb;
  font-size: 13px;
}
.nav__link.is-active {
  color: var(--tz-orange);
  font-weight: 500;
}
.nav__cta {
  background: var(--tz-orange);
  color: #fff !important;
  padding: 8px 18px;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 700;
}
.nav__menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-default);
  color: var(--text-primary);
  padding: 6px 10px;
  border-radius: var(--radius-md);
  font-size: 18px;
  line-height: 1;
}

/* ========================================================================
   HERO
   ======================================================================== */
.hero {
  background: var(--bg-base);
  padding: 64px var(--section-pad-x);
  border-bottom: 3px solid var(--tz-orange);
  position: relative;
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}
.hero__copy {
  position: relative;
  z-index: 2;
  min-width: 0;
}
.hero__media {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-2xl);
  max-width: 720px;
}
.eyebrow {
  color: var(--tz-orange);
  font-size: 11px;
  letter-spacing: 3px;
  font-weight: 600;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.hero__title {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.0;
  margin-bottom: 16px;
  letter-spacing: -2px;
}
.hero__title-accent {
  color: var(--tz-orange);
}
.hero__sub {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 32px;
  line-height: 1.7;
  max-width: 480px;
}
.hero__ctas {
  display: flex;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.hero__stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.stat {
  min-width: 0;
}
.stat__num {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.1;
}
.stat__label {
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.5px;
  margin-top: 4px;
  text-transform: uppercase;
}
#countdown-stat .stat__num {
  color: var(--tz-orange);
}
#countdown-stat.is-live .stat__num {
  color: var(--success);
  font-size: 22px;
}

/* ========================================================================
   BUTTONS
   ======================================================================== */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: var(--radius-lg);
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  border: none;
  transition: opacity 0.15s ease, transform 0.15s ease;
}
.btn--primary {
  background: var(--tz-orange);
  color: #fff !important;
}
.btn--primary:hover {
  background: var(--tz-orange-hover);
}
.btn--secondary {
  background: transparent;
  border: 1.5px solid #333;
  color: var(--text-primary);
  font-weight: 500;
}
.btn--secondary:hover {
  border-color: var(--text-dim);
}

/* ========================================================================
   SPORT SELECTOR
   ======================================================================== */
.sport-selector {
  background: var(--bg-deep);
  padding: 32px var(--section-pad-x);
  border-bottom: 1px solid var(--border-subtle);
}
.sport-selector__label {
  color: var(--text-dim);
  font-size: 10px;
  letter-spacing: 3px;
  font-weight: 600;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.sport-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.sport-tab {
  background: var(--bg-card);
  border: 1.5px solid var(--border-default);
  color: #aaa;
  padding: 10px 20px;
  border-radius: var(--radius-lg);
  font-size: 13px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.sport-tab:hover {
  border-color: #333;
  color: #ddd;
}
.sport-tab.is-active {
  color: var(--text-primary);
  font-weight: 600;
}
.sport-tab[data-sport="basketball"].is-active {
  background: rgba(245, 128, 48, 0.12);
  border-color: var(--basketball);
}
.sport-tab[data-sport="soccer"].is-active {
  background: rgba(141, 200, 100, 0.12);
  border-color: var(--soccer);
}
.sport-tab[data-sport="volleyball"].is-active {
  background: rgba(77, 201, 245, 0.12);
  border-color: var(--volleyball);
}

/* ========================================================================
   SECTIONS
   ======================================================================== */
.section {
  padding: var(--section-pad-y) var(--section-pad-x);
}
.section--elevated {
  background: var(--bg-elevated);
}
.section--deep {
  background: var(--bg-deep);
}
.section--base {
  background: var(--bg-base);
}
.section__title {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
  line-height: 1.1;
}
.section__sub {
  color: var(--text-dim);
  font-size: 14px;
  margin-bottom: 40px;
}

/* ========================================================================
   CARDS — general
   ======================================================================== */
.card {
  background: var(--bg-card-soft);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-xl);
  padding: 24px;
}
.card--deep {
  background: var(--bg-card);
  border-color: var(--border-default);
}
.card__eyebrow {
  font-size: 11px;
  color: var(--tz-orange);
  font-weight: 600;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.card__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
.card__body {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ========================================================================
   WHO IT'S FOR — two-up cohort cards with image caps
   ======================================================================== */
.cohort-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.cohort-card {
  background: var(--bg-card-soft);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.cohort-card__photo {
  aspect-ratio: 16 / 9;
  background: #1e1e1e;
  overflow: hidden;
}
.cohort-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cohort-card__body {
  padding: 22px 24px 24px;
}

/* ========================================================================
   MODEL SECTION — typical week card
   ======================================================================== */
.model__copy {
  max-width: 720px;
}
.model__copy p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 14px;
}
.model__copy p em {
  color: var(--tz-orange);
  font-style: italic;
  font-weight: 600;
}
/* Rhythmic list paragraph — gets a left accent + slightly tighter type */
.model__copy-list {
  border-left: 2px solid var(--tz-orange);
  padding-left: 18px;
  color: var(--text-primary) !important;
  font-weight: 500;
  margin-top: 18px !important;
  margin-bottom: 18px !important;
}
/* Closing zinger — italic, dimmer color, more space above */
.model__copy-close {
  font-style: italic;
  color: var(--text-secondary) !important;
  margin-top: 18px !important;
}

/* New 3-column schedule grid (replaces old label/value list) */
.schedule {
  margin-top: 32px;
  max-width: 920px;
}
.schedule__label {
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 1.5px;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.schedule__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.schedule__block {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.schedule__block--accent {
  background: var(--bg-card-soft, #1a0f06);
  border-color: var(--tz-orange);
  box-shadow: 0 0 0 1px rgba(245, 128, 48, 0.15);
}
.schedule__when {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin: 0;
  font-weight: 600;
}
.schedule__block--accent .schedule__when {
  color: var(--tz-orange);
}
.schedule__what {
  font-size: 17px;
  color: var(--text-primary);
  margin: 0;
  font-weight: 600;
  line-height: 1.4;
}

/* ========================================================================
   ORIGIN STORY — Kaylee section, split layout
   ======================================================================== */
.origin {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1200px;
  margin-top: 8px;
}
.origin__photo {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: #1e1e1e;
}
.origin__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.origin__story {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.origin__story p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.8;
  margin: 0;
}
.origin__result {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-left: 3px solid var(--tz-orange);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  margin: 4px 0;
}
.origin__result-label {
  font-size: 11px !important;
  color: var(--text-dim) !important;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px !important;
  line-height: 1.4 !important;
}
.origin__result-body {
  font-size: 17px !important;
  color: var(--text-primary) !important;
  line-height: 1.5 !important;
  margin: 0 !important;
}
.origin__result-body strong {
  color: var(--tz-orange);
  font-weight: 700;
}
.origin__bridge {
  font-style: italic;
  color: var(--text-secondary) !important;
}

/* ========================================================================
   PILLARS — 2x2 grid
   ======================================================================== */
.pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.pillar__icon {
  font-size: 26px;
  margin-bottom: 14px;
  line-height: 1;
}
.pillar__title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.pillar__body {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Image-cap variant — when pillar has a photo at top of card */
.pillar--with-photo {
  padding: 0;
  overflow: hidden;
}
.pillar__photo {
  aspect-ratio: 16 / 9;
  background: #1e1e1e;
  overflow: hidden;
}
.pillar__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.pillar--with-photo:hover .pillar__photo img {
  transform: scale(1.03);
}
.pillar--with-photo .pillar__body-wrap {
  padding: 22px 24px 24px;
}

/* ========================================================================
   TEAM GRID — 2025/26 coaches with headshots + bios
   Grid adapts to count: 4 cards = 4-up, 3 cards = 3-up, etc.
   ======================================================================== */
.team {
  display: grid;
  gap: 20px;
}
.team[data-count="4"] {
  grid-template-columns: repeat(4, 1fr);
}
.team[data-count="3"] {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1100px;
}
.team[data-count="2"] {
  grid-template-columns: repeat(2, 1fr);
  max-width: 760px;
}
.team[data-count="1"] {
  grid-template-columns: 1fr;
  max-width: 380px;
}
.team-member {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  padding: 20px;
  display: flex;
  flex-direction: column;
}
.team-member__photo {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #1e1e1e;
  margin-bottom: 16px;
}
.team-member__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Anchor to upper portion so portraits with subject in the top half don't crop the head off */
  object-position: center 20%;
  display: block;
  filter: grayscale(0.1);
  transition: filter 0.2s ease;
}
.team-member:hover .team-member__photo img {
  filter: grayscale(0);
}
.team-member__name {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text-primary);
}
.team-member__role {
  font-size: 11px;
  color: var(--tz-orange);
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.team-member__bio {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Sport-specific accent on role */
body[data-sport="basketball"] .team-member__role { color: var(--basketball); }
body[data-sport="soccer"] .team-member__role { color: var(--soccer); }
body[data-sport="volleyball"] .team-member__role { color: var(--volleyball); }

/* ========================================================================
   RESULTS / TESTIMONIALS
   ======================================================================== */
.testimonials {
  display: grid;
  gap: 16px;
}
.testimonials[data-count="3"] {
  grid-template-columns: repeat(3, 1fr);
}
.testimonials[data-count="2"] {
  grid-template-columns: repeat(2, 1fr);
  max-width: 880px;
}
.testimonials[data-count="1"] {
  max-width: 720px;
}
.testimonial {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  padding: 28px;
  display: flex;
  flex-direction: column;
}
.testimonial__quote {
  font-size: 18px;
  color: var(--text-primary);
  line-height: 1.5;
  margin-bottom: 18px;
  font-style: italic;
  flex: 1;
}
.testimonial__attr {
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
}
.results-coming-soon {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  padding: 32px;
  text-align: center;
}
.results-coming-soon p {
  font-size: 16px;
  color: var(--text-secondary);
}

/* ========================================================================
   PRICING
   ======================================================================== */
.pricing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-2xl);
  padding: 28px;
}
.price-card__badge {
  background: var(--border-strong);
  color: var(--text-muted);
  font-size: 10px;
  letter-spacing: 1.5px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
  display: inline-block;
  text-transform: uppercase;
}
.price-card__name {
  font-size: 17px;
  font-weight: 700;
}
.price-card__price {
  font-size: 32px;
  font-weight: 700;
  margin: 8px 0 4px;
}
.price-card__period {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-dim);
}
.price-card__desc {
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 16px;
}
.price-card__features {
  list-style: none;
  padding: 0;
  margin: 0;
}
.price-card__features li {
  font-size: 13px;
  color: var(--text-muted);
  padding: 7px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  border-top: 1px solid #1e1e1e;
}
.price-card__features li::before {
  content: "";
  width: 5px;
  height: 5px;
  background: var(--tz-orange);
  border-radius: 50%;
  flex-shrink: 0;
}
.included-strip {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  padding: 20px 24px;
  margin-top: 16px;
}
.included-strip__heading {
  font-size: 11px;
  color: var(--tz-orange);
  font-weight: 600;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.included-strip__body {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}
/* Jump button under pricing — for the buyer who's ready right now */
.pricing__cta-jump {
  margin-top: 24px;
  text-align: center;
}

/* ========================================================================
   FAQ
   ======================================================================== */
.faq {
  display: flex;
  flex-direction: column;
}
.faq__item {
  border-bottom: 1px solid #1e1e1e;
  padding: 16px 0;
}
.faq__item:last-child {
  border-bottom: none;
}
.faq__item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  color: var(--text-primary);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq__item summary::-webkit-details-marker {
  display: none;
}
.faq__item summary::after {
  content: "+";
  color: var(--tz-orange);
  font-size: 20px;
  font-weight: 400;
  transition: transform 0.2s ease;
}
.faq__item[open] summary::after {
  content: "−";
}
.faq__item p {
  margin-top: 10px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ========================================================================
   TZ FORMS (Waiting List + Book a Call)
   Custom-built, posts directly to Kit. Brand-native styling.
   ======================================================================== */
.tz-form {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  padding: 28px;
  max-width: 720px;
}
.tz-form--cta {
  margin: 0 auto;
  max-width: 720px;
  text-align: left;
}
.tz-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 14px;
}
.tz-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.tz-form__label {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  font-weight: 500;
  text-transform: uppercase;
}
.tz-form__req {
  color: var(--tz-orange);
  margin-left: 2px;
}
.tz-form__field input,
.tz-form__field select {
  background: var(--bg-base);
  border: 1px solid var(--border-input);
  color: var(--text-primary);
  padding: 12px 14px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-family: inherit;
  width: 100%;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.tz-form__field input::placeholder {
  color: var(--text-dimmer);
}
.tz-form__field select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23888' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.tz-form__field select:invalid {
  color: var(--text-dimmer);
}
.tz-form__field input:focus,
.tz-form__field select:focus {
  outline: none;
  border-color: var(--tz-orange);
  background: var(--bg-card-soft);
}
.tz-form__field input:hover,
.tz-form__field select:hover {
  border-color: #333;
}

.tz-form__submit {
  margin-top: 20px;
  background: var(--tz-orange);
  color: #fff;
  padding: 13px 28px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 700;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s ease, opacity 0.15s ease;
  position: relative;
}
.tz-form__submit:hover:not(:disabled) {
  background: var(--tz-orange-hover);
}
.tz-form__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.tz-form__submit--large {
  padding: 15px 36px;
  font-size: 15px;
}
/* Kit success/error alerts — match Kit's injected markup */
.tz-form .formkit-alert {
  margin: 18px 0 0;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  font-size: 14px;
  line-height: 1.6;
  list-style: none;
}
.tz-form .formkit-alert:empty,
.tz-form .formkit-alert[hidden] {
  display: none;
}
.tz-form .formkit-alert-success {
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #6ee7b7;
}
.tz-form .formkit-alert-error {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #fca5a5;
}

/* Kit's spinner inside our submit button */
.tz-form__submit .formkit-spinner {
  display: none;
  position: relative;
  width: 16px;
  height: 16px;
}
.tz-form__submit .formkit-spinner > div {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  margin: 0 1px;
  opacity: 0.5;
  animation: tz-form-bounce 1.4s infinite ease-in-out both;
}
.tz-form__submit .formkit-spinner > div:nth-child(1) { animation-delay: -0.32s; }
.tz-form__submit .formkit-spinner > div:nth-child(2) { animation-delay: -0.16s; }
.tz-form__submit[data-active] .formkit-spinner {
  display: inline-flex;
  align-items: center;
}
.tz-form__submit[data-active] .tz-form__submit-label {
  opacity: 0.6;
}
@keyframes tz-form-bounce {
  0%, 80%, 100% { transform: scale(0); }
  40% { transform: scale(1); }
}

/* Mobile: single column */
@media (max-width: 720px) {
  .tz-form__grid {
    grid-template-columns: 1fr;
  }
  .tz-form {
    padding: 22px;
  }
}

/* Legacy class kept for the interest copy paragraph */
.interest-form__copy {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 720px;
}
.final-cta__copy {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto 28px;
}

/* ========================================================================
   FINAL CTA
   ======================================================================== */
.final-cta {
  background: var(--bg-base);
  padding: 80px var(--section-pad-x);
  text-align: center;
  border-top: 3px solid var(--tz-orange);
  border-bottom: 3px solid var(--tz-orange);
}
.final-cta .section__title {
  margin: 0 0 14px;
}
.final-cta p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto 28px;
}

/* ========================================================================
   LAUNCH SECTION — slim hero for soccer/volleyball (launching September)
   ======================================================================== */
.launch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1200px;
  margin-bottom: 56px;
}
.launch__intro .section__title {
  margin-bottom: 18px;
}
.launch__body {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.8;
}
.launch__body strong {
  color: var(--text-primary);
  font-weight: 600;
}
.launch__coach-photo {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: #1e1e1e;
}
.launch__coach-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Urgency band — centered, big text, the close */
.launch__urgency {
  text-align: center;
  padding: 36px 24px;
  background: var(--bg-card-soft, #1a0f06);
  border: 1px solid var(--tz-orange);
  border-radius: var(--radius-xl);
  margin-bottom: 56px;
  max-width: 1200px;
}
.launch__urgency-line {
  font-size: 26px;
  color: var(--text-primary);
  font-weight: 700;
  margin: 0 0 8px;
  line-height: 1.3;
}
.launch__urgency-line strong {
  color: var(--tz-orange);
}
.launch__urgency-sub {
  color: var(--text-muted);
  font-size: 15px;
  margin: 0 0 20px;
  line-height: 1.6;
}
.launch__ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
/* Training photo strip */
.launch__photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 1200px;
}
.launch__photo-strip:has(.launch__photo-item:nth-child(2):last-child) {
  grid-template-columns: repeat(2, 1fr);
  max-width: 800px;
}
.launch__photo-item {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: #1e1e1e;
}
.launch__photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ========================================================================
   FOOTER
   ======================================================================== */
.footer {
  background: var(--bg-deepest);
  padding: 36px var(--section-pad-x) 24px;
  border-top: 1px solid var(--border-subtle);
}
.footer__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer__logo {
  height: 24px;
  width: auto;
}
.footer__brand-text {
  color: var(--text-dim);
  font-size: 11px;
  letter-spacing: 1.5px;
}
.footer__copy {
  font-size: 11px;
  color: var(--text-faint);
}

/* ========================================================================
   RESPONSIVE — MOBILE
   ======================================================================== */
@media (max-width: 900px) {
  :root {
    --section-pad-y: 48px;
    --section-pad-x: 20px;
  }
  .origin {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .origin__photo {
    aspect-ratio: 4 / 3;
    max-width: 480px;
  }
  .schedule__grid {
    grid-template-columns: 1fr;
  }
  /* Testimonials stack to single column on mobile */
  .testimonials[data-count="3"],
  .testimonials[data-count="2"] {
    grid-template-columns: 1fr;
  }
  /* Launch section stacks photo above intro on mobile */
  .launch {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .launch__coach-photo {
    aspect-ratio: 4 / 5;
    max-width: 420px;
  }
  .launch__photo-strip {
    grid-template-columns: 1fr 1fr;
  }
  .launch__urgency-line {
    font-size: 22px;
  }
  .nav__links {
    display: none;
  }
  .nav__menu-toggle {
    display: inline-flex;
  }
  .hero {
    padding: 40px var(--section-pad-x) 56px;
  }
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero__media {
    order: -1;
  }
  .hero__image {
    max-width: 100%;
  }
  .hero__title {
    font-size: 40px;
    letter-spacing: -1px;
  }
  .section__title {
    font-size: 28px;
  }
  .cohort-grid,
  .pillars,
  .pricing {
    grid-template-columns: 1fr;
  }
  .team {
    grid-template-columns: 1fr 1fr;
  }
  .utility-bar {
    font-size: 10px;
    padding: 6px 16px;
  }
  .utility-bar__status {
    display: none;
  }
  .hero__stats {
    gap: 24px;
  }
  .stat__num {
    font-size: 22px;
  }
  .final-cta {
    padding: 56px var(--section-pad-x);
  }
  .final-cta .section__title {
    font-size: 26px;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 34px;
  }
  .team {
    grid-template-columns: 1fr;
  }
  .nav__logo {
    height: 28px;
  }
}
