*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: "DM Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: #171717;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

:focus-visible {
  outline: 2px solid #d4aa5b;
  outline-offset: 2px;
}

:root {
  --brand: #6d2127;
  --brand-hover: #50181c;
  --accent: #d4aa5b;

  --surface: #f4f2ee;
  --muted: #f8f7f5;

  --text: #171717;
  --text-rgb: 23 23 23;
  /* matches --text */
  --text-muted: #404040;
  --text-subtle: #737373;
  --white-rgb: 255 255 255;

  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.18);
  --shadow-2xl: 0 25px 50px rgba(0, 0, 0, 0.35);
}

.text-accent {
  color: var(--accent);
}

/* ==========================================================================
   Layout utilities
   ========================================================================== */

.container {
  width: min(93.6rem, calc(100% - 40px));
  margin-inline: auto;
}

.section {
  padding-block: clamp(4rem, 7vw, 7.7rem);
  border-top: 1px solid #e5e5e5;
}

.section--dark {
  background: #171717;
  color: #ffffff;
  border-top-color: #262626;
}

.section--muted {
  background: var(--muted);
}

#masonry-container+.section-actions {
  justify-content: center;
}

.section-actions {
  margin-top: 3rem;
  display: flex;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.grid--leaders {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

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

/* ==========================================================================
   Components
   ========================================================================== */

.icon {
  width: 1.5rem;
  height: 1.5rem;
}

.icon--sm {
  width: 0.75rem;
  height: 0.75rem;
}

.icon--md {
  width: 1.5rem;
  height: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  border-radius: 999px;
  padding: 0.5rem 0.5rem 0.5rem 1.25rem;
  transition: background-color 200ms ease, transform 200ms ease;
}

.btn:not(:has(.btn__icon)) {
  padding: 0.5rem 1rem;
}

.btn--primary {
  font-size: 1.1rem;
  background: var(--brand);
  color: #ffffff;
}

.btn--sm {
  padding: 0.5rem 0.5rem 0.5rem 1rem;
  gap: 0.5rem;
  font-size: 1rem;
}

.btn--primary:hover {
  background: var(--brand-hover);
}

.btn__icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: #ffffff;
  color: #313638;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  transition: transform 350ms ease;
}

.btn--sm .btn__icon,
.btn__icon--sm {
  width: 2rem;
  height: 2rem;
}

.btn:hover .btn__icon {
  transform: rotate(-45deg);
}

.media-frame {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-2xl);
}

/* ==========================================================================
   Page Sections
   ========================================================================== */

/* Header / navigation */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 50;
  padding-block: 1rem;
  transition: background-color 200ms ease, box-shadow 200ms ease, padding 200ms ease;
  background: transparent;
}

.site-header.is-scrolled {
  background: #ffffff;
  box-shadow: 0 10px 30px rgb(0 0 0 / 0.08);
  padding-block: 0.55rem;
}

/* Mobile: keep header in the "scrolled/sticky" visual state by default. */
@media (max-width: 1023px) {
  .site-header {
    background: #ffffff;
    box-shadow: 0 10px 30px rgb(0 0 0 / 0.08);
    padding-block: 0.55rem;
  }

  .header__menu-toggle {
    color: var(--text);
  }

  .header__logo {
    width: 4rem;
    height: 4rem;
  }

  .aie-checkout-banner {
    padding-top: 9.25rem !important;
  }
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  display: inline-flex;
  align-items: center;
  width: 5rem;
  height: 5rem;
  transition: width 200ms ease, height 200ms ease;
}

.site-header.is-scrolled .header__logo {
  width: 4rem;
  height: 4rem;
}

.header__logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.header__nav {
  display: none;
  align-items: center;
  gap: 0.5rem;
  background: var(--muted);
  padding: 0.5rem 0.5rem 0.5rem 1.55rem;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 200ms ease, border 200ms ease, padding 200ms ease;
}

.site-header.is-scrolled .header__nav {
  box-shadow: none;
  border: 0;
  padding: 0 0.5rem 0 1rem;
  background-color: #ffffff;
}

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

.nav__link {
  padding: 0.5rem 1rem;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  color: #3d3d3d;
  transition: color 150ms ease;
}

.nav__link:hover {
  color: var(--accent);
}

.nav__divider {
  width: 1px;
  height: 1.25rem;
  background: #e0e0e0;
}

.nav__details {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav__link--summary {
  list-style: none;
  cursor: pointer;
  user-select: none;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

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

.nav__link--summary::after {
  content: "";
  display: inline-block;
  width: 0.55rem;
  height: 0.55rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  opacity: 0.9;
  transform: translateY(-1px) rotate(45deg);
  transition: transform 160ms ease, opacity 160ms ease;
  margin-top: -3px;
}

.nav__details[open] .nav__link--summary {
  color: var(--accent);
}

.nav__details[open] .nav__link--summary::after {
  transform: translateY(0px) rotate(-135deg);
  opacity: 1;
  margin-top: 3px;
}

.nav__dropdown {
  position: absolute;
  top: calc(100% + 0.65rem);
  right: 0;
  min-width: 14rem;
  padding: 0.6rem;
  border-radius: 0.9rem;
  background: #ffffff;
  border: 1px solid rgb(0 0 0 / 0.08);
  box-shadow: 0 26px 64px rgb(0 0 0 / 0.14);
  display: grid;
  gap: 0.25rem;
  z-index: 70;
  opacity: 0;
  transform: translateY(8px);
  visibility: hidden;
  pointer-events: auto;
  transition: opacity 160ms ease, transform 160ms ease, visibility 0s linear 160ms;
}

.nav__details[open] .nav__dropdown,
.nav__details:focus-within .nav__dropdown {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  transition: opacity 160ms ease, transform 160ms ease, visibility 0s linear 0s;
}

@media (hover: hover) and (pointer: fine) {
  .nav__details:hover .nav__dropdown {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    transition: opacity 160ms ease, transform 160ms ease, visibility 0s linear 0s;
  }

  /* Some browsers don't apply :hover reliably to <details>. */
  .nav__details>summary:hover+.nav__dropdown {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    transition: opacity 160ms ease, transform 160ms ease, visibility 0s linear 0s;
  }
}

.nav__dropdown-link {
  display: block;
  padding: 0.65rem 0.85rem;
  border-radius: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 0.85rem;
  color: var(--text);
  background: transparent;
  transition: background 150ms ease, color 150ms ease;
}

.nav__dropdown-link:hover {
  background: rgb(var(--text-rgb) / 0.06);
  color: var(--accent);
}

.header__menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  color: #ffffff;
  background: transparent;
  border: 0;
  transition: color 200ms ease;
}

.site-header.is-scrolled .header__menu-toggle {
  color: var(--text);
}

/* Mobile: hamburger must be visible on white header. */
@media (max-width: 1023px) {
  .header__menu-toggle {
    color: var(--text);
  }
}

.site-header.is-scrolled .nav__link {
  color: var(--text);
}

.site-header.is-scrolled .nav__link:hover {
  color: var(--accent);
}

.site-header.is-scrolled .nav__divider {
  background: #e5e5e5;
}

/* Mobile nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: var(--surface);
}

.mobile-nav.is-hidden {
  display: none;
}

.mobile-nav__inner {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.mobile-nav__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem;
  border-bottom: 1px solid #e5e5e5;
}

.mobile-nav .btn--sm {
  padding: 0.25rem 0.25rem 0.25rem 0.65rem;
  font-size: 0.85rem;
}

.mobile-nav .btn--sm .btn__icon {
  width: 1.85rem;
  height: 1.85rem;
}

.mobile-nav__close {
  padding: 0.5rem;
  border: 0;
  background: transparent;
  color: #171717;
}

.mobile-nav__links {
  flex: 1;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-nav__link {
  font-family: "Anton", system-ui, sans-serif;
  font-weight: 500;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #171717;
  transition: color 150ms ease;
  width: 100%;
  justify-content: space-between;
}

.mobile-nav__link:hover {
  color: #525252;
}

.mobile-nav__details {
  border-top: 1px solid #ececec;
  padding-top: 0.5rem;
}

.mobile-nav__summary {
  list-style: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.mobile-nav__summary::-webkit-details-marker {
  display: none;
}

.mobile-nav__summary::after {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-1px) rotate(45deg);
  transition: transform 160ms ease;
}

.mobile-nav__details[open] .mobile-nav__summary::after {
  transform: translateY(2px) rotate(-135deg);
}

.mobile-nav__submenu {
  margin-top: 0.8rem;
  padding-left: 0.5rem;
  display: grid;
  gap: 0.5rem;
}

.mobile-nav__sublink {
  font-family: "Anton", system-ui, sans-serif;
  font-size: clamp(1.1rem, 3vw, 1.35rem);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #2d2d2d;
  text-decoration: none;
}

.mobile-nav__sublink:hover {
  color: #525252;
}

/* Hero */
.hero {
  position: relative;
  min-height: 600px;
  height: 100vh;
  padding-top: 6rem;
  overflow: hidden;
  display: grid;
  place-items: center;
  text-align: center;
  color: #ffffff;
  background: rgb(var(--text-rgb));
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: rgb(var(--text-rgb));
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(23, 23, 23, 0.6);
}

.hero__content {
  position: relative;
  z-index: 1;
}

/* Reduce hero/banner height on the /news/ schedules page. */
.aie-news-hero {
  height: auto;
  min-height: clamp(520px, 55vh, 640px);
  padding-top: clamp(3rem, 4vw, 5rem);
}

@media (max-width: 767px) {
  .aie-news-hero {
    min-height: 420px;
    padding-top: 3.25rem;
  }
}

/* Membership Levels (front-styled) */
.aie-levels-hero {
  height: auto;
  min-height: clamp(520px, 55vh, 680px);
  padding-top: clamp(3.5rem, 5vw, 6rem);
}

@media (max-width: 767px) {
  .aie-levels-hero {
    min-height: 440px;
    padding-top: 3.5rem;
  }
}

.aie-levels-grid {
  margin-top: 2rem;
  gap: 1.75rem;
}

.aie-levels-block {
  margin-top: 3rem;
}

.aie-levels-block:first-of-type {
  margin-top: 2rem;
}

.aie-levels-block__title {
  margin: 0;
  font-family: "Anton", system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  color: var(--text);
}

.aie-levels-block__lead {
  margin: 0.75rem 0 0;
  max-width: 52rem;
  color: rgb(var(--text-rgb) / 0.7);
  line-height: 1.6;
}

.aie-level-card {
  position: relative;
  border: 1px solid #e7e7e7;
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: 0 18px 44px rgb(0 0 0 / 0.06);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
  overflow: hidden;
}

.aie-level-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand), rgb(var(--text-rgb) / 0.35));
}

