/* ========================================
   HVVC — Happy Valley Volleyball Club
   Premium Design — Aspire NW × HVVC Fusion
   ======================================== */

/* ---------- SKIP TO CONTENT ---------- */
.skip-to-content {
  position: absolute; top: -100%; left: 16px; z-index: 10000;
  padding: 12px 24px; background: var(--pink); color: #fff;
  font-weight: 700; font-size: .9rem; border-radius: var(--radius-md);
  text-decoration: none; transition: top .2s ease;
}
.skip-to-content:focus { top: 12px; }

/* ---------- GLOBAL FOCUS STYLES ---------- */
:focus-visible {
  outline: 2px solid var(--pink);
  outline-offset: 3px;
}
.btn:focus-visible {
  outline: 2px solid var(--pink);
  outline-offset: 3px;
  box-shadow: 0 0 0 4px rgba(255, 42, 161, .15);
}
.navbar__links a:focus-visible {
  outline: 2px solid var(--pink);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------- TRYOUT / IN-SEASON MODE TOGGLE ---------- */
.mode-in-season [data-mode="tryouts"] { display: none !important; }
.mode-tryouts [data-mode="in-season"] { display: none !important; }

/* ---------- DESIGN TOKENS ---------- */
:root {
  --pink: #ff2aa1;
  --pink-light: #ff6ec4;
  --pink-pale: #fce4f0;
  --purple: #7b3fe4;
  --purple-deep: #5a1fc0;
  --purple-pale: #ede0ff;
  --gradient: linear-gradient(135deg, var(--pink) 0%, var(--purple) 100%);
  --gradient-reverse: linear-gradient(135deg, var(--purple) 0%, var(--pink) 100%);
  --gradient-subtle: linear-gradient(135deg, rgba(255,42,161,.1) 0%, rgba(123,63,228,.1) 100%);
  --gradient-bg: linear-gradient(135deg, #fce4f0 0%, #ede0ff 100%);
  --gradient-vivid: linear-gradient(135deg, #ff2aa1 0%, #7b3fe4 50%, #ff2aa1 100%);

  --ink: #000000;
  --ink-light: #0a0a0a;
  --text: #1e293b;
  --text-secondary: #475569;
  --muted: #64748b;
  --border: #e2e8f0;
  --border-light: #f1f5f9;
  --surface: #f8fafc;
  --surface-hover: #f1f5f9;
  --white: #ffffff;
  --card-bg: #ffffff;
  --card-border: #e2e8f0;
  --body-bg: #ffffff;

  --font-body: 'Inter Tight', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Oswald', 'Inter Tight', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  --shadow-xs: 0 1px 2px rgba(0,0,0,.04);
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,.07);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.1);
  --shadow-xl: 0 20px 60px rgba(0,0,0,.12);
  --shadow-pink: 0 4px 20px rgba(255,42,161,.25);
  --shadow-glow: 0 0 30px rgba(255,42,161,.15), 0 0 60px rgba(123,63,228,.08);
  --shadow-neon: 0 0 20px rgba(255,42,161,.3), 0 0 40px rgba(123,63,228,.15), 0 0 80px rgba(255,42,161,.05);

  --nav-height: 72px;
  --container: 1200px;
  --transition: all .3s cubic-bezier(.4,0,.2,1);
}

body.dark-mode {
  --text: #e2e8f0;
  --text-secondary: #94a3b8;
  --muted: #94a3b8;
  --border: rgba(255,255,255,.08);
  --border-light: rgba(255,255,255,.04);
  --surface: #1e293b;
  --surface-hover: #334155;
  --white: #0f172a;
  --card-bg: #1e293b;
  --card-border: rgba(255,255,255,.06);
  --body-bg: #0f172a;
  --pink-pale: rgba(255,42,161,.15);
  --purple-pale: rgba(123,63,228,.15);
  --gradient-bg: linear-gradient(135deg, rgba(255,42,161,.1) 0%, rgba(123,63,228,.1) 100%);
  --shadow-sm: 0 1px 3px rgba(0,0,0,.3);
  --shadow-md: 0 4px 12px rgba(0,0,0,.4);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.5);
}

html { scroll-behavior: smooth; scroll-padding-top: var(--nav-height); }

body {
  font-family: var(--font-body);
  background: var(--body-bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  transition: background .4s ease, color .4s ease;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- SCROLL PROGRESS ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px;
  background: var(--gradient); z-index: 1100; width: 0%;
  box-shadow: 0 0 10px rgba(255,42,161,.5), 0 0 20px rgba(123,63,228,.3);
}

/* ---------- BACK TO TOP ---------- */
.back-to-top {
  position: fixed; bottom: 30px; right: 30px; width: 52px; height: 52px;
  background: var(--gradient); border: none; border-radius: 50%; color: #fff;
  font-size: 1.3rem; cursor: pointer; box-shadow: var(--shadow-neon); z-index: 900;
  opacity: 0; transform: translateY(20px); transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-4px) scale(1.1); box-shadow: 0 8px 40px rgba(255,42,161,.45); }

/* ---------- BUTTONS — bold pill (Bay Area VBC inspired) ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 40px;
  border-radius: 9999px;
  font-family: var(--font-body); font-weight: 700; font-size: .9rem;
  letter-spacing: .02em; text-transform: uppercase;
  border: none; cursor: pointer; white-space: nowrap;
  position: relative; overflow: hidden; text-decoration: none;
  transition: all .2s ease-in-out;
}
.btn--primary {
  background: var(--pink); color: #fff;
}
.btn--primary:hover {
  background: #000; color: #fff;
  transform: translateY(-2px);
}
.btn--primary:active { transform: translateY(0); }
.btn--secondary { background: #000; color: #fff; }
.btn--secondary:hover { background: var(--pink); color: #fff; transform: translateY(-2px); }
.btn--outline { background: transparent; color: var(--text); border: 2px solid #000; }
.btn--outline:hover { background: #000; color: #fff; border-color: #000; transform: translateY(-2px); }
.btn--outline-light { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.3); }
.btn--outline-light:hover { background: var(--pink); color: #fff; border-color: var(--pink); transform: translateY(-2px); }
.btn--lg { padding: 16px 48px; font-size: 1rem; }
.btn--sm { padding: 10px 28px; font-size: .82rem; }
.btn--full { width: 100%; }

.btn .ripple { position: absolute; border-radius: 50%; background: rgba(255,255,255,.4); transform: scale(0); animation: ripple .6s linear; pointer-events: none; }
@keyframes ripple { to { transform: scale(4); opacity: 0; } }

/* ---------- ANIMATED GRADIENT BORDER UTILITY ---------- */
.glow-border {
  position: relative;
}
.glow-border::before {
  content: ''; position: absolute; inset: -2px; border-radius: inherit;
  background: var(--gradient-vivid); background-size: 200% 200%;
  animation: gradientShift 3s ease infinite; z-index: -1; opacity: 0;
  transition: opacity .4s ease;
}
.glow-border:hover::before { opacity: 1; }
@keyframes gradientShift { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; height: var(--nav-height); z-index: 1000;
  background: #fff;
  border-bottom: 1px solid var(--border);
  transition: transform .4s cubic-bezier(.4,0,.2,1), background .3s ease, box-shadow .3s ease;
}
body.dark-mode .navbar { background: #0a0a0a; }
.navbar.scrolled { box-shadow: var(--shadow-md); background: #fff; }
body.dark-mode .navbar.scrolled { background: #0a0a0a; }
.navbar__inner { display: flex; align-items: center; justify-content: space-between; height: 100%; padding-left: 0; padding-right: 0; }
.navbar__logo { display: flex; align-items: center; gap: 10px; margin-right: auto; margin-left: -16px; }

.logo-img { height: 44px; width: auto; }
.logo-text {
  font-family: var(--font-heading); font-size: 1.6rem; font-weight: 800;
  background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; letter-spacing: -.02em;
}

.logo-sub { font-size: .7rem; color: var(--muted); letter-spacing: .18em; text-transform: uppercase; display: none; }
@media (min-width: 768px) { .logo-sub { display: inline; } }

.navbar__links { display: none; gap: 2px; }
.navbar__links a {
  padding: 8px 16px; font-family: var(--font-heading); font-size: .85rem; font-weight: 500; color: var(--muted);
  border-radius: var(--radius-full); transition: var(--transition);
  position: relative; letter-spacing: .04em; text-transform: uppercase;
}
.navbar__links a::after {
  content: ''; position: absolute; bottom: 4px; left: 50%; width: 0; height: 2px;
  background: var(--gradient); border-radius: 2px; transition: all .3s ease; transform: translateX(-50%);
}
.navbar__links a:hover { color: var(--text); }
.navbar__links a:hover::after { width: 60%; }
.navbar__links a.nav-active { color: var(--text); font-weight: 600; }
.navbar__links a.nav-active::after { width: 60%; }

/* ---- Programs dropdown ---- */
.nav-dropdown { position: relative; }
.nav-dropdown__trigger {
  padding: 8px 16px; font-family: var(--font-heading); font-size: .85rem; font-weight: 500;
  color: var(--muted); border-radius: var(--radius-full); transition: var(--transition);
  position: relative; letter-spacing: .04em; text-transform: uppercase;
  background: none; border: none; cursor: pointer; display: flex; align-items: center; gap: 5px;
}
.nav-dropdown__trigger::after {
  content: ''; position: absolute; bottom: 4px; left: 50%; width: 0; height: 2px;
  background: var(--gradient); border-radius: 2px; transition: all .3s ease; transform: translateX(-50%);
}
.nav-dropdown__trigger:hover { color: var(--text); }
.nav-dropdown__trigger:hover::after { width: 60%; }
.nav-dropdown__trigger svg { width: 10px; height: 10px; transition: transform .2s ease; flex-shrink: 0; margin-top: 1px; }
.nav-dropdown.open .nav-dropdown__trigger svg { transform: rotate(180deg); }
.nav-dropdown.open .nav-dropdown__trigger { color: var(--text); }
.nav-dropdown__menu {
  position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%);
  background: var(--body-bg); border: 1px solid var(--border);
  border-radius: var(--radius-md); box-shadow: 0 16px 40px rgba(0,0,0,.18);
  min-width: 200px; padding: 8px; z-index: 500;
  opacity: 0; pointer-events: none; transform: translateX(-50%) translateY(-8px);
  transition: opacity .2s ease, transform .2s ease;
}
body.dark-mode .nav-dropdown__menu { background: #0a0a0a; border-color: rgba(255,255,255,.08); }
.navbar.scrolled .nav-dropdown__menu { background: #fff; }
body.dark-mode .navbar.scrolled .nav-dropdown__menu { background: #0a0a0a; }
.nav-dropdown.open .nav-dropdown__menu {
  opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0);
}
.nav-dropdown__section {
  font-family: var(--font-mono); font-size: .5rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--pink); padding: 8px 14px 2px; display: block;
}
.nav-dropdown__menu a {
  display: block; padding: 10px 14px; font-family: var(--font-heading);
  font-size: .78rem; font-weight: 500; letter-spacing: .06em; text-transform: uppercase;
  color: var(--muted); border-radius: var(--radius-sm); text-decoration: none;
  transition: background .15s ease, color .15s ease;
  white-space: nowrap;
}
.nav-dropdown__menu a:hover { background: var(--surface); color: var(--text); }
.nav-dropdown__menu a::after { display: none !important; }
/* Mobile dropdown */
.navbar__links.mobile-open .nav-dropdown__trigger {
  font-size: 1.1rem; padding: 14px 20px; width: 100%; justify-content: space-between;
  border-radius: var(--radius-md);
}
.navbar__links.mobile-open .nav-dropdown__menu {
  position: static; transform: none; opacity: 1; pointer-events: auto;
  box-shadow: none; border: none; background: transparent;
  padding: 0 0 0 20px;
}
.navbar__links.mobile-open .nav-dropdown.open .nav-dropdown__menu { display: block; }
.navbar__links.mobile-open .nav-dropdown:not(.open) .nav-dropdown__menu { display: none; }
.navbar__links.mobile-open .nav-dropdown__menu a { font-size: .95rem; padding: 10px 16px; }

.navbar__right { display: flex; align-items: center; gap: 12px; }
.navbar__cta { display: none; }

.theme-toggle {
  width: 40px; height: 40px; border: 1px solid var(--border); border-radius: var(--radius-sm);
  background: var(--surface); cursor: pointer; display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; transition: var(--transition); color: var(--text);
}
.theme-toggle:hover { border-color: var(--pink); background: var(--pink-pale); transform: rotate(20deg); }

.navbar__burger { display: flex; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.navbar__burger span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--transition); }
.navbar__burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.navbar__burger.active span:nth-child(2) { opacity: 0; }
.navbar__burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (min-width: 1024px) { .navbar__links { display: flex; } .navbar__cta { display: inline-flex; } .navbar__burger { display: none; } }

.navbar__links.mobile-open {
  display: flex; flex-direction: column; position: fixed; inset: var(--nav-height) 0 0 0;
  background: var(--body-bg); padding: 32px 24px; gap: 4px; z-index: 999; animation: fadeIn .3s ease; overflow-y: auto;
}
.navbar__links.mobile-open a { font-size: 1.1rem; padding: 14px 20px; }
.navbar__links.mobile-open a::after { display: none; }

/* ---------- HERO ---------- */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: flex-end;
  padding: calc(var(--nav-height) + 40px) 0 64px; overflow: hidden; background: var(--body-bg);
}

.hero__bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(123,63,228,.08) 0%, transparent 60%), radial-gradient(ellipse 60% 50% at 85% 20%, rgba(255,42,161,.06) 0%, transparent 50%), radial-gradient(ellipse 50% 40% at 15% 60%, rgba(123,63,228,.04) 0%, transparent 50%);
  z-index: 0;
}
body.dark-mode .hero__bg {
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(123,63,228,.2) 0%, transparent 60%), radial-gradient(ellipse 60% 50% at 85% 20%, rgba(255,42,161,.15) 0%, transparent 50%);
}

.hero__content { position: relative; z-index: 1; text-align: center; max-width: 850px; margin: 0 auto; }

.hero__badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 10px 24px;
  background: rgba(255,42,161,.06); border: 1px solid rgba(255,42,161,.15); border-radius: var(--radius-full);
  font-size: .78rem; font-weight: 600; color: var(--pink); letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: 32px; animation: fadeUp .8s ease both;
  backdrop-filter: blur(10px);
}

.hero__title {
  font-family: var(--font-heading); font-size: clamp(2.8rem, 7vw, 5.5rem); font-weight: 800;
  line-height: 1.05; letter-spacing: -.04em; margin-bottom: 28px; animation: fadeUp .8s ease .1s both;
  color: var(--text);
}

.typing-cursor { display: inline-block; width: 3px; height: .85em; background: var(--pink); margin-left: 4px; animation: blink 1s infinite; vertical-align: text-bottom; box-shadow: 0 0 8px rgba(255,42,161,.5); }
@keyframes blink { 0%, 50% { opacity: 1; } 51%, 100% { opacity: 0; } }

/* ---- Split hero layout ---- */
.hero--split {
  align-items: center;
  padding-top: calc(var(--nav-height) + 60px);
  padding-bottom: 100px;
}
.hero--photo.hero--split .hero__overlay {
  background:
    linear-gradient(to right, #000 0%, #000 18%, rgba(0,0,0,.9) 35%, rgba(0,0,0,.4) 55%, transparent 75%),
    linear-gradient(to bottom, rgba(0,0,0,.2) 0%, transparent 40%);
}
.hero--split .hero__photo-bg {
  background-position: right top;
  opacity: .85;
}
.hero__split {
  position: relative; z-index: 1;
  max-width: 560px;
}
.hero__split-title {
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 8.5vw, 8.5rem);
  font-weight: 700; line-height: .9;
  color: #fff; text-transform: uppercase;
  letter-spacing: .01em;
  margin: 0 0 0;
  animation: fadeUp .6s ease .1s both;
}
.hero__split-script {
  display: block;
  font-family: 'Dancing Script', cursive;
  font-size: clamp(2.2rem, 5.5vw, 5.5rem);
  font-weight: 700;
  color: var(--pink);
  text-transform: none;
  line-height: 1.1;
  margin-bottom: 6px;
}
.hero__split-script::after {
  content: '';
  display: block;
  width: 70px; height: 3px;
  background: var(--pink);
  margin-top: 10px;
}
.hero__split-sub {
  font-size: 1rem; color: rgba(255,255,255,.75);
  line-height: 1.75; margin: 28px 0 36px;
  animation: fadeUp .6s ease .2s both;
}
.hero__split-actions {
  justify-content: flex-start !important;
  animation: fadeUp .6s ease .3s both;
}
.hero__diag {
  position: absolute; bottom: 0; left: 0; right: 0;
  width: 100%; height: 90px; z-index: 1;
  pointer-events: none;
}
.hero__diag svg { width: 100%; height: 100%; display: block; }
@media (max-width: 768px) {
  .hero--split { padding-bottom: 80px; }
  .hero--split .hero__overlay { background: linear-gradient(to bottom, rgba(0,0,0,.7) 0%, rgba(0,0,0,.85) 100%); }
  .hero__split { max-width: 100%; }
  .hero__diag { width: 60%; height: 60px; }
}

/* ---- Editorial hero layout ---- */
.hero__editorial {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; width: 100%;
}
.hero__editorial-badge {
  display: inline-block;
  background: var(--pink);
  color: #fff;
  font-family: var(--font-heading);
  font-size: .75rem; font-weight: 700; letter-spacing: .25em; text-transform: uppercase;
  padding: 11px 32px; margin-bottom: 32px;
  animation: fadeUp .5s ease both;
}
.hero__editorial-title {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 10vw, 13rem);
  font-weight: 700; line-height: .88; letter-spacing: .02em;
  color: #fff; text-transform: uppercase;
  text-shadow: 0 8px 60px rgba(0,0,0,.5);
  margin: 0 0 44px;
  width: 100%;
  animation: fadeUp .6s ease .1s both;
}
.hero__actions--editorial {
  animation: fadeUp .6s ease .2s both;
}

