/* =========================================================
   ATHLETIX — Redesign stylesheet
   ========================================================= */

:root {
  --bg: #0a0a0a;
  --bg-2: #111111;
  --bg-3: #161616;
  --fg: #f5f5f5;
  --muted: #b3b3b3;
  --line: #222222;
  --accent: #00b8ef;
  --accent-2: #33d4ff;
  --radius: 14px;
  --container: 1600px;
  --ease: cubic-bezier(.2,.7,.2,1);
}

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

html { scroll-behavior: smooth; scrollbar-gutter: stable; }

body {
  font-family: var(--font-inter), 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

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

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-anton), 'Anton', Impact, sans-serif;
  font-weight: 400;
  letter-spacing: .5px;
  text-transform: uppercase;
  line-height: 1;
}

h1 { font-size: clamp(3rem, 9vw, 7.5rem); }
h2 { font-size: clamp(2rem, 5vw, 4rem); }
h3 { font-size: 1.4rem; letter-spacing: .4px; }

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

.eyebrow {
  font-family: var(--font-inter), 'Inter', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.eyebrow.light { color: var(--accent-2); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  font-family: var(--font-inter), 'Inter', sans-serif;
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: all .25s var(--ease);
}
.btn-lg { padding: 18px 34px; font-size: .95rem; }
.btn-block { width: 100%; }

.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover {
  background: #fff;
  color: var(--bg);
  transform: translateY(-2px);
}

.btn-ghost {
  border-color: rgba(255,255,255,.3);
  color: #fff;
}
.btn-ghost:hover {
  border-color: #fff;
  background: rgba(255,255,255,.08);
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
  transition: gap .25s var(--ease);
}
.arrow-link:hover { gap: 14px; }

/* Announcement bar */
.announce {
  background: var(--accent);
  color: #fff;
  text-align: center;
  padding: 9px 16px;
  font-size: .72rem;
  letter-spacing: 3px;
  font-weight: 700;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 190;
  background: rgba(8, 8, 8, 0.65);
  border-bottom: none;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}
/* Desktop only — backdrop-filter breaks position:fixed for mobile drawer */
@media (min-width: 721px) {
  .site-header {
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    backdrop-filter: blur(14px) saturate(140%);
  }
}
/* Mobile gets a more opaque background instead of blur */
@media (max-width: 720px) {
  .site-header {
    background: rgba(8, 8, 8, 0.92);
  }
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
}
.logo img {
  height: 55px;
  width: auto;
}
.nav {
  display: flex;
  gap: 34px;
}
.nav a {
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #ddd;
  position: relative;
  padding: 4px 0;
}
.nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  height: 2px; width: 0;
  background: var(--accent);
  transition: width .3s var(--ease);
}
.nav a:hover { color: #fff; }
.nav a:hover::after { width: 100%; }

/* Dropdown */
.dropdown {
  position: relative;
  display: flex;
  align-items: center;
}
/* Invisible bridge area to prevent hover from breaking */
.dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -20px;
  right: -20px;
  height: 35px; 
}
.dropdown .dropbtn {
  cursor: pointer;
}
/* On desktop, the head wrapper and toggle button should be invisible —
   the parent link sits directly as a flex child of .dropdown and the
   submenu opens on :hover. The chevron toggle is only for mobile. */
.dropdown-head { display: contents; }
.dropdown-toggle { display: none; }
.dropdown-inner { display: contents; }
.dropdown-content {
  display: none;
  position: absolute;
  top: calc(100% + 24px);
  left: 0;
  background-color: #000;
  min-width: 180px;
  border-top: 2px solid var(--accent);
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.8);
  z-index: 100;
  padding: 10px 0;
}
.dropdown-content a {
  color: #fff;
  padding: 12px 20px;
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.dropdown-content a::after {
  display: none; /* remove hover line for dropdown items */
}
.dropdown-content a:hover {
  color: var(--accent);
  background-color: #111;
}
.dropdown:hover .dropdown-content {
  display: block;
}

/* Mega panel — full-width hover panel for Classes / About */
.dropdown.mega .mega-panel {
  position: fixed;
  top: 90px;
  left: 0;
  right: 0;
  width: 100%;
  min-width: 0;
  padding: 36px 0 40px;
  background:
    radial-gradient(ellipse at top, rgba(0, 184, 239, 0.26), transparent 65%),
    linear-gradient(180deg, rgba(10, 14, 18, 0.95), rgba(8, 10, 12, 0.97));
  -webkit-backdrop-filter: blur(80px) saturate(200%);
  backdrop-filter: blur(80px) saturate(200%);
  border-top: 2px solid var(--accent);
  border-bottom: 1px solid rgba(0, 184, 239, 0.22);
  box-shadow:
    0 24px 50px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.dropdown.mega:hover .mega-panel,
.dropdown.mega:focus-within .mega-panel {
  display: block;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
/* After navigation, force-hide the panel even if the mouse is still over
   the trigger. Released by onMouseLeave on the dropdown. */
.dropdown.mega.suppress-hover:hover .mega-panel,
.dropdown.mega.suppress-hover:focus-within .mega-panel,
.dropdown.suppress-hover:hover .dropdown-content {
  display: none !important;
  opacity: 0 !important;
  pointer-events: none !important;
  visibility: hidden !important;
}
.dropdown.mega .mega-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
}
.dropdown.mega .mega-item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.02) inset;
  transition: background .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
  text-transform: none;
  letter-spacing: 0;
  overflow: hidden;
}
.dropdown.mega .mega-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--accent);
  opacity: 0;
  transition: opacity .25s var(--ease);
}
.dropdown.mega .mega-item::after { display: none; }
.dropdown.mega .mega-item:hover {
  background: rgba(0, 184, 239, 0.08);
  border-color: rgba(0, 184, 239, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}
.dropdown.mega .mega-item:hover::before {
  opacity: 1;
}
.dropdown.mega .mega-title {
  font-family: var(--font-barlow-condensed), 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
}
.dropdown.mega .mega-item:hover .mega-title { color: var(--accent); }
.dropdown.mega .mega-desc {
  font-size: 1.02rem;
  line-height: 1.45;
  color: #9aa3ad;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 25px;
}

.header-cta .btn {
  border-radius: 4px;
  background: #00b8ef;
  color: #fff;
  padding: 12px 24px;
  font-size: .85rem;
}

.nav-toggle, .side-toggle {
  display: none;
  background: none;
  border: 0;
  width: 34px;
  height: 34px;
  cursor: pointer;
  position: relative;
}
.nav-backdrop { display: none; }
.nav-toggle span, .side-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
  transition: .3s var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.side-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.side-toggle span {
  width: 30px;
}
.side-toggle span:nth-child(2) { width: 30px; margin-top: 6px; }
.side-toggle span:nth-child(3) { display: none; }
.side-toggle:hover span { background: var(--accent); }

/* Side Panel — Glass + Cyan Glow */
.side-panel {
  position: fixed;
  top: 0; right: 0;
  width: 440px;
  max-width: 92vw;
  height: 100vh;
  z-index: 200;
  transform: translateX(100%);
  transition: transform .55s var(--ease);
  overflow-y: auto;
  padding: 40px 36px 60px;
  background:
    radial-gradient(circle at 90% -10%, rgba(0, 184, 239, 0.28), transparent 55%),
    radial-gradient(circle at -10% 110%, rgba(0, 184, 239, 0.10), transparent 50%),
    rgba(7, 10, 13, 0.72);
  backdrop-filter: blur(28px) saturate(140%);
  -webkit-backdrop-filter: blur(28px) saturate(140%);
  border-left: 1px solid rgba(0, 184, 239, 0.22);
  box-shadow:
    -30px 0 80px rgba(0, 0, 0, 0.55),
    inset 1px 0 0 rgba(0, 184, 239, 0.08);
}
.side-panel::before {
  content: "";
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, transparent, var(--accent) 25%, var(--accent) 75%, transparent);
  opacity: 0.35;
  pointer-events: none;
}
.side-panel.open { transform: translateX(0); }
.side-panel::-webkit-scrollbar { width: 6px; }
.side-panel::-webkit-scrollbar-track { background: transparent; }
.side-panel::-webkit-scrollbar-thumb {
  background: rgba(0, 184, 239, 0.28);
  border-radius: 3px;
}

.side-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s var(--ease), visibility .4s;
  z-index: 150;
}
.side-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.side-close {
  position: absolute;
  top: 22px; right: 22px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all .3s var(--ease);
  z-index: 2;
}
.side-close:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #000;
  transform: rotate(90deg);
  box-shadow: 0 8px 24px rgba(0, 184, 239, 0.4);
}

.side-inner {
  padding-top: 16px;
  position: relative;
}
.side-logo img {
  height: 90px;
  margin-bottom: 24px;
  filter: drop-shadow(0 0 28px rgba(0, 184, 239, 0.35));
}
.side-about {
  color: #cdd5dc;
  font-size: 1.14rem;
  line-height: 1.7;
  margin-bottom: 26px;
}

