/* ============ Reset & Base ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --pink: #ff1f8f;
  --pink-soft: #ffb3d6;
  --pink-glow: rgba(255, 31, 143, 0.55);
  --black: #0a0a0a;
  --ink: #14141a;
  --panel: #1a1a22;
  --white: #ffffff;
  --muted: #b8b8c4;
  --stripe: #1e1e26;
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

/* ============ Animated Stripe Background ============ */
.stripe-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    repeating-linear-gradient(
      115deg,
      transparent 0,
      transparent 80px,
      rgba(255,31,143,0.025) 80px,
      rgba(255,31,143,0.025) 82px,
      transparent 82px,
      transparent 160px,
      rgba(255,255,255,0.015) 160px,
      rgba(255,255,255,0.015) 162px
    ),
    radial-gradient(ellipse at 20% 0%, rgba(255,31,143,0.18) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(255,31,143,0.12) 0%, transparent 50%),
    var(--black);
  animation: drift 30s linear infinite;
}
@keyframes drift {
  0% { background-position: 0 0, 0 0, 0 0, 0 0; }
  100% { background-position: 400px 0, 0 0, 0 0, 0 0; }
}

/* Floating zebra stripes */
.float-stripes {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.float-stripes::before, .float-stripes::after {
  content: '';
  position: absolute;
  width: 200%;
  height: 60px;
  background: linear-gradient(90deg, transparent, var(--pink-glow), transparent);
  filter: blur(20px);
  opacity: 0.4;
}
.float-stripes::before {
  top: 15%;
  left: -50%;
  animation: slide-stripe 18s ease-in-out infinite;
}
.float-stripes::after {
  bottom: 20%;
  left: -50%;
  animation: slide-stripe 22s ease-in-out infinite reverse;
}
@keyframes slide-stripe {
  0%, 100% { transform: translateX(0) skewY(-2deg); }
  50% { transform: translateX(40%) skewY(2deg); }
}

/* ============ Navigation ============ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 31, 143, 0.2);
  padding: 0.85rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: padding 0.3s ease;
}
.navbar.scrolled { padding: 0.55rem 2rem; }

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--white);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.5px;
}
.nav-brand .logo-svg {
  width: 44px;
  height: 44px;
  filter: drop-shadow(0 0 10px var(--pink-glow));
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.nav-brand:hover .logo-svg { transform: rotate(-12deg) scale(1.08); }
.nav-brand .team-num {
  background: linear-gradient(135deg, var(--pink), var(--pink-soft));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0.5rem;
  align-items: center;
}
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  transition: all 0.25s ease;
  position: relative;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--white);
  background: rgba(255, 31, 143, 0.15);
}
.nav-links a.active {
  box-shadow: inset 0 0 0 1px rgba(255, 31, 143, 0.45);
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(255, 31, 143, 0.4);
  color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.2rem;
}

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%;
    right: 1rem;
    background: rgba(20, 20, 26, 0.96);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 1rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 31, 143, 0.25);
    min-width: 200px;
    transform-origin: top right;
    transform: scale(0);
    opacity: 0;
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.2s;
  }
  .nav-links.open {
    transform: scale(1);
    opacity: 1;
  }
  .nav-links a { width: 100%; }
}

/* ============ Layout ============ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
section { padding: 5rem 0; }

/* ============ Hero ============ */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 4rem 1.5rem;
}
.hero-content { max-width: 900px; }
.hero-pretitle {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(255, 31, 143, 0.15);
  border: 1px solid rgba(255, 31, 143, 0.35);
  border-radius: 999px;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--pink-soft);
  margin-bottom: 1.5rem;
  animation: pop-in 0.6s 0.1s both;
}
.hero h1 {
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  letter-spacing: -2px;
}
.hero h1 .accent {
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-soft) 50%, var(--white) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  animation: shimmer 4s ease-in-out infinite;
  background-size: 200% 200%;
}
@keyframes shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.hero p.lead {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--muted);
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