.aie-level-card:hover {
  transform: translateY(-4px);
  border-color: rgb(var(--text-rgb) / 0.18);
  box-shadow: 0 26px 64px rgb(0 0 0 / 0.12);
}

.aie-level-card .program-card__body {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 2rem;
}

.aie-level-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.aie-level-card__badge {
  margin: 0;
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  background: rgb(var(--text-rgb) / 0.06);
  border: 1px solid rgb(var(--text-rgb) / 0.1);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.7rem;
  color: rgb(var(--text-rgb) / 0.8);
}

.aie-level-card .program-card__title {
  font-size: 1.1rem;
  line-height: 1.2;
  margin-top: 0.5rem;
  margin-bottom: 0.25rem;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.aie-level-card__price {
  margin: 0;
  display: inline-flex;
  align-items: baseline;
  gap: 0.5rem;
  width: fit-content;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  background: rgb(var(--brand-rgb) / 0.1);
  border: 1px solid rgb(var(--brand-rgb) / 0.22);
  letter-spacing: 0.02em;
}

.aie-level-card__price-value {
  font-family: "Anton", system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 1.15rem;
  line-height: 1;
  color: var(--brand);
}

.aie-level-card__price-suffix {
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  opacity: 0.85;
  color: rgb(var(--text-rgb) / 0.78);
}

.aie-level-card__expires {
  margin: 0.75rem 0 0;
  font-weight: 600;
  color: rgb(var(--text-rgb) / 0.72);
}

.aie-level-card__meta {
  margin: 0.5rem 0 0;
  font-weight: 700;
  color: rgb(var(--text-rgb) / 0.78);
}

.aie-level-card__desc-text {
  margin: 0.75rem 0 0;
  color: var(--text-muted);
  line-height: 1.6;
}

.aie-level-card__actions {
  margin-top: auto;
  padding-top: 1.35rem;
}

.aie-level-card__actions .btn {
  width: 100%;
  justify-content: center;
}

.aie-level-card--featured {
  border-color: rgb(var(--brand-rgb) / 0.35);
  box-shadow: 0 22px 60px rgb(var(--brand-rgb) / 0.12);
}

.aie-level-card--featured::before {
  height: 6px;
  background: linear-gradient(90deg, var(--brand), rgb(var(--brand-rgb) / 0.35));
}

.aie-levels-page #secondary,
.aie-levels-page .ast-sidebar-main,
.aie-levels-page aside.widget-area,
.aie-levels-page .widget-area,
.aie-levels-page .sidebar-main {
  display: none !important;
}

.aie-levels-page #primary,
.aie-levels-page .ast-container>#primary {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

.aie-plans-pricing-section .aie-plans-pricing-section__intro {
  margin-bottom: clamp(1.25rem, 3vw, 2rem);
}

.aie-plans-pricing-footnote {
  margin: clamp(2rem, 4vw, 3rem) auto 0;
  max-width: 42rem;
  padding: 0 0.25rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgb(var(--text-rgb) / 0.72);
  text-align: center;
}

.hero__title,
.section-title,
.cta__title {
  font-family: "Anton", system-ui, sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

.hero__title {
  font-size: clamp(2.25rem, 6vw, 6rem);
  line-height: 1.4;
  overflow: hidden;
  max-width: 1070px;
  margin: 0 auto 26px;

}

.hero__subtitle {
  margin: 1.5rem auto 0;
  max-width: 42rem;
  font-size: clamp(1rem, 2.2vw, 1.5rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
}

.hero__cta {
  margin: 2rem auto 0;
}

/* Section typography helpers */
.section-kicker {
  font-family: "Anton", system-ui, sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
  color: var(--accent);
  margin: 0 0 0.5rem;
}

.section-kicker--brand {
  color: var(--brand);
}

.section-title {
  font-size: clamp(2rem, 4.5vw, 3.75rem);
  line-height: 1.1;
  margin: 0 0 2rem;
  color: var(--text);
  overflow: hidden;
}

.section-title--light {
  color: #ffffff;
}

.section-lead {
  margin: 1.25rem 0 0;
  font-size: clamp(1.125rem, 2.2vw, 1.25rem);
  line-height: 1.25;
  color: #404040;
  font-weight: 300;
  max-width: 40rem;
}

.section-lead p {
  margin-top: 0;
}

.section-lead--light {
  color: #d4d4d4;
}

/* About */
.about {
  position: relative;
  overflow: hidden;
  border-top: none;
}

.about .container {
  width: min(96.4rem, calc(100% - 40px));
}

.section__bg {
  position: absolute;
  inset: 0;
}

.section__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

.section__bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(23, 23, 23, 0.4);
}

.section__content {
  position: relative;
  z-index: 1;
}

.about__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 4rem;
}

.about__copy {
  max-width: 34rem;
}

.about__image {
  order: -1;
}

.about__bottom {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: end;
}

.about__badge {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
}

.about__badge-media {
  width: min(12rem, 100%);
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #262626;
}

.about__badge-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about__badge-title {
  font-family: "Anton", system-ui, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  line-height: 1.05;
  margin: 0;
}

.about__badge-subtitle {
  margin: 0.75rem 0 0;
  color: #a3a3a3;
  max-width: 28rem;
}

.about__stat {
  text-align: left;
}

.about__stat-number {
  font-family: "Anton", system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(2.5rem, 6vw, 3.75rem);
  margin: 0;
  letter-spacing: 0.05em;
}

.about__stat-label {
  margin: 0.25rem 0 0;
  color: #a3a3a3;
  font-weight: 500;
}

.about__stat-meta {
  margin: 0.25rem 0 0;
  color: #737373;
  font-size: 0.75rem;
}

/* Leaders */

.about__top .about__image .leader-card {
  aspect-ratio: 6 / 3;
}

.about__top .about__image .leader-card .leader-card__img {
  filter: grayscale(0);
  transform: scale(1);
}

.leader-card {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #e5e5e5;
}

.leader-card__img {
  position: absolute;
  inset: -10% 0 0;
  width: 100%;
  height: 120%;
  object-fit: cover;
  filter: grayscale(1);
  transform: scale(1);
  transition: transform 300ms ease, filter 300ms ease;
}

.leader-card:hover .leader-card__img {
  filter: grayscale(0);
  transform: scale(1.05);
}

.leader-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent 60%);
}

