:root {
  --navy: #062b59;
  --deep-navy: #031a37;
  --blue: #087bd3;
  --sky: #18a6ef;
  --orange: #f5600f;
  --gold: #ffbd16;
  --green: #4a9a16;
  --ink: #102033;
  --muted: #5a6a7e;
  --paper: #f4f8fc;
  --soft: #fbfdff;
  --white: #ffffff;
  --line: rgba(9, 41, 83, 0.16);
  --shadow: 0 18px 45px rgba(3, 26, 55, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
}

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

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--white);
  background: var(--deep-navy);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(3, 26, 55, 0.96);
  color: var(--white);
  backdrop-filter: blur(14px);
}

.nav-shell {
  width: min(1180px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 3px solid var(--white);
  background: var(--orange);
  color: var(--white);
  border-radius: 8px;
}

.brand-mark svg {
  width: 34px;
  height: 34px;
}

.shoe-upper {
  fill: var(--white);
}

.shoe-speed,
.shoe-sole,
.shoe-lace {
  fill: none;
  stroke: var(--white);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
}

.shoe-lace {
  stroke: var(--orange);
  stroke-width: 3;
}

.brand-title,
.brand-subtitle {
  display: block;
}

.brand-title {
  font-size: 1.06rem;
  font-weight: 900;
}

.brand-subtitle {
  color: #bfe6ff;
  font-size: 0.82rem;
  font-weight: 700;
}

.site-menu {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-menu a {
  padding: 10px 12px;
  color: #e8f5ff;
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: none;
  border-radius: 6px;
}

.site-menu a:hover,
.site-menu a:focus-visible {
  background: rgba(255, 255, 255, 0.13);
}

.header-cta,
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 0;
  border-radius: 6px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(3, 26, 55, 0.16);
}

.header-cta {
  background: var(--gold);
  color: var(--deep-navy);
  white-space: nowrap;
}

.button-primary {
  background: var(--orange);
  color: var(--white);
}

.button-secondary {
  background: var(--white);
  color: var(--navy);
  border: 2px solid rgba(6, 43, 89, 0.18);
}

.button:hover,
.button:focus-visible,
.header-cta:hover,
.header-cta:focus-visible {
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--white);
  background: transparent;
  padding: 9px 11px;
  border-radius: 6px;
  font: inherit;
  font-weight: 900;
}

.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  display: block;
  width: 19px;
  height: 2px;
  background: currentColor;
  content: "";
}

.nav-toggle-bars {
  position: relative;
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
  position: absolute;
  left: 0;
}

.nav-toggle-bars::before {
  top: -6px;
}

.nav-toggle-bars::after {
  top: 6px;
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  min-height: clamp(620px, calc(100svh - 72px), 720px);
  background:
    linear-gradient(105deg, rgba(3, 26, 55, 0.98) 0%, rgba(3, 26, 55, 0.96) 48%, rgba(6, 43, 89, 0.86) 72%, rgba(8, 123, 211, 0.58) 100%),
    linear-gradient(180deg, rgba(255, 189, 22, 0.08), rgba(245, 96, 15, 0.12) 100%),
    linear-gradient(135deg, #031a37 0%, #062b59 56%, #087bd3 100%),
    var(--navy);
}

.hero::before {
  position: absolute;
  left: max(16px, calc((100% - 1180px) / 2));
  right: max(16px, calc((100% - 1180px) / 2));
  bottom: 34px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(255, 255, 255, 0.82), transparent);
  opacity: 0.9;
  content: "";
}

.hero::after {
  position: absolute;
  right: -120px;
  bottom: 0;
  width: 42%;
  height: 22px;
  background: var(--orange);
  transform: skewX(-24deg);
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: inherit;
  padding: 22px 0 30px;
  display: grid;
  grid-template-columns: minmax(0, 0.52fr) minmax(420px, 0.48fr);
  align-items: center;
  gap: 34px;
}

