:root {
  --blue: #071ccf;
  --deep-blue: #061168;
  --yellow: #fff200;
  --red: #e9251b;
  --white: #ffffff;
  --off-white: #f6f8ff;
  --text: #111827;
  --muted: #5b6475;
  --border: rgba(7, 28, 207, 0.14);
  --shadow: 0 20px 50px rgba(6, 17, 104, 0.13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 6vw;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 900;
  color: var(--deep-blue);
  letter-spacing: -0.02em;
}

.brand img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.nav {
  display: flex;
  gap: 18px;
  align-items: center;
}

.nav a {
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--deep-blue);
}

.menu-toggle {
  display: none;
  border: 0;
  background: var(--blue);
  color: white;
  font-size: 1.5rem;
  border-radius: 8px;
  padding: 6px 10px;
}

.hero {
  min-height: 86vh;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  grid-template-areas:
    "logo content"
    "quick quick";
  align-items: center;
  gap: 40px;
  padding: 64px 6vw 46px;
  background:
    radial-gradient(circle at 82% 12%, rgba(255, 242, 0, 0.7), transparent 31%),
    linear-gradient(135deg, var(--blue) 0%, var(--deep-blue) 68%);
  color: white;
}

.hero-logo {
  grid-area: logo;
  background: white;
  border: 8px solid var(--yellow);
  border-radius: 34px;
  padding: clamp(18px, 3vw, 34px);
  box-shadow: var(--shadow);
}

.hero-logo img {
  width: min(440px, 100%);
  margin: 0 auto;
  object-fit: contain;
}

.hero-content { grid-area: content; }

.hero h1 {
  font-size: clamp(2.25rem, 5.5vw, 5rem);
  line-height: 0.95;
  margin: 0 0 24px;
  max-width: 920px;
  letter-spacing: -0.07em;
}

.lead {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  max-width: 720px;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 30px;
}

.quick-info {
  grid-area: quick;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 10px;
}

.quick-info div {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 22px;
  padding: 18px;
  backdrop-filter: blur(8px);
}

.quick-info span {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
  font-size: 0.85rem;
}

.quick-info strong {
  display: block;
  color: var(--yellow);
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  line-height: 1.1;
  margin-top: 4px;
}

.eyebrow {
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 900;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  margin: 0 0 12px;
}

.eyebrow.light { color: var(--yellow); }
.eyebrow.red { color: var(--red); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  border: 2px solid transparent;
  margin: 4px 8px 4px 0;
}

.btn.primary {
  background: var(--yellow);
  color: var(--deep-blue);
}

.btn.secondary {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.6);
}

.btn.light-btn { color: white; }

.section { padding: 80px 6vw; }

.split {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 42px;
  align-items: center;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.03;
  color: var(--deep-blue);
  margin: 0 0 22px;
  letter-spacing: -0.05em;
}

h3 {
  color: var(--deep-blue);
  margin-top: 0;
}

p { font-size: 1.05rem; }

.info-panel,
.logo-panel,
.card,
.session-card {
  border: 1px solid var(--border);
  background: var(--off-white);
  border-radius: 26px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(6, 17, 104, 0.08);
}

.info-panel ul {
  margin: 0;
  padding-left: 20px;
}

.sessions {
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
}

.session-grid,
.cards,
.pathway-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 34px;
}

.time {
  font-size: 1.65rem;
  color: var(--blue);
  font-weight: 900;
  margin: 8px 0;
}

.price-card {
  background: var(--deep-blue);
  color: white;
}

.price-card h3,
.price-card .time {
  color: var(--yellow);
}

.note {
  margin-top: 30px;
  background: rgba(255, 242, 0, 0.14);
  border-left: 5px solid var(--yellow);
  padding: 18px 20px;
  border-radius: 14px;
}

.coaching-safe {
  background: linear-gradient(180deg, #ffffff 0%, var(--off-white) 100%);
}

.section-copy {
  max-width: 850px;
  color: var(--muted);
}

.trust-cards {
  grid-template-columns: repeat(3, 1fr);
}

.trust-card {
  border-top: 6px solid var(--yellow);
}

.blue-section {
  background: var(--deep-blue);
  color: white;
}

.blue-section h2,
.blue-section h3 {
  color: white;
}

.section-intro {
  max-width: 900px;
  color: rgba(255, 255, 255, 0.84);
}

.path-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 26px;
  border-radius: 26px;
}