@media (max-width: 768px) {
  .hero__editorial-title { font-size: clamp(4rem, 16vw, 8rem); }
}
@media (max-width: 480px) {
  .hero__editorial-title { font-size: clamp(3rem, 17vw, 5rem); }
  .hero__editorial-badge { font-size: .65rem; padding: 9px 20px; letter-spacing: .18em; }
}
.hero__subtitle { font-size: clamp(1.05rem, 2vw, 1.2rem); color: var(--muted); line-height: 1.7; max-width: 620px; margin: 0 auto 40px; animation: fadeUp .8s ease .2s both; }
.hero__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 60px; animation: fadeUp .8s ease .3s both; }

.hero__stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 500px; margin: 0 auto; animation: fadeUp .8s ease .4s both; }
@media (min-width: 640px) { .hero__stats { grid-template-columns: repeat(4, 1fr); max-width: 700px; } }

.stat { text-align: center; }
.stat__number { font-family: var(--font-heading); font-size: 2.4rem; font-weight: 800; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; }
.stat__plus { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 700; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat__label { display: block; font-family: var(--font-mono); font-size: .75rem; color: var(--muted); margin-top: 4px; text-transform: uppercase; letter-spacing: .06em; }

.hero__scroll { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--muted); font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; animation: fadeUp .8s ease .6s both; }
.hero__scroll-line { width: 1px; height: 40px; background: var(--gradient); animation: scrollPulse 2s ease infinite; }

/* ---------- HERO PHOTO ---------- */
.hero--photo { background: var(--ink); }
.hero__photo-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center top;
  z-index: 0; opacity: .55;
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom { 0% { transform: scale(1); } 100% { transform: scale(1.06); } }

.hero--photo .hero__overlay {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(to bottom, rgba(5,5,15,.3) 0%, rgba(5,5,15,.3) 72%, rgba(0,0,0,.85) 92%, #000 100%);
}
.hero--photo .hero__content { color: #fff; }
.hero--photo .hero__title { color: #fff; text-shadow: 0 2px 20px rgba(0,0,0,.4); }
.hero--photo .stat__label { color: #94a3b8; }
.hero--photo .hero__scroll { color: #94a3b8; }
.hero--photo .btn--outline { color: #fff; border-color: rgba(255,255,255,.3); backdrop-filter: blur(8px); }
.hero--photo .btn--outline:hover { border-color: var(--pink); color: var(--pink); background: rgba(255,42,161,.08); }

/* ---------- HERO REDESIGN ---------- */
.hero--redesign {
  align-items: flex-end;
  padding-bottom: 80px;
}
.hero--redesign .hero__content {
  text-align: left;
  max-width: 680px;
  margin: 0;
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .72rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.55); margin-bottom: 24px;
  animation: fadeUp .7s ease both;
}
.hero__eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--pink);
  box-shadow: 0 0 10px var(--pink); flex-shrink: 0;
}
.hero--redesign .hero__title {
  font-size: clamp(3.2rem, 7vw, 6.5rem);
  line-height: .95;
  margin-bottom: 36px;
  letter-spacing: -.05em;
}
.hero--redesign .hero__actions {
  margin-bottom: 28px;
  justify-content: flex-start;
}
.hero__tagline {
  font-size: .95rem; color: rgba(255,255,255,.45); line-height: 1.7;
  max-width: 480px; margin: 0;
  animation: fadeUp .8s ease .4s both;
}
.btn--ghost {
  padding: 14px 28px; font-size: .9rem; font-weight: 600;
  color: rgba(255,255,255,.7); border: none; background: none;
  letter-spacing: .04em; text-decoration: none;
  transition: color .2s;
}
.btn--ghost:hover { color: #fff; }

@media (max-width: 640px) {
  .hero--redesign { align-items: flex-end; padding-bottom: 60px; }
  .hero--redesign .hero__title { font-size: 2.6rem; }
  .hero--redesign .hero__actions { flex-direction: column; align-items: flex-start; }
  .hero__tagline { font-size: .88rem; }
}

/* ---------- SPLIT SECTION (Aspire-style: image + text side by side) ---------- */
.split-section { display: grid; gap: 48px; align-items: center; }
@media (min-width: 768px) { .split-section { grid-template-columns: 1fr 1fr; gap: 64px; } }
.split-section--reverse .split-section__image { order: -1; }
@media (max-width: 767px) { .split-section--reverse .split-section__image { order: 0; } }
.split-section__text p { color: var(--text-secondary); font-size: 1.05rem; line-height: 1.75; margin-bottom: 20px; }
.split-section__text .btn { margin-top: 16px; }
.split-section__image {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.split-section__image::after {
  content: ''; position: absolute; inset: 0;
  border-radius: var(--radius-lg);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.1);
  pointer-events: none;
}
.split-section__image img { width: 100%; height: auto; display: block; transition: transform .8s cubic-bezier(.25,.46,.45,.94); }
.split-section__image:hover img { transform: scale(1.05); }

/* ---------- WELCOME SECTION ---------- */
.welcome-section { padding: 120px 0; }
.welcome { display: grid; gap: 64px; align-items: center; }
@media (min-width: 768px) { .welcome { grid-template-columns: 1fr 1fr; gap: 80px; } }
.welcome__text .section__title { margin-bottom: 20px; }
.welcome__lead {
  font-size: 1.15rem; color: var(--text); line-height: 1.75; margin-bottom: 16px; font-weight: 500;
}
.welcome__text > p { color: var(--text-secondary); font-size: 1rem; line-height: 1.75; margin-bottom: 28px; }
.welcome__features { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 32px; }
@media (max-width: 480px) { .welcome__features { grid-template-columns: 1fr; } }
.welcome__feature {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px; border-radius: var(--radius-md);
  background: var(--surface); border: 1px solid var(--border);
  transition: var(--transition);
}
.welcome__feature:hover { border-color: var(--pink); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.welcome__feature-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: var(--gradient); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: #fff; padding: 7px;
}
.welcome__feature-icon svg { width: 100%; height: 100%; }
.welcome__feature strong { display: block; font-size: .88rem; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.welcome__feature span { font-size: .78rem; color: var(--muted); line-height: 1.4; }

.welcome__media { position: relative; }
.welcome__image-stack { position: relative; }
.welcome__img-main {
  width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-xl);
  position: relative; z-index: 2;
}
.welcome__img-accent {
  position: absolute; bottom: -30px; right: -20px; width: 45%; border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg); border: 4px solid var(--white); z-index: 3;
}
@media (max-width: 767px) { .welcome__img-accent { bottom: -20px; right: -10px; width: 40%; } }
.welcome__img-badge {
  position: absolute; top: -16px; left: -16px; z-index: 4;
  background: var(--gradient); color: #fff; border-radius: var(--radius-md);
  padding: 16px 20px; text-align: center;
  box-shadow: var(--shadow-neon);
}
.welcome__img-badge-number {
  display: block; font-family: var(--font-heading); font-size: 2.2rem; font-weight: 800; line-height: 1;
}
.welcome__img-badge-label {
  display: block; font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; margin-top: 4px; opacity: .9;
}
/* Decorative shape behind image stack */
.welcome__image-stack::before {
  content: ''; position: absolute; top: -20px; right: -20px; width: 60%; height: 60%;
  background: var(--gradient); border-radius: var(--radius-lg); opacity: .08; z-index: 0;
}

/* ---------- STATS — dark immersive section ---------- */
.stats-dark {
  position: relative; padding: 120px 0; overflow: hidden;
  background: var(--ink); color: #fff;
}
.stats-dark__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 50% at 20% 50%, rgba(255,42,161,.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 80% 50%, rgba(123,63,228,.12) 0%, transparent 60%),
    radial-gradient(ellipse 80% 40% at 50% 0%, rgba(255,42,161,.06) 0%, transparent 50%);
}
.stats-cards {
  display: grid; grid-template-columns: 1fr; gap: 24px; max-width: 1000px; margin: 0 auto;
}
@media (min-width: 640px) { .stats-cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .stats-cards { grid-template-columns: repeat(4, 1fr); } }
.stat-card {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg); padding: 32px 24px; text-align: center;
  backdrop-filter: blur(12px); transition: var(--transition);
  position: relative; overflow: hidden;
}
.stat-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gradient); opacity: 0; transition: opacity .3s ease;
}
.stat-card:hover {
  background: rgba(255,255,255,.08); border-color: rgba(255,42,161,.3);
  transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,.3), 0 0 30px rgba(255,42,161,.1);
}
.stat-card:hover::before { opacity: 1; }
.stat-card__icon {
  width: 44px; height: 44px; margin: 0 auto 20px;
  color: var(--pink-light); opacity: .7;
}
.stat-card__icon svg { width: 100%; height: 100%; }
.stat-card__number {
  font-family: var(--font-heading); font-size: clamp(3rem, 6vw, 4rem); font-weight: 800;
  background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; line-height: 1; display: inline;
}
.stat-card__plus {
  font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 2.5rem); font-weight: 700;
  background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-card__label {
  display: block; font-size: .82rem; font-weight: 700; color: #e2e8f0;
  margin-top: 10px; text-transform: uppercase; letter-spacing: .08em;
}
.stat-card__desc {
  margin-top: 8px; font-size: .78rem; color: #64748b; line-height: 1.4;
}

/* ---------- STATS ROW (fallback for other pages) ---------- */
.stats-section { padding: 100px 0; }
.stats-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; max-width: 800px; margin: 0 auto; }
@media (min-width: 640px) { .stats-row { grid-template-columns: repeat(4, 1fr); } }
.stats-row__item { text-align: center; position: relative; }
.stats-row__item::after {
  content: ''; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  width: 1px; height: 40px; background: var(--border); opacity: .5;
}
.stats-row__item:last-child::after { display: none; }
.stats-row__number {
  font-family: var(--font-heading); font-size: clamp(2.8rem, 5vw, 4rem); font-weight: 800;
  background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; line-height: 1;
}
.stats-row__plus {
  font-family: var(--font-heading); font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 700;
  background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stats-row__label {
  display: block; font-size: .85rem; font-weight: 600; color: var(--muted);
  margin-top: 10px; text-transform: uppercase; letter-spacing: .1em;
}

/* ---------- PHOTO CAROUSEL (Aspire-style auto-scroll) ---------- */
.photo-carousel-section { padding-bottom: 80px; overflow: hidden; }
.photo-carousel { overflow: hidden; width: 100%; padding: 0; }
.photo-carousel__track { display: flex; gap: 20px; animation: photoScroll 35s linear infinite; width: max-content; }
.photo-carousel__track:hover { animation-play-state: paused; }
.photo-carousel__slide {
  flex-shrink: 0; width: 360px; height: 250px; border-radius: var(--radius-lg);
  overflow: hidden; position: relative;
  box-shadow: var(--shadow-md);
  transition: transform .4s ease, box-shadow .4s ease;
}
.photo-carousel__slide:hover { transform: translateY(-8px) scale(1.02); box-shadow: var(--shadow-xl); }
.photo-carousel__slide img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.photo-carousel__slide:hover img { transform: scale(1.1); }
@keyframes photoScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@media (max-width: 640px) { .photo-carousel__slide { width: 280px; height: 200px; } }

/* ---------- HERO DIAGONAL SLASH ---------- */
.hero-slash {
  background: #000;
  line-height: 0;
  margin-top: -2px;
}
.hero-slash svg { width: 100%; height: 72px; display: block; }

/* ---------- STATS BAR ---------- */
.stats-bar {
  background: #000;
  padding: 0 0 60px;
}
.stats-bar__card {
  background: #fff;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 32px 40px;
  gap: 0;
}
.stats-bar__item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.stats-bar__icon {
  width: 40px; height: 40px;
  color: var(--pink);
  flex-shrink: 0;
}
.stats-bar__icon svg { width: 100%; height: 100%; }
.stats-bar__text { display: flex; flex-direction: column; }
.stats-bar__num {
  font-family: var(--font-heading);
  font-size: 1.5rem; font-weight: 800;
  color: #0f172a; line-height: 1;
  letter-spacing: -.02em;
}
.stats-bar__label {
  font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em;
  color: #64748b; margin-top: 3px;
}
.stats-bar__divider {
  width: 1px; height: 48px;
  background: #e2e8f0;
  flex-shrink: 0;
}
@media (max-width: 700px) {
  .stats-bar__card { flex-wrap: wrap; gap: 28px; justify-content: center; }
  .stats-bar__divider { display: none; }
}

/* ---------- PROGRAMS SECTION ---------- */
.ql-section {
  background: #000;
  padding: 0;
}
.ql-big-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 4.5rem);
  font-weight: 700;
  color: #fff;
  text-align: center;
  letter-spacing: .04em;
  text-transform: uppercase;
  line-height: 1;
  padding: 64px 0 48px;
}
.ql-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .ql-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .ql-grid { grid-template-columns: 1fr 1fr; gap: 12px; } }
.ql-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #fff;
  gap: 16px;
}
.ql-card__img-wrap {
  width: 100%;
  aspect-ratio: 2/3.8;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
}
.ql-card__img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 42%, rgba(0,0,0,.65) 68%, #000 88%);
  z-index: 1;
}
.ql-card__white {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.15);
  opacity: 0;
  transition: opacity .3s ease;
  z-index: 2;
}
.ql-card:hover .ql-card__white { opacity: 1; }
.ql-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.25,.46,.45,.94);
}
.ql-card:hover .ql-card__img { transform: scale(1.06); }
.ql-card__label {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  line-height: 1.2;
}
.ql-cta {
  background: var(--pink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding: 32px 60px;
  margin-top: 64px;
}
.ql-cta__text {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.01em;
  text-transform: uppercase;
}
.ql-cta__text em {
  font-style: italic;
  font-family: Georgia, serif;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}
.ql-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid #fff;
  color: #fff;
  padding: 14px 32px;
  border-radius: 100px;
  font-size: .85rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: background .25s, color .25s;
}
.ql-cta__btn:hover { background: #fff; color: var(--pink); }
@media (max-width: 640px) { .ql-cta { padding: 28px 24px; justify-content: center; text-align: center; } }

/* Inline tag above program grid */
.ql-inline-tag {
  display: block;
  font-size: .72rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--pink); margin-bottom: 24px;
  padding-top: 60px;
}

/* ---------- BUILT ON PURPOSE SECTION ---------- */
.purpose-section {
  background: #0d0d14;
  padding: 100px 0 110px;
}
.purpose-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 80px;
  align-items: start;
}
.purpose-tag {
  display: block;
  font-size: .72rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--pink); margin-bottom: 16px;
}
.purpose-heading {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 700; color: #fff;
  text-transform: uppercase;
  letter-spacing: .02em; line-height: 1;
  margin-bottom: 4px;
}
.purpose-script {
  display: block;
  font-family: 'Dancing Script', cursive;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--pink);
  margin-bottom: 8px;
}
.purpose-rule {
  width: 55px; height: 3px;
  background: var(--pink);
  margin-bottom: 28px;
}
.purpose-body {
  font-size: .95rem; color: #94a3b8;
  line-height: 1.75; margin-bottom: 36px;
}
.purpose-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.purpose-feature__icon {
  width: 42px; height: 42px;
  color: var(--pink); margin-bottom: 14px;
}
.purpose-feature__icon svg { width: 100%; height: 100%; }
.purpose-feature__title {
  font-family: var(--font-heading);
  font-size: 1.15rem; color: #fff;
  text-transform: uppercase;
  letter-spacing: .07em; margin-bottom: 8px;
}
.purpose-feature__desc {
  font-size: .82rem; color: #94a3b8;
  line-height: 1.6; margin-bottom: 18px;
}
.purpose-feature__photo {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3/4;
}
.purpose-feature__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.purpose-feature:hover .purpose-feature__photo img { transform: scale(1.05); }
@media (max-width: 1024px) {
  .purpose-layout { grid-template-columns: 1fr; gap: 48px; }
  .purpose-features { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .purpose-features { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}

/* ---------- PROGRAM PHOTO CARDS (HVVC original-style: photo bg + gradient overlay) ---------- */
.program-photo-grid { display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .program-photo-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .program-photo-grid { grid-template-columns: repeat(4, 1fr); } }

.program-photo-card {
  position: relative; display: flex; flex-direction: column; justify-content: flex-end;
  min-height: 380px; border-radius: var(--radius-lg); overflow: hidden; color: #fff;
  transition: transform .5s cubic-bezier(.25,.46,.45,.94), box-shadow .5s ease;
  background-size: cover; background-position: center;
}
.program-photo-card:hover { transform: translateY(-12px); box-shadow: var(--shadow-neon); }
.program-photo-card__bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s cubic-bezier(.25,.46,.45,.94);
}
.program-photo-card:hover .program-photo-card__bg { transform: scale(1.1); }
.program-photo-card__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(15,23,42,.9) 0%, rgba(15,23,42,.3) 40%, rgba(15,23,42,.05) 100%);
  transition: background .4s ease;
}
.program-photo-card:hover .program-photo-card__overlay {
  background: linear-gradient(to top, rgba(255,42,161,.4) 0%, rgba(15,23,42,.4) 40%, rgba(15,23,42,.1) 100%);
}
.program-photo-card__content { position: relative; z-index: 2; padding: 32px; }
.program-photo-card__content h3 { font-family: var(--font-heading); font-size: 1.35rem; font-weight: 700; margin-bottom: 8px; }
.program-photo-card__content p { font-size: .88rem; color: #cbd5e1; line-height: 1.55; margin-bottom: 14px; }
.program-photo-card__link { font-size: .85rem; font-weight: 600; color: var(--pink-light); letter-spacing: .02em; transition: color .3s ease; }
.program-photo-card:hover .program-photo-card__link { color: #fff; }

/* ---------- QUICK LINKS GRID (photo cards) ---------- */
.quick-links-grid { display: grid; gap: 20px; grid-template-columns: 1fr 1fr; }
@media (min-width: 768px) { .quick-links-grid { grid-template-columns: repeat(4, 1fr); } }
.quick-link-card {
  position: relative; display: flex; align-items: flex-end; min-height: 240px;
  border-radius: var(--radius-lg); overflow: hidden; color: #fff;
  transition: transform .5s cubic-bezier(.25,.46,.45,.94), box-shadow .4s ease;
}
.quick-link-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-neon); }
.quick-link-card__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.25,.46,.45,.94); }
.quick-link-card:hover .quick-link-card__bg { transform: scale(1.12); }
.quick-link-card__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,23,42,.85) 0%, rgba(15,23,42,.15) 60%); z-index: 1; transition: background .4s ease; }
.quick-link-card:hover .quick-link-card__overlay { background: linear-gradient(to top, rgba(255,42,161,.4) 0%, rgba(15,23,42,.2) 60%); }
.quick-link-card__content { position: relative; z-index: 2; padding: 24px; display: flex; align-items: center; justify-content: space-between; width: 100%; }
.quick-link-card__content h3 { font-family: var(--font-heading); font-size: 1.05rem; font-weight: 700; }
.quick-link-card__content span { font-size: 1.4rem; color: var(--pink-light); transition: transform .3s ease; }
.quick-link-card:hover .quick-link-card__content span { transform: translateX(8px); }