.leader-card__content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.25rem;
}

.leader-card__name {
  display: inline-flex;
  gap: 0.375rem;
  align-items: center;
  font-family: "Anton", system-ui, sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #ffffff;
  font-size: 1.6rem;
  transition: opacity 150ms ease;
}

.leader-card__name:hover {
  opacity: 0.9;
}

.leader-card__role {
  margin: 0.25rem 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-family: "Anton", system-ui, sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1rem;
}

/* Athletes */
.athletes-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  color: #ffffff;
}

.athletes__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.athletes__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.athletes__bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(23, 23, 23, 0.75);
}

.athletes-pin-wrapper {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
}

.athletes-sticky {
  flex: 0 0 auto;
  width: 100%;
  padding: 4rem 2rem;
}

.athletes__tagline {
  margin: 1.5rem 0 1rem;
  font-family: "Anton", system-ui, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1rem;
}

.athletes-videos-wrapper {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  z-index: 2;
}

.athletes-videos-track {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 1.5rem;
  padding: 9rem 1.5rem 3rem;
  width: max-content;
  height: 100%;
  background: #ffffff;
}

.athletes-video-card {
  flex: 0 0 auto;
  height: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(38, 38, 38, 0.8);
  box-shadow: var(--shadow-2xl);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: block;
}

.athletes-video-card__media {
  aspect-ratio: 9 / 16;
  background: #262626;
  width: 100%;
  height: 100%;
}

.athletes-video-card__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

/* Programs */
.programs {
  background: #ffffff;
}

.program-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  min-width: 0;
  border-radius: var(--radius-md);
  transform: translateY(0) !important;
}

.program-card__media {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: #e5e5e5;
}

.program-card__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transform: scale(1.05);
  transition: transform 300ms ease;
}

.program-card:hover .program-card__img {
  transform: scale(1);
}

.program-card__body {
  padding: 1.5rem;
}

.program-card__title {
  margin: 0;
  font-family: "Anton", system-ui, sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 1.25rem;
}

.program-card__text {
  margin: 0.5rem 0 0;
  color: var(--text-muted);
  line-height: 1.65;
}

.program-card--featured {
  order: -1;
}

/* Football events / schedule cards */
.events-grid {
  margin-top: 3rem;
}

.events-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

/* Horizontal events */
.events-horizontal {
  position: relative;
  overflow: hidden;
}

.events-horizontal__header {
  margin-bottom: 2rem;
}

.events-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.events-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 1.5rem;
  width: max-content;
  padding-inline: 20px;
  will-change: transform;
}

.events-card {
  position: relative;
  flex: 0 0 auto;
  width: min(92vw, 56rem);
  height: min(72vh, 44rem);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
  background: rgb(var(--text-rgb) / 0.15);
}

.events-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  will-change: transform;
}

.events-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgb(var(--text-rgb) / 0.25) 0%,
      rgb(var(--text-rgb) / 0.92) 80%);
}

.events-card__content {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 2rem;
  z-index: 1;
  color: rgb(var(--white-rgb));
  max-width: 40rem;
}

.events-card__badge {
  margin: 0 0 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgb(var(--white-rgb) / 0.1);
  border: 1px solid rgb(var(--white-rgb) / 0.18);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 800;
}

.events-card__title {
  margin: 0;
  font-family: "Anton", system-ui, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  line-height: 1.05;
}

.events-card__desc {
  margin: 0.85rem 0 0;
  color: rgb(var(--white-rgb) / 0.9);
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 34rem;
}

.events-card__meta {
  margin: 0.85rem 0 1.25rem;
  color: rgb(var(--white-rgb) / 0.82);
  font-size: 0.95rem;
}

.events-progress {
  margin-top: 1.5rem;
  height: 3px;
  background: rgb(var(--white-rgb) / 0.14);
  border-radius: 999px;
  overflow: hidden;
}

@media (max-width: 767px) {
  .events-track {
    width: 100%;
    padding-inline: 0;
    display: grid;
    gap: 1.5rem;
  }

  .events-card {
    width: 100%;
    height: auto;
    min-height: 22rem;
  }

  .events-card__content {
    position: relative;
    padding: 1.5rem;
    max-width: none;
  }

  .events-card__bg,
  .events-card__overlay {
    position: absolute;
  }
}

.schedule-cards {
  margin-top: 2.5rem;
}

.football-match-grid {
  margin-top: 2.5rem;
}

.schedule-card__meta {
  margin-top: 0.5rem;
}

.schedule-card__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.25rem;
}

.schedule-card__team {
  text-align: left;
}

.schedule-card__team--right {
  text-align: right;
}

.schedule-card__team-name {
  margin: 0;
  font-weight: 700;
}

.schedule-card__team-meta {
  margin: 0;
  font-size: 0.875rem;
  opacity: 0.8;
}

.schedule-card__score {
  margin: 0;
}

.schedule-card__actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.btn--outline {
  border: 1px solid #e5e5e5;
  background: #ffffff;
}

/* PMPro login (front-styled) */
.aie-pmpro-login__form-wrap {
  margin-top: 1.5rem;
}

.aie-pmpro-login-hero {
  height: auto;
  min-height: 100vh;
  padding-top: clamp(10rem, 10vw, 12rem);
  padding-bottom: clamp(4.5rem, 9vw, 7rem);
  display: grid;
  align-items: center;
}

.aie-pmpro-reset-hero {
  height: auto;
  min-height: 100vh;
  padding-top: clamp(10rem, 10vw, 12rem);
  padding-bottom: clamp(4.5rem, 9vw, 7rem);
  display: grid;
  align-items: center;
}

.aie-login-page #secondary,
.aie-login-page .ast-sidebar-main,
.aie-login-page aside.widget-area,
.aie-login-page .widget-area,
.aie-login-page .sidebar-main,
.aie-login-page .ast-builder-grid-row-container .widget,
.aie-login-page .entry-content>ul,
.aie-login-page .entry-content form[role="search"] {
  display: none !important;
}

.aie-login-page #primary,
.aie-login-page .ast-container>#primary {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

.aie-pmpro-login-grid {
  margin-top: 0;
  grid-template-columns: 1fr !important;
  justify-items: center;
}

.aie-pmpro-login-card {
  width: min(100%, 36rem);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-2xl);
  border: 1px solid #e5e5e5;
}

.aie-pmpro-login-card__body {
  padding: 2.5rem;
}

.aie-pmpro-login-card__title {
  margin-bottom: 1rem;
}

h2.section-title.aie-pmpro-login-card__title {
  font-weight: 500;
}

.aie-pmpro-login-hero .hero__content {
  max-width: 40rem;
  margin-inline: auto;
  width: 100%;
  text-align: left;
}

.aie-pmpro-reset-hero .hero__content {
  max-width: 40rem;
  margin-inline: auto;
  width: 100%;
  text-align: left;
}

.aie-pmpro-login-hero .pmpro_section,
.aie-pmpro-login-hero .pmpro {
  margin: 0 !important;
}

.aie-pmpro-reset-hero .pmpro_section,
.aie-pmpro-reset-hero .pmpro {
  margin: 0 !important;
}

.aie-pmpro-login-hero .pmpro_section #loginform .login-remember {
  margin: -12px 0 0 !important;
}

.aie-pmpro-login-hero .pmpro form {
  display: grid;
  gap: 0.25rem;
}

.aie-pmpro-reset-hero .pmpro form {
  display: grid;
  gap: 1rem;
}

.aie-pmpro-login-hero .pmpro .login-password {
  position: relative;
}

.aie-pmpro-login-hero .pmpro .pmpro_form_field-password-toggle {
  position: absolute;
  right: 0.625rem;
  top: 50%;
  transform: translateY(-50%);
}