.path-card span {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--yellow);
  color: var(--deep-blue);
  border-radius: 50%;
  font-weight: 900;
  margin-bottom: 14px;
}

.moments { background: white; }

.moment-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  margin-top: 34px;
}

.moment-card {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  border-radius: 30px;
  box-shadow: var(--shadow);
  background: var(--deep-blue);
  color: white;
}

.moment-card.large {
  grid-row: span 2;
  min-height: 682px;
}

.moment-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(1.05);
}

.moment-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(2, 7, 53, 0.88) 100%);
}

.moment-card div {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 1;
}

.moment-card h3 {
  color: white;
  font-size: 1.65rem;
  margin-bottom: 6px;
}

.moment-card p {
  margin: 0;
  color: rgba(255,255,255,0.88);
}

.cards { grid-template-columns: repeat(4, 1fr); }
.card { min-height: 220px; }

.accreditation { background: var(--off-white); }

.logo-panel {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-panel img {
  max-height: 260px;
  object-fit: contain;
}

.futurefit { background: #fff; }

.futurefit-card {
  border: 2px solid rgba(233, 37, 27, 0.2);
  border-radius: 34px;
  padding: 36px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 32px;
  align-items: center;
  box-shadow: var(--shadow);
}

.futurefit-card h2 { color: var(--red); }

.futurefit-card img {
  border-radius: 24px;
  border: 1px solid rgba(233, 37, 27, 0.18);
}

.wildcats {
  background: linear-gradient(135deg, #f7fbff 0%, #fff 100%);
}

.text-link {
  color: var(--blue);
  font-weight: 900;
}

.wildcats-photo-panel {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--off-white);
  min-height: 360px;
}

.wildcats-photo {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.wildcats-logo-small {
  position: absolute;
  left: 18px;
  bottom: 18px;
  width: 140px;
  background: white;
  border-radius: 18px;
  padding: 10px;
  box-shadow: 0 14px 32px rgba(0,0,0,0.22);
}

.contact {
  background: linear-gradient(135deg, var(--blue), var(--deep-blue));
  color: white;
  text-align: center;
}

.contact h2 { color: white; }

.contact p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.contact-details { margin-top: 28px; }

.footer {
  background: #020735;
  color: white;
  text-align: center;
  padding: 24px 6vw;
}

.mobile-cta { display: none; }

@media (max-width: 1100px) {
  .nav { gap: 12px; }
  .nav a { font-size: 0.82rem; }
}

@media (max-width: 950px) {
  .hero {
    grid-template-columns: 1fr;
    grid-template-areas:
      "logo"
      "content"
      "quick";
    text-align: center;
    min-height: auto;
  }

  .split,
  .futurefit-card {
    grid-template-columns: 1fr;
  }

  .pathway-grid,
  .cards,
  .session-grid,
  .quick-info,
  .trust-cards {
    grid-template-columns: 1fr 1fr;
  }

  .moment-grid {
    grid-template-columns: 1fr;
  }

  .moment-card,
  .moment-card.large {
    min-height: 420px;
    grid-row: auto;
  }

  .nav {
    position: absolute;
    top: 84px;
    left: 6vw;
    right: 6vw;
    background: white;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 18px;
    flex-direction: column;
    align-items: stretch;
    box-shadow: var(--shadow);
    display: none;
  }

  .nav.open { display: flex; }
  .menu-toggle { display: block; }
}

@media (max-width: 640px) {
  body { padding-bottom: 74px; }

  .site-header { padding: 12px 4vw; }

  .brand span { font-size: 0.95rem; }

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

  .hero,
  .section {
    padding: 56px 5vw;
  }

  .pathway-grid,
  .cards,
  .session-grid,
  .quick-info,
  .trust-cards {
    grid-template-columns: 1fr;
  }

  .hero h1 { font-size: 2.45rem; }

  .hero-logo {
    border-width: 5px;
    border-radius: 24px;
  }

  .btn { width: 100%; }

  .moment-card,
  .moment-card.large {
    min-height: 310px;
    border-radius: 22px;
  }

  .moment-card div {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .moment-card h3 { font-size: 1.35rem; }

  .wildcats-logo-small { width: 110px; }

  .mobile-cta {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 20;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    background: rgba(2, 7, 53, 0.88);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 999px;
    padding: 8px;
    backdrop-filter: blur(10px);
    box-shadow: 0 14px 36px rgba(0,0,0,0.25);
  }

  .mobile-cta a {
    text-align: center;
    text-decoration: none;
    font-weight: 900;
    border-radius: 999px;
    padding: 12px 8px;
    font-size: 0.92rem;
  }

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

  .mobile-cta a:last-child {
    color: white;
    border: 1px solid rgba(255,255,255,0.28);
  }
}


.hero .eyebrow {
  color: var(--yellow);
}

/* v7 coaching layout with Academy Manager photo */
.coaching-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 34px;
  align-items: stretch;
}

.coach-photo-card {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  min-height: 100%;
  box-shadow: var(--shadow);
  background: var(--deep-blue);
}

.coach-photo-card img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: 62% center;
}

.coach-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(2, 7, 53, 0.86) 100%);
}