/* ---------- TEAM PHOTO CARD ---------- */
.team-card__photo { width: 100%; aspect-ratio: 16 / 10; border-radius: var(--radius-md); overflow: hidden; margin-bottom: 16px; }
.team-card__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.25,.46,.45,.94); }
.team-card:hover .team-card__photo img { transform: scale(1.06); }

/* ---------- FULL-BLEED PHOTO ---------- */
.full-bleed-photo { width: 100%; max-height: 500px; overflow: hidden; position: relative; }
.full-bleed-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.full-bleed-photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(255,42,161,.05) 0%, transparent 30%, transparent 70%, rgba(123,63,228,.05) 100%);
  pointer-events: none;
}

/* ---------- STAFF GROUP PHOTO ---------- */
.staff-photo { max-width: 900px; margin: 0 auto; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.staff-photo img { width: 100%; height: auto; display: block; }

/* ---------- COACH PHOTO ---------- */
.coach-card__photo { width: 80px; height: 80px; flex-shrink: 0; border-radius: var(--radius-md); overflow: hidden; }
.coach-card__photo--lg { width: 140px; height: 140px; border-radius: var(--radius-lg); }
.coach-card__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.coach-card--large .coach-card__photo { margin-bottom: 8px; }

/* ---------- MARQUEE ---------- */
.marquee {
  padding: 18px 0; background: var(--gradient); overflow: hidden; white-space: nowrap;
  position: relative;
}
.marquee::before, .marquee::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2;
}
.marquee::before { left: 0; background: linear-gradient(to right, rgba(255,42,161,1), transparent); }
.marquee::after { right: 0; background: linear-gradient(to left, rgba(123,63,228,1), transparent); }
.marquee--reverse .marquee__track { animation-direction: reverse; }
.marquee--reverse::before { background: linear-gradient(to right, rgba(123,63,228,1), transparent); }
.marquee--reverse::after { background: linear-gradient(to left, rgba(255,42,161,1), transparent); }
.marquee__track { display: inline-flex; animation: marquee 25s linear infinite; }
.marquee__track span {
  font-family: var(--font-heading); font-size: .9rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase; color: #fff; padding: 0 8px;
}

/* ---------- HERO WHITE FOG TRANSITION ---------- */
.hero-fog {
  height: 240px;
  position: relative;
  z-index: 2;
  background: linear-gradient(to bottom, #000 0%, #000 20%, #fff 100%);
  pointer-events: none;
}

/* ---------- VOLLEYBALL NET DRAPE ---------- */
.net-drape {
  position: relative;
  height: 200px;
  background-color: #0a0a0f;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 28px,
      rgba(255,255,255,0.07) 28px,
      rgba(255,255,255,0.07) 30px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 46px,
      rgba(255,255,255,0.07) 46px,
      rgba(255,255,255,0.07) 48px
    );
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
  mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
  pointer-events: none;
  margin-bottom: -60px;
  z-index: 1;
}

/* ---------- SECTIONS ---------- */
.section { padding: 120px 0; position: relative; }
.section--alt { background: var(--surface); }
.section--gradient { background: linear-gradient(135deg, rgba(255,42,161,.30) 0%, rgba(255,42,161,.20) 100%); }
.section--dark {
  background: var(--ink); color: #fff;
  --text: #e2e8f0; --muted: #94a3b8; --card-bg: rgba(255,255,255,.04);
  --card-border: rgba(255,255,255,.08); --border: rgba(255,255,255,.08);
}
.section__header { text-align: center; margin-bottom: 72px; }

.section__tag {
  display: inline-block; padding: 8px 20px;
  background: linear-gradient(135deg, rgba(255,42,161,.12) 0%, rgba(123,63,228,.12) 100%);
  border: 1px solid rgba(255,42,161,.25); border-radius: var(--radius-full);
  font-family: var(--font-mono); font-size: .75rem; font-weight: 700; color: var(--pink); letter-spacing: .1em;
  text-transform: uppercase; margin-bottom: 20px;
}
.section__tag--light { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.2); color: #fff; backdrop-filter: blur(8px); }

.section__title {
  font-family: var(--font-heading); font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 800;
  letter-spacing: -.03em; line-height: 1.1; margin-bottom: 18px; color: var(--text);
}
.section__subtitle { font-size: 1.1rem; color: var(--muted); max-width: 580px; margin: 0 auto; line-height: 1.7; }
.section__footer { text-align: center; margin-top: 48px; }

/* ---------- ABOUT ---------- */
.about__grid { display: grid; gap: 48px; }
@media (min-width: 768px) { .about__grid { grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; } }
.about__text p { color: var(--text-secondary); margin-bottom: 20px; font-size: 1.05rem; line-height: 1.75; }
.about__text p:first-child { color: var(--text); font-size: 1.15rem; }

.about__photo { margin-top: 24px; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-md); }
.about__photo img { width: 100%; height: auto; display: block; }
.about__banner { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); max-width: 900px; margin: 0 auto; }
.about__banner img { width: 100%; height: auto; display: block; }

.about__values { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.value-card {
  padding: 28px; background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: var(--radius-lg); transition: var(--transition); cursor: default;
  position: relative; overflow: hidden;
}
.value-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gradient); opacity: 0; transition: opacity .3s ease;
}
.value-card:hover { border-color: var(--pink); transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.value-card:hover::before { opacity: 1; }
.value-card__icon { width: 44px; height: 44px; margin-bottom: 16px; color: var(--pink); }
.value-card__icon svg { width: 100%; height: 100%; }
.value-card h3 { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.value-card p { font-size: .82rem; color: var(--muted); line-height: 1.55; }

.home-intro { max-width: 700px; margin: 0 auto; text-align: center; }
.home-intro p { font-size: 1.1rem; color: var(--text-secondary); line-height: 1.75; margin-bottom: 28px; }

/* ---------- PREVIEW GRID ---------- */
.preview-grid { display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .preview-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .preview-grid { grid-template-columns: repeat(4, 1fr); } }

.preview-card { display: flex; flex-direction: column; padding: 28px; background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--radius-md); transition: var(--transition); }
.preview-card:hover { transform: translateY(-6px); border-color: var(--pink); box-shadow: var(--shadow-lg); }
.preview-card__icon { width: 40px; height: 40px; color: var(--pink); margin-bottom: 16px; }
.preview-card__icon svg { width: 100%; height: 100%; }
.preview-card h3 { font-family: var(--font-heading); font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.preview-card p { font-size: .85rem; color: var(--muted); line-height: 1.55; }

/* ---------- EXPECT ---------- */
.expect { padding: 100px 0; background: var(--surface); }
.expect__grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 640px) { .expect__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .expect__grid { grid-template-columns: repeat(4, 1fr); } }

.expect__item {
  padding: 32px; border-radius: var(--radius-lg); background: var(--card-bg);
  border: 1px solid var(--card-border); transition: var(--transition);
  position: relative; overflow: hidden;
}
.expect__item::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gradient); transform: scaleX(0); transform-origin: left;
  transition: transform .4s ease;
}
.expect__item:hover::before { transform: scaleX(1); }
.expect__item:hover { border-color: var(--pink); box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.expect__number {
  font-family: var(--font-heading); font-size: 2.4rem; font-weight: 800;
  background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; margin-bottom: 14px; line-height: 1;
}
.expect__item h3 { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.expect__item p { font-size: .9rem; color: var(--muted); line-height: 1.65; }

/* ---------- PROGRAMS ---------- */
.programs__grid { display: grid; gap: 24px; }
@media (min-width: 640px) { .programs__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .programs__grid { grid-template-columns: repeat(4, 1fr); } }
.programs__grid--3col { grid-template-columns: 1fr; }
@media (min-width: 768px) { .programs__grid--3col { grid-template-columns: repeat(3, 1fr); } }

.program-card {
  position: relative; padding: 36px 28px; background: var(--card-bg);
  border: 1px solid var(--card-border); border-radius: var(--radius-lg);
  display: flex; flex-direction: column; transition: var(--transition);
}
.program-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--pink); }
.program-card--featured { border-color: var(--pink); background: var(--gradient-bg); }
.program-card__badge {
  position: absolute; top: -12px; right: 20px; padding: 6px 16px;
  background: var(--gradient); border-radius: var(--radius-full);
  font-size: .7rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: #fff; box-shadow: var(--shadow-pink);
}
.program-card__icon { width: 48px; height: 48px; color: var(--pink); margin-bottom: 20px; }
.program-card__icon svg { width: 100%; height: 100%; }
.program-card__title { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700; margin-bottom: 12px; color: var(--text); }
.program-card__desc { font-size: .88rem; color: var(--muted); line-height: 1.65; margin-bottom: 20px; }
.program-card__features { list-style: none; padding: 0; margin: 0 0 24px; flex: 1; }
.program-card__features li {
  padding: 8px 0; font-size: .85rem; color: var(--muted);
  border-bottom: 1px solid var(--border-light); display: flex; align-items: center; gap: 10px;
}
.program-card__features li::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: var(--gradient); flex-shrink: 0;
  box-shadow: 0 0 6px rgba(255,42,161,.3);
}
.program-card__features li:last-child { border-bottom: none; }
.program-card .btn { margin-top: auto; }

/* ---------- QUICK LINKS ---------- */
.quick-links { display: grid; gap: 12px; }
.quick-link { display: flex; align-items: center; justify-content: space-between; padding: 20px 28px; background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--radius-md); transition: var(--transition); }
.quick-link:hover { border-color: var(--pink); box-shadow: var(--shadow-md); transform: translateX(4px); }
.quick-link__label { font-family: var(--font-heading); font-weight: 600; font-size: 1rem; color: var(--text); }
.quick-link__arrow { font-size: 1.4rem; color: var(--pink); transition: transform .3s ease; }
.quick-link:hover .quick-link__arrow { transform: translateX(6px); }

/* ---------- TEAMS ---------- */
.teams__grid { display: grid; gap: 24px; grid-template-columns: 1fr; }
@media (min-width: 480px) { .teams__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px) { .teams__grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .teams__grid { grid-template-columns: repeat(4, 1fr); } }
.teams__grid--2col { grid-template-columns: 1fr; }
@media (min-width: 768px) { .teams__grid--2col { grid-template-columns: repeat(2, 1fr); } }
.teams__grid--1col { grid-template-columns: 1fr; max-width: 700px; margin: 0 auto; }

.team-card {
  position: relative; padding: 28px; background: var(--card-bg);
  border: 1px solid var(--card-border); border-radius: var(--radius-lg);
  transition: var(--transition); overflow: hidden;
}
.team-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gradient); opacity: 0; transition: opacity .3s ease;
}
.team-card:hover { transform: translateY(-6px); border-color: var(--pink); box-shadow: var(--shadow-lg); }
.team-card:hover::before { opacity: 1; }
.team-card__age {
  display: inline-block; padding: 4px 14px; background: var(--gradient);
  border-radius: var(--radius-full); font-family: var(--font-heading);
  font-size: .75rem; font-weight: 700; letter-spacing: .05em; margin-bottom: 14px;
  color: #fff; box-shadow: 0 2px 8px rgba(255,42,161,.2);
}
.team-card__name { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700; margin-bottom: 14px; color: var(--text); }
.team-card__coaches { font-size: .85rem; color: var(--muted); margin-bottom: 6px; }
.team-card__role { display: inline-block; font-size: .7rem; font-weight: 700; color: var(--pink); text-transform: uppercase; letter-spacing: .06em; margin-right: 6px; }
.team-card__badge {
  display: inline-block; margin-top: 10px; padding: 4px 12px; font-size: .7rem; font-weight: 600;
  border: 1px solid rgba(255,42,161,.3); color: var(--pink); border-radius: var(--radius-full);
  text-transform: uppercase; letter-spacing: .06em;
}
.team-card--dev { border-style: dashed; border-color: rgba(255,42,161,.3); }
.team-card--full { padding: 32px; }
.team-card--full .team-card__header { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; flex-wrap: wrap; }
.team-card--full .team-card__age { margin-bottom: 0; }
.team-card--full .team-card__name { margin-bottom: 0; }
.team-card--full .team-card__body { margin-bottom: 14px; }
.team-card__desc { font-size: .88rem; color: var(--muted); line-height: 1.6; margin-bottom: 16px; }

/* ---------- COACHES ---------- */
.coaches__grid { display: grid; gap: 20px; }
@media (min-width: 640px) { .coaches__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .coaches__grid { grid-template-columns: repeat(3, 1fr); } }
.coaches__grid--featured { grid-template-columns: 1fr; }
@media (min-width: 768px) { .coaches__grid--featured { grid-template-columns: repeat(2, 1fr); } }

.coach-card {
  display: flex; gap: 18px; padding: 28px; background: var(--card-bg);
  border: 1px solid var(--card-border); border-radius: var(--radius-lg);
  transition: var(--transition); position: relative; overflow: hidden;
}
.coach-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--gradient); transform: scaleX(0); transform-origin: left; transition: transform .4s ease;
}
.coach-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--pink); }
.coach-card:hover::before { transform: scaleX(1); }
.coach-card--large { flex-direction: column; align-items: center; text-align: center; padding: 40px; }
.coach-card--large .coach-card__info { display: flex; flex-direction: column; align-items: center; }
.coach-card__avatar {
  width: 56px; height: 56px; flex-shrink: 0; background: var(--gradient);
  border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 700; font-size: .9rem; color: #fff;
  box-shadow: 0 4px 12px rgba(255,42,161,.2);
}
.coach-card__avatar--lg { width: 76px; height: 76px; font-size: 1.2rem; border-radius: var(--radius-md); }
.coach-card__info h3 { font-family: var(--font-heading); font-size: 1.05rem; font-weight: 700; margin-bottom: 2px; color: var(--text); }
.coach-card__title { display: block; font-size: .78rem; font-weight: 700; color: var(--pink); margin-bottom: 10px; text-transform: uppercase; letter-spacing: .05em; }
.coach-card__info p { font-size: .84rem; color: var(--muted); line-height: 1.6; }
.coach-card__email { display: inline-block; margin-top: 14px; font-size: .84rem; font-weight: 600; color: var(--pink); transition: var(--transition); }
.coach-card__email:hover { opacity: .7; transform: translateX(4px); }

/* ---------- INVESTMENT ---------- */
.investment__grid { display: grid; gap: 24px; margin-bottom: 48px; }
@media (min-width: 768px) { .investment__grid { grid-template-columns: repeat(3, 1fr); } }

.invest-card {
  padding: 36px; background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: var(--radius-lg); transition: var(--transition);
  position: relative; overflow: hidden;
}
.invest-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gradient); opacity: 0; transition: opacity .3s ease;
}
.invest-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--pink); }
.invest-card:hover::before { opacity: 1; }
.invest-card--highlight { background: var(--gradient-bg); border-color: var(--pink); }
.invest-card--highlight::before { opacity: 1; }
.invest-card h3 { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700; margin-bottom: 20px; color: var(--text); }
.invest-card ul { list-style: none; padding: 0; }
.invest-card li {
  padding: 10px 0; font-size: .9rem; color: var(--muted);
  border-bottom: 1px solid var(--border-light); display: flex; align-items: center; gap: 10px;
}
.invest-card li::before {
  content: '\2713'; font-weight: 700; font-size: .75rem; color: var(--pink); flex-shrink: 0;
  width: 22px; height: 22px; display: flex; align-items: center; justify-content: center;
  background: rgba(255,42,161,.08); border-radius: 50%;
}
.invest-card li:last-child { border-bottom: none; }
.invest-card__note { margin-top: 16px; padding: 14px 18px; background: var(--surface); border-radius: var(--radius-sm); font-size: .84rem; color: var(--muted); line-height: 1.55; border-left: 3px solid var(--purple); }