.aie-pmpro-login-hero .pmpro .input,
.aie-pmpro-login-hero .pmpro input[type="text"],
.aie-pmpro-login-hero .pmpro input[type="email"],
.aie-pmpro-login-hero .pmpro input[type="password"] {
  width: 100%;
  min-height: 3rem;
  padding: 0.75rem 0.875rem;
  border: 1px solid #d4d4d4;
  border-radius: 0.5rem;
  background: #ffffff;
  color: var(--text);
}

.aie-pmpro-reset-hero .pmpro .input,
.aie-pmpro-reset-hero .pmpro input[type="text"],
.aie-pmpro-reset-hero .pmpro input[type="email"],
.aie-pmpro-reset-hero .pmpro input[type="password"] {
  width: 100%;
  min-height: 3rem;
  padding: 0.75rem 0.875rem;
  border: 1px solid #d4d4d4;
  border-radius: 0.5rem;
  background: #ffffff;
  color: var(--text);
}

.aie-pmpro-login-hero .pmpro input[type="password"] {
  padding-right: 10.5rem;
}

.aie-pmpro-login-hero .pmpro .pmpro_btn,
.aie-pmpro-login-hero .pmpro input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  border: 0;
  cursor: pointer;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  border-radius: 999px;
  padding: 0.75rem 1.25rem;
  font-size: 1rem;
  background: var(--brand);
  color: #ffffff;
  transition: background-color 200ms ease;
}

.aie-pmpro-reset-hero .pmpro .pmpro_btn,
.aie-pmpro-reset-hero .pmpro input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  border: 0;
  cursor: pointer;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  border-radius: 999px;
  padding: 0.75rem 1.25rem;
  font-size: 1rem;
  background: var(--brand);
  color: #ffffff;
  transition: background-color 200ms ease;
}

.aie-pmpro-login-hero .pmpro .pmpro_btn:hover,
.aie-pmpro-login-hero .pmpro input[type="submit"]:hover {
  background: var(--brand-hover);
}

.aie-pmpro-login-hero .pmpro .pmpro_btn-plain {
  border: none;
  background: #ffffff;
  color: var(--text);
  border-radius: 999px;
  padding: 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1;
}

.aie-pmpro-login-hero .pmpro .pmpro_btn-plain:hover {
  background: #f5f5f5;
}

.aie-pmpro-login-hero .pmpro .pmpro_btn-plain .pmpro_form_field-password-toggle-state {
  display: none;
}

.pmpro_section #loginform .login-submit .button {
  background: var(--brand) !important;
  color: #ffffff !important;
  border-radius: 999px !important;
}

.pmpro_section #loginform .login-submit .button:hover {
  background: var(--brand-hover) !important;
}

.aie-pmpro-login-hero .pmpro a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.aie-pmpro-login-hero .pmpro ul {
  margin: 0.75rem 0 0;
  padding-left: 1rem;
}

.aie-pmpro-login-hero .pmpro .pmpro_login_wrap>h2 {
  display: none;
}

.aie-pmpro-login-hero .pmpro .login-remember,
.aie-pmpro-login-hero .pmpro .pmpro_actions_nav {
  text-align: left;
}

.aie-pmpro-reset-hero form#lostpasswordform>p>label[for="user_login"] {
  display: inline-block;
  margin-bottom: 0.5rem;
}

.aie-pmpro-reset-hero .pmpro .pmpro_card_actions {
  margin-top: 0;
  padding: 0;
  background: transparent;
  border: 0;
}

.aie-pmpro-reset-hero .pmpro .pmpro_actions_nav {
  width: 100%;
  display: flex !important;
  justify-content: flex-start !important;
  text-align: center;
}

.aie-pmpro-reset-hero .pmpro .pmpro_actions_nav a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--brand);
  text-decoration: none;
}

.aie-pmpro-reset-hero .pmpro .pmpro_actions_nav a:hover {
  color: var(--brand-hover);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Individual athlete registration (front-styled) */
.aie-registration-hero {
  height: auto;
  min-height: 100vh;
  padding-top: clamp(8.5rem, 10vw, 11rem);
  padding-bottom: clamp(4rem, 8vw, 6rem);
  display: grid;
  align-items: center;
}

.aie-registration-hero .hero__content {
  width: 100%;
  max-width: 70rem;
  margin-inline: auto;
  text-align: left;
}

.aie-registration-shell {
  width: 100%;
  display: flex;
  justify-content: center;
}

.aie-registration-card {
  width: min(100%, 54rem);
  border-radius: var(--radius-lg);
  border: 1px solid #e5e5e5;
  box-shadow: var(--shadow-2xl);
  background: rgba(255, 255, 255, 0.98);
  position: relative;
  z-index: 2;
}

.aie-registration-card__body {
  padding: 2rem;
  color: var(--text);
}

.aie-registration-card__body .section-kicker.section-kicker--brand {
  color: var(--brand);
}

.aie-registration-card__title {
  margin: 0 0 0.75rem;
  font-family: "Anton", system-ui, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: clamp(1.75rem, 4vw, 3rem);
  line-height: 1.05;
}

.aie-registration-form-wrap {
  margin-top: 1.5rem;
  text-align: left;
  width: 100%;
  color: var(--text);
}

.aie-registration-lead {
  max-width: 32rem;
}

.aie-registration-links {
  margin-top: 0.35rem;
}

.aie-registration-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
}

.aie-registration-link:hover {
  color: var(--brand-hover);
  text-decoration: underline;
}

.aie-registration-card__body p,
.aie-registration-card__body label,
.aie-registration-card__body span,
.aie-registration-card__body h1,
.aie-registration-card__body h2,
.aie-registration-card__body h3,
.aie-registration-card__body h4,
.aie-registration-card__body h5,
.aie-registration-card__body h6,
.aie-registration-form-wrap p,
.aie-registration-form-wrap small,
.aie-registration-form-wrap .wpcf7-not-valid-tip,
.aie-registration-form-wrap .wpcf7-response-output {
  color: var(--text);
}

/* Hide redundant CF7 headings now that page has the main title. */
.aie-registration-form-wrap .wpcf7 form h1,
.aie-registration-form-wrap .wpcf7 form h2,
.aie-registration-form-wrap .wpcf7 form h3 {
  display: none;
}

.aie-registration-form-wrap .wpcf7-not-valid-tip {
  color: #dc3232;
}

.aie-registration-form-wrap .wpcf7 form {
  display: grid;
  gap: 1rem;
  width: 100%;
}

.aie-registration-form-wrap .wpcf7 {
  width: 100%;
}

.aie-registration-form-wrap .wpcf7-form-control-wrap {
  display: block;
  margin-top: 0.375rem;
}

.aie-registration-form-wrap .wpcf7-form br {
  display: none;
}

.aie-registration-form-wrap .wpcf7 label {
  display: block;
  margin: 0;
  font-weight: 600;
  color: var(--text);
}

.aie-registration-form-wrap .wpcf7 input[type="text"],
.aie-registration-form-wrap .wpcf7 input[type="email"],
.aie-registration-form-wrap .wpcf7 input[type="tel"],
.aie-registration-form-wrap .wpcf7 input[type="number"],
.aie-registration-form-wrap .wpcf7 input[type="date"],
.aie-registration-form-wrap .wpcf7 select,
.aie-registration-form-wrap .wpcf7 textarea {
  width: 100%;
  min-height: 3rem;
  padding: 0.75rem 0.875rem;
  border: 1px solid #d4d4d4;
  border-radius: 0.5rem;
  background: #ffffff;
  color: var(--text);
}

.aie-registration-form-wrap .wpcf7 textarea {
  min-height: 7rem;
  resize: vertical;
}

.aie-registration-form-wrap .wpcf7 input[type="submit"],
.aie-registration-form-wrap .wpcf7 button[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  border: 0;
  cursor: pointer;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  border-radius: 999px;
  padding: 0.75rem 1.25rem;
  font-size: 1rem;
  background: var(--brand);
  color: #ffffff;
  transition: background-color 200ms ease;
}

.aie-registration-form-wrap .wpcf7 input[type="submit"]:hover,
.aie-registration-form-wrap .wpcf7 button[type="submit"]:hover {
  background: var(--brand-hover);
}

.aie-registration-form-wrap .wpcf7 .wpcf7-spinner {
  margin: 0.75rem 0 0;
}

.aie-registration-hero .aie-individual-form-field br {
  display: none;
}