.coach-photo-card div {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 1;
  color: white;
}

.coach-photo-card h3 {
  color: white;
  font-size: 1.6rem;
  margin: 0 0 2px;
}

.coach-photo-card p {
  margin: 0;
  color: rgba(255,255,255,0.88);
  font-weight: 700;
}

@media (max-width: 950px) {
  .coaching-layout {
    grid-template-columns: 1fr;
  }

  .coach-photo-card img {
    min-height: 430px;
  }
}

@media (max-width: 640px) {
  .coach-photo-card {
    border-radius: 22px;
  }

  .coach-photo-card img {
    min-height: 330px;
  }
}

@media (min-width: 951px) {
  .nav {
    flex-wrap: wrap;
    justify-content: flex-end;
  }
}


.featured-price {
  border: 3px solid var(--yellow);
  transform: translateY(-4px);
}

.price-btn {
  margin-top: 10px;
  width: 100%;
}

.price-card .price-btn {
  color: var(--deep-blue);
}


/* v9: transparent high-resolution logo update */
.hero-logo {
  background: rgba(255, 255, 255, 0.96);
}

.hero-logo img,
.brand img {
  object-fit: contain;
}

/* v10 membership-first pricing structure */
.pricing-options {
  display: grid;
  grid-template-columns: 1.15fr 0.9fr 0.9fr;
  gap: 22px;
  margin-top: 34px;
  align-items: stretch;
}

.badge {
  display: inline-flex;
  background: var(--yellow);
  color: var(--deep-blue);
  font-weight: 900;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.82rem;
  margin-bottom: 14px;
}

.outline-blue {
  color: var(--blue);
  border-color: var(--blue);
  background: transparent;
  margin-top: 8px;
}

.wildcats-price {
  border-top: 6px solid #65d1c8;
}

.session-times {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 24px;
}

.session-times div {
  border: 1px solid var(--border);
  background: white;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(6, 17, 104, 0.06);
}

@media (max-width: 950px) {
  .pricing-options {
    grid-template-columns: 1fr;
  }

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

/* v11: clearer Academy / Wildcats membership sign-up options */
.wildcats-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 18px;
}

.wildcats-join {
  margin: 0;
}

.wildcats .wildcats-join {
  color: var(--deep-blue);
}

@media (max-width: 640px) {
  .wildcats-actions {
    display: block;
  }

  .wildcats-actions .btn {
    margin-bottom: 12px;
  }
}

/* v12: separate Academy and Wildcats DD links */
.wildcats-primary {
  background: #65d1c8;
  color: var(--deep-blue);
}

@media (max-width: 640px) {
  .hero-actions .btn,
  .contact-actions .btn {
    margin-bottom: 8px;
  }
}

/* v13 OCA updates and shirt section */
.kit-section {
  background: linear-gradient(180deg, #ffffff 0%, var(--off-white) 100%);
}

.kit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 28px;
}

.kit-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.kit-card img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  background: #050505;
}

.kit-card div {
  padding: 22px 24px 26px;
}

@media (max-width: 950px) {
  .kit-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .kit-card img {
    height: 420px;
  }
}


/* v15: local SEO area section */
.local-areas {
  background: #ffffff;
  border-bottom: 1px solid var(--border);
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.area-tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--off-white);
  border: 1px solid var(--border);
  color: var(--deep-blue);
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 900;
}

@media (max-width: 640px) {
  .area-tags span {
    width: 100%;
  }
}


/* v16 Spond signup/process updates */
.spond-section {
  background: linear-gradient(180deg, #ffffff 0%, var(--off-white) 100%);
}

.spond-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 30px;
}

.step-number {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--yellow);
  color: var(--deep-blue);
  border-radius: 50%;
  font-weight: 900;
  margin-bottom: 14px;
}