@keyframes pop-in {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* The big animated zebra in hero */
.hero-zebra {
  position: absolute;
  width: min(70vw, 600px);
  opacity: 0.07;
  z-index: -1;
  animation: gallop 6s ease-in-out infinite;
}
@keyframes gallop {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50% { transform: translateY(-20px) rotate(3deg); }
}

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: linear-gradient(135deg, var(--pink), #ff5fab);
  color: var(--white);
  box-shadow: 0 8px 30px rgba(255, 31, 143, 0.35);
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 40px rgba(255, 31, 143, 0.5);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 31, 143, 0.5);
}
.btn-secondary:hover {
  background: rgba(255, 31, 143, 0.1);
  border-color: var(--pink);
  transform: translateY(-3px);
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s;
}
.btn:hover::after { transform: translateX(100%); }

/* ============ Section Headings ============ */
.section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  margin-bottom: 1rem;
  letter-spacing: -1px;
}
.section-title .accent {
  color: var(--pink);
  position: relative;
}
.section-title .accent::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 4px;
  background: linear-gradient(90deg, var(--pink), transparent);
  border-radius: 4px;
}
.section-sub {
  color: var(--muted);
  font-size: 1.1rem;
  margin-bottom: 3rem;
  max-width: 700px;
}

/* ============ Reveal on Scroll ============ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============ Cards ============ */
.card {
  background: linear-gradient(180deg, rgba(30,30,38,0.7), rgba(20,20,26,0.7));
  border: 1px solid rgba(255, 31, 143, 0.15);
  border-radius: 20px;
  padding: 1.75rem;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--pink), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 31, 143, 0.5);
  box-shadow: 0 20px 50px rgba(255, 31, 143, 0.15);
}
.card:hover::before { opacity: 1; }

/* ============ Stats counters ============ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.25rem;
  margin: 2rem 0 3rem;
}
.stat-card {
  text-align: center;
  padding: 1.75rem 1rem;
}
.stat-number {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--pink), var(--pink-soft));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-label {
  color: var(--muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ============ Team badges (30415 / 30416) ============ */
.team-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.team-tab {
  background: rgba(30,30,38,0.7);
  border: 1px solid rgba(255, 31, 143, 0.2);
  color: var(--muted);
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.25s;
}
.team-tab.active {
  background: linear-gradient(135deg, var(--pink), #ff5fab);
  color: var(--white);
  border-color: var(--pink);
  box-shadow: 0 6px 20px rgba(255, 31, 143, 0.35);
}
.team-tab:hover:not(.active) {
  color: var(--white);
  border-color: rgba(255, 31, 143, 0.5);
}
.team-panel { display: none; animation: fade-up 0.4s ease; }
.team-panel.active { display: block; }
@keyframes fade-up {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============ Event blocks ============ */
.event-block {
  background: rgba(20, 20, 26, 0.5);
  border-left: 3px solid var(--pink);
  border-radius: 0 14px 14px 0;
  padding: 1.5rem 1.75rem;
  margin-bottom: 1.25rem;
  transition: all 0.3s;
}
.event-block:hover {
  border-left-width: 6px;
  background: rgba(30, 30, 38, 0.7);
}
.event-name { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.3rem; }
.event-date { color: var(--muted); font-size: 0.9rem; margin-bottom: 1rem; }
.event-detail {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.event-detail div { font-size: 0.95rem; }
.event-detail strong { color: var(--pink); display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; }

/* ============ Awards ============ */
.award-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.award-list li {
  background: linear-gradient(90deg, rgba(255, 31, 143, 0.12), transparent);
  border-left: 3px solid var(--pink);
  padding: 0.85rem 1.25rem;
  border-radius: 0 12px 12px 0;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.award-list li::before {
  content: '★';
  color: var(--pink);
  font-size: 1.3rem;
}

/* ============ People grid (team / coaches) ============ */
.people-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.person-card {
  background: linear-gradient(180deg, rgba(30,30,38,0.75), rgba(20,20,26,0.75));
  border: 1px solid rgba(255, 31, 143, 0.15);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}
.person-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: var(--pink);
  box-shadow: 0 25px 60px rgba(255, 31, 143, 0.2);
}
.person-photo {
  width: 100%;
  height: 280px;
  background: linear-gradient(135deg, #2a2a36, #1a1a22);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.person-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(45deg, transparent 0, transparent 20px, rgba(255,31,143,0.05) 20px, rgba(255,31,143,0.05) 22px);
}
.person-photo .placeholder-initials {
  font-size: 4rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--pink), var(--pink-soft));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  z-index: 1;
}
.person-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.person-info { padding: 1.5rem; }
.person-name { font-size: 1.35rem; font-weight: 800; margin-bottom: 0.25rem; }
.person-role {
  color: var(--pink);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 0.9rem;
  font-weight: 600;
}
.person-bio {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  line-height: 1.55;
}
.person-contact {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 31, 143, 0.15);
  font-size: 0.88rem;
  color: var(--muted);
}
.person-contact a {
  color: var(--pink-soft);
  text-decoration: none;
  transition: color 0.2s;
}
.person-contact a:hover { color: var(--white); }

/* ============ Blog ============ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}
.blog-card {
  background: linear-gradient(180deg, rgba(30,30,38,0.7), rgba(20,20,26,0.7));
  border: 1px solid rgba(255, 31, 143, 0.15);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.blog-card:hover {
  transform: translateY(-6px);
  border-color: var(--pink);
}
.blog-date {
  display: inline-block;
  background: rgba(255, 31, 143, 0.15);
  color: var(--pink-soft);
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.blog-title {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  line-height: 1.25;
}
.blog-excerpt {
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.6;
}
.blog-tag {
  display: inline-block;
  font-size: 0.75rem;
  color: var(--pink);
  margin-top: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ============ About / story ============ */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 800px) { .story-grid { grid-template-columns: 1fr; } }