/* Price summary text row (e.g. "Fixed price $50") */
.aie-registration-form-wrap .wpcf7 form>p:not(:has(.wpcf7-form-control-wrap, input, select, textarea)) {
  margin: 0.25rem 0 0;
  padding: 0.75rem 0.9rem;
  border: 1px solid #e5e5e5;
  border-radius: 0.5rem;
  background: #f8f7f5;
  color: var(--text);
  font-weight: 600;
  line-height: 1.45;
}

.aie-registration-form-wrap .wpcf7 form>p:not(:has(.wpcf7-form-control-wrap, input, select, textarea)):first-of-type {
  margin: 0 0 0.5rem;
  padding: 0.5rem 0.75rem;
  width: fit-content;
  border-radius: 999px;
  border: 1px solid rgb(124 0 0 / 0.25);
  background: linear-gradient(180deg, #8b0000, #6f0000);
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  box-shadow: 0 16px 34px rgb(0 0 0 / 0.12);
}

.aie-registration-form-wrap .wpcf7 form>p:not(:has(.wpcf7-form-control-wrap, input, select, textarea)):first-of-type strong,
.aie-registration-form-wrap .wpcf7 form>p:not(:has(.wpcf7-form-control-wrap, input, select, textarea)):first-of-type b {
  display: inline;
  font-family: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  font-size: inherit;
  margin: 0;
  color: inherit;
}

.aie-registration-form-wrap .wpcf7 form>p:not(:has(.wpcf7-form-control-wrap, input, select, textarea)) strong,
.aie-registration-form-wrap .wpcf7 form>p:not(:has(.wpcf7-form-control-wrap, input, select, textarea)) b {
  display: block;
  font-family: "Anton", system-ui, sans-serif;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}

/* Membership account (front-styled) */
.aie-account-page #secondary,
.aie-account-page .ast-sidebar-main,
.aie-account-page aside.widget-area,
.aie-account-page .widget-area,
.aie-account-page .sidebar-main {
  display: none !important;
}

.aie-account-page #primary,
.aie-account-page .ast-container>#primary {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

.aie-checkout-page #primary,
.aie-checkout-page .ast-container>#primary {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

.aie-404-page #secondary,
.aie-404-page .ast-sidebar-main,
.aie-404-page aside.widget-area,
.aie-404-page .widget-area,
.aie-404-page .sidebar-main {
  display: none !important;
}

.aie-404-page #primary,
.aie-404-page .ast-container>#primary {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

.aie-404-hero {
  height: 100vh;
  min-height: 100vh;
  max-height: none;
  padding-top: clamp(6.75rem, 9vw, 8rem);
  padding-bottom: clamp(2.25rem, 4vw, 3.25rem);
  place-items: center;
}

.aie-404-actions {
  margin-top: 1.25rem;
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.aie-404-actions .btn {
  min-height: 2.75rem;
  padding: 0.55rem 1.1rem;
}

.aie-404-actions .btn--outline {
  background: #ffffff;
  border: 1px solid #ffffff;
  color: rgb(var(--text-rgb));
}

.aie-404-actions .btn--outline:hover {
  background: #f3f3f3;
  color: rgb(var(--text-rgb));
}

/* PMPro checkout – banner + section (no full viewport hero) */
body.aie-checkout-page #page .site-content,
body.aie-checkout-page .site-content {
  background: transparent !important;
}

body.aie-account-layout-checkout #page .site-content,
body.aie-account-layout-checkout .site-content {
  background: transparent !important;
}

.aie-checkout-banner {
  height: auto;
  min-height: clamp(400px, 62vh, 620px);
  max-height: none;
  padding-top: clamp(6.5rem, 12vw, 9rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
  place-items: center;
  text-align: center;
}

.aie-checkout-banner .hero__content {
  max-width: 48rem;
  margin-inline: auto;
}

.aie-checkout-banner__kicker {
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 0.75rem;
}

.aie-checkout-banner .hero__subtitle {
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.25;
  font-size: 1.05rem;
}

.aie-checkout-section {
  padding-block: clamp(2.25rem, 5vw, 4rem);
  border-top: 1px solid #e5e5e5;
}

.aie-checkout-section__inner {
  max-width: 74rem;
  margin-inline: auto;
}

.aie-checkout-section__intro {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 1.75rem;
}

.aie-checkout-section__title {
  margin: 0 0 0.5rem;
  font-family: "Anton", system-ui, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  color: var(--text);
}

.aie-checkout-section__lead {
  margin: 0;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.aie-checkout-shell {
  width: 100%;
  display: flex;
  justify-content: center;
}

.aie-checkout-card {
  width: min(100%, 72rem);
  border-radius: var(--radius-lg);
  border: 1px solid #e5e5e5;
  box-shadow: 0 18px 48px rgba(15, 15, 15, 0.12);
  background: #ffffff;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.aie-checkout-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  pointer-events: none;
}

.aie-checkout-card__body {
  padding: clamp(1.25rem, 3vw, 2.25rem);
  color: var(--text);
}

.aie-checkout-content-wrap {
  margin-top: 0;
  color: var(--text);
}

/* Checkout flow – clearer steps and rhythm */
.aie-checkout-content-wrap .aie-checkout-step1,
.aie-checkout-content-wrap .aie-checkout-step1-done {
  padding-bottom: 1.75rem;
  margin-bottom: 1.75rem;
  border-bottom: 1px solid #eaeaea;
}

.aie-checkout-content-wrap .aie-checkout-step-heading {
  font-family: "Anton", system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: clamp(1rem, 2vw, 1.15rem);
  gap: 0.65rem;
}

.aie-checkout-content-wrap .aie-checkout-step-heading .aie-step-num {
  width: auto;
  min-width: 1.75rem;
  height: 1.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1;
  padding: 0 0.35rem;
}

.aie-checkout-content-wrap .aie-checkout-step-heading.aie-step-inactive .aie-step-num {
  background: #d4d4d4;
  color: #404040;
}

.aie-checkout-content-wrap .pmpro_message {
  border-radius: var(--radius-md);
  margin-bottom: 1.25rem;
}

.aie-checkout-inline-login__lead {
  margin: 0 0 0.75rem;
  font-weight: 600;
  color: var(--text);
}

.aie-checkout-inline-login {
  padding: 0.35rem 0;
}

.aie-checkout-inline-login__form .pmpro_section,
.aie-checkout-inline-login__form .pmpro {
  background: transparent;
  border: 0;
  padding: 0;
  margin: 0;
}

.aie-checkout-inline-login__form .pmpro_login_wrap>h2 {
  display: none;
}

.aie-checkout-inline-login__form .pmpro form {
  margin: 0;
  display: grid;
  gap: 0.25rem;
}

.aie-checkout-inline-login__form .pmpro .pmpro_form_field-password {
  position: relative;
}

.aie-checkout-inline-login__form .pmpro .pmpro_form_field-password-toggle {
  display: none !important;
}

.aie-checkout-inline-login__form .pmpro .login-password {
  position: relative;
}

.aie-checkout-inline-login__form .pmpro .login-password input[type="password"],
.aie-checkout-inline-login__form .pmpro .login-password input[type="text"] {
  padding-right: 4.8rem;
}

.aie-checkout-inline-login__form .aie-password-toggle {
  position: absolute;
  right: 0.7rem;
  top: auto;
  bottom: 0.85rem;
  transform: none;
  border: 0;
  background: transparent;
  color: var(--brand);
  cursor: pointer;
  padding: 0;
  width: 1.5rem;
  height: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
}

.aie-checkout-inline-login__form .aie-password-toggle:hover {
  color: var(--brand-hover);
}

.aie-checkout-inline-login__form .aie-password-toggle svg {
  width: 1.1rem;
  height: 1.1rem;
}

.aie-checkout-inline-login__form .pmpro .input,
.aie-checkout-inline-login__form .pmpro input[type="text"],
.aie-checkout-inline-login__form .pmpro input[type="email"],
.aie-checkout-inline-login__form .pmpro input[type="password"] {
  background: #ffffff;
  border: 1px solid #d9d9d9;
  border-radius: 0.5rem;
  min-height: 3rem;
  width: 100%;
  padding: 0.75rem 0.875rem;
  color: var(--text);
}

.aie-checkout-inline-login__form .pmpro input[type="password"] {
  padding-right: 0.875rem;
}

.aie-checkout-inline-login__form .pmpro .pmpro_btn,
.aie-checkout-inline-login__form .pmpro input[type="submit"] {
  border-radius: 999px;
  background: var(--brand);
  border: 0;
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  min-height: 2.7rem;
  padding: 0.72rem 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  line-height: 1;
}

.aie-checkout-inline-login__form .pmpro .pmpro_btn:hover,
.aie-checkout-inline-login__form .pmpro input[type="submit"]:hover {
  background: var(--brand-hover);
}

.aie-checkout-inline-login__form .pmpro .pmpro_btn-plain,
.aie-checkout-inline-login__form .pmpro .pmpro_form_field-password-toggle button {
  border: none;
  background: #ffffff;
  color: var(--text);
  border-radius: 999px;
  padding: 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1;
}

.aie-checkout-inline-login__form .pmpro .pmpro_btn-plain:hover,
.aie-checkout-inline-login__form .pmpro .pmpro_form_field-password-toggle button:hover {
  background: #f5f5f5;
}

.aie-checkout-inline-login__form .pmpro .pmpro_btn-plain .pmpro_form_field-password-toggle-state,
.aie-checkout-inline-login__form .pmpro .pmpro_form_field-password-toggle button .pmpro_form_field-password-toggle-state {
  display: none;
}

.aie-checkout-inline-login__form #loginform .login-submit .button {
  min-height: 2.7rem !important;
  padding: 0.72rem 1.2rem;
  border-radius: 999px;
  background: var(--brand) !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  border: 0 !important;
  box-shadow: none !important;
  width: fit-content !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1 !important;
}

.aie-checkout-inline-login__form #loginform .login-submit .button:hover {
  background: var(--brand-hover) !important;
}

.aie-checkout-inline-login__form #loginform .login-submit,
.aie-checkout-inline-login__form #loginform p.login-submit {
  margin: 0.5rem 0 0 !important;
}

.aie-checkout-inline-login__form .pmpro .login-remember,
.aie-checkout-inline-login__form .pmpro .pmpro_actions_nav {
  margin-top: 0.35rem;
}

.aie-checkout-inline-login__form .pmpro .login-remember label {
  font-weight: 600;
}

.aie-checkout-inline-login__form .pmpro a {
  color: var(--brand);
  text-decoration: none;
}

.aie-checkout-inline-login__form .pmpro a:hover {
  color: var(--brand-hover);
  text-decoration: underline;
}

.aie-checkout-inline-login__register-link {
  margin: 0.35rem 0 0;
}

.aie-checkout-inline-login__register-link a {
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
}

.aie-checkout-inline-login__register-link a:hover {
  color: var(--brand-hover);
  text-decoration: underline;
}

/* Checkout inline login: actions are normalized via JS. */

/* Normalized auth action links (login + checkout). */
.aie-auth-actions-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.25rem;
}