.side-address, .side-phone {
  color: #eef2f6;
  font-size: .92rem;
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  letter-spacing: .3px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: border-color .25s var(--ease), background .25s var(--ease), transform .25s var(--ease);
}
.side-address:hover, .side-phone:hover {
  border-color: rgba(0, 184, 239, 0.45);
  background: rgba(0, 184, 239, 0.06);
  transform: translateX(-2px);
}
.side-phone { margin-bottom: 18px; }
.side-phone a { color: inherit; }
.side-address .pin, .side-phone .pin {
  color: var(--accent);
  margin-right: 0;
  font-size: 1.05rem;
  flex-shrink: 0;
  filter: drop-shadow(0 0 8px rgba(0, 184, 239, 0.5));
}

.side-heading {
  font-family: var(--font-anton), 'Anton', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #fff;
  margin: 30px 0 14px;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 12px;
}
.side-heading::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--accent);
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(0, 184, 239, 0.7);
}

.side-hours {
  list-style: none;
  margin: 0 0 8px;
  padding: 6px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(0, 184, 239, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.side-hours li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px 14px;
  font-size: .92rem;
  border-radius: 8px;
  position: relative;
  transition: background .25s var(--ease);
}
.side-hours li + li {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}
.side-hours li:hover { background: rgba(0, 184, 239, 0.05); }
.side-hours .day {
  flex: 0 0 46px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #cdd5dc;
  font-size: .76rem;
}
.side-hours .hours {
  color: #eef2f6;
  font-weight: 400;
  font-size: .9rem;
  flex: 1;
}
.side-hours .is-today {
  background: linear-gradient(90deg, rgba(0, 184, 239, 0.16), rgba(0, 184, 239, 0.03));
  border-top-color: transparent !important;
  box-shadow: inset 0 0 0 1px rgba(0, 184, 239, 0.2);
}
.side-hours .is-today + li { border-top-color: transparent; }
.side-hours .is-today::before {
  content: "";
  position: absolute;
  left: 3px; top: 9px; bottom: 9px;
  width: 3px;
  background: var(--accent);
  border-radius: 2px;
  box-shadow: 0 0 12px rgba(0, 184, 239, 0.8);
}
.side-hours .is-today .day { color: var(--accent); }
.side-hours .is-today .hours { color: #fff; font-weight: 500; }
.side-hours .today-badge {
  font-family: var(--font-inter), 'Inter', sans-serif;
  font-size: .58rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
  background: var(--accent);
  color: #000;
  padding: 3px 8px;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 184, 239, 0.4);
}

.side-socials {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}
.side-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff;
  font-size: .9rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all .3s var(--ease);
}
.side-socials a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0, 184, 239, 0.4);
}

/* =============================================
   HERO — clean two-column (text · visual)
   ============================================= */
.hero {
  position: relative;
  min-height: calc(100vh - 78px);
  overflow: hidden;
  background: #050505;
  padding: 80px 0 0;
  display: flex;
  flex-direction: column;
}

/* Background layers */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 85%);
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  animation: float-glow 16s ease-in-out infinite;
}
.glow-1 {
  width: 520px; height: 520px;
  background: var(--accent);
  top: -150px; left: -100px;
  opacity: .4;
}
.glow-2 {
  width: 620px; height: 620px;
  background: #003a66;
  bottom: -200px; right: -150px;
  animation-delay: -8s;
  opacity: .55;
}
@keyframes float-glow {
  0%,100% { transform: translate(0,0) scale(1); }
  50%     { transform: translate(50px,-30px) scale(1.1); }
}

/* Floating particles */
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-particles span {
  position: absolute;
  width: 4px; height: 4px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent);
  opacity: .6;
  animation: particle-float 14s linear infinite;
}
.hero-particles span:nth-child(1)  { left: 8%;  bottom: -5%; animation-duration: 18s; animation-delay: 0s; }
.hero-particles span:nth-child(2)  { left: 18%; bottom: -5%; animation-duration: 22s; animation-delay: -3s; width: 3px; height: 3px; }
.hero-particles span:nth-child(3)  { left: 28%; bottom: -5%; animation-duration: 16s; animation-delay: -6s; }
.hero-particles span:nth-child(4)  { left: 36%; bottom: -5%; animation-duration: 20s; animation-delay: -9s; width: 5px; height: 5px; }
.hero-particles span:nth-child(5)  { left: 47%; bottom: -5%; animation-duration: 24s; animation-delay: -2s; }
.hero-particles span:nth-child(6)  { left: 55%; bottom: -5%; animation-duration: 19s; animation-delay: -5s; width: 3px; height: 3px; }
.hero-particles span:nth-child(7)  { left: 64%; bottom: -5%; animation-duration: 17s; animation-delay: -8s; }
.hero-particles span:nth-child(8)  { left: 72%; bottom: -5%; animation-duration: 21s; animation-delay: -1s; width: 5px; height: 5px; }
.hero-particles span:nth-child(9)  { left: 82%; bottom: -5%; animation-duration: 23s; animation-delay: -4s; }
.hero-particles span:nth-child(10) { left: 90%; bottom: -5%; animation-duration: 18s; animation-delay: -7s; width: 3px; height: 3px; }
.hero-particles span:nth-child(11) { left: 40%; bottom: -5%; animation-duration: 25s; animation-delay: -10s; }
.hero-particles span:nth-child(12) { left: 60%; bottom: -5%; animation-duration: 20s; animation-delay: -12s; width: 4px; height: 4px; }
@keyframes particle-float {
  0%   { transform: translateY(0) translateX(0);  opacity: 0; }
  10%  { opacity: .6; }
  50%  { transform: translateY(-55vh) translateX(20px); }
  90%  { opacity: .4; }
  100% { transform: translateY(-110vh) translateX(-10px); opacity: 0; }
}

/* Generic fade-up entrance */
.anim-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fade-up .9s var(--ease) forwards;
  animation-delay: var(--d, 0s);
}
@keyframes fade-up {
  to { opacity: 1; transform: translateY(0); }
}

/* ==== Two-container split ==== */
.hero-split {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 60px;
  align-items: center;
  flex: 1;
  padding-top: 20px;
  padding-bottom: 60px;
}

/* ==== LEFT COLUMN ==== */
.hero-left {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* Pill */
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(0,184,239,.08);
  border: 1px solid rgba(0,184,239,.35);
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--accent);
  backdrop-filter: blur(8px);
  align-self: flex-start;
}
.hero-pill .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 14px var(--accent);
  animation: pulse-dot 1.8s ease-in-out infinite;
}

/* Title — single line with reveal animation */
.hero-title {
  font-family: var(--font-anton), 'Anton', Impact, sans-serif;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
  white-space: nowrap;
  display: flex;
  flex-wrap: nowrap;
  gap: .3em;
  align-items: baseline;
  overflow: hidden;
  padding-bottom: .1em;
}
.t-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(110%) rotate(4deg);
  animation: word-up .9s var(--ease) forwards;
  animation-delay: var(--d, 0s);
}
@keyframes word-up {
  to {
    opacity: 1;
    transform: translateY(0) rotate(0);
  }
}
.accent-word {
  color: var(--accent);
  display: inline-block;
  position: relative;
}
.accent-word::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 100%; height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  animation: under-grow 1s var(--ease) 1s forwards;
}
@keyframes under-grow { to { transform: scaleX(1); } }
.rotator-inline {
  position: relative;
  display: inline-block;
  min-width: 5.5em;
  height: 1em;
  vertical-align: baseline;
  overflow: hidden;
  color: var(--accent);
  text-shadow: 0 0 40px rgba(0,184,239,.35);
}
.rotator-inline .r-word {
  position: absolute;
  left: 0; top: 0;
  opacity: 0;
  transform: translateY(100%);
  transition: transform .6s var(--ease), opacity .5s var(--ease);
  white-space: nowrap;
}
.rotator-inline .r-word.active {
  opacity: 1;
  transform: translateY(0);
}
.rotator-inline .r-word.leaving {
  opacity: 0;
  transform: translateY(-100%);
}

/* Lede */
.hero-lede {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #c8c8c8;
  max-width: 560px;
  margin: 0;
}

/* CTAs */
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* Meta stats */
.hero-meta {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  padding-top: 24px;
}
.stat-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.stat-val {
  display: flex;
  align-items: baseline;
}
.hero-meta strong {
  font-family: var(--font-anton), 'Anton', sans-serif;
  font-size: 2.8rem;
  font-weight: 400;
  color: #fff;
  line-height: 1;
  background: linear-gradient(135deg, #fff 30%, var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-meta .plus {
  font-family: var(--font-anton), 'Anton', sans-serif;
  font-size: 2rem;
  color: var(--accent);
  margin-left: 2px;
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaa;
}
.hero-meta .divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.15);
}