.story-text p { margin-bottom: 1.25rem; color: var(--muted); font-size: 1.05rem; }
.story-text p:first-of-type::first-letter {
  font-size: 3rem;
  font-weight: 900;
  color: var(--pink);
  float: left;
  margin-right: 0.5rem;
  line-height: 0.9;
  margin-top: 0.25rem;
}

.timeline {
  position: relative;
  padding-left: 2rem;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--pink), transparent);
}
.timeline-item {
  position: relative;
  padding-bottom: 2rem;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -2rem;
  top: 5px;
  width: 16px;
  height: 16px;
  background: var(--pink);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255, 31, 143, 0.25);
}
.timeline-year { color: var(--pink); font-weight: 700; font-size: 0.9rem; letter-spacing: 1px; }
.timeline-title { font-size: 1.15rem; font-weight: 700; margin: 0.25rem 0 0.4rem; }
.timeline-text { color: var(--muted); font-size: 0.95rem; }

/* ============ Outreach ============ */
.outreach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.outreach-card {
  padding: 2rem;
  background: linear-gradient(180deg, rgba(30,30,38,0.7), rgba(20,20,26,0.7));
  border: 1px solid rgba(255, 31, 143, 0.15);
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.outreach-card:hover {
  transform: translateY(-6px) rotate(-0.3deg);
  border-color: var(--pink);
  box-shadow: 0 20px 50px rgba(255, 31, 143, 0.15);
}
.outreach-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 31, 143, 0.25), rgba(255, 31, 143, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(255, 31, 143, 0.3);
}
.outreach-card h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: 0.5rem; }
.outreach-card p { color: var(--muted); font-size: 0.95rem; }
.outreach-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  margin-top: 3rem;
}

/* ============ Footer ============ */
.footer {
  border-top: 1px solid rgba(255, 31, 143, 0.18);
  padding: 3rem 1.5rem 2rem;
  text-align: center;
  color: var(--muted);
  background: rgba(10, 10, 10, 0.7);
}
.footer .footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--white);
}
.footer .footer-logo svg { width: 36px; height: 36px; }
.footer p { font-size: 0.9rem; }
.footer-contact {
  margin: 1.5rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  align-items: center;
  font-size: 0.9rem;
}
.footer-contact p { margin: 0; }
.footer-contact a {
  color: var(--pink-soft);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-contact a:hover { color: var(--white); }

/* ============ Utilities ============ */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
@media (max-width: 800px) { .grid-2 { grid-template-columns: 1fr; } }
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; } .mb-2 { margin-bottom: 2rem; }