.hero-copy {
  max-width: 680px;
  align-self: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.local-callout {
  display: inline-flex;
  align-items: center;
  margin: 0 0 14px;
  padding: 9px 14px;
  color: var(--deep-navy);
  background: var(--white);
  border-left: 7px solid var(--orange);
  border-radius: 8px;
  box-shadow: 0 12px 24px rgba(3, 26, 55, 0.16);
  font-size: 1rem;
  font-weight: 950;
  text-transform: uppercase;
}

.coach-name {
  margin: 0 0 7px;
  color: var(--gold);
  font-size: 1.3rem;
  font-weight: 950;
  line-height: 1.1;
}

.hero-credential-strip {
  max-width: 610px;
  margin: 0 0 12px;
  padding: 9px 12px;
  color: #e8f5ff;
  background: rgba(3, 26, 55, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 6px solid var(--gold);
  border-radius: 8px;
  font-size: 0.84rem;
  font-weight: 900;
  line-height: 1.32;
}

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

h1 {
  max-width: 680px;
  margin-bottom: 14px;
  font-size: 3.45rem;
  line-height: 1;
  font-weight: 950;
  text-wrap: balance;
}

h2 {
  margin-bottom: 14px;
  color: var(--deep-navy);
  font-size: 2.35rem;
  line-height: 1.06;
  font-weight: 950;
  text-wrap: balance;
}

h3 {
  margin-bottom: 8px;
  color: var(--deep-navy);
  font-size: 1.17rem;
  line-height: 1.16;
  font-weight: 950;
}

.hero-lede {
  max-width: 610px;
  margin-bottom: 20px;
  color: #edf8ff;
  font-size: 1.08rem;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 0;
}

.credential-panel {
  width: 100%;
  margin: 0;
  padding: 14px;
  background: rgba(3, 26, 55, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-left: 8px solid var(--gold);
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(3, 26, 55, 0.18);
  backdrop-filter: blur(10px);
}

.credential-kicker {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.credential-panel ul {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px 12px;
  list-style: none;
}

.credential-panel li {
  position: relative;
  padding-left: 18px;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1.28;
}

.credential-panel li::before {
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 7px;
  height: 7px;
  background: var(--orange);
  border: 2px solid var(--gold);
  border-radius: 50%;
  content: "";
}

.availability-banner {
  max-width: 610px;
  margin: -2px 0 20px;
  padding: 12px 16px;
  color: var(--deep-navy);
  background: var(--gold);
  border: 3px solid rgba(255, 255, 255, 0.85);
  border-radius: 8px;
  box-shadow: 0 14px 28px rgba(3, 26, 55, 0.18);
  font-size: 1.08rem;
  font-weight: 950;
  text-align: center;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
  margin: 0;
}

.hero-stats div {
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(3, 26, 55, 0.5);
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.hero-stats dt {
  color: var(--gold);
  font-size: 1.72rem;
  font-weight: 950;
  line-height: 1;
}

.hero-stats dd {
  margin: 6px 0 0;
  color: #edf8ff;
  font-size: 0.82rem;
  font-weight: 800;
}

.hero-photo {
  position: relative;
  height: 430px;
  margin: 0;
  overflow: hidden;
  background: #081a2f;
  border: 3px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  box-shadow: 0 26px 58px rgba(3, 26, 55, 0.36);
}

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

.hero-photo-callout {
  position: absolute;
  left: 16px;
  top: 16px;
  width: min(330px, calc(100% - 32px));
  margin: 0;
  padding: 16px;
  color: var(--deep-navy);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-left: 9px solid var(--orange);
  border-radius: 8px;
  box-shadow: 0 22px 44px rgba(3, 26, 55, 0.32);
}

.hero-side {
  position: relative;
  width: min(100%, 560px);
  justify-self: end;
  display: grid;
  gap: 12px;
}

.hero-side-meta {
  display: grid;
  gap: 10px;
  align-items: stretch;
}

.hero-side-meta .hero-stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.hero-side-meta .hero-stats div {
  min-height: 0;
  padding: 12px;
  display: block;
}

.hero-side-meta .hero-stats dt {
  font-size: 1.45rem;
}

.hero-side-meta .hero-stats dd {
  margin: 5px 0 0;
  font-size: 0.78rem;
  line-height: 1.15;
}

.hero-photo-callout span,
.hero-photo-callout small {
  display: block;
  color: var(--muted);
  font-weight: 950;
  text-transform: uppercase;
}

.hero-photo-callout span {
  margin-bottom: 5px;
  font-size: 0.78rem;
}

.hero-photo-callout strong {
  display: block;
  color: var(--orange);
  font-size: 1.62rem;
  line-height: 1.04;
  font-weight: 950;
}

.hero-photo-callout small {
  margin-top: 7px;
  color: var(--navy);
  font-size: 0.86rem;
}

.quick-strip {
  width: min(1180px, calc(100% - 32px));
  margin: -26px auto 0;
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.quick-item {
  padding: 15px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(3, 26, 55, 0.1);
}

.quick-label {
  display: block;
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.quick-item strong {
  color: var(--navy);
  font-size: 0.98rem;
  line-height: 1.15;
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 66px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading p:not(.eyebrow),
.split-copy p,
.pricing-copy p,
.contact-band p {
  color: var(--muted);
  font-size: 1.06rem;
  font-weight: 700;
}

.session-grid,
.program-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.session-card,
.benefit-card,
.program-grid article,
.price-card {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(3, 26, 55, 0.08);
}

.session-card {
  position: relative;
  padding: 72px 22px 22px;
  border-top: 8px solid var(--blue);
  display: flex;
  flex-direction: column;
}

.session-card.accent-green {
  border-top-color: var(--green);
}

.session-card.accent-orange {
  border-top-color: var(--orange);
}

.session-number {
  position: absolute;
  top: 20px;
  left: 22px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  background: var(--navy);
  color: var(--white);
  font-weight: 950;
  border-radius: 8px;
}

.session-card p,
.benefit-card p,
.program-grid p,
.price-card p {
  color: var(--muted);
  font-weight: 700;
}

.spots-meter {
  margin: 16px 0;
  padding: 14px;
  background: #f4f9fd;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.spots-meter span,
.spots-meter small {
  display: block;
}

.spots-meter span {
  color: var(--deep-navy);
  font-weight: 950;
}

.spots-meter strong {
  color: var(--orange);
  font-size: 1.45rem;
  line-height: 1;
}

.spots-meter small {
  margin-top: 2px;
  color: var(--muted);
  font-weight: 800;
}

.spots-bar {
  height: 9px;
  margin-top: 10px;
  overflow: hidden;
  background: #dce9f4;
  border-radius: 999px;
}

.spots-bar span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--gold), var(--orange));
  border-radius: inherit;
}

.session-card a,
.text-link {
  color: var(--navy);
  font-weight: 950;
  text-decoration-color: var(--orange);
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
}

.session-card a {
  margin-top: auto;
}

.calendar-section {
  padding-top: 10px;
  padding-bottom: 72px;
}

.calendar-panel {
  width: min(100%, 900px);
  margin: 0 auto;
  padding: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(3, 26, 55, 0.12);
}

.calendar-panel img {
  width: 100%;
  border: 1px solid rgba(6, 43, 89, 0.18);
  border-radius: 6px;
}

.calendar-panel figcaption {
  margin-top: 12px;
  padding: 12px 14px;
  color: var(--deep-navy);
  background: #eff8ff;
  border-left: 7px solid var(--blue);
  border-radius: 6px;
  font-weight: 950;
  text-align: center;
}

.split-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 36px;
  align-items: start;
  border-top: 1px solid rgba(6, 43, 89, 0.12);
  border-bottom: 1px solid rgba(6, 43, 89, 0.12);
  padding-top: 72px;
}

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

.benefit-card {
  padding: 22px;
}

.benefit-card:nth-child(1) {
  border-top: 7px solid var(--blue);
}

.benefit-card:nth-child(2) {
  border-top: 7px solid var(--green);
}

.benefit-card:nth-child(3) {
  border-top: 7px solid var(--orange);
}

.benefit-card:nth-child(4) {
  border-top: 7px solid #6d42a7;
}

.program-section {
  padding-top: 62px;
}

.program-grid article {
  padding: 24px;
  background: var(--soft);
}

.pricing-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: center;
  padding-top: 40px;
}

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

.price-card {
  padding: 28px;
}

.featured-price {
  border: 3px solid var(--orange);
}

.price-label {
  display: block;
  color: var(--muted);
  font-weight: 950;
  text-transform: uppercase;
}

.price-card strong {
  display: block;
  margin: 6px 0 10px;
  color: var(--navy);
  font-size: 3rem;
  line-height: 1;
  font-weight: 950;
}

.price-card .button {
  width: 100%;
  margin-top: 12px;
}

.checkout-section {
  padding-top: 34px;
}

.checkout-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 30px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(3, 26, 55, 0.98), rgba(6, 43, 89, 0.98)),
    var(--deep-navy);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 8px solid var(--orange);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.checkout-cta h2,
.checkout-cta p {
  color: var(--white);
}

.checkout-cta p:not(.eyebrow) {
  margin-bottom: 0;
  color: #d9ecff;
  font-weight: 800;
}

.checkout-cta-actions {
  display: grid;
  gap: 10px;
  min-width: 210px;
}

.checkout-cta-actions .button {
  width: 100%;
  box-shadow: none;
}

.checkout-heading {
  max-width: 800px;
  margin-bottom: 26px;
}

.checkout-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.06rem;
  font-weight: 700;
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.72fr);
  gap: 22px;
  align-items: start;
}

.checkout-layout:has(.payment-panel[hidden]) {
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
}

.checkout-form,
.payment-panel {
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(3, 26, 55, 0.08);
}

.checkout-form fieldset {
  margin: 0 0 22px;
  padding: 0;
  border: 0;
}

.checkout-form legend {
  margin-bottom: 12px;
  color: var(--deep-navy);
  font-size: 1.2rem;
  font-weight: 950;
}

.session-option {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  min-height: 70px;
  margin-bottom: 10px;
  padding: 14px;
  background: #f5f9fd;
  border: 2px solid transparent;
  border-radius: 8px;
  cursor: pointer;
}

.session-option:has(input:checked) {
  border-color: var(--orange);
  background: #fff7eb;
}

.session-option input {
  width: 22px;
  height: 22px;
  accent-color: var(--orange);
}

.session-option strong,
.session-option small {
  display: block;
}

.session-option strong {
  color: var(--navy);
  font-size: 1.04rem;
  font-weight: 950;
}

.session-option small {
  color: var(--muted);
  font-weight: 800;
}

.session-option .spot-note {
  margin-top: 3px;
  color: var(--orange);
  font-weight: 950;
}

.all-three-upsell {
  margin: -6px 0 22px;
  padding: 16px;
  display: grid;
  gap: 4px;
  background: #fff7eb;
  border: 2px solid rgba(245, 96, 15, 0.35);
  border-left: 8px solid var(--orange);
  border-radius: 8px;
}

.all-three-upsell strong {
  color: var(--deep-navy);
  font-size: 1.05rem;
  font-weight: 950;
}

.all-three-upsell span {
  color: var(--muted);
  font-weight: 800;
}

.deadline-alert {
  margin: 0 0 20px;
  padding: 16px;
  display: grid;
  gap: 4px;
  background: #eff8ff;
  border: 2px solid rgba(23, 132, 209, 0.24);
  border-left: 8px solid var(--blue);
  border-radius: 8px;
}

.deadline-alert strong {
  color: var(--deep-navy);
  font-size: 1.05rem;
  font-weight: 950;
}

.deadline-alert span {
  color: var(--muted);
  font-weight: 800;
}

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

.checkout-form label span {
  display: block;
  margin-bottom: 6px;
  color: var(--deep-navy);
  font-size: 0.88rem;
  font-weight: 950;
}

.checkout-form input[type="text"],
.checkout-form input[type="tel"],
.checkout-form input[type="email"],
.checkout-form input[type="number"] {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  color: var(--ink);
  background: #fbfdff;
  border: 1px solid rgba(6, 43, 89, 0.24);
  border-radius: 6px;
  font: inherit;
  font-weight: 700;
}

.checkout-form input:focus {
  outline: 3px solid rgba(255, 189, 22, 0.42);
  border-color: var(--orange);
}

.waiver-panel {
  margin: 22px 0 0;
  padding: 18px;
  background: #fbfdff;
  border: 1px solid rgba(6, 43, 89, 0.18);
  border-radius: 8px;
}

.waiver-panel h3 {
  margin-bottom: 10px;
  color: var(--deep-navy);
  font-size: 1.2rem;
  font-weight: 950;
}

.waiver-copy {
  display: grid;
  gap: 9px;
  max-height: 236px;
  overflow: auto;
  padding: 14px;
  background: #f4f8fc;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.waiver-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
  font-weight: 750;
}

.waiver-agreement {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  margin-top: 14px;
  padding: 14px;
  background: #fff7eb;
  border: 2px solid rgba(245, 96, 15, 0.35);
  border-radius: 8px;
  cursor: pointer;
}

.waiver-agreement input {
  width: 22px;
  height: 22px;
  margin-top: 2px;
  accent-color: var(--orange);
}

.checkout-form .waiver-agreement span {
  margin: 0;
  color: var(--deep-navy);
  font-size: 0.98rem;
  line-height: 1.35;
  font-weight: 950;
}

.checkout-total {
  margin: 20px 0 12px;
  padding: 16px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 14px;
  align-items: end;
  background: var(--deep-navy);
  color: var(--white);
  border-radius: 8px;
}

.checkout-total span {
  font-weight: 900;
  text-transform: uppercase;
}

.checkout-total strong {
  color: var(--gold);
  font-size: 2.35rem;
  line-height: 1;
}

.checkout-total em {
  grid-column: 1 / -1;
  color: #d9ecff;
  font-style: normal;
  font-weight: 800;
}

.form-error {
  min-height: 22px;
  margin-bottom: 10px;
  color: #b42318;
  font-weight: 900;
}

.checkout-form > .button {
  width: 100%;
}

.payment-panel[hidden] {
  display: none;
}

.payment-panel {
  position: sticky;
  top: 92px;
  border-top: 8px solid var(--green);
}

.payment-panel h3 {
  font-size: 1.6rem;
}

.payment-summary {
  margin: 0 0 16px;
}

.payment-summary div {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.payment-summary dt {
  color: var(--muted);
  font-weight: 950;
}

.payment-summary dd {
  margin: 0;
  color: var(--deep-navy);
  font-weight: 900;
}

.venmo-note-box,
.venmo-pending {
  margin: 0 0 14px;
  padding: 14px;
  background: #f3f8fc;
  border: 1px solid var(--line);
  border-left: 7px solid var(--orange);
  border-radius: 8px;
}

.venmo-note-box span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.venmo-note-box p,
.venmo-pending p {
  margin: 0;
  color: var(--deep-navy);
  font-weight: 800;
}

.venmo-pending strong {
  display: block;
  margin-bottom: 4px;
  color: var(--orange);
  font-weight: 950;
}

.payment-panel .button {
  width: 100%;
  margin-top: 10px;
  box-shadow: none;
}

.venmo-link.is-disabled {
  color: #708090;
  background: #edf2f7;
  pointer-events: none;
  cursor: not-allowed;
}

.contact-band {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 66px;
  padding: 34px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(3, 26, 55, 0.98), rgba(6, 43, 89, 0.98)),
    var(--deep-navy);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-band h2,
.contact-band p {
  color: var(--white);
}

.contact-band .eyebrow {
  color: var(--gold);
}

.contact-band p {
  margin-bottom: 0;
}

.contact-actions {
  display: grid;
  gap: 12px;
  min-width: 250px;
}

.phone-number {
  color: var(--gold);
  font-size: 1.65rem;
  font-weight: 950;
  text-align: center;
  text-decoration: none;
}

.site-footer {
  padding: 26px 16px 92px;
  display: flex;
  justify-content: center;
  gap: 24px;
  color: #d9ecff;
  background: var(--deep-navy);
  font-size: 0.94rem;
  font-weight: 700;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--gold);
  font-weight: 950;
}

.mobile-cta {
  display: none;
}

.modal-open {
  overflow: hidden;
}

.sms-modal[hidden],
.signup-modal[hidden],
.checkout-modal[hidden] {
  display: none;
}

.sms-modal,
.signup-modal,
.checkout-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 22px;
}