/* ==== RIGHT COLUMN ==== */
.hero-right {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.hero-media {
  position: relative;
  width: 100%;
  aspect-ratio: 5/6;
  min-height: 620px;
  max-height: 820px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,.6), 0 0 0 1px rgba(255,255,255,.06);
  opacity: 0;
  transform: translateY(40px) scale(.96);
  animation: media-in 1.2s var(--ease) .3s forwards;
  transform-style: preserve-3d;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
@keyframes media-in {
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.hero-media.tilt {
  transition: transform .15s ease-out;
}
.hero-media img,
.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: ken-burns 14s ease-in-out infinite alternate;
}
@keyframes ken-burns {
  0%   { transform: scale(1) translate(0,0); }
  100% { transform: scale(1.08) translate(-1%, -2%); }
}

/* Corner brackets */
.corner {
  position: absolute;
  width: 34px;
  height: 34px;
  border: 2px solid var(--accent);
  z-index: 3;
  opacity: 0;
  animation: corner-in .6s var(--ease) forwards;
}
.c-tl { top: 14px; left: 14px;  border-right: 0; border-bottom: 0; animation-delay: 1s; }
.c-tr { top: 14px; right: 14px; border-left: 0;  border-bottom: 0; animation-delay: 1.15s; }
.c-bl { bottom: 14px; left: 14px;  border-right: 0; border-top: 0; animation-delay: 1.3s; }
.c-br { bottom: 14px; right: 14px; border-left: 0;  border-top: 0; animation-delay: 1.45s; }
@keyframes corner-in {
  0%   { opacity: 0; transform: scale(.4); }
  100% { opacity: 1; transform: scale(1); }
}

/* Shine sweep */
.media-shine {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(115deg,
    transparent 35%,
    rgba(255,255,255,.08) 45%,
    rgba(0,184,239,.2) 50%,
    rgba(255,255,255,.08) 55%,
    transparent 65%);
  transform: translateX(-100%);
  animation: shine 5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes shine {
  0%, 30%  { transform: translateX(-100%); }
  65%      { transform: translateX(100%); }
  100%     { transform: translateX(100%); }
}

/* Scanline */
.media-scan {
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--accent), transparent);
  box-shadow: 0 0 16px var(--accent);
  opacity: .7;
  top: 0;
  z-index: 2;
  animation: scan 6s linear infinite;
  pointer-events: none;
}
@keyframes scan {
  0%   { top: 0;   opacity: 0; }
  10%  { opacity: .7; }
  90%  { opacity: .7; }
  100% { top: 100%; opacity: 0; }
}
.hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 35%, transparent 70%, rgba(0,0,0,.35) 100%);
  pointer-events: none;
}

/* Live badge on media */
.media-badge {
  position: absolute;
  top: 22px; left: 22px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: #fff;
  opacity: 0;
  transform: translateY(-10px);
  animation: badge-slide .6s var(--ease) 1.6s forwards, badge-glow 3s ease-in-out 2.2s infinite;
}
@keyframes badge-slide {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes badge-glow {
  0%,100% { box-shadow: 0 0 0 0 rgba(255,59,59,0); }
  50%     { box-shadow: 0 0 20px 4px rgba(255,59,59,.3); }
}
.live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #ff3b3b;
  box-shadow: 0 0 10px #ff3b3b;
  animation: pulse-dot 1.4s ease-in-out infinite;
}

/* Caption card on media */
.media-caption {
  position: absolute;
  left: 22px; right: 22px; bottom: 22px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: rgba(10,10,10,.7);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  opacity: 0;
  transform: translateY(20px);
  animation: caption-up .7s var(--ease) 1.8s forwards;
}
@keyframes caption-up {
  to { opacity: 1; transform: translateY(0); }
}
.caption-avatars img {
  animation: avatar-pop .6s var(--ease) backwards;
}
.caption-avatars img:nth-child(1) { animation-delay: 2.0s; }
.caption-avatars img:nth-child(2) { animation-delay: 2.15s; }
.caption-avatars img:nth-child(3) { animation-delay: 2.3s; }
@keyframes avatar-pop {
  0%   { opacity: 0; transform: scale(0); }
  70%  { transform: scale(1.15); }
  100% { opacity: 1; transform: scale(1); }
}
.caption-avatars {
  display: flex;
}
.caption-avatars img {
  width: 40px; height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #0a0a0a;
  margin-left: -10px;
}
.caption-avatars img:first-child { margin-left: 0; }
.caption-text strong {
  display: block;
  color: #fff;
  font-size: .95rem;
  font-weight: 700;
}
.caption-text span {
  color: #a0a0a0;
  font-size: .78rem;
  letter-spacing: .5px;
}

/* Floating rating tag */
.hero-tag {
  position: absolute;
  top: -20px;
  right: -20px;
  z-index: 5;
  width: 150px; height: 150px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px;
  box-shadow: 0 20px 40px rgba(0,184,239,.4);
  opacity: 0;
  transform: scale(0) rotate(-90deg);
  animation: tag-in .8s var(--ease) 1.4s forwards, float-tag 5s ease-in-out 2.2s infinite;
}
@keyframes tag-in {
  0%   { opacity: 0; transform: scale(0) rotate(-90deg); }
  70%  { transform: scale(1.15) rotate(10deg); }
  100% { opacity: 1; transform: scale(1) rotate(-4deg); }
}
@keyframes float-tag {
  0%,100% { transform: translateY(0) rotate(-4deg); }
  50%     { transform: translateY(-10px) rotate(4deg); }
}
.tag-ring {
  position: absolute;
  inset: -10px;
  border: 2px dashed rgba(255,255,255,.5);
  border-radius: 50%;
  animation: spin 18s linear infinite;
  pointer-events: none;
}
@keyframes spin { to { transform: rotate(360deg); } }
.hero-tag div {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}
.hero-tag strong {
  font-family: var(--font-anton), 'Anton', sans-serif;
  font-size: 2.2rem;
  font-weight: 400;
}
.hero-tag .stars {
  font-size: .65rem;
  letter-spacing: 2px;
  margin-top: 2px;
}
.hero-tag p {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 6px;
  line-height: 1.3;
  opacity: .95;
}

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 110px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: #888;
  opacity: 0;
  animation: fade-in 1s var(--ease) 2s forwards;
}
@keyframes fade-in { to { opacity: 1; } }
.sc-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, var(--accent), transparent);
  animation: sc-drop 2s ease-in-out infinite;
}
@keyframes sc-drop {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
.sc-text {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}
@media (max-width: 1024px) {
  .scroll-cue { display: none; }
}
@keyframes pulse-dot {
  0%,100% { transform: scale(1); opacity: 1; }
  50%     { transform: scale(1.4); opacity: .6; }
}

/* (legacy title styles — no longer used) */

/* Lede */
.hero-lede {
  font-size: 1.2rem;
  color: #c8c8c8;
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.7;
}

/* CTAs */
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero-ctas .btn-primary {
  box-shadow: 0 0 0 0 rgba(0,184,239,.6);
  animation: btn-pulse 2.5s ease-in-out infinite;
}
@keyframes btn-pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(0,184,239,.5); }
  50%     { box-shadow: 0 0 0 12px rgba(0,184,239,0); }
}
.btn-play {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: gap .25s var(--ease);
}
.btn-play:hover { gap: 20px; color: var(--accent); }
.play-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  font-size: .7rem;
  color: var(--accent);
  transition: all .3s var(--ease);
}
.btn-play:hover .play-icon {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: scale(1.1);
}

/* Meta row */
/* Removed duplicate hero-meta styles */

/* (legacy collage styles — no longer used) */

/* Marquee */
.hero-marquee {
  position: relative;
  z-index: 2;
  padding: 22px 0;
  background: #000;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  overflow: hidden;
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 50px;
  white-space: nowrap;
  animation: marquee 35s linear infinite;
  font-family: var(--font-anton), 'Anton', sans-serif;
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
  letter-spacing: 4px;
  color: #fff;
  width: max-content;
}
.marquee-track span { flex-shrink: 0; }
.marquee-track .star {
  color: var(--accent);
  font-size: .7em;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* Responsive hero */
@media (max-width: 1024px) {
  .hero { min-height: auto; padding-top: 60px; }
  .hero-split { grid-template-columns: 1fr; gap: 50px; padding-bottom: 40px; }
  .hero-right { justify-content: center; }
  .hero-media { max-width: 640px; aspect-ratio: 4/5; min-height: auto; }
  .hero-tag { width: 120px; height: 120px; }
}
@media (max-width: 720px) {
  .hero { padding-top: 40px; }
  .hero-split { gap: 40px; }
  .hero-title {
    font-size: clamp(1.8rem, 7.5vw, 2.6rem);
    white-space: normal;
    flex-wrap: wrap;
  }
  .hero-meta { gap: 14px; }
  .hero-meta strong { font-size: 1.7rem; }
  .hero-meta .divider { display: none; }
  .hero-ctas .btn { flex: 1; min-width: 45%; }
  .hero-tag { width: 100px; height: 100px; top: -15px; right: -10px; padding: 10px; }
  .hero-tag strong { font-size: 1.6rem; }
  .hero-tag p { font-size: .55rem; }
  .media-caption { padding: 10px 14px; }
  .caption-avatars img { width: 32px; height: 32px; }
  .marquee-track { font-size: 1.3rem; gap: 26px; letter-spacing: 2px; }
}

/* Section head */
.section-head {
  max-width: 780px;
  margin-bottom: 44px;
}
.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-sub {
  color: var(--muted);
  margin-top: 18px;
  font-size: 1.2rem;
}

/* Trusted By */
.trusted-by {
  padding: 78px 0;
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
}
.trusted-title {
  font-family: var(--font-anton), 'Anton', Impact, sans-serif;
  font-size: 2.8rem;
  font-weight: 400;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 46px;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}
.trusted-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
}
.trusted-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}
.trusted-logos img {
  height: 90px;
  width: 200px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.95);
  padding: 15px 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  transition: all 0.3s var(--ease);
}
.trusted-logos img:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 184, 239, 0.3);
  background: #fff;
}