.scholarship { display: flex; align-items: center; gap: 32px; padding: 40px; background: var(--gradient-bg); border: 1px solid rgba(123,63,228,.15); border-radius: var(--radius-lg); flex-wrap: wrap; }
.scholarship__content { flex: 1; min-width: 280px; }
.scholarship__content h3 { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.scholarship__content p { font-size: .92rem; color: var(--muted); line-height: 1.6; }
.scholarship__content strong { color: var(--text); }
.scholarship-grid { display: grid; gap: 24px; }
@media (min-width: 768px) { .scholarship-grid { grid-template-columns: repeat(3, 1fr); } }

/* ---------- TRYOUTS CTA ---------- */
.tryouts {
  position: relative; padding: 140px 0; overflow: hidden;
  background: var(--ink); color: #fff;
}
.tryouts__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 50%, rgba(255,42,161,.2) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 30% 30%, rgba(123,63,228,.15) 0%, transparent 50%),
    radial-gradient(ellipse 40% 30% at 70% 70%, rgba(255,42,161,.1) 0%, transparent 50%);
  animation: bgPulse 8s ease infinite alternate;
}
@keyframes bgPulse {
  0% { opacity: .7; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.05); }
}
.tryouts__content { position: relative; z-index: 1; text-align: center; max-width: 750px; margin: 0 auto; }
.tryouts__title {
  font-family: var(--font-heading); font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 800;
  letter-spacing: -.03em; line-height: 1.1; margin-bottom: 24px; color: #fff;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.tryouts__text { font-size: 1.1rem; color: #94a3b8; line-height: 1.7; margin-bottom: 40px; }
.tryouts__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.tryouts .btn--outline { color: #fff; border-color: rgba(255,255,255,.25); backdrop-filter: blur(8px); }
.tryouts .btn--outline:hover { border-color: var(--pink); color: var(--pink); background: rgba(255,42,161,.08); }

/* ---------- COUNTDOWN ---------- */
.countdown { display: flex; gap: 20px; justify-content: center; margin-bottom: 40px; }
.countdown__unit {
  text-align: center; min-width: 80px; padding: 16px;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-md); backdrop-filter: blur(8px);
}
.countdown__number {
  display: block; font-family: var(--font-heading); font-size: 2.6rem; font-weight: 800;
  background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; line-height: 1;
}
.countdown__label { font-size: .68rem; color: #64748b; text-transform: uppercase; letter-spacing: .1em; margin-top: 6px; display: block; }

/* ---------- UPDATES ---------- */
.updates__grid { display: grid; gap: 24px; }
@media (min-width: 768px) { .updates__grid { grid-template-columns: repeat(3, 1fr); } }
.update-card {
  padding: 36px; background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: var(--radius-lg); text-align: center; transition: var(--transition);
}
.update-card:hover { transform: translateY(-6px); border-color: var(--pink); box-shadow: var(--shadow-lg); }
.update-card__icon { width: 52px; height: 52px; margin: 0 auto 20px; color: var(--pink); }
.update-card__icon svg { width: 100%; height: 100%; }
.update-card h3 { font-family: var(--font-heading); font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.update-card p { font-size: .9rem; color: var(--muted); line-height: 1.65; }

/* ---------- CONTACT ---------- */
.contact__grid { display: grid; gap: 64px; }
@media (min-width: 768px) { .contact__grid { grid-template-columns: 1fr 1fr; align-items: start; } }
.contact__info .section__title { text-align: left; }
.contact__info > p { color: var(--muted); font-size: 1.05rem; line-height: 1.7; margin-bottom: 32px; }
.contact__details { display: flex; flex-direction: column; gap: 24px; margin-bottom: 32px; }
.contact__item { display: flex; align-items: flex-start; gap: 16px; }
.contact__item svg { width: 24px; height: 24px; color: var(--pink); flex-shrink: 0; margin-top: 2px; }
.contact__item span { display: block; font-size: .72rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 3px; }
.contact__item a { color: var(--text); font-size: .95rem; transition: color .2s ease; }
.contact__item a:hover { color: var(--pink); }
.contact__item p { color: var(--text); font-size: .95rem; margin: 0; }
.contact__mailing {
  padding: 24px; background: var(--surface); border-radius: var(--radius-md);
  font-size: .88rem; color: var(--muted); line-height: 1.6;
  border-left: 3px solid var(--pink);
}
.contact__mailing strong { color: var(--text); }

.contact__form-wrap {
  padding: 40px; background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
}
.form-group { margin-bottom: 22px; }
.form-group label { display: block; font-size: .82rem; font-weight: 600; color: var(--muted); margin-bottom: 8px; text-transform: uppercase; letter-spacing: .05em; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 14px 18px; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius-md);
  color: var(--text); font-family: var(--font-body); font-size: .92rem;
  outline: none; transition: var(--transition);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--muted); opacity: .5; }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2394a3b8' fill='none' stroke-width='1.5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--pink); box-shadow: 0 0 0 4px rgba(255,42,161,.08); }
.form-group textarea { resize: vertical; min-height: 100px; }

/* ---------- FAQ ACCORDION ---------- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--card-border); border-radius: var(--radius-lg);
  margin-bottom: 14px; overflow: hidden; background: var(--card-bg);
  transition: var(--transition);
}
.faq-item:hover { border-color: rgba(255,42,161,.3); }
.faq-item.open { border-color: var(--pink); box-shadow: var(--shadow-md); }
.faq-question {
  display: flex; align-items: center; justify-content: space-between; padding: 22px 28px;
  background: none; border: none; width: 100%; cursor: pointer;
  font-family: var(--font-heading); font-size: 1.05rem; font-weight: 600;
  color: var(--text); text-align: left; gap: 16px;
}
.faq-question__icon { width: 24px; height: 24px; flex-shrink: 0; transition: transform .3s ease; color: var(--pink); }
.faq-item.open .faq-question__icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .4s ease; padding: 0 28px; }
.faq-item.open .faq-answer { max-height: 300px; padding: 0 28px 24px; }
.faq-answer p { font-size: .92rem; color: var(--muted); line-height: 1.7; }

/* ---------- TESTIMONIALS ---------- */
.testimonial-carousel { position: relative; max-width: 750px; margin: 0 auto; overflow: hidden; }
.testimonial-track { display: flex; transition: transform .6s cubic-bezier(.25,.46,.45,.94); }
.testimonial-slide { flex: 0 0 100%; padding: 0 20px; text-align: center; }
.testimonial-slide blockquote {
  font-size: 1.25rem; color: var(--text); line-height: 1.75; font-style: italic;
  margin-bottom: 24px; position: relative;
}
.testimonial-slide blockquote::before {
  content: '\201C'; position: absolute; top: -20px; left: 50%; transform: translateX(-50%);
  font-size: 4rem; line-height: 1; color: var(--pink); opacity: .2;
  font-family: Georgia, serif; font-style: normal;
}
.testimonial-slide cite { font-size: .9rem; color: var(--pink); font-weight: 600; font-style: normal; }
.testimonial-dots { display: flex; gap: 10px; justify-content: center; margin-top: 28px; }
.testimonial-dot {
  width: 10px; height: 10px; border-radius: 50%; background: var(--border);
  border: none; cursor: pointer; transition: var(--transition);
}
.testimonial-dot.active { background: var(--gradient); width: 32px; border-radius: var(--radius-full); box-shadow: 0 0 8px rgba(255,42,161,.3); }

/* ---------- AGE GRID ---------- */
.age-grid { display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .age-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .age-grid { grid-template-columns: repeat(4, 1fr); } }
.age-card {
  padding: 36px; background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: var(--radius-lg); text-align: center; transition: var(--transition);
  position: relative; overflow: hidden;
}
.age-card::before {
  content: ''; position: absolute; inset: 0;
  background: var(--gradient); opacity: 0; transition: opacity .4s ease;
}
.age-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.age-card:hover::before { opacity: .03; }
.age-card:hover { border-color: var(--pink); }
.age-card__age {
  display: inline-block; font-family: var(--font-heading); font-size: 2.6rem; font-weight: 800;
  background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; margin-bottom: 14px; line-height: 1;
  position: relative; z-index: 1;
}
.age-card h3 { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; color: var(--text); position: relative; z-index: 1; }
.age-card p { font-size: .85rem; color: var(--muted); line-height: 1.55; position: relative; z-index: 1; }

/* ---------- UPLOAD / GALLERY ---------- */
.upload-zone {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 56px 32px; border: 2px dashed var(--border); border-radius: var(--radius-lg);
  background: var(--surface); cursor: pointer; transition: var(--transition); text-align: center;
}
.upload-zone:hover, .upload-zone--active { border-color: var(--pink); background: var(--pink-pale); }
.upload-zone__icon { width: 60px; height: 60px; color: var(--pink); margin-bottom: 16px; }
.upload-zone__icon svg { width: 100%; height: 100%; }
.upload-zone h3 { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700; margin-bottom: 6px; color: var(--text); }
.upload-zone p { font-size: .9rem; color: var(--muted); }
.upload-zone__formats { font-size: .75rem !important; color: var(--muted) !important; margin-top: 8px; }

.upload-preview { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 24px; }
.upload-preview__item { width: 180px; background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--radius-sm); overflow: hidden; }
.upload-preview__item img { width: 100%; height: 120px; object-fit: cover; }
.upload-preview__info { padding: 8px; display: flex; flex-direction: column; gap: 6px; }
.upload-preview__name, .upload-preview__cat { width: 100%; padding: 6px 8px; background: var(--surface); border: 1px solid var(--border); border-radius: 4px; color: var(--text); font-family: var(--font-body); font-size: .78rem; outline: none; }
.upload-preview__save { align-self: flex-start; margin-top: 8px; }