.aie-auth-actions-nav .aie-auth-sep {
  opacity: 0.65;
}

.aie-checkout-content-wrap .aie-order-summary {
  background: #fafafa;
  border: 1px solid #e5e5e5 !important;
  border-radius: var(--radius-lg);
  padding: clamp(1.25rem, 3vw, 1.75rem);
  box-shadow: 0 1px 2px rgba(15, 15, 15, 0.06);
}

.aie-checkout-content-wrap .aie-order-summary-title {
  font-family: "Anton", system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 1.1rem;
}

.aie-checkout-content-wrap .aie-checkout-left .pmpro_form_input,
.aie-checkout-content-wrap .aie-checkout-left input[type="text"],
.aie-checkout-content-wrap .aie-checkout-left input[type="email"],
.aie-checkout-content-wrap .aie-checkout-left input[type="password"],
.aie-checkout-content-wrap .aie-checkout-left select {
  border-radius: var(--radius-md) !important;
  border: 1px solid #d4d4d4 !important;
}

.aie-checkout-content-wrap .aie-checkout-left .pmpro_form_input:focus,
.aie-checkout-content-wrap .aie-checkout-left input:focus,
.aie-checkout-content-wrap .aie-checkout-left select:focus {
  border-color: var(--brand) !important;
  outline: none;
  box-shadow: 0 0 0 3px rgba(109, 33, 39, 0.15) !important;
}

.aie-checkout-content-wrap #pmpro_payment_information_fields .pmpro_card {
  border-radius: var(--radius-md);
  border-color: #e5e5e5 !important;
}

.aie-checkout-content-wrap .aie-checkout-container {
  max-width: 100%;
  margin: 0;
}

.aie-checkout-content-wrap .aie-checkout-inner {
  background: transparent;
  padding: 0;
  margin: 0;
  box-shadow: none;
}

.aie-checkout-content-wrap .aie-checkout-page-title {
  display: none;
}

.aie-checkout-content-wrap .aie-checkout-footer-wrap {
  margin: 2rem 0 0;
  padding-top: 1.25rem;
  border-top: 1px solid #eaeaea;
  text-align: center;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--text-subtle);
  font-family: "Assistant", system-ui, sans-serif;
}

.aie-checkout-content-wrap .secure-checkout-badge {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.aie-checkout-content-wrap .aie-checkout-columns {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(17.5rem, 22rem);
  gap: clamp(1.75rem, 4vw, 2.75rem);
  align-items: start;
}

@media (max-width: 900px) {
  .aie-checkout-content-wrap .aie-checkout-columns {
    grid-template-columns: 1fr;
  }
}

.aie-checkout-content-wrap .aie-checkout-sidebar {
  position: sticky;
  top: clamp(5.5rem, 10vw, 7rem);
}

@media (max-width: 900px) {
  .aie-checkout-content-wrap .aie-checkout-sidebar {
    position: static;
    order: -1;
  }
}

.aie-checkout-content-wrap #pmpro_pricing_fields.pmpro_card:not(.aie-hide) {
  margin: 0 0 1.5rem;
  padding: 1.25rem 1.35rem;
  border: 1px solid #e8e4df;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, #fffdfb 0%, #ffffff 100%);
  box-shadow: 0 1px 0 rgba(15, 15, 15, 0.04);
}

.aie-checkout-content-wrap #pmpro_pricing_fields .pmpro_card_title {
  font-family: "Anton", system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 1rem;
  margin: 0 0 0.75rem;
  color: var(--text);
}

.aie-checkout-content-wrap #pmpro_pricing_fields .pmpro_card_content {
  padding: 0 !important;
}

.aie-checkout-content-wrap #pmpro_pricing_fields .pmpro_level_name_text,
.aie-checkout-content-wrap #pmpro_pricing_fields .pmpro_level_cost_text {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.aie-checkout-content-wrap .aie-checkout-step1 .pmpro_card {
  margin-top: 1rem;
  padding: 1rem 1.15rem;
  border: 1px solid #eee;
  border-radius: var(--radius-md);
  background: #fafafa;
}

.aie-checkout-content-wrap .aie-checkout-login-prompt {
  padding: 0;
  margin: 0;
}

.aie-checkout-content-wrap .pmpro_form_submit {
  padding-top: 0.5rem;
}

.aie-checkout-content-wrap .aie-checkout-continue-btn,
.aie-checkout-content-wrap .aie-buy-now-btn,
.aie-checkout-content-wrap #pmpro_btn-submit.aie-buy-now-btn {
  background: var(--brand) !important;
  color: #fff !important;
  border-radius: 999px !important;
  border: none !important;
  font-weight: 700;
}

.aie-checkout-content-wrap .aie-checkout-continue-btn:hover,
.aie-checkout-content-wrap .aie-buy-now-btn:hover,
.aie-checkout-content-wrap #pmpro_btn-submit.aie-buy-now-btn:hover {
  background: var(--brand-hover) !important;
  color: #fff !important;
  text-decoration: none !important;
}

.aie-checkout-content-wrap .aie-checkout-login-prompt a,
.aie-checkout-content-wrap .aie-checkout-signup-prompt a,
.aie-checkout-content-wrap .aie-checkout-logout a {
  color: var(--brand);
}

/* Legacy single-hero account layout (unused when .aie-account-layout-checkout) */
.aie-account-hero {
  height: auto;
  min-height: 100vh;
  padding-top: clamp(8.5rem, 10vw, 11rem);
  padding-bottom: clamp(4rem, 8vw, 6rem);
  display: grid;
  align-items: center;
}