/* Testimonials / Videos */
.testimonials {
  padding: 100px 0;
  background: radial-gradient(circle at center, var(--bg-2) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: "";
  position: absolute;
  top: -50%; left: -50%; right: -50%; bottom: -50%;
  background: radial-gradient(circle at 50% 50%, rgba(0,184,239,0.05) 0%, transparent 60%);
  z-index: 0;
  pointer-events: none;
}
.testimonials .container {
  position: relative;
  z-index: 1;
}
.eyebrow.center {
  text-align: center;
  margin-bottom: 10px;
}
.testimonials .section-heading {
  font-family: var(--font-anton), 'Anton', Impact, sans-serif;
  font-size: 3.5rem;
  letter-spacing: 2px;
  background: linear-gradient(135deg, #fff 40%, var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 15px;
}
.section-heading.center {
  text-align: center;
}
.testimonials-sub {
  text-align: center;
  color: var(--muted);
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 44px auto;
  line-height: 1.5;
}

/* Custom Video Slider */
.slider-container {
  position: relative;
  width: 100%;
  max-width: 1050px;
  margin: 0 auto;
  overflow: hidden;
  padding: 20px 0; /* Extra padding so hover shadows don't clip */
}
.slider-track {
  display: flex;
  gap: 30px;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}
.video-card {
  flex: 0 0 calc((100% - 60px) / 3); /* Shows exactly 3 items when gap is 30px */
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
  background: #111;
  aspect-ratio: 9 / 16;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s var(--ease);
  transform-style: preserve-3d;
  cursor: pointer;
}
.video-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(0, 184, 239, 0.5);
  box-shadow: 0 15px 30px rgba(0, 184, 239, 0.2);
}
.card-frame {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 12px;
  box-shadow: inset 0 0 20px rgba(0, 184, 239, 0);
  transition: all 0.4s var(--ease);
  pointer-events: none;
  z-index: 2;
}
.video-card:hover .card-frame {
  box-shadow: inset 0 0 20px rgba(0, 184, 239, 0.2);
}
.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
}

/* Play Button Overlay */
.play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 184, 239, 0.85);
  border: none;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  color: white;
  transition: all 0.3s var(--ease);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  pointer-events: none;
}
.play-overlay svg {
  width: 32px;
  height: 32px;
  margin-left: 4px;
}
.video-card:hover .play-overlay {
  transform: translate(-50%, -50%) scale(1.15);
  background: #00b8ef;
}
.video-card.is-playing .play-overlay,
.video-card.is-playing .card-frame {
  opacity: 0;
}
.video-card.is-playing:hover {
  transform: translateY(0) scale(1);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
}

.slider-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* Slider Buttons */
.slider-controls {
  position: absolute;
  top: 50%;
  left: -20px;
  width: calc(100% + 40px);
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none; /* Let clicks pass through to slider unless on buttons */
  z-index: 10;
}
.slider-btn {
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: all 0.3s var(--ease);
  pointer-events: auto; /* Re-enable clicks for the buttons */
}
.slider-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(0, 184, 239, 0.4);
}

.slider-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.25s var(--ease);
}

.slider-dot:hover {
  border-color: rgba(0, 184, 239, 0.8);
  background: rgba(0, 184, 239, 0.45);
}

.slider-dot.active {
  width: 26px;
  border-radius: 999px;
  border-color: var(--accent);
  background: var(--accent);
  box-shadow: 0 0 10px rgba(0, 184, 239, 0.8);
}

/* Manifesto */
.manifesto {
  padding: 96px 0;
  background: var(--bg-2);
}
.manifesto-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 80px;
  align-items: center;
}
.manifesto-copy h2 {
  margin-bottom: 26px;
}
.manifesto-copy p {
  color: var(--muted);
  font-size: 1.2rem;
  margin-bottom: 28px;
}
.manifesto-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.manifesto-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.manifesto-image:hover img { transform: scale(1.05); }

/* Classes */
.classes { padding: 96px 0; }
.class-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.class-card {
  background: var(--bg-2);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform .4s var(--ease), border-color .3s var(--ease);
}
.class-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
}
.class-card img {
  height: 280px;
  width: 100%;
  object-fit: cover;
  filter: grayscale(.2);
  transition: filter .4s var(--ease), transform .6s var(--ease);
}
.class-card:hover img {
  filter: grayscale(0);
  transform: scale(1.04);
}
.class-card-body {
  padding: 26px 24px 28px;
}
.class-card-body h3 { margin-bottom: 10px; }
.class-card-body p {
  color: var(--muted);
  font-size: 1.15rem;
  margin-bottom: 18px;
}

/* Programs */
.programs {
  padding: 96px 0;
  background: var(--bg-2);
}
.program-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.program {
  padding: 40px 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background .3s var(--ease);
  position: relative;
}
.program:hover {
  background: var(--bg-3);
}
.program .num {
  font-family: var(--font-anton), 'Anton', sans-serif;
  font-size: .9rem;
  color: var(--accent);
  letter-spacing: 3px;
  display: block;
  margin-bottom: 30px;
}
.program h3 {
  margin-bottom: 14px;
}
.program p {
  color: var(--muted);
  font-size: 1.12rem;
}

/* Membership */
.membership {
  padding: 85px 0;
  background: linear-gradient(180deg, #101010 0%, #0a0a0a 100%);
}
.membership-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 30px;
}
.membership-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.plan-card {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.plan-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 184, 239, 0.55);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
}
.plan-card.featured {
  border-color: rgba(0, 184, 239, 0.65);
  box-shadow: 0 0 0 1px rgba(0, 184, 239, 0.4), 0 16px 35px rgba(0, 0, 0, 0.35);
}
.plan-media {
  aspect-ratio: 16 / 10;
  background: #0d0d0d;
}
.plan-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}
.plan-body {
  padding: 16px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  height: 100%;
}
.plan-body h3 {
  font-size: 1.25rem;
}
.plan-price {
  font-family: var(--font-anton), 'Anton', sans-serif;
  font-size: 1.85rem;
  letter-spacing: .8px;
  line-height: 1;
  color: #fff;
}
.plan-price span {
  font-family: var(--font-inter), 'Inter', sans-serif;
  font-size: .9rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--muted);
}
.plan-note {
  margin-top: -4px;
  font-size: .8rem;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: var(--accent-2);
  font-weight: 600;
}
.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 6px;
}
.plan-features li {
  position: relative;
  padding-left: 16px;
  color: #dbdbdb;
  font-size: 1.04rem;
  line-height: 1.35;
}
.plan-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .5em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(0, 184, 239, 0.7);
}
.plan-body .btn {
  margin-top: auto;
}

/* Trial CTA */
.trial-cta {
  position: relative;
  padding: 104px 0;
  overflow: hidden;
  text-align: center;
}
.trial-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.trial-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.35) grayscale(.5);
}
.trial-inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
}
.trial-inner h2 {
  margin: 14px 0 22px;
  color: #fff;
}
.trial-inner p {
  color: #d0d0d0;
  font-size: 1.2rem;
  margin-bottom: 34px;
}

/* Stats */
.stats {
  padding: 72px 0;
  background: var(--accent);
  color: #fff;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}
.stats-grid div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.stats-grid strong {
  font-family: var(--font-anton), 'Anton', sans-serif;
  font-size: 4rem;
  font-weight: 400;
  color: #fff;
  line-height: 1;
}
.stats-grid span {
  font-size: .82rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  opacity: .9;
}

/* Timetable */
.timetable {
  padding: 96px 0;
  background: radial-gradient(circle at top, rgba(0, 184, 239, 0.08), transparent 40%), var(--bg-2);
}
.timetable-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 24px;
}
.timetable-head h2 {
  margin-bottom: 12px;
}
.tt-legend {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}
.tt-pill {
  font-size: .72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid transparent;
}
.tt-pill.adult {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
}
.tt-pill.youth {
  background: rgba(0, 184, 239, 0.2);
  border-color: rgba(0, 184, 239, 0.5);
}
.tt-pill.recovery {
  background: rgba(164, 174, 187, 0.2);
  border-color: rgba(164, 174, 187, 0.45);
}
.tt-pill.performance {
  background: rgba(126, 105, 255, 0.2);
  border-color: rgba(126, 105, 255, 0.45);
}
.tt-scroll {
  overflow-x: auto;
  padding-bottom: 8px;
}
.tt-grid {
  min-width: 980px;
  display: grid;
  grid-template-columns: 95px repeat(6, minmax(130px, 1fr));
  gap: 8px;
}
.tt-head-cell,
.tt-time-cell {
  background: #2b2f34;
  border-radius: 10px;
  padding: 12px 10px;
}
.tt-head-cell {
  font-size: .72rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
}
.tt-head-cell span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: .65rem;
  letter-spacing: 1px;
}
.tt-corner {
  color: var(--accent);
}
.tt-time-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d2d2d2;
  font-size: .72rem;
  letter-spacing: 1.3px;
  font-weight: 700;
}
.tt-cell {
  min-height: 88px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
  padding: 6px;
}
.tt-item {
  height: 100%;
  border-radius: 8px;
  padding: 10px 10px 8px;
  border: 1px solid transparent;
}
.tt-item h3 {
  font-family: var(--font-inter), 'Inter', sans-serif;
  font-size: .75rem;
  line-height: 1.2;
  letter-spacing: .8px;
  margin-bottom: 5px;
}
.tt-item p {
  font-size: .64rem;
  letter-spacing: .8px;
  color: #d5d5d5;
  line-height: 1.25;
}
.tt-item.adult {
  background: #72787f;
  border-color: #8a939d;
}
.tt-item.youth {
  background: #2f5662;
  border-color: #4d889b;
}
.tt-item.recovery {
  background: #5f6273;
  border-color: #82869e;
}
.tt-item.performance {
  background: #3e3a8a;
  border-color: #6762cd;
}