.gallery-filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; justify-content: center; }
.gallery-filter {
  padding: 10px 22px; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-full); color: var(--muted); font-family: var(--font-body);
  font-size: .84rem; font-weight: 500; cursor: pointer; transition: var(--transition);
}
.gallery-filter:hover { border-color: var(--pink); color: var(--text); }
.gallery-filter.active { background: var(--gradient); color: #fff; border-color: transparent; box-shadow: var(--shadow-pink); }

.gallery-grid { display: grid; gap: 16px; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
.gallery-empty { grid-column: 1 / -1; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 80px 32px; text-align: center; }
.gallery-empty__icon { width: 56px; height: 56px; color: var(--muted); margin-bottom: 16px; }
.gallery-empty__icon svg { width: 100%; height: 100%; }
.gallery-empty h3 { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.gallery-empty p { font-size: .88rem; color: var(--muted); max-width: 400px; }

.gallery-item { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--radius-md); overflow: hidden; transition: var(--transition); }
.gallery-item:hover { transform: translateY(-4px); border-color: var(--pink); box-shadow: var(--shadow-lg); }
.gallery-item__img-wrap { position: relative; aspect-ratio: 4 / 3; overflow: hidden; cursor: pointer; }
.gallery-item__img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery-item:hover .gallery-item__img-wrap img { transform: scale(1.05); }
.gallery-item__overlay { position: absolute; inset: 0; background: rgba(15,23,42,.4); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity .3s ease; }
.gallery-item:hover .gallery-item__overlay { opacity: 1; }
.gallery-item__zoom { width: 40px; height: 40px; color: #fff; }
.gallery-item__zoom svg { width: 100%; height: 100%; }
.gallery-item__info { padding: 12px 14px; display: flex; align-items: center; gap: 8px; }
.gallery-item__name { font-size: .82rem; font-weight: 600; flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: var(--text); }
.gallery-item__category { font-size: .68rem; font-weight: 600; color: var(--pink); text-transform: uppercase; letter-spacing: .04em; }
.gallery-item__delete { background: none; border: none; color: var(--muted); font-size: 1.2rem; cursor: pointer; padding: 2px 6px; border-radius: 4px; transition: var(--transition); line-height: 1; }
.gallery-item__delete:hover { color: #ef4444; background: rgba(239,68,68,.08); }

/* ---------- LIGHTBOX ---------- */
.lightbox { position: fixed; inset: 0; z-index: 2000; background: rgba(0,0,0,.95); backdrop-filter: blur(30px); display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity .3s ease; }
.lightbox.active { opacity: 1; pointer-events: auto; }
.lightbox__close { position: absolute; top: 20px; right: 24px; background: none; border: none; color: #fff; font-size: 2rem; cursor: pointer; padding: 8px; z-index: 10; }
.lightbox__close:hover { opacity: .7; }
.lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.1); color: #fff; font-size: 2.5rem; padding: 8px 16px; cursor: pointer; border-radius: var(--radius-md); transition: background .2s ease; z-index: 10; backdrop-filter: blur(8px); }
.lightbox__nav:hover { background: rgba(255,255,255,.15); }
.lightbox__prev { left: 20px; }
.lightbox__next { right: 20px; }
.lightbox__content { max-width: 90vw; max-height: 85vh; display: flex; flex-direction: column; align-items: center; }
.lightbox__content img { max-width: 100%; max-height: 80vh; object-fit: contain; border-radius: var(--radius-md); }
.lightbox__caption { margin-top: 16px; font-size: .9rem; color: #94a3b8; }

/* ---------- PAGE HERO ---------- */
.page-hero {
  position: relative; padding: calc(var(--nav-height) + 80px) 0 80px;
  overflow: hidden; background: var(--gradient-bg);
}
.page-hero__bg { position: absolute; inset: 0; background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(123,63,228,.06) 0%, transparent 60%), radial-gradient(ellipse 40% 40% at 80% 30%, rgba(255,42,161,.04) 0%, transparent 50%); z-index: 0; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero__title {
  font-family: var(--font-heading); font-size: clamp(2.4rem, 6vw, 4rem); font-weight: 800;
  letter-spacing: -.03em; line-height: 1.1; margin-bottom: 18px; color: var(--text);
}
.page-hero__subtitle { font-size: 1.15rem; color: var(--muted); max-width: 580px; line-height: 1.65; }
.page-hero--photo {
  background-size: cover; background-position: center; background-color: var(--ink);
  min-height: 400px; display: flex; align-items: flex-end;
}
.page-hero__photo-overlay {
  position: absolute; inset: 0; z-index: 0;
  background:
    linear-gradient(to bottom, rgba(15,23,42,.3) 0%, rgba(15,23,42,.75) 70%, rgba(15,23,42,.95) 100%),
    radial-gradient(ellipse 50% 30% at 50% 40%, rgba(255,42,161,.06) 0%, transparent 60%);
}

/* ---------- TOAST ---------- */
#confetti-canvas { position: fixed; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 9999; }
.toast-container { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 3000; display: flex; flex-direction: column; gap: 8px; align-items: center; }
.toast { padding: 14px 28px; background: var(--ink); color: #fff; border-radius: var(--radius-full); font-size: .88rem; font-weight: 500; box-shadow: var(--shadow-lg); animation: toastIn .4s ease, toastOut .4s ease 2.6s forwards; backdrop-filter: blur(12px); }
body.dark-mode .toast { background: #fff; color: var(--ink); }
@keyframes toastIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes toastOut { from { opacity: 1; } to { opacity: 0; transform: translateY(-10px); } }

/* ---------- FOOTER ---------- */
.footer {
  padding: 80px 0 0; color: #e2e8f0;
  position: relative; overflow: hidden;
  background:
    /* Net mesh — horizontal lines */
    repeating-linear-gradient(
      to bottom,
      transparent,
      transparent 18px,
      rgba(255,255,255,.07) 18px,
      rgba(255,255,255,.07) 19px
    ),
    /* Net mesh — vertical lines */
    repeating-linear-gradient(
      to right,
      transparent,
      transparent 28px,
      rgba(255,255,255,.05) 28px,
      rgba(255,255,255,.05) 29px
    ),
    #000;
}
/* Top cable line — thick white stripe like the top of a volleyball net */
.footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 6px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(255,255,255,.15);
}
.footer__top { display: grid; gap: 48px; padding-bottom: 48px; }
@media (min-width: 768px) { .footer__top { grid-template-columns: 1.2fr 2fr; } }
.footer__tagline { color: #94a3b8; font-size: .92rem; margin-top: 14px; line-height: 1.5; }
.footer__social { display: flex; gap: 12px; margin-top: 20px; }
.footer__social a {
  width: 42px; height: 42px; display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-sm); color: #94a3b8; transition: var(--transition);
}
.footer__social a:hover { color: #fff; border-color: rgba(255,42,161,.4); background: rgba(255,42,161,.1); transform: translateY(-2px); }
.footer__social svg { width: 18px; height: 18px; }
.footer__links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer__col h4 {
  font-family: var(--font-heading); font-size: .8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em; color: #fff; margin-bottom: 18px;
  position: relative; padding-bottom: 10px;
}
.footer__col h4::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 24px; height: 2px;
  background: var(--gradient); border-radius: 2px;
}
.footer__col a { display: block; font-size: .88rem; color: #94a3b8; padding: 5px 0; transition: var(--transition); }
.footer__col a:hover { color: var(--pink); transform: translateX(4px); }
.footer__bottom {
  padding: 28px 0; border-top: 1px solid rgba(255,255,255,.06);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
}
.footer__bottom p { font-size: .8rem; color: #475569; }

/* ---------- PULL QUOTE (big centered philosophy quote) ---------- */
.pull-quote {
  position: relative; padding: 120px 0; overflow: hidden;
  background: var(--ink); color: #fff;
}
.pull-quote__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 30% 50%, rgba(123,63,228,.15) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 70% 40%, rgba(255,42,161,.1) 0%, transparent 60%);
}
.pull-quote__inner {
  position: relative; z-index: 1; text-align: center; max-width: 800px; margin: 0 auto;
}
.pull-quote__mark {
  display: block; font-family: Georgia, 'Times New Roman', serif;
  font-size: 6rem; line-height: 1; color: var(--pink); opacity: .35;
  margin-bottom: -20px;
}
.pull-quote__text {
  font-family: var(--font-heading); font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700; line-height: 1.4; letter-spacing: -.02em;
  color: #fff; margin-bottom: 28px;
}
.pull-quote__text em {
  font-style: normal;
  background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pull-quote__source {
  font-size: .9rem; font-weight: 600; color: var(--pink-light);
  letter-spacing: .06em; text-transform: uppercase;
}
.pull-quote__divider {
  width: 60px; height: 3px; background: var(--gradient); margin: 0 auto 20px;
  border-radius: 2px; box-shadow: 0 0 12px rgba(255,42,161,.4);
}

/* ---------- WHY HVVC (numbered reasons) ---------- */
.why-section { padding: 120px 0; background: var(--surface); }
.why-grid {
  display: grid; gap: 0; max-width: 900px; margin: 0 auto;
}
.why-item {
  display: grid; grid-template-columns: 72px 1fr; gap: 24px;
  padding: 40px 0; border-bottom: 1px solid var(--border);
  align-items: start; transition: var(--transition);
}
.why-item:first-child { padding-top: 0; }
.why-item:last-child { border-bottom: none; padding-bottom: 0; }
.why-item:hover { transform: translateX(8px); }
.why-item__number {
  font-family: var(--font-heading); font-size: 2.8rem; font-weight: 800;
  background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; line-height: 1;
}
.why-item__content h3 {
  font-family: var(--font-heading); font-size: 1.25rem; font-weight: 700;
  color: var(--text); margin-bottom: 8px;
}
.why-item__content p {
  font-size: .95rem; color: var(--muted); line-height: 1.7;
}

/* ---------- FEATURED TESTIMONIAL (full-width photo bg) ---------- */
.featured-testimonial {
  position: relative; padding: 140px 0; overflow: hidden;
  background: var(--ink); color: #fff;
}
.featured-testimonial__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: .2;
}
.featured-testimonial__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(15,23,42,.95) 0%, rgba(15,23,42,.7) 50%, rgba(15,23,42,.95) 100%),
    radial-gradient(ellipse 50% 50% at 50% 50%, rgba(255,42,161,.08) 0%, transparent 60%);
}
.featured-testimonial__inner {
  position: relative; z-index: 1; text-align: center; max-width: 750px; margin: 0 auto;
}
.featured-testimonial__stars {
  display: flex; gap: 6px; justify-content: center; margin-bottom: 28px;
  color: #fbbf24;
}
.featured-testimonial__stars svg { width: 22px; height: 22px; fill: currentColor; }
.featured-testimonial blockquote {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-style: italic;
  color: #e2e8f0; line-height: 1.7; margin-bottom: 32px;
  position: relative;
}
.featured-testimonial blockquote::before {
  content: '\201C'; position: absolute; top: -40px; left: 50%; transform: translateX(-50%);
  font-size: 6rem; line-height: 1; color: var(--pink); opacity: .2;
  font-family: Georgia, serif; font-style: normal;
}
.featured-testimonial cite {
  font-size: .95rem; font-weight: 600; font-style: normal;
  color: var(--pink-light); display: block;
}
.featured-testimonial__tag {
  display: inline-block; margin-bottom: 24px; padding: 8px 20px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-full); font-size: .72rem; font-weight: 700;
  color: rgba(255,255,255,.7); letter-spacing: .12em; text-transform: uppercase;
  backdrop-filter: blur(8px);
}

/* ---------- ANIMATIONS ---------- */
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes scrollPulse { 0%, 100% { opacity: .3; transform: scaleY(1); } 50% { opacity: 1; transform: scaleY(1.2); } }

.reveal { opacity: 0; transform: translateY(35px); transition: opacity .8s cubic-bezier(.4,0,.2,1), transform .8s cubic-bezier(.4,0,.2,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 640px) {
  .section { padding: 80px 0; }
  .hero { min-height: 100svh; padding-bottom: 100px; }
  .hero__title { font-size: 2.4rem; }
  .about__values { grid-template-columns: 1fr; }
  .scholarship { flex-direction: column; text-align: center; }
  .footer__links { grid-template-columns: 1fr; gap: 24px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .contact__form-wrap { padding: 24px; }
  .countdown { gap: 10px; }
  .countdown__number { font-size: 1.8rem; }
  .countdown__unit { min-width: 65px; padding: 12px; }
  .page-hero--photo { min-height: 320px; }
  .tryouts { padding: 100px 0; }
  .marquee__track span { font-size: .8rem; }
  .pull-quote { padding: 80px 0; }
  .pull-quote__mark { font-size: 4rem; }
  .why-item { grid-template-columns: 48px 1fr; gap: 16px; padding: 28px 0; }
  .why-item__number { font-size: 2rem; }
  .featured-testimonial { padding: 100px 0; }
  .wave-divider svg { height: 40px; }
  .floating-orbs { display: none; }
}

/* ---------- PREMIUM EFFECTS ---------- */

/* SVG Wave Section Dividers */
.wave-divider { position: relative; margin-top: -1px; line-height: 0; overflow: hidden; }
.wave-divider svg { display: block; width: 100%; height: 60px; }
.wave-divider--flip { transform: scaleY(-1); margin-top: 0; margin-bottom: -1px; }

/* Floating Gradient Orbs */
.floating-orbs {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 0;
}
.floating-orb {
  position: absolute; border-radius: 50%; filter: blur(80px); opacity: .15;
  animation: floatOrb 20s ease-in-out infinite alternate;
}
.floating-orb--1 {
  width: 400px; height: 400px; background: var(--pink);
  top: -100px; right: -100px; animation-delay: 0s;
}
.floating-orb--2 {
  width: 300px; height: 300px; background: var(--purple);
  bottom: -80px; left: -80px; animation-delay: -7s;
  animation-duration: 25s;
}
.floating-orb--3 {
  width: 200px; height: 200px; background: var(--pink-light);
  top: 40%; left: 60%; animation-delay: -14s;
  animation-duration: 18s;
}
@keyframes floatOrb {
  0% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -40px) scale(1.1); }
  66% { transform: translate(-20px, 20px) scale(.95); }
  100% { transform: translate(10px, -10px) scale(1.05); }
}

/* 3D Tilt Card (applied via JS) */

/* Mouse Spotlight (applied via JS on dark sections) */
.has-spotlight { position: relative; }
.has-spotlight::after {
  content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(255,42,161,.06) 0%, transparent 50%);
  opacity: 0; transition: opacity .4s ease;
}
.has-spotlight:hover::after { opacity: 1; }

/* Advanced Reveal Animations */
.reveal-left { opacity: 0; transform: translateX(-50px); transition: opacity .8s cubic-bezier(.4,0,.2,1), transform .8s cubic-bezier(.4,0,.2,1); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(50px); transition: opacity .8s cubic-bezier(.4,0,.2,1), transform .8s cubic-bezier(.4,0,.2,1); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(.85); transition: opacity .8s cubic-bezier(.4,0,.2,1), transform .8s cubic-bezier(.4,0,.2,1); }
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* Word-by-word text reveal (applied via JS) */
.word-reveal .word {
  display: inline-block; opacity: 0; transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease;
}
.word-reveal.visible .word { opacity: 1; transform: translateY(0); }

/* Grain Texture Overlay (subtle premium feel) */
.grain-overlay::before {
  content: ''; position: absolute; inset: 0; z-index: 0; opacity: .03; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* Animated Gradient Line */
.gradient-line {
  height: 3px; background: var(--gradient-vivid); background-size: 200% 100%;
  animation: gradientShift 3s ease infinite; border-radius: 2px;
  box-shadow: 0 0 12px rgba(255,42,161,.3);
}

/* Magnetic Button Hover (applied via JS) */
.btn-magnetic { transition: transform .2s ease-out; }

/* Hero Floating Particles */
.hero-particles {
  position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden;
}
.hero-particle {
  position: absolute; width: 4px; height: 4px; border-radius: 50%;
  background: var(--pink); opacity: .3;
  animation: particleFloat linear infinite;
}
.hero-particle:nth-child(odd) { background: var(--purple); }
.hero-particle:nth-child(1) { left: 10%; animation-duration: 12s; animation-delay: 0s; }
.hero-particle:nth-child(2) { left: 20%; animation-duration: 15s; animation-delay: -2s; width: 3px; height: 3px; }
.hero-particle:nth-child(3) { left: 35%; animation-duration: 18s; animation-delay: -5s; width: 5px; height: 5px; }
.hero-particle:nth-child(4) { left: 50%; animation-duration: 13s; animation-delay: -3s; }
.hero-particle:nth-child(5) { left: 65%; animation-duration: 16s; animation-delay: -7s; width: 3px; height: 3px; }
.hero-particle:nth-child(6) { left: 80%; animation-duration: 14s; animation-delay: -1s; width: 6px; height: 6px; }
.hero-particle:nth-child(7) { left: 90%; animation-duration: 17s; animation-delay: -9s; }
.hero-particle:nth-child(8) { left: 45%; animation-duration: 20s; animation-delay: -4s; width: 3px; height: 3px; }

@keyframes particleFloat {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: .3; }
  90% { opacity: .3; }
  100% { transform: translateY(-100px) rotate(720deg); opacity: 0; }
}

/* Enhanced Program Cards with Animated Border */
.program-photo-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--gradient-vivid); background-size: 200% 100%;
  animation: gradientShift 3s ease infinite; z-index: 3;
  opacity: 0; transition: opacity .3s ease;
}
.program-photo-card:hover::after { opacity: 1; }

/* Scroll-linked parallax depth (via JS) */
[data-parallax] { will-change: transform; }

/* Instagram-style gradient ring on badge */
.welcome__img-badge {
  animation: badgePulse 3s ease infinite alternate;
}
@keyframes badgePulse {
  0% { box-shadow: 0 0 20px rgba(255,42,161,.3), 0 0 40px rgba(123,63,228,.15); }
  100% { box-shadow: 0 0 30px rgba(255,42,161,.5), 0 0 60px rgba(123,63,228,.25), 0 0 80px rgba(255,42,161,.1); }
}

/* Stat card shine effect on hover */
.stat-card::after {
  content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
  background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,.05) 50%, transparent 60%);
  transform: rotate(45deg) translateX(-100%); transition: none; pointer-events: none;
}
.stat-card:hover::after {
  animation: cardShine .8s ease forwards;
}
@keyframes cardShine {
  to { transform: rotate(45deg) translateX(100%); }
}

/* ============================================
   ABOUT PAGE — Take5 Inspired
   ============================================ */

/* ---------- ABOUT HERO (abstract dark) ---------- */
.about-hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  justify-content: center; background: var(--ink); color: #fff; overflow: hidden;
  padding: calc(var(--nav-height) + 40px) 0 60px;
}
.about-hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 50% at 30% 40%, rgba(255,42,161,.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 70% 60%, rgba(255,42,161,.06) 0%, transparent 60%);
}
.about-hero__orbs {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.about-hero__orb {
  position: absolute; border-radius: 50%; filter: blur(100px);
  animation: floatOrb 20s ease-in-out infinite alternate;
}
.about-hero__orb--1 {
  width: 500px; height: 500px; background: rgba(255,42,161,.08);
  top: -150px; right: -100px;
}
.about-hero__orb--2 {
  width: 400px; height: 400px; background: rgba(255,42,161,.07);
  bottom: -120px; left: -80px; animation-delay: -10s;
}
.about-hero__content {
  position: relative; z-index: 1; text-align: center;
}
.about-hero__kicker {
  display: inline-block; font-size: .72rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase; color: var(--pink-light);
  margin-bottom: 28px; opacity: .8;
}
.about-hero__title {
  font-family: var(--font-heading); font-size: clamp(3.5rem, 10vw, 8rem); font-weight: 900;
  letter-spacing: -.05em; line-height: .95; color: #fff; margin-bottom: 24px;
}
.about-hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem); color: #94a3b8; line-height: 1.7;
  max-width: 500px; margin: 0 auto 36px;
}
.about-hero__badges {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
}
.about-hero__badge {
  padding: 8px 20px; font-size: .72rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-full); color: rgba(255,255,255,.7);
  backdrop-filter: blur(8px);
}
.about-hero__scroll {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: #64748b; font-size: .7rem; letter-spacing: .1em; text-transform: uppercase;
}
.about-hero__scroll-line {
  width: 1px; height: 40px; background: var(--gradient);
  animation: scrollPulse 2s ease infinite;
}

/* ---------- ABOUT STORY (split: photo + text) ---------- */
.about-story {
  position: relative; background: var(--ink);
  border-top: 4px solid var(--pink);
  padding: clamp(60px, 8vw, 120px) 0;
  color: #fff;
}
.about-story__inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: grid; gap: 64px; align-items: start;
}
@media (min-width: 900px) {
  .about-story__inner { grid-template-columns: .95fr 1.05fr; gap: 80px; }
}

/* Photo column */
.about-story__photo-wrap {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.about-story__img {
  width: 100%; height: auto; display: block;
  filter: grayscale(.2) contrast(1.05);
  transition: transform 8s ease;
}
.about-story__photo-wrap:hover .about-story__img {
  transform: scale(1.05);
}
.about-story__photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,23,42,.6) 0%, transparent 50%);
  pointer-events: none;
}
.about-story__photo-badge {
  position: absolute; bottom: 20px; left: 20px; z-index: 2;
  background: var(--gradient); border-radius: var(--radius-md);
  padding: 14px 20px; text-align: center;
  box-shadow: var(--shadow-neon);
}
.about-story__photo-badge-num {
  display: block; font-family: var(--font-heading); font-size: 1.8rem;
  font-weight: 800; line-height: 1; color: #fff;
}
.about-story__photo-badge-label {
  display: block; font-size: .6rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; margin-top: 4px; opacity: .85; color: #fff;
}

/* Text column */
.about-story__kicker {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: .72rem; font-weight: 700; letter-spacing: .15em;
  text-transform: uppercase; color: var(--pink-light); margin-bottom: 20px;
}
.about-story__kicker-bar {
  display: inline-block; width: 32px; height: 3px;
  background: var(--gradient); border-radius: 2px;
}
.about-story__heading {
  font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 3rem); font-weight: 800;
  letter-spacing: -.03em; line-height: 1.1; color: #fff; margin-bottom: 28px;
}
.about-story__lead {
  font-size: 1.1rem; color: #e2e8f0; line-height: 1.75; margin-bottom: 20px; font-weight: 500;
}
.about-story__text-col > p {
  font-size: .95rem; color: #94a3b8; line-height: 1.8; margin-bottom: 18px;
}
.about-story__quote {
  position: relative; padding: 20px 0 20px 24px; margin: 32px 0;
  border-left: 3px solid var(--pink);
  font-size: 1rem; font-style: italic; color: #cbd5e1; line-height: 1.7;
}
.about-story__text-col .btn { margin-bottom: 40px; }

/* Credential cards */
.about-story__creds {
  display: grid; grid-template-columns: 1fr; gap: 14px;
}
@media (min-width: 480px) { .about-story__creds { grid-template-columns: repeat(3, 1fr); } }
.about-story__cred {
  display: flex; gap: 12px; align-items: flex-start; padding: 16px;
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-md); transition: var(--transition);
}
.about-story__cred:hover {
  border-color: rgba(255,42,161,.3); transform: translateY(-2px);
}
.about-story__cred svg {
  width: 24px; height: 24px; flex-shrink: 0; color: var(--pink-light); margin-top: 2px;
}
.about-story__cred strong {
  display: block; font-size: .82rem; font-weight: 700; color: #fff; margin-bottom: 2px;
}
.about-story__cred span {
  font-size: .72rem; color: #64748b; line-height: 1.4;
}

/* ---------- MVV ACCORDION (Mission/Vision/Values) ---------- */
.about-mvv {
  position: relative; background: var(--ink); color: #fff; overflow: hidden;
  padding: clamp(80px, 8vw, 140px) 0;
  border-top: 4px solid var(--pink);
}
.about-mvv__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 40% 40% at 80% 30%, rgba(255,42,161,.06) 0%, transparent 60%),
    radial-gradient(ellipse 30% 30% at 20% 70%, rgba(255,42,161,.05) 0%, transparent 60%);
}
.about-mvv__inner {
  position: relative; z-index: 1;
  display: grid; gap: 64px;
}
@media (min-width: 900px) {
  .about-mvv__inner { grid-template-columns: 320px 1fr; gap: 80px; }
}

.about-mvv__header { }
@media (min-width: 900px) {
  .about-mvv__header { position: sticky; top: calc(var(--nav-height) + 40px); }
}
.about-mvv__title {
  font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 3rem); font-weight: 800;
  letter-spacing: -.03em; line-height: 1.1; color: #fff; margin-bottom: 16px;
}
.about-mvv__sub {
  font-size: .95rem; color: #64748b; line-height: 1.7;
}

.about-mvv__list { display: flex; flex-direction: column; }