.aie-account-hero .hero__content {
  width: 100%;
  max-width: 74rem;
  margin-inline: auto;
  text-align: left;
}

.aie-account-shell {
  width: 100%;
  display: flex;
  justify-content: center;
}

.aie-account-card {
  width: min(100%, 62rem);
  border-radius: var(--radius-lg);
  border: 1px solid #e5e5e5;
  box-shadow: var(--shadow-2xl);
  background: rgba(255, 255, 255, 0.98);
  position: relative;
  z-index: 2;
}

/* Account page uses same shell as checkout */
.aie-account-card.aie-checkout-card {
  width: min(100%, 72rem);
  box-shadow: 0 18px 48px rgba(15, 15, 15, 0.12);
  background: #ffffff;
  overflow: hidden;
}

.aie-account-card__body {
  padding: 2rem;
  color: var(--text);
}

body.aie-account-layout-checkout .aie-account-card__body.aie-checkout-card__body {
  padding: clamp(1.25rem, 3vw, 2.25rem);
}

body.aie-account-layout-checkout .aie-account-content-wrap {
  margin-top: 0;
}

.aie-account-card__body .section-kicker.section-kicker--brand {
  color: var(--brand);
}

.aie-account-card__title {
  margin: 0 0 0.75rem;
  font-family: "Anton", system-ui, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: clamp(1.75rem, 4vw, 3rem);
  line-height: 1.05;
}

.aie-account-content-wrap {
  margin-top: 1.5rem;
  color: var(--text);
}

.aie-account-content-wrap .pmpro,
.aie-account-content-wrap .pmpro_section,
.aie-account-content-wrap .pmpro_card {
  margin: 0;
}

.aie-account-content-wrap .pmpro {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) !important;
  gap: 1rem;
  width: 100%;
}

.aie-account-content-wrap .pmpro_section {
  width: 100% !important;
  max-width: 100% !important;
  float: none !important;
}

.aie-account-content-wrap .pmpro_card_content,
.aie-account-content-wrap .pmpro_card_actions {
  width: 100%;
}

.aie-account-content-wrap .pmpro_card {
  border: 1px solid #e5e5e5;
  border-radius: var(--radius-md);
  background: #ffffff;
  margin-bottom: 2rem;
}

.aie-account-content-wrap .pmpro_card_title {
  font-family: "Anton", system-ui, sans-serif;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.aie-account-section .aie-account-content-wrap h2.pmpro_section_title.pmpro_font-x-large,
.aie-account-hero h2.pmpro_section_title.pmpro_font-x-large {
  margin-bottom: 10px !important;
}

.aie-account-content-wrap a {
  color: var(--brand);
  text-underline-offset: 2px;
}

.aie-account-content-wrap .pmpro_btn,
.aie-account-content-wrap input[type="submit"],
.aie-account-content-wrap button[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  border-radius: 999px;
  padding: 0.75rem 1.25rem;
  font-size: 0.95rem;
  background: var(--brand);
  color: #ffffff;
  transition: background-color 200ms ease;
}

.aie-account-content-wrap .pmpro_btn:hover,
.aie-account-content-wrap input[type="submit"]:hover,
.aie-account-content-wrap button[type="submit"]:hover {
  background: var(--brand-hover);
  color: #ffffff;
}

.aie-account-content-wrap .pmpro_card_actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.aie-account-content-wrap .pmpro_card_actions .pmpro_btn,
.aie-account-content-wrap .pmpro_card_actions a {
  white-space: nowrap;
}

@media (max-width: 1300px) {
  .header__nav {
    padding: 0.5rem 0.5rem 0.5rem 0.65rem;
  }

  .nav__link {
    padding: 0.5rem .65rem;
    font-size: 0.85rem;
  }

  .nav__dropdown-link {
    padding: 0.5rem .65rem;
    font-size: 0.85rem;
  }

  .mobile-nav__link {
    padding: 0.5rem .65rem;
    font-size: 0.85rem;
  }

  .mobile-nav__sublink {
    padding: 0.5rem .65rem;
    font-size: 0.85rem;
  }

  header .btn--sm {
    padding: 0.25rem 0.25rem 0.25rem 0.65rem;
    font-size: 0.85rem;
  }

  header .btn--sm .btn__icon {
    width: 1.85rem;
    height: 1.85rem;
  }
}

@media (max-width: 767px) {
  .aie-registration-hero {
    padding-top: 7rem;
    padding-bottom: 4rem;
    min-height: auto;
  }

  .aie-registration-card__body {
    padding: 1.25rem;
  }

  .aie-account-hero {
    padding-top: 7rem;
    padding-bottom: 4rem;
    min-height: auto;
  }

  .aie-account-section {
    padding-block: 1.5rem;
  }

  .aie-account-section .aie-checkout-section__intro {
    margin-bottom: 1.25rem;
    padding-inline: 0.25rem;
  }

  .aie-checkout-banner {
    padding-top: 6.25rem;
    padding-bottom: 1.75rem;
    min-height: 400px;
  }

  .aie-checkout-section {
    padding-block: 1.5rem;
  }

  .aie-checkout-section__intro {
    margin-bottom: 1.25rem;
    padding-inline: 0.25rem;
  }

  .aie-checkout-card__body {
    padding: 1.25rem;
  }

  .aie-account-card__body {
    padding: 1.25rem;
  }

  .aie-account-content-wrap .pmpro_card_actions {
    gap: 0.4rem;
  }

  .aie-account-content-wrap .pmpro_card_actions .pmpro_btn,
  .aie-account-content-wrap .pmpro_card_actions a {
    width: 100%;
    justify-content: center;
    text-align: center;
    white-space: normal;
  }
}

@media (max-width: 767px) {
  .aie-pmpro-login-hero {
    padding-top: 9rem;
    padding-bottom: 6rem;
    min-height: auto;
  }

  .aie-pmpro-login-grid {
    margin-top: 0;
  }

  .aie-pmpro-login-card__body {
    padding: 1.5rem;
  }

  .aie-pmpro-login-hero .hero__title {
    font-size: clamp(2rem, 12vw, 3.5rem);
  }

  .aie-pmpro-login-hero .hero__subtitle {
    font-size: 1.05rem;
    line-height: 1.45;
  }

  .aie-pmpro-login-hero .pmpro .pmpro_form_field-password-toggle {
    position: static;
    transform: none;
    margin-top: 0.5rem;
  }

  .aie-pmpro-login-hero .pmpro input[type="password"] {
    padding-right: 0.875rem;
  }

  .aie-account-section .aie-account-content-wrap h2.pmpro_section_title.pmpro_font-x-large,
  .aie-account-hero h2.pmpro_section_title.pmpro_font-x-large {
    font-size: 26px;
  }

  .aie-account-content-wrap .pmpro_card_title {
    font-size: 18px;
  }

  .aie-level-card .program-card__body {
    padding: 1.25rem;
  }
}

/* Schedule table (sports) */
.schedule-table-wrapper {
  border-radius: var(--radius-md);
  border: 1px solid #e5e5e5;
  background: #ffffff;
}

.schedule-table {
  width: 100%;
  min-width: 320px;
  border-collapse: collapse;
  font-size: 1rem;
  color: var(--text);
}

.schedule-table th,
.schedule-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid #e5e5e5;
}