.sms-modal-backdrop,
.signup-modal-backdrop,
.checkout-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 26, 55, 0.72);
  backdrop-filter: blur(6px);
}

.checkout-modal {
  z-index: 105;
}

.signup-modal {
  z-index: 110;
}

.sms-modal {
  z-index: 120;
}

.checkout-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 1120px);
  max-height: calc(100vh - 44px);
  overflow: auto;
  padding: 28px;
  background: var(--paper);
  border: 4px solid var(--gold);
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(3, 26, 55, 0.36);
}

.checkout-dialog .checkout-heading {
  padding-right: 44px;
}

.checkout-dialog .payment-panel {
  top: 18px;
}

.sms-dialog,
.signup-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 540px);
  max-height: calc(100vh - 44px);
  overflow: auto;
  padding: 30px;
  background: var(--white);
  border: 4px solid var(--gold);
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(3, 26, 55, 0.36);
}

.signup-dialog {
  border-color: var(--orange);
}

.sms-dialog h2,
.signup-dialog h2 {
  margin-bottom: 12px;
  font-size: 2rem;
}

.sms-dialog p:not(.eyebrow),
.signup-dialog p:not(.eyebrow) {
  color: var(--muted);
  font-weight: 800;
}

.sms-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border: 0;
  color: var(--deep-navy);
  background: #edf4fb;
  border-radius: 6px;
  font-size: 1.65rem;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
}