/* Mission / Vision / Values cards */
.about-mvv__cards { display: flex; flex-direction: column; gap: 24px; }
.about-mvv__card {
  padding: 36px 40px; border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg); background: rgba(255,255,255,.03);
}
.about-mvv__card-label {
  display: block; font-family: var(--font-mono); font-size: .7rem;
  letter-spacing: .2em; text-transform: uppercase;
  background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; margin-bottom: 16px;
}
.about-mvv__card p { color: #cbd5e1; line-height: 1.75; font-size: .97rem; }
.about-mvv__card ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.about-mvv__card li { color: #cbd5e1; font-size: .95rem; line-height: 1.6; padding-left: 18px; position: relative; }
.about-mvv__card li::before { content: ''; position: absolute; left: 0; top: .6em; width: 6px; height: 6px; border-radius: 50%; background: var(--gradient); }

.about-mvv-item {
  border-top: 1px solid rgba(255,255,255,.08);
  position: relative; overflow: hidden;
}
.about-mvv-item:last-child { border-bottom: 1px solid rgba(255,255,255,.08); }

/* Gold/pink left bar on open */
.about-mvv-item::before {
  content: ''; position: absolute; top: 0; bottom: 0; left: 0; width: 3px;
  background: var(--gradient); transform: scaleY(0); transform-origin: top;
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.about-mvv-item--open::before { transform: scaleY(1); }

.about-mvv-item__header {
  display: flex; align-items: center; gap: 20px; width: 100%;
  padding: 28px 0 28px 20px; background: none; border: none;
  cursor: pointer; color: #fff; text-align: left;
  transition: var(--transition);
}
.about-mvv-item__header:hover { color: var(--pink-light); }

.about-mvv-item__num {
  font-family: var(--font-heading); font-size: 1rem; font-weight: 800;
  background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; min-width: 28px; opacity: .5;
}
.about-mvv-item--open .about-mvv-item__num { opacity: 1; }

.about-mvv-item__label {
  flex: 1; font-family: var(--font-heading); font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700; letter-spacing: -.01em;
}
.about-mvv-item__icon {
  width: 20px; height: 20px; flex-shrink: 0; color: var(--pink);
  transition: transform .3s ease;
}
.about-mvv-item--open .about-mvv-item__icon { transform: rotate(45deg); }

.about-mvv-item__body {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows .4s cubic-bezier(.4,0,.2,1), padding .4s ease;
}
.about-mvv-item--open .about-mvv-item__body {
  grid-template-rows: 1fr;
}
.about-mvv-item__body > p {
  overflow: hidden; padding: 0 0 0 68px;
  font-size: .95rem; color: #94a3b8; line-height: 1.75;
}
.about-mvv-item--open .about-mvv-item__body > p {
  padding-bottom: 28px;
}

/* ---------- ABOUT CTA (watermark style) ---------- */
.about-cta {
  position: relative; padding: clamp(80px, 10vw, 160px) 0;
  background: #fff; overflow: hidden; text-align: center; color: var(--ink);
  border-top: 4px solid var(--pink);
}
.about-cta__watermark {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  font-family: var(--font-heading); font-size: clamp(8rem, 20vw, 20rem);
  font-weight: 900; letter-spacing: -.05em; color: rgba(0,0,0,.07);
  pointer-events: none; white-space: nowrap;
  line-height: 1;
}
.about-cta__inner { position: relative; z-index: 1; }
.about-cta__title {
  font-family: var(--font-heading); font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800;
  letter-spacing: -.03em; line-height: 1.15; color: var(--ink); margin-bottom: 16px;
}
.about-cta__text {
  font-size: 1.1rem; color: #475569; margin-bottom: 36px;
}

/* ---------- ABOUT: Staggered hero entrance ---------- */
.about-hero__kicker,
.about-hero__title,
.about-hero__sub,
.about-hero__badges,
.about-hero__scroll {
  opacity: 0;
  transform: translateY(30px);
  animation: aboutEntrance .9s cubic-bezier(.16,1,.3,1) forwards;
}
.about-hero__kicker  { animation-delay: .2s; }
.about-hero__title   { animation-delay: .4s; }
.about-hero__sub     { animation-delay: .6s; }
.about-hero__badges  { animation-delay: .85s; }
.about-hero__scroll  { animation-delay: 1.1s; }

@keyframes aboutEntrance {
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- ABOUT: Directional reveals ---------- */
.about-story__photo-wrap.reveal-left,
.about-story__text-col.reveal-right {
  transition-duration: 1s;
}

/* ---------- ABOUT: Quote word reveal ---------- */
.about-story__quote.word-reveal .word {
  display: inline-block; opacity: 0; transform: translateY(15px);
  transition: opacity .45s ease, transform .45s ease;
}
.about-story__quote.word-reveal.visible .word { opacity: 1; transform: translateY(0); }

/* ---------- ABOUT: Counter pulse on badge ---------- */
.about-story__photo-badge-num.counting {
  animation: countPulse .15s ease;
}
@keyframes countPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* ---------- ABOUT: Enhanced accordion ---------- */
.about-mvv-item__header {
  transition: color .3s ease, padding-left .3s ease;
}
.about-mvv-item--open .about-mvv-item__header {
  padding-left: 28px;
}
.about-mvv-item__body {
  transition: grid-template-rows .5s cubic-bezier(.25,.46,.45,.94), padding .5s ease;
}
.about-mvv-item--open .about-mvv-item__label {
  background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.about-mvv-item__header:hover .about-mvv-item__num { opacity: .8; }

/* ---------- ABOUT: Parallax orbs on scroll ---------- */
.about-hero__orb { transition: transform .1s linear; }

/* ---------- ABOUT: Spotlight on dark about sections ---------- */
.about-hero.has-spotlight::after,
.about-story.has-spotlight::after,
.about-mvv.has-spotlight::after {
  z-index: 1;
}

/* ---------- ABOUT: Smooth scroll indicator bounce ---------- */
.about-hero__scroll-line {
  animation: scrollPulse 2s ease infinite, scrollBounce 2.5s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ---------- ABOUT: CTA watermark float ---------- */
.about-cta__watermark {
  animation: watermarkFloat 8s ease-in-out infinite alternate;
}
@keyframes watermarkFloat {
  0% { transform: translate(-50%, -50%) scale(1); }
  100% { transform: translate(-50%, -48%) scale(1.03); }
}

/* ---------- ABOUT RESPONSIVE ---------- */
@media (max-width: 640px) {
  .about-hero__title { font-size: 3.2rem; }
  .about-hero { min-height: 90vh; }
  .about-story__creds { grid-template-columns: 1fr; }
}

/* ============================================
   PROGRAMS PAGE — Take5 Inspired
   ============================================ */

/* ---------- PROGRAMS HERO ---------- */
.prog-hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  justify-content: center; background: var(--ink); color: #fff; overflow: hidden;
  padding: calc(var(--nav-height) + 40px) 0 60px;
}
.prog-hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 50% at 40% 35%, rgba(255,42,161,.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 65% 65%, rgba(255,42,161,.06) 0%, transparent 60%);
}
.prog-hero__orbs { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.prog-hero__orb { position: absolute; border-radius: 50%; filter: blur(100px); animation: floatOrb 20s ease-in-out infinite alternate; }
.prog-hero__orb--1 { width: 450px; height: 450px; background: rgba(255,42,161,.1); top: -120px; left: -80px; }
.prog-hero__orb--2 { width: 380px; height: 380px; background: rgba(255,42,161,.07); bottom: -100px; right: -60px; animation-delay: -10s; }
.prog-hero__content { position: relative; z-index: 1; text-align: center; }

.prog-hero__kicker {
  display: inline-block; font-size: .72rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase; color: var(--pink-light);
  margin-bottom: 28px; opacity: .8;
}
.prog-hero__title {
  font-family: var(--font-heading); font-size: clamp(3.5rem, 10vw, 8rem); font-weight: 900;
  letter-spacing: -.05em; line-height: .95; color: #fff; margin-bottom: 24px;
}
.prog-hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem); color: #94a3b8; line-height: 1.7;
  max-width: 520px; margin: 0 auto 36px;
}
.prog-hero__badges { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.prog-hero__badge {
  padding: 8px 20px; font-size: .72rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-full); color: rgba(255,255,255,.7);
  backdrop-filter: blur(8px); transition: var(--transition);
}
.prog-hero__badge:hover {
  border-color: rgba(255,42,161,.4); color: #fff;
  background: rgba(255,42,161,.08);
}
.prog-hero__scroll {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: #64748b; font-size: .7rem; letter-spacing: .1em; text-transform: uppercase;
}
.prog-hero__scroll-line {
  width: 1px; height: 40px; background: var(--gradient);
  animation: scrollPulse 2s ease infinite, scrollBounce 2.5s ease-in-out infinite;
}

/* Staggered hero entrance */
.prog-hero__kicker,
.prog-hero__title,
.prog-hero__sub,
.prog-hero__badges,
.prog-hero__scroll {
  opacity: 0; transform: translateY(30px);
  animation: aboutEntrance .9s cubic-bezier(.16,1,.3,1) forwards;
}
.prog-hero__kicker  { animation-delay: .2s; }
.prog-hero__title   { animation-delay: .4s; }
.prog-hero__sub     { animation-delay: .6s; }
.prog-hero__badges  { animation-delay: .85s; }
.prog-hero__scroll  { animation-delay: 1.1s; }

/* ---------- FEATURED PROGRAM (Club Teams split) ---------- */
.prog-featured {
  position: relative; background: var(--ink); color: #fff;
  border-top: 1px solid rgba(255,255,255,.06);
  padding: clamp(60px, 8vw, 120px) 0;
}
.prog-featured__inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: grid; gap: 64px; align-items: center;
}
@media (min-width: 900px) {
  .prog-featured__inner { grid-template-columns: 1fr 1.1fr; gap: 80px; }
}

.prog-featured__photo-wrap {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.prog-featured__img {
  width: 100%; height: auto; display: block;
  filter: contrast(1.05); transition: transform 8s ease;
}
.prog-featured__photo-wrap:hover .prog-featured__img { transform: scale(1.05); }
.prog-featured__photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,23,42,.5) 0%, transparent 50%);
  pointer-events: none;
}
.prog-featured__photo-badge {
  position: absolute; top: 20px; left: 20px; z-index: 2;
  background: var(--gradient); border-radius: var(--radius-full);
  padding: 8px 20px;
}
.prog-featured__badge-label {
  font-size: .7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: #fff;
}

.prog-featured__kicker {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: .72rem; font-weight: 700; letter-spacing: .15em;
  text-transform: uppercase; color: var(--pink-light); margin-bottom: 20px;
}
.prog-featured__kicker-bar {
  display: inline-block; width: 32px; height: 3px;
  background: var(--gradient); border-radius: 2px;
}
.prog-featured__heading {
  font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 3rem); font-weight: 800;
  letter-spacing: -.03em; line-height: 1.1; color: #fff; margin-bottom: 24px;
}
.prog-featured__lead {
  font-size: 1.05rem; color: #e2e8f0; line-height: 1.75; margin-bottom: 16px; font-weight: 500;
}
.prog-featured__text-col > p {
  font-size: .95rem; color: #94a3b8; line-height: 1.8; margin-bottom: 28px;
}

/* Feature tags */
.prog-featured__features {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  margin-bottom: 32px;
}
.prog-featured__feature {
  display: flex; align-items: center; gap: 10px; padding: 10px 14px;
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-md); transition: var(--transition);
}
.prog-featured__feature:hover {
  border-color: rgba(255,42,161,.3); transform: translateY(-2px);
}
.prog-featured__feature svg {
  width: 18px; height: 18px; flex-shrink: 0; color: var(--pink-light);
}
.prog-featured__feature span {
  font-size: .8rem; font-weight: 600; color: rgba(255,255,255,.8);
}

/* ---------- PHOTO BREAK ---------- */
.prog-photo-break {
  position: relative; overflow: hidden; background: var(--ink);
}
.prog-photo-break__inner {
  position: relative; height: clamp(250px, 40vw, 450px); overflow: hidden;
}
.prog-photo-break__inner img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  display: block; filter: grayscale(.15) contrast(1.05);
  transition: transform 12s ease;
}
.prog-photo-break:hover .prog-photo-break__inner img { transform: scale(1.06); }
.prog-photo-break__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(15,23,42,.7) 0%, rgba(15,23,42,.2) 50%, rgba(15,23,42,.7) 100%),
    linear-gradient(to bottom, rgba(15,23,42,.3) 0%, transparent 30%, transparent 70%, rgba(15,23,42,.4) 100%);
  pointer-events: none;
}
.prog-photo-break__text {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  z-index: 2;
}
.prog-photo-break__text span {
  font-family: var(--font-heading); font-size: clamp(2rem, 6vw, 5rem); font-weight: 900;
  letter-spacing: -.04em; color: #fff; opacity: .7;
  text-shadow: 0 4px 30px rgba(0,0,0,.4);
}

/* ---------- TRAINING PROGRAMS (cards) ---------- */
.prog-training {
  position: relative; background: var(--ink); color: #fff;
  padding: clamp(80px, 8vw, 140px) 0;
  border-top: 4px solid var(--pink);
}
.prog-training__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 40% 40% at 20% 30%, rgba(255,42,161,.06) 0%, transparent 60%),
    radial-gradient(ellipse 30% 30% at 80% 70%, rgba(255,42,161,.05) 0%, transparent 60%);
}
.prog-training__inner { position: relative; z-index: 1; }
.prog-training__header {
  text-align: center; max-width: 600px; margin: 0 auto 64px;
}
.prog-training__title {
  font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 3rem); font-weight: 800;
  letter-spacing: -.03em; line-height: 1.1; color: #fff; margin-bottom: 16px;
}
.prog-training__sub {
  font-size: .95rem; color: #64748b; line-height: 1.7;
}

.prog-cards {
  display: grid; grid-template-columns: 1fr; gap: 32px;
}
@media (min-width: 768px) { .prog-cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .prog-cards--4col { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1024px) { .prog-cards:not(.prog-cards--4col) { grid-template-columns: repeat(3, 1fr); } }

.prog-card__badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: var(--gradient); border-radius: var(--radius-full);
  padding: 6px 16px; font-size: .65rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em; color: #fff;
}

.prog-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  background: rgba(255,255,255,.02); border: 1px solid rgba(255,255,255,.08);
  transition: transform .5s cubic-bezier(.25,.46,.45,.94), border-color .3s ease, box-shadow .5s ease;
}
.prog-card:hover {
  transform: translateY(-8px); border-color: rgba(255,42,161,.25);
  box-shadow: 0 20px 60px rgba(255,42,161,.08);
}

.prog-card__img-wrap {
  position: relative; height: 220px; overflow: hidden;
}
.prog-card__img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(.2) contrast(1.05);
  transition: transform 8s ease;
}
.prog-card:hover .prog-card__img { transform: scale(1.08); }
.prog-card__img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,23,42,.8) 0%, rgba(15,23,42,.1) 60%);
  pointer-events: none;
}

.prog-card__body { padding: 28px; }
.prog-card__num {
  font-family: var(--font-heading); font-size: .85rem; font-weight: 800;
  background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; margin-bottom: 8px; display: block; opacity: .6;
}
.prog-card__title {
  font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700;
  color: #fff; margin-bottom: 12px; letter-spacing: -.01em;
}
.prog-card__desc {
  font-size: .88rem; color: #94a3b8; line-height: 1.7; margin-bottom: 16px;
}
.prog-card__list {
  list-style: none; padding: 0; margin: 0 0 20px;
}
.prog-card__list li {
  position: relative; padding-left: 18px; font-size: .82rem; color: #cbd5e1;
  line-height: 1.8;
}
.prog-card__list li::before {
  content: ''; position: absolute; left: 0; top: .6em;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gradient);
}
.prog-card__link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .85rem; font-weight: 600; color: var(--pink-light);
  text-decoration: none; transition: var(--transition);
}
.prog-card__link:hover { color: #fff; gap: 10px; }
.prog-card__link span { transition: transform .3s ease; }
.prog-card__link:hover span { transform: translateX(4px); }

/* ---------- COMING SOON ---------- */
.prog-soon {
  position: relative; padding: clamp(80px, 8vw, 140px) 0;
  background: var(--body-bg);
}
.prog-soon__inner {
  display: grid; gap: 64px;
}
@media (min-width: 900px) {
  .prog-soon__inner { grid-template-columns: 340px 1fr; gap: 80px; }
}
.prog-soon__header { }
@media (min-width: 900px) {
  .prog-soon__header { position: sticky; top: calc(var(--nav-height) + 40px); }
}
.prog-soon__kicker {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: .72rem; font-weight: 700; letter-spacing: .15em;
  text-transform: uppercase; color: var(--pink); margin-bottom: 20px;
}
.prog-soon__kicker-bar {
  display: inline-block; width: 32px; height: 3px;
  background: var(--gradient); border-radius: 2px;
}
.prog-soon__title {
  font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 3rem); font-weight: 800;
  letter-spacing: -.03em; line-height: 1.1; color: var(--text); margin-bottom: 16px;
}
.prog-soon__sub {
  font-size: .95rem; color: var(--muted); line-height: 1.7;
}

.prog-soon__grid { display: flex; flex-direction: column; }
.prog-soon__item {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 28px 0; border-top: 1px solid var(--border);
  transition: var(--transition);
}
.prog-soon__item:last-child { border-bottom: 1px solid var(--border); }
.prog-soon__item:hover { padding-left: 12px; }