.schedule-table th {
  font-family: "Anton", system-ui, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.schedule-table tbody tr:last-child td {
  border-bottom: 0;
}

@media (max-width: 639px) {

  .schedule-table th,
  .schedule-table td {
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
  }
}

/* Gallery / masonry */

.section.gallery .section-title {
  font-size: clamp(1.25rem, 4.5vw, 2.75rem);
  line-height: 1.25;
  max-width: 840px;
  margin-inline: auto;
}

.gallery__header {
  text-align: center;
  margin-bottom: 3rem;
}

.masonry {
  width: 100%;
}

.masonry__item {
  background: #262626;
  border-radius: var(--radius-md);
  overflow: hidden;
  opacity: 0;
  transition: opacity 300ms ease;
}

.masonry__item.is-faded-in {
  opacity: 1;
}

.masonry__link {
  display: block;
  cursor: zoom-in;
}

.masonry__img {
  width: 100%;
  height: auto;
  transform: scale(1.05);
  transition: transform 300ms ease;
}

.masonry__link:hover .masonry__img {
  transform: scale(1);
}

.aie-gallery-page-intro__inner {
  max-width: 52rem;
}

.aie-gallery-page-intro__content {
  color: var(--text);
  line-height: 1.65;
}

.aie-gallery-page-intro__content>*:first-child {
  margin-top: 0;
}

.aie-gallery-page-intro__content>*:last-child {
  margin-bottom: 0;
}

.aie-gallery-page-section {
  padding-top: clamp(2.5rem, 5vw, 4rem);
}

.aie-gallery-page-empty {
  max-width: 36rem;
  margin-inline: auto;
  text-align: center;
}

.aie-handbook-embed {
  margin-top: 1.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgb(var(--text-rgb) / 0.12);
  background: rgb(var(--text-rgb) / 0.04);
  box-shadow: 0 18px 44px rgb(0 0 0 / 0.06);
}

.aie-handbook-embed iframe {
  display: block;
  width: 100%;
  height: min(70vh, 920px);
  border: 0;
}

.aie-handbook-actions {
  margin-top: 1.25rem;
}

.aie-handbook-page .aie-handbook-hero__title {
  font-size: clamp(2rem, 5vw, 4.25rem);
  line-height: 1.05;
  max-width: 18ch;
  margin-inline: auto;
}

/* CTA */
.cta__panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: #000000;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: var(--shadow-lg);
}

.cta__inner {
  position: relative;
  min-height: 320px;
  display: grid;
}

.cta__content {
  position: relative;
  z-index: 1;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.5) 20%, rgba(0, 0, 0, 0.2) 30%, rgba(0, 0, 0, 0) 90%);
}

.cta__title {
  margin: 0;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 0.95;
  color: #ffffff;
  overflow: hidden;
}

.cta__text {
  margin: 1rem 0 0;
  color: #ffffff;
  max-width: 32rem;
}

.cta__button {
  margin-top: 2rem;
  width: fit-content;
}

.cta__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Decorative overlays should never block clicks (e.g. footer links). */
.hero__overlay,
.section__bg,
.section__bg-overlay,
.cta__media,
.leader-card__overlay,
.events-card__overlay {
  pointer-events: none;
}

/* Footer */
.footer {
  background: #0a0a0a;
  color: #ffffff;
  padding-block: clamp(4rem, 6vw, 6rem);
  position: relative;
  z-index: 1;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  border-bottom: 1px solid #262626;
  padding-bottom: 2.5rem;
}

.footer__logo img {
  width: 8rem;
  height: auto;
  object-fit: contain;
}

.footer__blurb {
  margin: 1rem 0 0;
  color: #a3a3a3;
  max-width: 20rem;
  font-size: 0.875rem;
}

.footer__title {
  font-family: "Anton", system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.875rem;
  margin: 0 0 1rem;
}

.footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.footer__link {
  color: #d4d4d4;
  transition: color 200ms ease;
}

.footer__link:hover {
  color: #ffffff;
}

.footer__note {
  margin: 0 0 0.75rem;
  font-size: 0.875rem;
  color: #d4d4d4;
  line-height: 1.6;
  max-width: 18rem;
}

.footer__contact-link {
  display: inline-flex;
  align-items: center;
  font-size: 0.875rem;
  color: #f5f5f5;
  transition: color 200ms ease;
}

.footer__contact-link:hover {
  color: #ffffff;
}

.footer__contact-label {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
}

.footer__bottom {
  padding-top: 1.5rem;
  text-align: center;
}

.footer__instagram {
  margin: 0 0 1.1rem;
  color: #e5e5e5;
  font-size: clamp(1.15rem, 2.2vw, 1.7rem);
  font-style: italic;
  letter-spacing: 0.08em;
}

.footer__instagram-link {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgb(255 255 255 / 0.35);
  transition: border-color 200ms ease, color 200ms ease;
}

.footer__instagram-link:hover {
  color: #ffffff;
  border-color: rgb(255 255 255 / 0.7);
}

.footer__copyright {
  margin: 0;
  color: #737373;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

/* ==========================================================================
   Responsive styles
   ========================================================================== */

@media (min-width: 640px) {
  .header__logo {
    width: 5.5rem;
    height: 5.5rem;
  }

  .leader-card__content {
    padding: 1.5rem;
  }

  .grid--leaders {
    gap: 1.5rem;
  }

  .program-card__body {
    padding: 2rem;
  }

  .mobile-nav__bar,
  .mobile-nav__links {
    padding: 2rem;
  }

  .cta__content {
    padding: 3rem 2.5rem;
  }
}

@media (min-width: 768px) {
  .grid--programs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .header__nav {
    display: inline-flex;
  }

  .header__menu-toggle {
    display: none;
  }

  .grid--leaders {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2rem;
  }

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

  .about__top {
    grid-template-columns: 5fr 7fr;
    gap: 3rem;
    margin-bottom: 5rem;
  }

  .about__image {
    order: 2;
  }

  .about__bottom {
    grid-template-columns: 7fr 5fr;
    gap: 4rem;
  }

  .about__badge {
    grid-template-columns: 0.3fr 1fr;
    gap: 2rem;
  }

  .about__stat {
    text-align: center;
  }

  .athletes-sticky {
    width: 42%;
    position: sticky;
    top: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6rem 4rem;
    padding-right: 0;
  }

  .athletes-videos-track {
    gap: 2rem;
    padding-inline: 3rem;
  }

  .cta__inner {
    min-height: 380px;
  }
}

@media (min-width: 1300px) {
  .header__logo {
    width: 7rem;
    height: 7rem;
  }
}

#handbook {
  position: relative;
  overflow: hidden;
}

#handbook .container {
  position: relative;
  z-index: 2;
}

#handbook .handbook-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  z-index: 0;
  transform: translate3d(0, 0, 0) scale(1.12);
  will-change: transform;
  height: 70vh;
}

#handbook .handbook-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg,
      rgb(var(--text-rgb) / 0.7) 0%,
      rgb(var(--text-rgb) / 0.88) 100%);
}

#handbook .section-kicker,
#handbook .section-kicker--brand {
  color: rgb(var(--white-rgb));
}

#handbook .section-title {
  color: rgb(var(--white-rgb));
}

#handbook .section-lead {
  color: rgb(var(--white-rgb) / 0.9);
}

#handbook .section-lead p {
  color: inherit;
}

#alumni {
  position: relative;
}

#alumni .football-alumni__header .section-lead,
#alumni .football-alumni__header .section-title,
#alumni .football-alumni__header .section-kicker {
  margin-inline: auto;
  text-align: center;
}

.football-alumni__stack {
  margin-top: 3.75rem;
}

.football-alumni__featured-title {
  margin-bottom: 1rem;
}

.football-alumni__featured-name {
  font-family: "DM Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 800;
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  line-height: 1.1;
  margin: 0 0 1rem;
  color: rgb(var(--white-rgb));
  letter-spacing: 0.01em;
  text-transform: none;
  overflow: hidden;
  /* for SplitType */
}

#alumni .football-alumni__featured-card .leader-card__content {
  width: min(92%, 28rem);
}

#alumni .football-alumni__featured-card .leader-card__name {
  justify-content: center;
}

#alumni .about__image .leader-card__name {
  font-size: 1.2rem;
  letter-spacing: 0.05em;
}

#alumni .about__image .leader-card__role {
  font-size: 1rem;
}

.football-alumni__featured-meta {
  margin-top: 0;
}

.football-alumni__featured-desc {
  margin-top: 1.25rem;
  max-width: 44rem;
  line-height: 1.75;
  color: rgb(var(--white-rgb) / 0.88);
}

.football-alumni__featured-actions {
  margin-top: 1.75rem;
}

.football-alumni__grid-block {
  margin-top: 3rem;
}

.football-alumni__grid {
  margin-top: 1.5rem;
}

.football-alumni__card-cta {
  margin-top: 0.5rem;
}

.football-alumni__stats {
  margin-top: 3.25rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.football-alumni__cta-block {
  margin-top: 3.25rem;
}

@media (max-width: 767px) {
  .football-alumni__stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .aie-pmpro-login-hero .pmpro_card_content {
    padding: 1.25rem !important;
  }
}

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

@media (prefers-reduced-motion: reduce) {

  .btn,
  .btn__icon,
  .leader-card__img,
  .program-card__img,
  .masonry__img {
    transition: none !important;
  }
}