.contact-details a {
  color: inherit;
  font-weight: 900;
}

@media (max-width: 950px) {
  .spond-steps {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .spond-steps {
    grid-template-columns: 1fr;
  }
}


/* v17 updated combined Academy & Wildcats logo */
.hero-logo img,
.brand img {
  object-fit: contain;
}

.hero-logo {
  padding: 18px;
}

.brand img {
  max-height: 64px;
  width: auto;
}

.contact-details a {
  color: inherit;
  text-decoration: underline;
}


/* v18 simplified top nav */
@media (min-width: 951px) {
  .nav {
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 14px;
  }

  .nav a {
    font-size: 0.88rem;
    white-space: nowrap;
  }
}

/* v18 Spond visual section */
.spond-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 30px;
  align-items: stretch;
}

.spond-content .spond-steps {
  grid-template-columns: 1fr 1fr;
}

.spond-visuals {
  display: grid;
  gap: 22px;
}

.spond-visual-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.spond-visual-card img {
  width: 100%;
  display: block;
}

.icon-card {
  padding: 28px;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 20px;
  align-items: center;
}

.icon-card img {
  width: 100%;
  max-width: 110px;
  justify-self: center;
}

.icon-card h3 {
  margin-bottom: 8px;
}

.wordmark-card {
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  background: #ffffff;
}

.wordmark-card img {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
}

/* v18 coaching section spacing */
.coaching-layout {
  grid-template-columns: 1.45fr 0.55fr;
  gap: 26px;
  align-items: stretch;
}

.trust-cards {
  grid-template-columns: 1fr;
  gap: 18px;
}

.trust-card h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
}

.trust-card p {
  max-width: none;
}

@media (max-width: 1100px) {
  .nav { gap: 10px; }
  .nav a { font-size: 0.8rem; }
}

@media (max-width: 950px) {
  .spond-layout {
    grid-template-columns: 1fr;
  }

  .spond-content .spond-steps {
    grid-template-columns: 1fr 1fr;
  }

  .coaching-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .icon-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .spond-content .spond-steps {
    grid-template-columns: 1fr;
  }
}


/* v19: simplified menu and stronger signup focus */
.clean-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
}

.clean-header .nav {
  justify-content: center;
  gap: 18px;
}

.clean-header .nav a {
  white-space: nowrap;
}

.header-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.header-actions a,
.nav-mobile-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 900;
  border-radius: 999px;
  padding: 10px 14px;
  background: var(--yellow);
  color: var(--deep-blue);
  border: 2px solid var(--yellow);
  white-space: nowrap;
  font-size: 0.88rem;
}

.header-actions .wildcats-header,
.wildcats-nav {
  background: #65d1c8;
  border-color: #65d1c8;
}

.nav-mobile-cta {
  display: none;
}

.hero-main-cta {
  transform: scale(1.03);
  box-shadow: 0 14px 34px rgba(255, 242, 0, 0.28);
}

.signup-priority {
  margin: -28px 6vw 0;
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 30px;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: var(--shadow);
  border: 3px solid var(--yellow);
}

.signup-priority h2 {
  margin-bottom: 10px;
  font-size: clamp(1.7rem, 3vw, 2.7rem);
}

.signup-priority p {
  margin: 0;
  color: var(--muted);
}

.signup-priority-actions {
  display: grid;
  gap: 10px;
  min-width: 230px;
}

.signup-priority-actions .btn {
  margin: 0;
}

.signup-priority-actions .outline-blue {
  border-color: var(--blue);
  color: var(--blue);
  background: white;
}

@media (max-width: 1180px) {
  .clean-header {
    grid-template-columns: auto auto;
  }

  .header-actions {
    display: none;
  }

  .nav-mobile-cta {
    display: inline-flex;
  }
}

@media (max-width: 950px) {
  .clean-header {
    display: flex;
  }

  .clean-header .nav {
    justify-content: flex-start;
  }

  .signup-priority {
    grid-template-columns: 1fr;
    margin: -18px 5vw 0;
  }

  .signup-priority-actions {
    min-width: 0;
  }
}

@media (max-width: 640px) {
  .signup-priority {
    padding: 22px;
    border-radius: 22px;
  }
}

/* v20: clearer Spond Club vs PAYG Discover distinction */
.payg-card {
  border-top: 6px solid #65d1c8;
}

.spond-steps .payg-card .step-number {
  background: #65d1c8;
}

.contact .contact-details a {
  color: inherit;
  text-decoration: underline;
}