/* ============ Profile Modal ============ */
.person-card { cursor: pointer; }
.person-card::after {
  content: '→';
  position: absolute;
  bottom: 1rem;
  right: 1.25rem;
  color: var(--pink);
  font-size: 1.5rem;
  font-weight: 800;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}
.person-card:hover::after {
  opacity: 1;
  transform: translateX(0);
}
.person-card:focus-visible {
  outline: 2px solid var(--pink);
  outline-offset: 4px;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.modal {
  background: linear-gradient(180deg, rgba(30,30,38,0.98), rgba(18,18,24,0.98));
  border: 1px solid rgba(255, 31, 143, 0.35);
  border-radius: 24px;
  max-width: 560px;
  width: 100%;
  max-height: 92vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(40px) scale(0.94);
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 30px 80px rgba(255, 31, 143, 0.22);
}
.modal-overlay.open .modal {
  transform: translateY(0) scale(1);
}
.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(10, 10, 10, 0.6);
  border: 1px solid rgba(255, 31, 143, 0.4);
  color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.25s ease;
  font-weight: 300;
}
.modal-close:hover {
  background: var(--pink);
  border-color: var(--pink);
  transform: rotate(90deg);
}
.modal-photo {
  width: 100%;
  height: 260px;
  background: linear-gradient(135deg, #2a2a36, #1a1a22);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-radius: 24px 24px 0 0;
}
.modal-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, transparent 0, transparent 22px, rgba(255,31,143,0.06) 22px, rgba(255,31,143,0.06) 24px);
}
.modal-photo .placeholder-initials {
  font-size: 5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--pink), var(--pink-soft));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  z-index: 1;
}
.modal-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.modal-body {
  padding: 1.75rem 2rem 2.25rem;
}
.modal-name {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 0.3rem;
  letter-spacing: -0.5px;
}
.modal-role {
  color: var(--pink);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  margin-bottom: 1.25rem;
  font-weight: 700;
}
.modal-bio {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
.modal-contact {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 31, 143, 0.2);
  font-size: 0.95rem;
}
.modal-contact-item {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  color: var(--muted);
}
.modal-contact-item strong {
  color: var(--white);
  min-width: 70px;
  font-weight: 600;
}
.modal-contact a {
  color: var(--pink-soft);
  text-decoration: none;
  transition: color 0.2s;
  word-break: break-word;
}
.modal-contact a:hover { color: var(--white); }
body.modal-open { overflow: hidden; }

/* ============ Cursor follower (Apple-style glow) ============ */
.cursor-follower {
  position: fixed;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 31, 143, 0.18) 0%, rgba(255, 31, 143, 0.05) 35%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 0;
  opacity: 0;
  transition: opacity 0.3s ease, width 0.3s ease, height 0.3s ease;
  filter: blur(20px);
}
.cursor-follower.active { opacity: 1; }
.cursor-follower.hover-link {
  width: 700px;
  height: 700px;
}
@media (pointer: coarse) { .cursor-follower { display: none; } }