.prog-soon__icon {
  width: 48px; height: 48px; flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  background: var(--gradient-subtle); border-radius: var(--radius-md);
  transition: var(--transition);
}
.prog-soon__item:hover .prog-soon__icon {
  background: var(--gradient); box-shadow: var(--shadow-neon);
}
.prog-soon__icon svg {
  width: 22px; height: 22px; color: var(--pink);
  transition: var(--transition);
}
.prog-soon__item:hover .prog-soon__icon svg { color: #fff; }

.prog-soon__text h3 {
  font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700;
  color: var(--text); margin-bottom: 6px;
}
.prog-soon__text p {
  font-size: .88rem; color: var(--muted); line-height: 1.65;
}

/* ---------- PROGRAMS CTA ---------- */
.prog-cta {
  position: relative; padding: clamp(80px, 10vw, 160px) 0;
  background: #fff; overflow: hidden; text-align: center; color: var(--ink);
  border-top: 4px solid var(--pink);
}
.prog-cta__watermark {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  font-family: var(--font-heading); font-size: clamp(8rem, 20vw, 20rem);
  font-weight: 900; letter-spacing: -.05em; color: rgba(0,0,0,.07);
  pointer-events: none; white-space: nowrap; line-height: 1;
  animation: watermarkFloat 8s ease-in-out infinite alternate;
}
.prog-cta__inner { position: relative; z-index: 1; }
.prog-cta__title {
  font-family: var(--font-heading); font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800;
  letter-spacing: -.03em; line-height: 1.15; color: var(--ink); margin-bottom: 16px;
}
.prog-cta__text {
  font-size: 1.1rem; color: #475569; margin-bottom: 36px;
}
.prog-cta__actions {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
}

/* ---------- PROGRAMS RESPONSIVE ---------- */
@media (max-width: 640px) {
  .prog-hero__title { font-size: 3.2rem; }
  .prog-hero { min-height: 90vh; }
  .prog-featured__features { grid-template-columns: 1fr; }
  .prog-photo-break__inner { height: 200px; }
}
@media (max-width: 480px) {
  .prog-featured__features { gap: 8px; }
}

/* ============================================
   SHARED DARK HERO — Reusable across all pages
   ============================================ */
.dk-hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  justify-content: center; background: var(--ink); color: #fff; overflow: hidden;
  padding: calc(var(--nav-height) + 40px) 0 60px;
}
.dk-hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 50% at 35% 40%, rgba(255,42,161,.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 65% 60%, rgba(255,42,161,.06) 0%, transparent 60%);
}
.dk-hero__orbs { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.dk-hero__orb { position: absolute; border-radius: 50%; filter: blur(100px); animation: floatOrb 20s ease-in-out infinite alternate; }
.dk-hero__orb--1 { width: 480px; height: 480px; background: rgba(255,42,161,.1); top: -140px; right: -90px; }
.dk-hero__orb--2 { width: 400px; height: 400px; background: rgba(255,42,161,.07); bottom: -110px; left: -70px; animation-delay: -10s; }
.dk-hero__content { position: relative; z-index: 1; text-align: center; }
.dk-hero__kicker {
  display: inline-block; font-size: .72rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase; color: var(--pink-light);
  margin-bottom: 28px; opacity: .8;
}
.dk-hero__title {
  font-family: var(--font-heading); font-size: clamp(3.5rem, 10vw, 8rem); font-weight: 900;
  letter-spacing: -.05em; line-height: .95; color: #fff; margin-bottom: 24px;
}
.dk-hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem); color: #94a3b8; line-height: 1.7;
  max-width: 520px; margin: 0 auto 36px;
}
.dk-hero__scroll {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: #64748b; font-size: .7rem; letter-spacing: .1em; text-transform: uppercase;
}
.dk-hero__scroll-line {
  width: 1px; height: 40px; background: var(--gradient);
  animation: scrollPulse 2s ease infinite, scrollBounce 2.5s ease-in-out infinite;
}

/* Staggered entrance */
.dk-hero__kicker, .dk-hero__title, .dk-hero__sub, .dk-hero__scroll {
  opacity: 0; transform: translateY(30px);
  animation: aboutEntrance .9s cubic-bezier(.16,1,.3,1) forwards;
}
.dk-hero__kicker { animation-delay: .2s; }
.dk-hero__title  { animation-delay: .4s; }
.dk-hero__sub    { animation-delay: .6s; }
.dk-hero__scroll { animation-delay: .9s; }

/* Compact hero variant (shorter) */
.dk-hero--compact { min-height: 70vh; }

/* Page hero variant — clean black slab, perfectly centered */
.dk-hero--page {
  min-height: 440px !important;
  max-height: 440px;
  padding: var(--nav-height) 0 70px !important;
  background: #000 !important;
}
.dk-hero--page .dk-hero__bg,
.dk-hero--page .dk-hero__orbs { display: none !important; }
.dk-hero--page .dk-hero__content { width: 100%; text-align: center; }
.dk-hero--page .dk-hero__sub { display: none !important; }
.dk-hero--page .dk-hero__kicker { margin-bottom: 14px; }
.dk-hero--page .dk-hero__scroll { display: none !important; }
.dk-hero--page .dk-hero__title {
  font-size: clamp(2.4rem, 6vw, 5rem);
  letter-spacing: -.04em;
  margin-bottom: 0;
  text-transform: uppercase;
  line-height: 1;
}

/* Teal breadcrumb banner that sits directly below a page hero */
.dk-page-banner {
  background: var(--pink);
  color: #fff;
  text-align: center;
  padding: 16px 20px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.dk-page-banner__sep { margin: 0 12px; opacity: .7; }

@media (max-width: 640px) {
  .dk-hero__title { font-size: 3.2rem; }
  .dk-hero { min-height: 90vh; }
  .dk-hero--compact { min-height: 60vh; }
  .dk-hero--page { min-height: 320px !important; max-height: 320px; padding: var(--nav-height) 0 60px !important; }
  .dk-hero--page .dk-hero__title { font-size: 1.8rem; }
  .dk-page-banner { font-size: .68rem; letter-spacing: .18em; padding: 12px 16px; }
}

/* ===== SHARED DARK SECTION ===== */
.dk-section {
  position: relative; background: var(--ink); color: #fff;
  padding: clamp(80px, 8vw, 140px) 0;
  border-top: 4px solid var(--pink);
}
.dk-section__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 40% 40% at 75% 30%, rgba(255,42,161,.06) 0%, transparent 60%),
    radial-gradient(ellipse 30% 30% at 25% 70%, rgba(255,42,161,.04) 0%, transparent 60%);
}

/* ===== SHARED WATERMARK CTA ===== */
.dk-cta {
  position: relative; padding: clamp(80px, 10vw, 160px) 0;
  background: #fff; overflow: hidden; text-align: center; color: var(--ink);
  border-top: 4px solid var(--pink);
}
.dk-cta__watermark {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  font-family: var(--font-heading); font-size: clamp(8rem, 20vw, 20rem);
  font-weight: 900; letter-spacing: -.05em; color: rgba(0,0,0,.07);
  pointer-events: none; white-space: nowrap; line-height: 1;
  animation: watermarkFloat 8s ease-in-out infinite alternate;
}
.dk-cta__inner { position: relative; z-index: 1; }
.dk-cta__title {
  font-family: var(--font-heading); font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800;
  letter-spacing: -.03em; line-height: 1.15; color: var(--ink); margin-bottom: 16px;
}
.dk-cta__text { font-size: 1.1rem; color: #475569; margin-bottom: 36px; }
.dk-cta__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== SHARED SPLIT PANEL (dark) ===== */
.dk-split {
  position: relative; background: var(--ink); color: #fff;
  border-top: 4px solid var(--pink);
  padding: clamp(60px, 8vw, 120px) 0;
}
.dk-split__inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: grid; gap: 64px; align-items: center;
}
@media (min-width: 900px) { .dk-split__inner { grid-template-columns: 1fr 1.1fr; gap: 80px; } }
.dk-split--reverse .dk-split__inner {
  direction: rtl;
}
.dk-split--reverse .dk-split__inner > * { direction: ltr; }

.dk-split__photo-wrap {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-xl); cursor: zoom-in;
}
.dk-split__photo-wrap .dk-split__zoom-hint {
  position: absolute; bottom: 12px; right: 12px; z-index: 2;
  background: rgba(15,23,42,.6); backdrop-filter: blur(4px);
  color: #fff; font-size: .72rem; font-weight: 600; letter-spacing: .04em;
  padding: 6px 12px; border-radius: 20px; display: flex; align-items: center; gap: 6px;
  opacity: 0.7; transition: opacity 0.25s ease; pointer-events: none;
}
.dk-split__photo-wrap:hover .dk-split__zoom-hint { opacity: 1; }
.dk-split__img {
  width: 100%; height: auto; display: block;
  filter: grayscale(.15) contrast(1.05); transition: transform 8s ease;
}
.dk-split__photo-wrap:hover .dk-split__img { transform: scale(1.05); }
.dk-split__photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,23,42,.5) 0%, transparent 50%);
  pointer-events: none;
}
.dk-split__kicker {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: .72rem; font-weight: 700; letter-spacing: .15em;
  text-transform: uppercase; color: var(--pink-light); margin-bottom: 20px;
}
.dk-split__kicker-bar {
  display: inline-block; width: 32px; height: 3px;
  background: var(--gradient); border-radius: 2px;
}
.dk-split__heading {
  font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 3rem); font-weight: 800;
  letter-spacing: -.03em; line-height: 1.1; color: #fff; margin-bottom: 24px;
}
.dk-split__text-col > p {
  font-size: .95rem; color: #94a3b8; line-height: 1.8; margin-bottom: 18px;
}
.dk-split__text-col > p:first-of-type {
  font-size: 1.05rem; color: #e2e8f0; font-weight: 500; line-height: 1.75;
}

/* ===== TEAMS PAGE ===== */
.teams-division {
  position: relative; background: var(--ink); color: #fff;
  padding: clamp(60px, 6vw, 100px) 0;
  border-top: 4px solid var(--pink);
}
.teams-division__inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
}
.teams-division__header {
  margin-bottom: 48px;
}
.teams-division__kicker {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: .72rem; font-weight: 700; letter-spacing: .15em;
  text-transform: uppercase; color: var(--pink-light); margin-bottom: 16px;
}
.teams-division__kicker-bar {
  display: inline-block; width: 32px; height: 3px;
  background: var(--gradient); border-radius: 2px;
}
.teams-division__title {
  font-family: var(--font-heading); font-size: clamp(1.8rem, 3.5vw, 2.5rem); font-weight: 800;
  letter-spacing: -.03em; color: #fff;
}
.teams-division__grid {
  display: grid; grid-template-columns: 1fr; gap: 32px;
}
@media (min-width: 768px) { .teams-division__grid { grid-template-columns: repeat(2, 1fr); } }

/* Team card (dark variant) */
.dk-team-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  background: rgba(255,255,255,.02); border: 1px solid rgba(255,255,255,.08);
  transition: transform .5s cubic-bezier(.25,.46,.45,.94), border-color .3s ease, box-shadow .5s ease;
}
.dk-team-card:hover {
  transform: translateY(-6px); border-color: rgba(255,42,161,.25);
  box-shadow: 0 20px 60px rgba(255,42,161,.08);
}
.dk-team-card__photo {
  position: relative; height: 240px; overflow: hidden;
}
.dk-team-card__photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 20%;
  filter: grayscale(.15) contrast(1.05); transition: transform 8s ease;
}
.dk-team-card:hover .dk-team-card__photo img { transform: scale(1.06); }
.dk-team-card__photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,23,42,.7) 0%, rgba(15,23,42,.1) 60%);
  pointer-events: none;
}
.dk-team-card__age {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: var(--gradient); border-radius: var(--radius-full);
  padding: 6px 16px; font-size: .65rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em; color: #fff;
}
.dk-team-card__body { padding: 28px; }
.dk-team-card__name {
  font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700;
  color: #fff; margin-bottom: 14px;
}
.dk-team-card__coaches {
  font-size: .85rem; color: #94a3b8; margin-bottom: 6px;
}
.dk-team-card__role {
  font-weight: 700; color: var(--pink-light); margin-right: 6px;
  font-size: .72rem; text-transform: uppercase; letter-spacing: .05em;
}
.dk-team-card__desc {
  font-size: .88rem; color: #64748b; line-height: 1.7; margin-top: 14px; margin-bottom: 18px;
}
.dk-team-card .btn { font-size: .8rem; }

/* Dev team (full-width single card) */
.dk-team-card--dev {
  background: linear-gradient(135deg, rgba(255,42,161,.04) 0%, rgba(123,63,228,.06) 100%);
  border-color: rgba(255,42,161,.15);
}
.dk-team-card--dev .dk-team-card__body {
  display: grid; gap: 16px;
}
@media (min-width: 768px) {
  .teams-division__grid--single { grid-template-columns: 1fr; max-width: 700px; }
}

/* ===== COACHES PAGE ===== */
.dk-coach-card {
  display: flex; gap: 24px; align-items: flex-start; padding: 28px;
  background: rgba(255,255,255,.02); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg); transition: var(--transition);
}
.dk-coach-card:hover {
  border-color: rgba(255,42,161,.25); transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(255,42,161,.06);
}
.dk-coach-card__avatar {
  width: 64px; height: 64px; border-radius: 50%; flex-shrink: 0;
  background: var(--gradient); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: 1.1rem; font-weight: 800; color: #fff;
}
.dk-coach-card__photo {
  width: 120px; height: 120px; border-radius: 50%; flex-shrink: 0; overflow: hidden;
  position: relative; cursor: pointer;
}
.dk-coach-card__photo::after {
  content: '\1F50D'; font-size: 18px;
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(15,23,42,.55); color: #fff; opacity: 0; transition: opacity 0.25s ease;
  border-radius: 50%; pointer-events: none;
}
.dk-coach-card__photo:hover::after { opacity: 1; }
.dk-coach-card__photo img {
  width: 100%; height: 100%; object-fit: cover;
}

/* Coach photo lightbox */
.coach-lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,.85); display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease;
  cursor: zoom-out;
}
.coach-lightbox.is-active { opacity: 1; visibility: visible; }
.coach-lightbox img {
  max-width: 90vw; max-height: 90vh; object-fit: contain;
  border-radius: 12px; box-shadow: 0 20px 60px rgba(0,0,0,.5);
  transform: scale(0.92); transition: transform 0.3s ease;
}
.coach-lightbox.is-active img { transform: scale(1); }
.coach-lightbox__close {
  position: absolute; top: 24px; right: 24px;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.15); border: none; color: #fff;
  font-size: 22px; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease;
}
.coach-lightbox__close:hover { background: rgba(255,255,255,.3); }
.dk-coach-card__info h3 {
  font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700;
  color: #fff; margin-bottom: 4px;
}
.dk-coach-card__title {
  font-size: .78rem; font-weight: 700; color: var(--pink-light);
  text-transform: uppercase; letter-spacing: .05em; margin-bottom: 10px; display: block;
}
.dk-coach-card__info p {
  font-size: .88rem; color: #94a3b8; line-height: 1.7; margin-bottom: 10px;
}
.dk-coach-card__email {
  font-size: .82rem; font-weight: 600; color: var(--pink-light);
  text-decoration: none; transition: var(--transition);
}
.dk-coach-card__email:hover { color: #fff; }

/* Coach bio expand dropdown */
.dk-coach-card__bio-expand {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  opacity: 0;
}
.dk-coach-card.bio-open .dk-coach-card__bio-expand {
  max-height: 600px;
  opacity: 1;
}
.dk-coach-card__bio-expand p {
  margin-top: 8px;
}
.dk-coach-card__chevron {
  display: inline-block;
  vertical-align: middle;
  transition: transform 0.3s ease;
  margin-left: 6px;
  opacity: 0.5;
}
.dk-coach-card.bio-open .dk-coach-card__chevron {
  transform: rotate(180deg);
  opacity: 1;
}
.dk-coach-card[data-coach-bio] { cursor: default; }

/* Coach card large */
.dk-coach-card--large {
  background: linear-gradient(135deg, rgba(255,42,161,.04) 0%, rgba(123,63,228,.06) 100%);
  border-color: rgba(255,42,161,.15);
}
.dk-coach-card--large .dk-coach-card__avatar {
  width: 80px; height: 80px; font-size: 1.3rem;
}
.dk-coach-card--large .dk-coach-card__photo {
  width: 80px; height: 80px;
}

/* Coaches grid */
.dk-coaches-grid {
  display: grid; grid-template-columns: 1fr; gap: 20px;
}
@media (min-width: 768px) { .dk-coaches-grid { grid-template-columns: repeat(2, 1fr); } }
.dk-coaches-grid--single { max-width: 700px; }

/* ===== INVESTMENT PAGE ===== */
.dk-invest-card {
  padding: 32px; background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius-lg);
  transition: var(--transition);
}
.dk-invest-card:hover {
  border-color: rgba(255,42,161,.25); transform: translateY(-4px);
}
.dk-invest-card--highlight {
  background: linear-gradient(135deg, rgba(255,42,161,.06) 0%, rgba(123,63,228,.08) 100%);
  border-color: rgba(255,42,161,.2);
}
.dk-invest-card h3 {
  font-family: var(--font-heading); font-size: 1.15rem; font-weight: 700;
  color: #fff; margin-bottom: 18px;
}
.dk-invest-card ul {
  list-style: none; padding: 0; margin: 0;
}
.dk-invest-card li {
  position: relative; padding-left: 18px; font-size: .88rem; color: #cbd5e1;
  line-height: 1.9;
}
.dk-invest-card li::before {
  content: ''; position: absolute; left: 0; top: .65em;
  width: 6px; height: 6px; border-radius: 50%; background: var(--gradient);
}
.dk-invest-card__note {
  margin-top: 18px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,.08);
  font-size: .82rem; color: #64748b; font-style: italic;
}
/* Light variant for white sections */
.section .dk-invest-card {
  background: #f8fafc;
  border-color: #e2e8f0;
}
.section .dk-invest-card:hover {
  border-color: var(--pink);
}
.section .dk-invest-card h3 {
  color: var(--ink);
}
.section .dk-invest-card li {
  color: #475569;
}

.dk-invest-grid {
  display: grid; grid-template-columns: 1fr; gap: 24px;
}
@media (min-width: 768px) { .dk-invest-grid { grid-template-columns: repeat(3, 1fr); } }