/* Timetable interactive controls */
.tt-controls {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 28px;
}
.tt-pill-btn {
  cursor: pointer;
  color: inherit;
  font-family: inherit;
  transition: transform .12s ease, box-shadow .15s ease, background .15s ease;
}
.tt-pill-btn:hover { transform: translateY(-1px); }
.tt-pill-btn.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: #0a0a0a;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}
.tt-pill-btn.adult.is-active { background: #c8d2db; border-color: #c8d2db; color: #0a0a0a; }
.tt-pill-btn.youth.is-active { background: #00b8ef; border-color: #00b8ef; color: #0a0a0a; }
.tt-pill-btn.recovery.is-active { background: #b3bccb; border-color: #b3bccb; color: #0a0a0a; }
.tt-pill-btn.performance.is-active { background: #7e69ff; border-color: #7e69ff; color: #0a0a0a; }

.tt-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.tt-tab {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #2b2f34;
  color: #d2d2d2;
  font-family: inherit;
  cursor: pointer;
  min-width: 76px;
  transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.tt-tab strong {
  font-size: .78rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.tt-tab span {
  font-size: .62rem;
  letter-spacing: 1px;
  color: var(--muted);
}
.tt-tab:hover { border-color: rgba(255, 255, 255, 0.28); }
.tt-tab.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: #0a0a0a;
}
.tt-tab.is-active span { color: rgba(10, 10, 10, 0.7); }

.tt-item {
  display: block;
  width: 100%;
  text-align: left;
  font-family: inherit;
  color: inherit;
  background: transparent;
  cursor: pointer;
  transition: transform .12s ease, opacity .15s ease, box-shadow .15s ease;
}
.tt-item:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(0, 0, 0, 0.35); }
.tt-item.is-faded { opacity: 0.28; }
.tt-item.is-faded:hover { transform: none; box-shadow: none; }

/* Day view */
.tt-day-view { max-width: 760px; margin: 0 auto; }
.tt-day-heading {
  font-size: 1.4rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 18px;
}
.tt-day-empty {
  text-align: center;
  color: var(--muted);
  padding: 40px 0;
}

/* ---- Closures / public holidays ---- */
.tt-head-cell--closed {
  color: var(--accent);
  opacity: 0.75;
}
.tt-closed-flag {
  display: inline-block;
  margin-top: 6px;
  color: var(--accent) !important;
  font-weight: 800;
  letter-spacing: 1.4px;
}
.tt-cell--closed {
  min-height: 88px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.015);
  background-image: repeating-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.05) 0,
    rgba(255, 255, 255, 0.05) 1px,
    transparent 1px,
    transparent 9px
  );
}
.tt-closures {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 14px;
  margin: 14px 0 4px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 3px solid var(--accent);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
  font-size: 0.82rem;
}
.tt-closures > strong {
  color: var(--accent);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.72rem;
}
.tt-closures ul {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.tt-closures li {
  color: #d2d2d2;
}
.tt-closures li span {
  color: var(--muted);
}
.tt-day-closed {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 44px 20px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.04) 0,
    rgba(255, 255, 255, 0.04) 1px,
    transparent 1px,
    transparent 11px
  );
}
.tt-day-closed strong {
  color: var(--accent);
  font-size: 1.4rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.tt-day-closed span {
  color: var(--muted);
  font-size: 0.95rem;
}
.tt-tab--closed strong {
  color: var(--accent);
}
.tt-tab--closed.is-active strong {
  color: #0a0a0a;
}
.tt-day-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tt-day-card {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 14px 18px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: inherit;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  transition: transform .12s ease, background .15s ease, border-color .15s ease;
}
.tt-day-card:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.22);
}
.tt-day-card.adult { border-left: 4px solid #8a939d; }
.tt-day-card.youth { border-left: 4px solid #4d889b; }
.tt-day-card.recovery { border-left: 4px solid #82869e; }
.tt-day-card.performance { border-left: 4px solid #6762cd; }
.tt-day-time {
  font-weight: 700;
  letter-spacing: 1.2px;
  font-size: .85rem;
  color: var(--accent);
}
.tt-day-body { display: flex; flex-direction: column; gap: 2px; }
.tt-day-body strong {
  font-family: var(--font-inter), 'Inter', sans-serif;
  font-size: .95rem;
  letter-spacing: .6px;
}
.tt-day-body span {
  font-size: .72rem;
  letter-spacing: .6px;
  color: #c8c8c8;
}
.tt-day-tag {
  font-size: .62rem;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 5px 9px;
  border-radius: 999px;
}
.tt-day-tag.adult { background: #72787f; }
.tt-day-tag.youth { background: #2f5662; }
.tt-day-tag.recovery { background: #5f6273; }
.tt-day-tag.performance { background: #3e3a8a; }

/* Modal */
.tt-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
  animation: tt-fade-in .2s ease;
}
.tt-modal {
  position: relative;
  width: min(480px, 100%);
  background: #1a1d22;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 32px 28px 26px;
  color: #f1f1f1;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  animation: tt-pop-in .22s ease;
}
.tt-modal-close {
  position: absolute;
  top: 10px;
  right: 14px;
  background: transparent;
  border: 0;
  font-size: 1.8rem;
  line-height: 1;
  color: #c8c8c8;
  cursor: pointer;
}
.tt-modal-close:hover { color: #fff; }
.tt-modal-tag {
  display: inline-block;
  font-size: .62rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.tt-modal-tag.adult { background: #72787f; }
.tt-modal-tag.youth { background: #2f5662; }
.tt-modal-tag.recovery { background: #5f6273; }
.tt-modal-tag.performance { background: #3e3a8a; }
.tt-modal h3 {
  font-size: 1.55rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin: 0 0 18px;
}
.tt-modal-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 0 22px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 10px;
}
.tt-modal-meta > div { display: grid; grid-template-columns: 80px 1fr; gap: 10px; }
.tt-modal-meta dt {
  font-size: .65rem;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}
.tt-modal-meta dd {
  margin: 0;
  font-size: .85rem;
  color: #eaeaea;
}
.tt-modal-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.tt-modal-actions .btn { flex: 1 1 auto; }
.btn.btn-ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #f1f1f1;
}
.btn.btn-ghost:hover { background: rgba(255, 255, 255, 0.06); }

@keyframes tt-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes tt-pop-in {
  from { opacity: 0; transform: translateY(8px) scale(.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Elite coaches */
.elite-coaches {
  padding: 96px 0;
  background: linear-gradient(180deg, #ececec 0%, #e6e6e6 100%);
  color: #0f0f0f;
}
.elite-coaches .container {
  max-width: 1180px;
}
.elite-coaches-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 44px;
}
.elite-coaches-title {
  font-family: var(--font-inter), 'Inter', sans-serif;
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  font-weight: 900;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}
.elite-coaches-title::after {
  content: '';
  display: block;
  width: 130px;
  height: 2px;
  margin: 16px auto 0;
  background: var(--accent);
}
.elite-coaches-sub {
  color: #1f1f1f;
  font-size: clamp(1rem, 1.25vw, 1.35rem);
  line-height: 1.45;
  max-width: 760px;
  margin: 0 auto;
}
.elite-coaches-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.elite-coach-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 54px;
  aspect-ratio: 1 / 1;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  -webkit-backdrop-filter: blur(12px) saturate(130%);
  backdrop-filter: blur(12px) saturate(130%);
  border-radius: 12px;
  overflow: hidden;
}
.elite-coach-photo {
  position: relative;
}
.elite-coach-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.elite-share {
  position: absolute;
  right: 8px;
  bottom: 8px;
  width: 34px;
  height: 34px;
  border: 0;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform .2s var(--ease), background .2s var(--ease);
}
.elite-share svg {
  width: 16px;
  height: 16px;
}
.elite-share:hover {
  transform: scale(1.06);
  background: #111;
}
.elite-coach-meta {
  padding: 10px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  background: rgba(0, 184, 239, 0.7);
  border-left: 1px solid rgba(255, 255, 255, 0.28);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.elite-coach-meta h3 {
  font-family: var(--font-inter), 'Inter', sans-serif;
  font-weight: 900;
  font-size: 1.45rem;
  line-height: 1;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.elite-role {
  font-family: var(--font-inter), 'Inter', sans-serif;
  font-size: .58rem;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* Partners */
.partners { padding: 88px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.partner-track {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
}
.partner-row {
  display: flex;
  align-items: center;
  gap: 70px;
  animation: slide 35s linear infinite;
  width: max-content;
}
.partner-row img {
  height: 62px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1) opacity(.75);
  transition: filter .3s var(--ease);
}
.partner-row img:hover {
  filter: brightness(0) invert(1) opacity(1);
}
@keyframes slide {
  to { transform: translateX(-50%); }
}

/* Gallery */
.gallery { padding: 96px 0 56px; }
.gallery-strip {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 20px 24px 40px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}
.gallery-strip::-webkit-scrollbar { height: 6px; }
.gallery-strip::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }
.gallery-strip img {
  height: 360px;
  width: auto;
  object-fit: cover;
  border-radius: var(--radius);
  flex-shrink: 0;
  scroll-snap-align: start;
  filter: grayscale(.3);
  transition: filter .4s var(--ease), transform .4s var(--ease);
}
.gallery-strip img:hover {
  filter: none;
  transform: scale(1.02);
}
.gallery-video {
  height: 360px;
  width: 640px;
  border-radius: var(--radius);
  overflow: hidden;
  flex-shrink: 0;
  scroll-snap-align: start;
  position: relative;
  background: #000;
}
.gallery-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Contact */
.contact { padding: 96px 0; background: var(--bg-2); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-copy h2 { margin: 10px 0 30px; }
.contact-list {
  list-style: none;
  border-top: 1px solid var(--line);
}
.contact-list li {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: baseline;
  gap: 30px;
}
.contact-list .label {
  flex: 0 0 100px;
  font-size: .75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-list a {
  font-size: 1.1rem;
  font-weight: 500;
  transition: color .2s var(--ease);
}
.contact-list a:hover { color: var(--accent); }

.areas { margin-top: 30px; }
.areas .label {
  font-size: .75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.areas p { color: #ddd; line-height: 1.8; }

/* Form */
.contact-form {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px;
}
.contact-form h3 {
  margin-bottom: 26px;
  font-size: 1.6rem;
}
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: .75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 16px;
  color: #fff;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color .2s var(--ease);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.field textarea { resize: vertical; }
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.contact-form .btn { margin-top: 10px; }

/* Footer */
.site-footer {
  background: #050505;
  border-top: 1px solid var(--line);
  padding-top: 70px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
}
.footer-brand img {
  height: 56px;
  margin-bottom: 20px;
}
.footer-brand p {
  color: var(--muted);
  max-width: 340px;
  font-size: 1.08rem;
  line-height: 1.7;
}
.footer-col h4 {
  font-family: var(--font-inter), 'Inter', sans-serif;
  font-size: .78rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  font-weight: 700;
}
.footer-col a {
  display: block;
  color: #ccc;
  padding: 5px 0;
  font-size: 1.1rem;
  transition: color .2s var(--ease);
}
.footer-col a:hover { color: var(--accent); }
.footer-col p { color: #ccc; margin-bottom: 8px; font-size: 1.08rem; }

.socials {
  display: flex;
  gap: 10px;
}
.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 0;
}
.socials a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 24px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--muted);
  font-size: 1rem;
}
.footer-bottom .links { display: flex; gap: 26px; }
.footer-bottom .links a:hover { color: var(--accent); }

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .class-grid, .elite-coaches-grid, .program-grid, .membership-grid { grid-template-columns: repeat(2, 1fr); }
  .video-card { flex: 0 0 calc((100% - 30px) / 2); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 50px; }
  .tt-grid { min-width: 900px; }
  .manifesto-grid, .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
}

@media (max-width: 720px) {
  .container { padding: 0 16px; }
  .header-inner { height: 78px; }
  .nav {
    position: fixed;
    top: 78px; right: 0; left: 0;
    width: 100vw;
    max-width: 100vw;
    flex-direction: column;
    padding: 36px 24px 60px;
    gap: 8px;
    transform: translateX(100%);
    transition: transform .45s var(--ease);
    height: calc(100vh - 78px);
    height: calc(100dvh - 78px);
    overflow-y: auto;
    overscroll-behavior: contain;
    z-index: 180;
    /* Solid dark panel — no transparency, no backdrop blur */
    background:
      radial-gradient(circle at 90% -10%, rgba(0, 184, 239, 0.16), transparent 55%),
      radial-gradient(circle at -10% 110%, rgba(0, 184, 239, 0.06), transparent 50%),
      #07090b;
    border-top: 1px solid rgba(0, 184, 239, 0.22);
    box-shadow:
      0 30px 80px rgba(0, 0, 0, 0.55),
      inset 0 1px 0 rgba(0, 184, 239, 0.08);
  }
  /* Decorative cyan top-bar accent (matches side-panel ::before) */
  .nav::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent) 25%, var(--accent) 75%, transparent);
    opacity: 0.35;
    pointer-events: none;
  }
  .nav::-webkit-scrollbar { width: 6px; }
  .nav::-webkit-scrollbar-track { background: transparent; }
  .nav::-webkit-scrollbar-thumb {
    background: rgba(0, 184, 239, 0.28);
    border-radius: 3px;
  }
  .nav.open { transform: translateX(0); }
  /* Backdrop dims & blocks the page when the mobile drawer is open */
  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s var(--ease);
    z-index: 170;
  }
  .nav-backdrop.open {
    opacity: 1;
    pointer-events: auto;
  }
  /* Lock body scroll while the drawer is open */
  html.nav-locked,
  html.nav-locked body {
    overflow: hidden;
    touch-action: none;
  }
  /* Nav links styled like side-panel address/phone glass cards */
  .nav a {
    padding: 14px 16px;
    font-size: 1rem;
    width: 100%;
    color: #eef2f6;
    letter-spacing: 1px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 10px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: border-color .25s var(--ease), background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
    position: relative;
  }
  .nav a:hover {
    border-color: rgba(0, 184, 239, 0.45);
    background: rgba(0, 184, 239, 0.06);
    color: var(--accent);
    transform: translateX(-2px);
  }
  .nav a.active {
    border-color: rgba(0, 184, 239, 0.5);
    background: linear-gradient(90deg, rgba(0, 184, 239, 0.16), rgba(0, 184, 239, 0.03));
    color: var(--accent);
    box-shadow: inset 0 0 0 1px rgba(0, 184, 239, 0.2);
  }
  .nav a.active::before {
    content: "";
    position: absolute;
    left: 6px; top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 18px;
    background: var(--accent);
    border-radius: 2px;
    box-shadow: 0 0 12px rgba(0, 184, 239, 0.8);
  }

  /* DROPDOWNS on mobile — parent link navigates, chevron button toggles submenu */
  .nav .dropdown {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    position: relative;
  }
  .nav .dropdown::after { content: none; }
  .nav .dropdown:hover .dropdown-content { display: grid; }

  /* Row containing parent link + chevron button */
  .nav .dropdown .dropdown-head {
    display: flex;
    align-items: stretch;
    gap: 6px;
    width: 100%;
  }
  .nav .dropdown .dropbtn {
    flex: 1;
    padding-right: 16px;
  }
  /* When dropdown is open, parent link gets cyan highlight */
  .nav .dropdown.open .dropbtn {
    border-color: rgba(0, 184, 239, 0.45);
    background: rgba(0, 184, 239, 0.06);
    color: var(--accent);
  }

  /* Chevron toggle button — separate tap target on the right */
  .nav .dropdown-toggle {
    flex: 0 0 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 184, 239, 0.05);
    border: 1px solid rgba(0, 184, 239, 0.2);
    border-radius: 10px;
    color: var(--accent);
    cursor: pointer;
    padding: 0;
    transition: background .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
  }
  .nav .dropdown-toggle:hover {
    background: rgba(0, 184, 239, 0.12);
    border-color: rgba(0, 184, 239, 0.45);
  }
  .nav .dropdown.open .dropdown-toggle {
    background: rgba(0, 184, 239, 0.18);
    border-color: rgba(0, 184, 239, 0.5);
  }
  .nav .dropdown-toggle svg {
    width: 18px;
    height: 18px;
    transition: transform .3s var(--ease);
    filter: drop-shadow(0 0 4px rgba(0, 184, 239, 0.55));
  }
  .nav .dropdown.open .dropdown-toggle svg {
    transform: rotate(180deg);
  }

  /* Submenu — smooth height transition via grid-rows trick */
  .nav .dropdown .dropdown-content {
    display: grid;
    grid-template-rows: 0fr;
    position: static;
    width: 100%;
    min-width: 0;
    background: rgba(0, 184, 239, 0.04);
    border: 1px solid transparent;
    border-radius: 10px;
    margin-top: 0;
    padding: 0 6px;
    box-shadow: none;
    transition:
      grid-template-rows .35s var(--ease),
      margin-top .35s var(--ease),
      padding .35s var(--ease),
      border-color .35s var(--ease);
    overflow: hidden;
  }
  .nav .dropdown.open .dropdown-content {
    grid-template-rows: 1fr;
    margin-top: 8px;
    padding: 6px;
    border-color: rgba(0, 184, 239, 0.22);
    box-shadow: inset 0 0 12px rgba(0, 184, 239, 0.06);
  }
  .nav .dropdown .dropdown-inner {
    min-height: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  /* Submenu links — smaller, indented glass cards */
  .nav .dropdown .dropdown-content a {
    padding: 12px 14px 12px 22px;
    font-size: 0.86rem;
    letter-spacing: 1px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    color: #cdd5dc;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    width: 100%;
    position: relative;
  }
  /* Small cyan dot indicator on left of each submenu item */
  .nav .dropdown .dropdown-content a::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 50%;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.4;
    transform: translateY(-50%);
    transition: opacity .25s var(--ease), width .25s var(--ease);
  }
  .nav .dropdown .dropdown-content a:hover {
    background: rgba(0, 184, 239, 0.1);
    border-color: rgba(0, 184, 239, 0.35);
    color: var(--accent);
    transform: translateX(-2px);
  }
  .nav .dropdown .dropdown-content a:hover::before {
    opacity: 1;
    width: 6px;
    box-shadow: 0 0 8px rgba(0, 184, 239, 0.8);
  }

  /* Mega menu — collapse to accordion on mobile */
  .dropdown.mega .mega-panel {
    position: static;
    top: auto;
    left: auto;
    right: auto;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    padding: 0 6px;
    background:
      radial-gradient(ellipse at top, rgba(0, 184, 239, 0.26), transparent 65%),
      linear-gradient(180deg, rgba(10, 14, 18, 0.95), rgba(8, 10, 12, 0.97));
    -webkit-backdrop-filter: blur(80px) saturate(200%);
    backdrop-filter: blur(80px) saturate(200%);
    border-top: 1px solid rgba(0, 184, 239, 0.22);
    border-bottom: none;
    box-shadow:
      0 12px 30px rgba(0, 0, 0, 0.45),
      inset 0 1px 0 rgba(255, 255, 255, 0.04);
  }
  .dropdown.mega .mega-grid {
    display: flex;
    flex-direction: column;
    grid-template-columns: none;
    gap: 4px;
    max-width: none;
    margin: 0;
    padding: 0;
  }
  .dropdown.mega .mega-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    transform: none !important;
  }
  .dropdown.mega .mega-item:hover { transform: translateX(-2px) !important; }
  .dropdown.mega .mega-title {
    font-family: var(--font-barlow-condensed), 'Barlow Condensed', sans-serif;
    font-size: 0.92rem;
    letter-spacing: 1.2px;
    color: #e6edf3;
  }
  .dropdown.mega .mega-desc {
    font-size: 1rem;
    line-height: 1.4;
    color: #7c858f;
  }

  .nav-toggle { display: block; }
  .side-toggle { display: none; }
  .header-cta .btn { display: none; }
  .announce { font-size: .62rem; letter-spacing: 1.5px; }

  .hero { padding: 60px 0 60px; min-height: 80vh; }
  .hero { min-height: auto; }
  .hero-meta { gap: 26px; }
  .hero-meta strong { font-size: 2rem; }

  .manifesto, .classes, .programs, .elite-coaches, .timetable, .membership, .contact, .testimonials { padding: 64px 0; }
  .trusted-by, .partners { padding: 64px 0; }
  .gallery { padding: 64px 0 42px; }
  .trial-cta { padding: 72px 0; }
  .stats { padding: 60px 0; }

  .class-grid, .elite-coaches-grid, .membership-grid { grid-template-columns: 1fr; }
  .elite-coaches-head { margin-bottom: 42px; }
  .elite-coach-card { max-width: 340px; margin: 0 auto; }
  .plan-card { max-width: 420px; margin: 0 auto; width: 100%; }
  .trusted-title { font-size: 2.1rem; margin-bottom: 28px; }
  .trusted-logos { gap: 12px; }
  .trusted-logos img { width: 140px; height: 68px; padding: 10px 12px; }
  .testimonials .section-heading { font-size: 2.3rem; }
  .testimonials-sub { font-size: 1rem; margin-bottom: 30px; }
  .slider-controls {
    position: static;
    width: 100%;
    transform: none;
    margin-top: 14px;
    justify-content: center;
    gap: 14px;
  }
  .slider-btn { width: 44px; height: 44px; font-size: 1.2rem; }
  .video-card { flex: 0 0 100%; }
  .program-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; gap: 40px; }
  .stats-grid strong { font-size: 3rem; }
  .timetable-head { margin-bottom: 18px; }
  .tt-grid {
    min-width: 760px;
    grid-template-columns: 72px repeat(6, minmax(105px, 1fr));
    gap: 6px;
  }
  .tt-head-cell,
  .tt-time-cell { padding: 9px 6px; }
  .tt-time-cell { font-size: .62rem; letter-spacing: 1px; }
  .tt-head-cell { font-size: .64rem; }
  .tt-head-cell span { font-size: .58rem; margin-top: 4px; }
  .tt-cell { min-height: 78px; padding: 4px; }
  .tt-item { padding: 8px 7px 6px; }
  .tt-item h3 { font-size: .66rem; margin-bottom: 3px; }
  .tt-item p { font-size: .58rem; }
  .tt-tab { min-width: 64px; padding: 8px 10px; }
  .tt-tab strong { font-size: .7rem; }
  .tt-day-card {
    grid-template-columns: 1fr auto;
    grid-template-areas: "time tag" "body body";
    gap: 8px;
  }
  .tt-day-time { grid-area: time; }
  .tt-day-tag { grid-area: tag; justify-self: end; }
  .tt-day-body { grid-area: body; }
  .tt-modal { padding: 26px 20px 22px; }
  .tt-modal h3 { font-size: 1.25rem; }
  .tt-modal-meta > div { grid-template-columns: 70px 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 22px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .gallery-strip img { height: 240px; }
  .gallery-video { height: 240px; width: 426px; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
  .contact-list li { flex-direction: column; gap: 6px; }
  .contact-list .label { flex: none; }
}

@media (max-width: 520px) {
  .hero-ctas .btn { min-width: 100%; }
  .hero-meta { gap: 12px; }
  .hero-meta .divider { display: none; }
  .elite-coach-card { max-width: 100%; }
  .plan-card { max-width: 100%; }
  .partner-row { gap: 40px; }
  .partner-row img { height: 48px; }
}

/* ===========================
   Inner page banner / hero
   =========================== */
.page-banner {
  position: relative;
  padding: 160px 0 90px;
  background:
    radial-gradient(1200px 500px at 80% 20%, rgba(0,184,239,.25), transparent 60%),
    radial-gradient(900px 400px at 10% 80%, rgba(0,184,239,.15), transparent 60%),
    linear-gradient(180deg, #001f2e 0%, #0a1a26 100%);
  border-bottom: 1px solid rgba(0,184,239,.2);
  overflow: hidden;
}
.page-banner.page-banner--compact {
  padding: 80px 0 45px;
}
@media (max-width: 900px) {
  .page-banner.page-banner--compact { padding: 65px 0 35px; }
}
.page-banner::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, #000 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 40%, transparent 80%);
  pointer-events: none;
}
.page-banner .container { position: relative; z-index: 2; }
.page-banner .crumbs {
  display: inline-flex; gap: 10px; align-items: center;
  font-size: .78rem; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.55); margin-bottom: 18px;
}
.page-banner .crumbs a { color: rgba(255,255,255,.55); text-decoration: none; }
.page-banner .crumbs a:hover { color: #ff6b00; }
.page-banner .crumbs span { color: rgba(255,255,255,.25); }
.page-banner h1 {
  font-family: var(--font-anton), 'Anton', sans-serif;
  font-size: clamp(2.6rem, 6vw, 5rem);
  letter-spacing: .02em;
  line-height: 1;
  margin: 0 0 18px;
  color: #fff;
}
.page-banner h1 .accent { color: #00b8ef; }
.page-banner p.lede {
  max-width: 720px;
  color: rgba(255,255,255,.7);
  font-size: 1.2rem;
  line-height: 1.6;
}

/* Generic page section wrapper */
.page-section { padding: 90px 0; }
.page-section.alt { background: #0d0d0d; }
.page-section .lede {
  max-width: 760px;
  color: rgba(255,255,255,.7);
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 32px;
}
.page-section h2 {
  font-family: var(--font-anton), 'Anton', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: .02em;
  margin: 0 0 18px;
  color: #fff;
}
.page-section h2 .accent { color: #00b8ef; }
.page-section h3 { color: #fff; }

/* Two-up info grid */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 28px;
}
.info-card {
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 18px;
  padding: 28px 24px;
  transition: transform .3s ease, border-color .3s ease;
}
.info-card:hover { transform: translateY(-4px); border-color: rgba(255,107,0,.4); }
.info-card .icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: rgba(255,107,0,.12);
  color: #ff6b00;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; margin-bottom: 14px;
}
.info-card h3 { margin: 0 0 8px; font-size: 1.15rem; }
.info-card p { color: rgba(255,255,255,.65); line-height: 1.6; margin: 0; font-size: 1.15rem; }

/* Blog list */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 36px;
}
.blog-card {
  background: #131313;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 18px;
  overflow: hidden;
  transition: transform .3s ease, border-color .3s ease;
}
.blog-card:hover { transform: translateY(-6px); border-color: rgba(255,107,0,.4); }
.blog-card img { width: 100%; height: 200px; object-fit: cover; display: block; }
.blog-card .body { padding: 22px 22px 26px; }
.blog-card .meta { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: #ff6b00; margin-bottom: 10px; }
.blog-card h3 { margin: 0 0 10px; font-size: 1.15rem; line-height: 1.3; }
.blog-card p { color: rgba(255,255,255,.6); font-size: 1.12rem; line-height: 1.55; margin: 0 0 14px; }

/* Job openings */
.job-list { display: grid; gap: 16px; margin-top: 28px; }
.job-card {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 16px;
  background: #131313;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 16px;
  padding: 22px 26px;
  transition: border-color .3s ease;
}
.job-card:hover { border-color: rgba(255,107,0,.4); }
.job-card h3 { margin: 0 0 4px; font-size: 1.1rem; }
.job-card .tags { color: rgba(255,255,255,.55); font-size: .85rem; }
.job-card .tags span + span::before { content: " · "; }

@media (max-width: 720px) {
  .page-banner { padding: 130px 0 70px; }
  .page-section { padding: 64px 0; }
}

/* ============================================================
   Rich text (rendered from Markdown by block editor)
   ============================================================ */
.rich-text > :first-child { margin-top: 0; }
.rich-text > :last-child { margin-bottom: 0; }
.rich-text p { margin: 0 0 14px; line-height: 1.75; color: rgba(255,255,255,.78); }
.rich-text strong { color: #fff; font-weight: 600; }
.rich-text em { color: rgba(255,255,255,.9); font-style: italic; }
.rich-text ul, .rich-text ol { margin: 0 0 14px; padding-left: 22px; }
.rich-text li { margin-bottom: 6px; line-height: 1.65; color: rgba(255,255,255,.78); }
.rich-text li > strong { color: #fff; }
.rich-text a { color: var(--accent, #ff6b00); text-decoration: underline; }
.rich-text h1, .rich-text h2, .rich-text h3 { color: #fff; margin: 22px 0 10px; line-height: 1.2; }
.rich-text h2 { font-size: clamp(22px, 2.4vw, 28px); }
.rich-text h3 { font-size: clamp(18px, 1.8vw, 22px); }
.rich-text blockquote {
  margin: 16px 0;
  padding: 12px 18px;
  border-left: 3px solid var(--accent, #ff6b00);
  font-style: italic;
  color: rgba(255,255,255,.92);
  background: rgba(255,255,255,.02);
  border-radius: 0 8px 8px 0;
}
.rich-text code {
  background: rgba(255,255,255,.06);
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 0.92em;
}

/* ============================================================
   Coach card → modal (Our Team page)
   ============================================================ */
.coach-trigger {
  appearance: none;
  background: transparent;
  border: 0;
  padding: 0;
  text-align: left;
  cursor: pointer;
  font: inherit;
  color: inherit;
  width: 100%;
  display: block;
}
.elite-coach-card.coach-trigger .elite-coach-photo {
  position: relative;
  overflow: hidden;
}
.coach-trigger-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(0, 184, 239, 0) 50%, rgba(0, 184, 239, 0.5) 100%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}
.coach-trigger-overlay span {
  align-self: flex-end;
  margin-bottom: 18px;
  padding: 8px 16px;
  background: rgba(7, 9, 11, 0.85);
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  border: 1px solid rgba(0, 184, 239, 0.4);
  border-radius: 999px;
  backdrop-filter: blur(6px);
}
.elite-coach-card.coach-trigger:hover .coach-trigger-overlay,
.elite-coach-card.coach-trigger:focus-visible .coach-trigger-overlay {
  opacity: 1;
}

/* Modal overlay */
.coach-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(7, 9, 11, 0.78);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 16px;
  animation: coachModalFadeIn 0.2s ease;
}
@keyframes coachModalFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Modal card */
.coach-modal-card {
  position: relative;
  width: min(960px, 100%);
  max-height: 90vh;
  background: #0f1418;
  border: 1px solid rgba(0, 184, 239, 0.2);
  border-radius: 16px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  animation: coachModalSlideIn 0.25s cubic-bezier(.2,.7,.2,1);
}
@keyframes coachModalSlideIn {
  from { transform: translateY(20px) scale(0.97); opacity: 0; }
  to   { transform: translateY(0)    scale(1);    opacity: 1; }
}
.coach-modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(7, 9, 11, 0.7);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.coach-modal-close:hover {
  background: rgba(0, 184, 239, 0.18);
  border-color: rgba(0, 184, 239, 0.5);
  transform: rotate(90deg);
}
.coach-modal-media {
  background: #000;
  overflow: hidden;
}
.coach-modal-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.coach-modal-body {
  padding: 36px 38px 38px;
  overflow-y: auto;
  color: rgba(255, 255, 255, 0.82);
}
.coach-modal-role {
  display: inline-block;
  font-size: 11.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #00d4f0;
  font-weight: 700;
  margin: 0 0 10px;
  padding: 5px 12px;
  background: rgba(0, 212, 240, 0.1);
  border: 1px solid rgba(0, 212, 240, 0.28);
  border-radius: 999px;
}
.coach-modal-name {
  font-family: "Anton", "Inter", sans-serif;
  font-size: clamp(28px, 3.4vw, 40px);
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 8px;
  line-height: 1.05;
}
.coach-modal-meta {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 22px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.coach-modal-meta span {
  color: #00d4f0;
  font-weight: 700;
}
.coach-modal-bio {
  font-size: 19.5px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.coach-modal-section {
  margin-bottom: 20px;
}
.coach-modal-section:last-of-type {
  margin-bottom: 6px;
}
.coach-modal-section h3 {
  font-family: "Anton", "Inter", sans-serif;
  font-size: 16px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 10px;
}
.coach-modal-section ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
}
.coach-modal-section ul li {
  position: relative;
  padding-left: 18px;
  font-size: 18.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
}
.coach-modal-section ul li::before {
  content: "›";
  position: absolute;
  left: 0;
  top: -1px;
  color: #00d4f0;
  font-weight: 700;
}
.coach-modal-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.coach-chip {
  padding: 6px 12px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0, 212, 240, 0.08);
  border: 1px solid rgba(0, 212, 240, 0.3);
  border-radius: 999px;
}
.coach-modal-link {
  display: inline-block;
  margin-top: 18px;
  padding: 10px 18px;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: #001821;
  background: #00d4f0;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}
.coach-modal-link:hover {
  background: #5be7f7;
  transform: translateY(-1px);
}

@media (max-width: 820px) {
  .coach-modal {
    padding: 16px;
  }
  .coach-modal-card {
    grid-template-columns: 1fr;
    max-height: calc(100vh - 32px);
  }
  .coach-modal-media {
    aspect-ratio: 4 / 3;
  }
  .coach-modal-body {
    padding: 28px 24px 28px;
  }
}

/* ============================================================
   Cookie consent banner
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 150;
  width: min(1100px, calc(100vw - 32px));
  animation: cookieSlideUp 0.45s cubic-bezier(.2,.7,.2,1);
}
@keyframes cookieSlideUp {
  from { transform: translate(-50%, 120%); opacity: 0; }
  to   { transform: translate(-50%, 0);    opacity: 1; }
}
.cookie-banner-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 18px 22px 18px 24px;
  background: rgba(7, 9, 11, 0.95);
  border: 1px solid rgba(0, 212, 240, 0.25);
  border-radius: 14px;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}
.cookie-banner-icon {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 212, 240, 0.12);
  border: 1px solid rgba(0, 212, 240, 0.3);
  border-radius: 50%;
  font-size: 22px;
}
.cookie-banner-copy h4 {
  font-family: "Anton", "Inter", sans-serif;
  font-size: 16px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 4px;
}
.cookie-banner-copy p {
  margin: 0;
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
}
.cookie-banner-copy p strong { color: #fff; font-weight: 600; }
.cookie-banner-copy p a {
  color: #00d4f0;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-btn {
  appearance: none;
  border: 0;
  cursor: pointer;
  padding: 10px 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 8px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.cookie-btn-primary {
  background: #00d4f0;
  color: #001821;
}
.cookie-btn-primary:hover {
  background: #5be7f7;
  transform: translateY(-1px);
}
.cookie-btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.cookie-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.45);
}

@media (max-width: 760px) {
  .cookie-banner-inner {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 16px 18px;
  }
  .cookie-banner-icon {
    display: none;
  }
  .cookie-banner-actions {
    justify-content: stretch;
  }
  .cookie-btn {
    flex: 1;
  }
}

/* ============================================================
   Scroll-to-top floating button
   ============================================================ */
.scroll-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 140;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: #00d4f0;
  color: #001821;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.45),
              0 0 0 1px rgba(0, 212, 240, 0.4) inset;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.2s ease,
              visibility 0.25s ease;
}
.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-top:hover {
  background: #5be7f7;
  transform: translateY(-3px);
}
.scroll-top svg {
  width: 18px;
  height: 18px;
}

/* If the cookie banner is visible, lift the scroll button so it doesn't collide on mobile. */
@media (max-width: 760px) {
  .scroll-top {
    right: 16px;
    bottom: 16px;
  }
}

/* --- Audience radio pills (shared: contact form, class pages) --- */
.adult-radio-group {
  border: none;
  padding: 0;
  margin: 6px 0 4px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.adult-radio-group legend {
  width: 100%;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 10px;
}
.radio-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
.radio-pill input {
  position: absolute;
  opacity: 0;
  inset: 0;
}
.radio-pill span {
  display: inline-block;
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: border-color 0.18s, background 0.18s, color 0.18s;
}
.radio-pill:hover span {
  border-color: rgba(0, 212, 240, 0.45);
  color: #fff;
}
.radio-pill input:checked + span {
  background: #00d4f0;
  border-color: #00d4f0;
  color: #0b0b0b;
  font-weight: 600;
}

/* --- Lead form inline status message (success/error after submit) --- */
.lead-status {
  width: 100%;
  margin: 14px 0 0;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.5;
}
.lead-status.sending {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.75);
}
.lead-status.success {
  background: rgba(0, 212, 240, 0.12);
  border: 1px solid rgba(0, 212, 240, 0.4);
  color: #00d4f0;
}
.lead-status.error {
  background: rgba(255, 80, 80, 0.1);
  border: 1px solid rgba(255, 80, 80, 0.4);
  color: #ff8a8a;
}