/* ============ Scroll progress bar ============ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--pink), var(--pink-soft));
  z-index: 999;
  width: 0%;
  box-shadow: 0 0 12px var(--pink-glow), 0 0 24px var(--pink-glow);
  transition: width 0.05s linear;
}

/* ============ Massive headline (Apple-style) ============ */
.mega-text {
  font-size: clamp(3.5rem, 14vw, 11rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.04em;
  margin-bottom: 2rem;
}
.mega-text-mid {
  font-size: clamp(2.5rem, 8vw, 6rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 3rem;
}
.hero-mega { min-height: 100vh; padding-bottom: 6rem; }

/* Animated word reveal */
.word-reveal {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}
.word-reveal > span {
  display: inline-block;
  transform: translateY(110%);
  animation: word-up 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.word-reveal.delay-1 > span { animation-delay: 0.15s; }
.word-reveal.delay-2 > span { animation-delay: 0.3s; }
@keyframes word-up {
  from { transform: translateY(110%); }
  to { transform: translateY(0); }
}

/* Scroll hint at bottom of hero */
.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  opacity: 0;
  animation: fade-in-up 1s 1.2s ease forwards;
}
.scroll-line {
  width: 2px;
  height: 50px;
  background: linear-gradient(180deg, var(--pink), transparent);
  border-radius: 999px;
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: -30px;
  left: 0;
  width: 100%;
  height: 30px;
  background: var(--pink);
  border-radius: 999px;
  animation: scroll-bob 2.2s ease-in-out infinite;
}
@keyframes scroll-bob {
  0% { top: -30px; opacity: 0; }
  40% { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}
@keyframes fade-in-up {
  from { opacity: 0; transform: translate(-50%, 20px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}

/* ============ Big stats strip ============ */
.stats-strip {
  padding: 7rem 0;
  border-top: 1px solid rgba(255, 31, 143, 0.12);
  border-bottom: 1px solid rgba(255, 31, 143, 0.12);
  background: linear-gradient(180deg, transparent, rgba(255, 31, 143, 0.02), transparent);
}
.stats-grid-big {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
@media (max-width: 720px) { .stats-grid-big { grid-template-columns: repeat(2, 1fr); gap: 3rem 1.5rem; } }
.stat-big-item { text-align: center; }
.stat-big-num {
  font-size: clamp(3rem, 9vw, 6.5rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--white) 0%, var(--pink-soft) 50%, var(--pink) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -3px;
  line-height: 1;
  display: inline-block;
}
.stat-big-label {
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-top: 1rem;
  font-weight: 600;
}

/* ============ Marquee strip ============ */
.marquee {
  overflow: hidden;
  padding: 2.5rem 0;
  border-top: 1px solid rgba(255, 31, 143, 0.15);
  border-bottom: 1px solid rgba(255, 31, 143, 0.15);
  background: rgba(255, 31, 143, 0.02);
  position: relative;
}
.marquee-track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: marquee 35s linear infinite;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -1px;
  align-items: center;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 31, 143, 0.7);
  width: max-content;
}
.marquee-track .m-dot {
  width: 14px;
  height: 14px;
  background: var(--pink);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 12px var(--pink-glow);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee:hover .marquee-track { animation-play-state: paused; }

/* ============ Pillars (Build / Compete / Mentor) ============ */
.pillars-section { padding: 8rem 0; }
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.pillar {
  background: linear-gradient(180deg, rgba(30,30,38,0.7), rgba(20,20,26,0.7));
  border: 1px solid rgba(255, 31, 143, 0.15);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}
.pillar:hover {
  border-color: rgba(255, 31, 143, 0.5);
  box-shadow: 0 25px 60px rgba(255, 31, 143, 0.15);
  transform: translateY(-6px);
}
.pillar::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  right: -100px;
  height: 200px;
  background: radial-gradient(ellipse at center, rgba(255, 31, 143, 0.25) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}
.pillar:hover::before { opacity: 1; }
.pillar-num {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--pink);
  letter-spacing: 3px;
  margin-bottom: 1.25rem;
}
.pillar h3 {
  font-size: clamp(1.6rem, 3.5vw, 2.25rem);
  font-weight: 900;
  margin-bottom: 1rem;
  letter-spacing: -1px;
}
.pillar p {
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.98rem;
}

/* ============ Featured blog teaser ============ */
.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.flex-between .section-title { margin-bottom: 0; }
.featured-blog {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 31, 143, 0.22);
  background: linear-gradient(135deg, rgba(255, 31, 143, 0.08), rgba(20,20,26,0.85));
}
@media (max-width: 800px) { .featured-blog { grid-template-columns: 1fr; } }
.featured-blog-content {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.featured-blog-title {
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  font-weight: 900;
  margin: 1rem 0 1rem;
  letter-spacing: -0.5px;
  line-height: 1.1;
}
.featured-blog-text {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 1.75rem;
}
.featured-blog-visual {
  background: linear-gradient(135deg, rgba(255, 31, 143, 0.25), rgba(255, 31, 143, 0.02));
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.visual-orb {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--pink-soft), var(--pink) 50%, transparent 75%);
  filter: blur(2px);
  animation: float-shape 9s ease-in-out infinite;
}
.visual-orb-2 {
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 2px solid rgba(255, 31, 143, 0.4);
  animation: float-shape 11s ease-in-out infinite reverse;
}
@keyframes float-shape {
  0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); }
  33% { transform: translate(-25px, 35px) scale(1.1) rotate(20deg); }
  66% { transform: translate(35px, -25px) scale(0.9) rotate(-15deg); }
}

/* ============ Big CTA section ============ */
.sponsor-cta-section { padding: 6rem 0 8rem; }
.cta-big {
  text-align: center;
  padding: 5rem 2rem;
  background: linear-gradient(135deg, rgba(255, 31, 143, 0.12), rgba(255, 31, 143, 0.03));
  border: 1px solid rgba(255, 31, 143, 0.28);
  border-radius: 32px;
  position: relative;
  overflow: hidden;
}
.cta-big::before, .cta-big::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(90px);
  z-index: 0;
}
.cta-big::before { background: var(--pink); opacity: 0.22; top: -150px; left: -150px; animation: float-shape 12s ease-in-out infinite; }
.cta-big::after  { background: var(--pink-soft); opacity: 0.18; bottom: -150px; right: -150px; animation: float-shape 14s ease-in-out infinite reverse; }
.cta-big > * { position: relative; z-index: 1; }
.cta-big-title {
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 1.5rem;
}
.cta-big-sub {
  color: var(--muted);
  font-size: 1.15rem;
  max-width: 560px;
  margin: 0 auto 2.5rem;
}
.btn-big { font-size: 1.1rem; padding: 1.1rem 2.25rem; }