/* Season info rows — clean, minimal, non-blocky */
.season-info {
  max-width: 760px; margin: 0 auto;
}
.season-info__row {
  display: flex; align-items: baseline; gap: 24px;
  padding: 18px 0; border-bottom: 1px solid rgba(0,0,0,.07);
}
.season-info__row:last-child { border-bottom: none; }
.season-info__label {
  font-family: var(--font-mono); font-size: .72rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--pink); flex-shrink: 0; width: 160px;
}
.season-info__value {
  font-size: .95rem; color: var(--ink); line-height: 1.6;
}
.season-info__value ul {
  list-style: none; padding: 0; margin: 0;
}
.season-info__value li { line-height: 1.9; }
.season-info__value a { color: var(--pink); }
@media (max-width: 600px) {
  .season-info__row { flex-direction: column; gap: 4px; }
  .season-info__label { width: auto; }
}

/* Payment steps */
.dk-steps {
  display: grid; grid-template-columns: 1fr; gap: 20px;
}
@media (min-width: 768px) { .dk-steps { grid-template-columns: repeat(4, 1fr); } }
.dk-step {
  padding: 24px; background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius-lg);
  transition: var(--transition);
}
.dk-step:hover { border-color: rgba(255,42,161,.25); transform: translateY(-4px); }
.dk-step__num {
  font-family: var(--font-heading); font-size: 1.5rem; font-weight: 800;
  background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; margin-bottom: 12px; display: block;
}
.dk-step h3 {
  font-family: var(--font-heading); font-size: 1rem; font-weight: 700;
  color: #fff; margin-bottom: 8px;
}
.dk-step p { font-size: .85rem; color: #94a3b8; line-height: 1.65; }

/* Light variant for payment steps */
.section .dk-step {
  background: #f8fafc; border-color: #e2e8f0;
}
.section .dk-step:hover { border-color: var(--pink); }
.section .dk-step h3 { color: var(--ink); }
.section .dk-step p { color: #475569; }

/* Scholarship banner */
.dk-scholarship {
  display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
  padding: 32px; background: linear-gradient(135deg, rgba(255,42,161,.06) 0%, rgba(123,63,228,.08) 100%);
  border: 1px solid rgba(255,42,161,.2); border-radius: var(--radius-lg);
  margin-top: 48px;
}
.dk-scholarship h3 {
  font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700;
  color: #fff; margin-bottom: 8px;
}
.dk-scholarship p {
  font-size: .92rem; color: #cbd5e1; line-height: 1.65;
}

/* ===== MEDIA PAGE ===== */
.dk-upload-zone {
  border: 2px dashed rgba(255,255,255,.12); border-radius: var(--radius-lg);
  padding: 48px 32px; text-align: center; cursor: pointer;
  background: rgba(255,255,255,.02); transition: var(--transition);
}
.dk-upload-zone:hover {
  border-color: rgba(255,42,161,.3); background: rgba(255,42,161,.03);
}
.dk-upload-zone__icon svg {
  width: 48px; height: 48px; color: var(--pink-light); margin-bottom: 16px;
}
.dk-upload-zone h3 {
  font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700;
  color: #fff; margin-bottom: 6px;
}
.dk-upload-zone p { font-size: .88rem; color: #94a3b8; }
.dk-upload-zone__formats {
  font-size: .75rem; color: #64748b; margin-top: 8px;
}

.dk-gallery-filters {
  display: flex; gap: 8px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 40px;
}
.dk-gallery-filter {
  padding: 8px 20px; font-size: .78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-full); color: rgba(255,255,255,.6);
  cursor: pointer; transition: var(--transition);
}
.dk-gallery-filter:hover, .dk-gallery-filter.active {
  background: var(--gradient); border-color: transparent; color: #fff;
}

.dk-update-card {
  padding: 28px; background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius-lg);
  transition: var(--transition);
}
.dk-update-card:hover {
  border-color: rgba(255,42,161,.25); transform: translateY(-4px);
}
.dk-update-card__icon svg {
  width: 28px; height: 28px; color: var(--pink-light); margin-bottom: 14px;
}
.dk-update-card h3 {
  font-family: var(--font-heading); font-size: 1.05rem; font-weight: 700;
  color: #fff; margin-bottom: 8px;
}
.dk-update-card p { font-size: .88rem; color: #94a3b8; line-height: 1.65; }

/* ===== CONTACT PAGE ===== */
.dk-contact-grid {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: grid; gap: 64px;
}
@media (min-width: 900px) { .dk-contact-grid { grid-template-columns: 1fr 1.2fr; gap: 80px; } }

.dk-contact-info h2 {
  font-family: var(--font-heading); font-size: clamp(1.8rem, 3.5vw, 2.5rem); font-weight: 800;
  letter-spacing: -.03em; color: #fff; margin-bottom: 16px;
}
.dk-contact-info > p {
  font-size: .95rem; color: #94a3b8; line-height: 1.75; margin-bottom: 32px;
}
.dk-contact-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.06);
}
.dk-contact-item svg {
  width: 22px; height: 22px; flex-shrink: 0; color: var(--pink-light); margin-top: 2px;
}
.dk-contact-item span {
  display: block; font-size: .72rem; font-weight: 700; color: #64748b;
  text-transform: uppercase; letter-spacing: .08em; margin-bottom: 4px;
}
.dk-contact-item a, .dk-contact-item p {
  font-size: .92rem; color: #e2e8f0; text-decoration: none; transition: var(--transition);
}
.dk-contact-item a:hover { color: var(--pink-light); }
.dk-contact-mailing {
  margin-top: 28px; padding: 20px; background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius-md);
  font-size: .88rem; color: #94a3b8; line-height: 1.7;
}
.dk-contact-mailing strong { color: #e2e8f0; }

/* Dark form */
.dk-form {
  padding: 36px; background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius-lg);
}
.dk-form .form-group { margin-bottom: 20px; }
.dk-form label {
  display: block; font-size: .78rem; font-weight: 700; color: rgba(255,255,255,.6);
  text-transform: uppercase; letter-spacing: .06em; margin-bottom: 8px;
}
.dk-form input, .dk-form select, .dk-form textarea {
  width: 100%; padding: 14px 16px; background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-md);
  color: #fff; font-size: .92rem; font-family: var(--font-body);
  transition: var(--transition);
}
.dk-form input::placeholder, .dk-form textarea::placeholder {
  color: #475569;
}
.dk-form input:focus, .dk-form select:focus, .dk-form textarea:focus {
  outline: none; border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(255,42,161,.1);
}
.dk-form select { appearance: none; cursor: pointer; }
.dk-form select option { background: var(--ink); color: #fff; }
.dk-form .btn--full { width: 100%; }

/* ---------- SCHEDULE PAGE ---------- */
.dk-schedule-list { display: flex; flex-direction: column; gap: 12px; }
.dk-schedule-item {
  display: flex; align-items: center; gap: 24px;
  padding: 20px 24px; background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius-md);
  transition: var(--transition);
}
.dk-schedule-item:hover { border-color: var(--pink); background: rgba(255,255,255,.05); }
.dk-schedule-item__date {
  display: flex; flex-direction: column; align-items: center; min-width: 60px;
  padding: 8px 12px; background: rgba(255,42,161,.1); border-radius: var(--radius-sm);
}
.dk-schedule-item__month {
  font-size: .65rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .1em; color: var(--pink);
}
.dk-schedule-item__day {
  font-size: 1.2rem; font-weight: 800; color: #fff; line-height: 1.2;
}
.dk-schedule-item__details { flex: 1; }
.dk-schedule-item__details h3 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.dk-schedule-item__meta {
  display: flex; gap: 16px; font-size: .82rem; color: #94a3b8; flex-wrap: wrap;
}
.dk-schedule-item__badge {
  font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
  padding: 4px 12px; border-radius: 20px; white-space: nowrap;
  background: rgba(255,255,255,.06); color: #94a3b8; border: 1px solid rgba(255,255,255,.1);
}
.dk-schedule-item__badge--highlight {
  background: rgba(255,42,161,.12); color: var(--pink); border-color: rgba(255,42,161,.3);
}
.dk-schedule-item__badge--event {
  background: rgba(123,63,228,.12); color: var(--purple); border-color: rgba(123,63,228,.3);
}
@media (max-width: 640px) {
  .dk-schedule-item { flex-wrap: wrap; gap: 12px; padding: 16px; }
  .dk-schedule-item__badge { margin-left: auto; }
}

/* ========================================
   MOBILE PERFORMANCE OPTIMIZATIONS
   ======================================== */

/* Reduce heavy blur/particle effects on mobile */
@media (max-width: 768px) {
  .dk-hero__orb { display: none; }
  .hero__particles { display: none; }
  .grain-overlay::before { display: none; }
  .dk-hero__bg { animation: none; }
  .dk-cta__watermark { display: none; }
  .photo-carousel__track { animation-duration: 50s; }
  .dk-hero { min-height: 50vh; }
  .dk-hero--compact { min-height: 40vh; }
  .dk-hero--page { min-height: 320px !important; max-height: 320px; }
  .dk-hero__scroll { display: none; }
  .dk-section { padding: 60px 0; }
  .section { padding: 60px 0; }
  .dk-cta { padding: 60px 0; }
  .dk-hero__title { font-size: clamp(2rem, 8vw, 3.5rem); }
}

@media (max-width: 480px) {
  .dk-hero__title { font-size: 2rem; }
  .dk-hero__sub { font-size: .9rem; }
  .dk-section { padding: 40px 0; }
  .section { padding: 40px 0; }
  .dk-cta { padding: 40px 0; }
  .dk-steps { gap: 16px; }
  .dk-invest-grid { gap: 16px; }
}

/* Respect user motion preferences */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .photo-carousel__track { animation: none; }
  .dk-hero__orb { display: none; }
  .hero__particles { display: none; }
}

/* Mobile navbar improvements */
@media (max-width: 1023px) {
  .navbar__right { display: none; }
}

/* Touch-friendly tap targets */
@media (max-width: 768px) {
  .btn { min-height: 44px; min-width: 44px; }
  .dk-gallery-filter { min-height: 44px; padding: 10px 20px; }
  .faq-q { min-height: 52px; }
  .footer__links a { padding: 6px 0; }
}

/* Mobile form improvements */
@media (max-width: 640px) {
  .dk-form { padding: 24px 20px; }
  .dk-form input, .dk-form select, .dk-form textarea {
    font-size: 16px; /* Prevent iOS zoom on focus */
  }
  .dk-contact-grid { gap: 32px; }
}

/* Lightbox mobile fixes */
@media (max-width: 640px) {
  .lightbox__content img { max-height: 70vh; }
  .coach-lightbox img { max-width: 92vw; max-height: 75vh; }
}

/* ============================================================
   EVENT BANNER (fixed bottom pill — shown when event is soon)
   ============================================================ */
#hvvcEventBanner {
  position: fixed; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 9000;
  background: rgba(10, 10, 14, 0.92);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 42, 161, .35);
  border-radius: 100px;
  padding: .7rem 1rem .7rem 1.25rem;
  box-shadow: 0 8px 40px rgba(0,0,0,.6), 0 0 0 1px rgba(255,42,161,.1);
  display: none;
  white-space: nowrap;
  animation: hvvcBannerUp .45s cubic-bezier(.22,1,.36,1) both;
}
@keyframes hvvcBannerUp {
  from { opacity: 0; transform: translateX(-50%) translateY(16px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.hvvc-banner__inner { display: flex; align-items: center; gap: .85rem; }
.hvvc-banner__badge {
  font-family: var(--font-mono); font-size: .5rem; letter-spacing: .22em; text-transform: uppercase;
  color: #000; background: var(--pink); padding: .2rem .65rem; border-radius: 100px; flex-shrink: 0;
}
.hvvc-banner__text {
  font-family: var(--font-mono); font-size: .65rem; letter-spacing: .06em; color: rgba(255,255,255,.8);
}
.hvvc-banner__text strong { color: #fff; }
.hvvc-banner__link {
  font-family: var(--font-mono); font-size: .6rem; letter-spacing: .1em; text-transform: uppercase;
  color: #000; background: var(--pink); padding: .35rem .9rem; border-radius: 100px;
  text-decoration: none; white-space: nowrap; transition: opacity .2s; flex-shrink: 0;
}
.hvvc-banner__link:hover { opacity: .85; }
.hvvc-banner__close {
  background: none; border: none; cursor: pointer; color: rgba(255,255,255,.35);
  font-size: .75rem; line-height: 1; padding: .1rem .2rem; transition: color .2s; flex-shrink: 0;
}
.hvvc-banner__close:hover { color: rgba(255,255,255,.8); }
@media (max-width: 600px) {
  #hvvcEventBanner {
    bottom: 1.25rem; left: 1rem; right: 1rem; transform: none;
    border-radius: 12px; white-space: normal;
  }
  @keyframes hvvcBannerUp {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
  }
}

/* ============================================================
   EVENTS PAGE
   ============================================================ */
.hvvc-event-card {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 0;
  align-items: stretch;
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.07);
  border-left: 3px solid var(--pink);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 3px;
  transition: border-color .3s ease;
}
.hvvc-event-card:hover { border-color: rgba(255,42,161,.35); }
.hvvc-event-card--past { opacity: .5; }
.hvvc-event-date {
  background: rgba(255,255,255,.03);
  border-right: 1px solid rgba(255,255,255,.07);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 2rem 1rem; text-align: center; gap: .2rem; flex-shrink: 0;
}
.hvvc-event-date__mo {
  font-family: var(--font-mono); font-size: .6rem; letter-spacing: .25em;
  text-transform: uppercase; color: var(--pink);
}
.hvvc-event-date__dy {
  font-family: var(--font-heading); font-size: 3.5rem; line-height: 1;
  font-weight: 700; color: #fff;
}
.hvvc-event-date__dow {
  font-family: var(--font-mono); font-size: .55rem; letter-spacing: .2em;
  text-transform: uppercase; color: var(--muted);
}
.hvvc-event-body { padding: 2rem 1.75rem; flex: 1; }
.hvvc-event-tag {
  display: inline-block; font-family: var(--font-mono); font-size: .6rem;
  letter-spacing: .22em; text-transform: uppercase;
  border: 1px solid; border-radius: 3px;
  padding: 3px 8px; margin-bottom: .85rem;
}
.hvvc-event-title {
  font-family: var(--font-heading); font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700; color: #fff; text-transform: uppercase;
  line-height: 1; margin-bottom: .85rem;
}
.hvvc-event-meta-row {
  display: flex; flex-wrap: wrap; gap: .4rem 1.75rem; margin-bottom: 1.25rem;
}
.hvvc-event-meta-row span {
  display: flex; align-items: center; gap: .4rem;
  font-family: var(--font-mono); font-size: .65rem;
  letter-spacing: .1em; text-transform: uppercase; color: var(--muted);
}
.hvvc-event-meta-row span svg { color: var(--pink); flex-shrink: 0; }
.hvvc-event-desc { color: var(--muted); font-size: .92rem; line-height: 1.7; max-width: 60ch; margin-bottom: 1.25rem; }
.hvvc-event-details {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem; padding-top: 1.25rem; border-top: 1px solid rgba(255,255,255,.06);
  margin-bottom: 1rem;
}
.hvvc-event-detail-group h4 {
  font-family: var(--font-mono); font-size: .6rem; letter-spacing: .22em;
  text-transform: uppercase; color: var(--pink); margin-bottom: .6rem;
}
.hvvc-event-detail-group ul { list-style: none; display: flex; flex-direction: column; gap: .3rem; }
.hvvc-event-detail-group li {
  font-size: .88rem; color: rgba(255,255,255,.7);
  display: flex; align-items: flex-start; gap: .5rem; line-height: 1.45;
}
.hvvc-event-detail-group li::before {
  content: "—"; color: var(--pink); flex-shrink: 0; font-size: .8rem; margin-top: .1rem;
}
.hvvc-event-notes {
  font-family: var(--font-mono); font-size: .68rem; letter-spacing: .1em;
  color: var(--pink); text-transform: uppercase; margin-top: .5rem;
}
.hvvc-event-coming-soon {
  font-size: .9rem; color: var(--muted); margin-top: .5rem;
}
.hvvc-event-coming-soon a { color: var(--pink); text-decoration: underline; }
.hvvc-event-cta {
  display: flex; flex-direction: column; align-items: flex-end; justify-content: center;
  padding: 2rem 1.5rem; flex-shrink: 0;
}
.hvvc-event-cta__soon {
  font-family: var(--font-mono); font-size: .6rem; letter-spacing: .2em;
  text-transform: uppercase; color: var(--muted);
  border: 1px solid rgba(255,255,255,.1); border-radius: 100px; padding: .3rem .8rem;
}
.hvvc-event-meta { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .1em; color: var(--muted); margin-bottom: .25rem; }
.hvvc-events-empty { font-family: var(--font-mono); font-size: .8rem; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); padding: 3rem 0; }
.hvvc-events-empty a { color: var(--pink); }
.hvvc-events-past-header {
  font-family: var(--font-mono); font-size: .7rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--muted); border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 2.5rem; margin: 2.5rem 0 1.25rem;
}
@media (max-width: 768px) {
  .hvvc-event-card { grid-template-columns: 1fr; }
  .hvvc-event-date {
    flex-direction: row; gap: 1rem; padding: 1.25rem 1.5rem;
    border-right: none; border-bottom: 1px solid rgba(255,255,255,.07);
    justify-content: flex-start;
  }
  .hvvc-event-date__dy { font-size: 2.5rem; }
  .hvvc-event-cta { padding: 0 1.5rem 1.5rem; align-items: flex-start; }
}

/* ============================================================
   EVENTS PREVIEW SECTION (homepage)
   ============================================================ */
.events-preview { padding: 72px 0 80px; }
.events-preview__header { margin-bottom: 48px; }
.events-preview__grid { display: flex; flex-direction: column; gap: 3px; }
.events-preview__footer { margin-top: 36px; text-align: center; }