.sms-modal-phone {
  display: block;
  margin: 0 0 18px;
  color: var(--navy);
  font-size: 2rem;
  font-weight: 950;
  text-decoration: none;
}

.sms-message-box {
  margin: 0 0 18px;
  padding: 16px;
  background: #f3f8fc;
  border: 1px solid var(--line);
  border-left: 7px solid var(--orange);
  border-radius: 8px;
}

.sms-message-box span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.sms-message-box p {
  margin: 0;
  color: var(--deep-navy);
}

.sms-modal-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.signup-dialog-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.sms-modal-actions .button,
.signup-dialog-actions .button {
  width: 100%;
  min-height: 44px;
  box-shadow: none;
  cursor: pointer;
}

.copy-status {
  min-height: 20px;
  margin: 12px 0 0;
  color: var(--green);
  font-size: 0.92rem;
}

@media (max-width: 960px) {
  .nav-shell {
    flex-wrap: wrap;
    min-height: 68px;
    padding: 10px 0;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-menu {
    display: none;
    order: 4;
    width: 100%;
    margin-left: 0;
    padding: 8px 0 2px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .site-menu.is-open {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .header-cta {
    display: none;
  }

  .hero-grid,
  .split-section,
  .pricing-section,
  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    padding-top: 48px;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-side {
    justify-self: start;
    width: min(100%, 700px);
  }

  .hero-photo {
    height: 390px;
  }

  .hero-side-meta {
    position: static;
    grid-template-columns: 1fr;
  }

  .hero-side-meta .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .hero-side-meta .hero-stats div {
    padding: 13px;
    display: block;
  }

  .hero-side-meta .hero-stats dt {
    font-size: 1.72rem;
  }

  .hero-side-meta .hero-stats dd {
    margin: 6px 0 0;
    font-size: 0.82rem;
  }

  .hero-photo-callout {
    margin-bottom: 0;
  }

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

  .quick-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .session-grid,
  .program-grid {
    grid-template-columns: 1fr;
  }

  .payment-panel {
    position: static;
  }
}

@media (max-width: 680px) {
  body {
    padding-bottom: 62px;
  }

  .nav-shell,
  .hero-grid,
  .quick-strip,
  .section,
  .contact-band {
    width: min(100% - 24px, 1180px);
  }

  .brand-subtitle {
    display: none;
  }

  .nav-toggle-text {
    display: none;
  }

  .hero-grid {
    gap: 28px;
    padding: 38px 0 42px;
  }

  .hero {
    min-height: auto;
    background:
      linear-gradient(105deg, rgba(3, 26, 55, 0.98) 0%, rgba(3, 26, 55, 0.94) 56%, rgba(8, 123, 211, 0.6) 100%),
      linear-gradient(180deg, rgba(255, 189, 22, 0.08), rgba(245, 96, 15, 0.12) 100%),
      var(--navy);
  }

  h1 {
    font-size: 2.28rem;
    line-height: 1.02;
  }

  h2 {
    font-size: 1.72rem;
  }

  .hero-lede,
  .section-heading p:not(.eyebrow),
  .split-copy p,
  .pricing-copy p,
  .checkout-heading p:not(.eyebrow),
  .contact-band p {
    font-size: 1rem;
  }

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

  .hero-photo-callout {
    width: auto;
  }

  .hero-photo {
    height: 330px;
  }

  .credential-panel ul {
    grid-template-columns: 1fr;
  }

  .hero-stats,
  .quick-strip,
  .benefit-grid,
  .pricing-grid,
  .form-grid,
  .contact-band {
    grid-template-columns: 1fr;
  }

  .hero-stats div,
  .quick-item,
  .session-card,
  .benefit-card,
  .program-grid article,
  .price-card,
  .checkout-form,
  .payment-panel {
    padding-left: 18px;
    padding-right: 18px;
  }

  .section {
    padding: 56px 0;
  }

  .pricing-section {
    padding-top: 24px;
  }

  .checkout-section {
    padding-top: 16px;
  }

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

  .checkout-total strong {
    font-size: 2rem;
  }

  .contact-band {
    padding: 26px 20px;
    margin-bottom: 34px;
  }

  .checkout-cta,
  .checkout-dialog {
    padding: 24px 18px;
  }

  .checkout-modal {
    padding: 12px;
  }

  .checkout-dialog {
    max-height: calc(100vh - 24px);
  }

  .contact-actions {
    min-width: 0;
  }

  .phone-number {
    font-size: 1.35rem;
  }

  .site-footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 96px;
  }

  .mobile-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 10px 12px;
    gap: 10px;
    background: rgba(3, 26, 55, 0.96);
    box-shadow: 0 -12px 24px rgba(3, 26, 55, 0.18);
  }

  .mobile-cta a {
    min-height: 44px;
    display: grid;
    place-items: center;
    border-radius: 6px;
    color: var(--white);
    background: var(--orange);
    font-weight: 950;
    text-decoration: none;
  }

  .mobile-cta a:first-child {
    color: var(--deep-navy);
    background: var(--gold);
  }

  .sms-dialog,
  .signup-dialog {
    padding: 24px 18px;
  }

  .sms-modal-actions {
    grid-template-columns: 1fr;
  }
}