/* ============ Sponsorship tiers ============ */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.tier {
  background: linear-gradient(180deg, rgba(30,30,38,0.78), rgba(20,20,26,0.78));
  border: 1px solid rgba(255, 31, 143, 0.18);
  border-radius: 28px;
  padding: 3rem 2rem 2.5rem;
  position: relative;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  flex-direction: column;
}
.tier:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 31, 143, 0.45);
  box-shadow: 0 30px 70px rgba(255, 31, 143, 0.18);
}
.tier.featured {
  background: linear-gradient(180deg, rgba(255, 31, 143, 0.18), rgba(255, 31, 143, 0.04));
  border-color: var(--pink);
  box-shadow: 0 20px 60px rgba(255, 31, 143, 0.15);
}
@media (min-width: 900px) {
  .tier.featured { transform: scale(1.04); }
  .tier.featured:hover { transform: translateY(-10px) scale(1.04); }
}
.tier-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--pink);
  color: white;
  padding: 0.4rem 1.1rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  box-shadow: 0 6px 18px rgba(255, 31, 143, 0.45);
  white-space: nowrap;
}
.tier.title-tier .tier-badge {
  background: linear-gradient(135deg, #ffb3d6, var(--pink));
  color: var(--ink);
}
.tier-header { text-align: center; margin-bottom: 1.75rem; padding-bottom: 1.5rem; border-bottom: 1px solid rgba(255,31,143,0.18); }
.tier-name {
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--pink-soft);
  margin-bottom: 0.85rem;
}
.tier-price {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -2px;
  background: linear-gradient(135deg, var(--white), var(--pink-soft));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.tier-price-sub {
  color: var(--muted);
  font-size: 0.85rem;
  margin-top: 0.4rem;
}
.tier-benefits { list-style: none; flex: 1; }
.tier-benefits li {
  padding: 0.65rem 0 0.65rem 2rem;
  position: relative;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}
.tier-benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 22px;
  height: 22px;
  background: rgba(255, 31, 143, 0.18);
  color: var(--pink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
}
.tier.featured .tier-benefits li::before { background: rgba(255, 31, 143, 0.3); }
.tier-benefits li.everything {
  font-weight: 700;
  color: var(--white);
  font-style: italic;
}
.tier-benefits li.everything::before { background: var(--pink); color: white; }

/* ============ Page-section pretitle ring ============ */
.eyebrow {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(255, 31, 143, 0.12);
  border: 1px solid rgba(255, 31, 143, 0.3);
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--pink-soft);
  margin-bottom: 1.5rem;
  font-weight: 600;
}
