:root {
  --orange: #FA4616;
  --blue: #0021A5;
  --dark: #04061a;
  --darker: #020410;
  --mid: #0a0f2e;
  --light: #e8ecff;
  --gray: #8892b0;
  --white: #ffffff;
}

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

body {
  font-family: 'Barlow', sans-serif;
  background: var(--darker);
  color: var(--white);
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 10% 15%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 30% 40%, rgba(255,255,255,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 55% 8%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 75% 60%, rgba(255,255,255,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 85% 20%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(2px 2px at 45% 75%, rgba(250,70,22,0.2) 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 70px;
  background: rgba(2,4,16,0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(250,70,22,0.2);
  transition: all 0.3s ease;
}
nav.scrolled {
  background: rgba(2,4,16,0.97);
  border-bottom-color: rgba(250,70,22,0.5);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.nav-logo img {
  height: 46px;
  width: auto;
  filter: drop-shadow(0 0 8px rgba(250,70,22,0.4));
}
.nav-links {
  display: flex;
  gap: 0.15rem;
  list-style: none;
}
.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--light);
  text-decoration: none;
  padding: 0.45rem 0.65rem;
  border-radius: 4px;
  transition: all 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; right: 50%;
  height: 2px;
  background: var(--orange);
  transition: all 0.3s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { left: 0.65rem; right: 0.65rem; }
.nav-links a:hover, .nav-links a.active { color: var(--orange); }
.nav-cta {
  background: var(--orange) !important;
  color: var(--white) !important;
  border-radius: 4px;
}
.nav-cta::after { display: none !important; }

/* ── DROPDOWN NAV ── */
.nav-dropdown {
  position: relative;
  list-style: none;
}
.nav-dropdown > a {
  cursor: pointer;
  user-select: none;
}
.nav-dropdown > a::after {
  display: none !important;
}
.nav-dropdown .dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  background: #0d0d22;
  border: 1px solid var(--orange);
  border-radius: 6px;
  min-width: 190px;
  list-style: none;
  padding: 0.35rem 0;
  z-index: 999;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}
.nav-dropdown:hover .dropdown-menu {
  display: block;
}
.dropdown-item {
  display: block;
  padding: 0.55rem 1.1rem;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}
.dropdown-item:hover {
  background: var(--orange);
  color: #fff;
}
.nav-cta:hover { opacity: 0.88; color: var(--white) !important; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

/* ── MOBILE MENU ── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 70px; left: 0; right: 0;
  background: rgba(2,4,16,0.98);
  backdrop-filter: blur(14px);
  padding: 1.5rem 2rem;
  z-index: 999;
  border-bottom: 1px solid rgba(250,70,22,0.2);
  flex-direction: column;
  gap: 0;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--light);
  text-decoration: none;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--orange); }
.mobile-menu a:last-child { border-bottom: none; }

/* ── PAGE HERO ── */
.page-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--blue) 0%, rgba(0,21,128,0.8) 40%, var(--darker) 100%);
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(250,70,22,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(0,33,165,0.3) 0%, transparent 50%);
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--darker), transparent);
}
.page-hero-overlay { display: none; }
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 6rem 2rem 3rem;
}
.hero-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.75rem;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.2s forwards;
}
.page-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.6rem, 6vw, 5rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.05;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.4s forwards;
}
.page-subtitle {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 300;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.7);
  margin-top: 1rem;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.6s forwards;
}
.orange { color: var(--orange); }

/* ── LAYOUT ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.content-section {
  padding: 6rem 0;
  background: var(--darker);
  position: relative;
  z-index: 1;
}
.dark-section {
  padding: 6rem 0;
  background: var(--mid);
  position: relative;
  z-index: 1;
}
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.6rem;
}
.section-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
  color: var(--white);
}
.section-title span { color: var(--orange); }
.body-text {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* ── BUTTONS ── */
.btn-primary {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.9rem 2.25rem;
  background: var(--orange);
  color: var(--white);
  border: 2px solid var(--orange);
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.25s;
  display: inline-block;
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 100%; height: 100%;
  background: rgba(255,255,255,0.15);
  transition: left 0.3s ease;
}
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(250,70,22,0.4); }
.btn-secondary {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.9rem 2.25rem;
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.35);
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.25s;
  display: inline-block;
}
.btn-secondary:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── ABOUT PAGE EXTRAS ── */
.about-photo-block { position: relative; }
.photo-frame {
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid rgba(250,70,22,0.3);
}
.photo-badge {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  background: var(--orange);
  border-radius: 8px;
  padding: 1rem 1.5rem;
  text-align: center;
}
.badge-num {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  display: block;
  line-height: 1;
}
.badge-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.mv-card {
  background: rgba(4,6,26,0.85);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}
.mv-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--blue);
}
.mv-card-orange::before { background: var(--orange); }
.mv-icon { font-size: 2rem; margin-bottom: 1rem; }
.mv-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: var(--white);
}
.mv-card p { font-size: 0.9rem; color: var(--gray); line-height: 1.75; }
.values-6-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.value-card {
  background: rgba(0,33,165,0.1);
  border: 1px solid rgba(0,33,165,0.25);
  border-radius: 8px;
  padding: 1.5rem;
  transition: all 0.3s;
}
.value-card:hover {
  background: rgba(0,33,165,0.22);
  border-color: rgba(250,70,22,0.35);
  transform: translateY(-3px);
}
.vc-icon { font-size: 1.5rem; margin-bottom: 0.6rem; }
.value-card h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.4rem;
}
.value-card p { font-size: 0.82rem; color: var(--gray); line-height: 1.55; }

/* ── TEAMS PAGE EXTRAS ── */
.team-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
}
.team-detail-card {
  background: rgba(4,6,26,0.85);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s;
}
.team-detail-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.tdc-header {
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.tdc-beginner { background: rgba(255,255,255,0.06); }
.tdc-competitive { background: linear-gradient(135deg, rgba(0,33,165,0.6), rgba(0,33,165,0.3)); }
.tdc-elite { background: linear-gradient(135deg, rgba(250,70,22,0.5), rgba(250,70,22,0.2)); }
.tdc-age {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  font-weight: 900;
}
.tdc-level {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  background: rgba(255,255,255,0.12);
}
.tdc-body { padding: 2rem; }
.tdc-body h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.tdc-body p { font-size: 0.875rem; color: var(--gray); line-height: 1.65; margin-bottom: 1rem; }
.tdc-list {
  list-style: none;
  padding: 0;
}
.tdc-list li {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.tdc-list li:last-child { border-bottom: none; }
.programs-3-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.prog-card {
  background: rgba(4,6,26,0.8);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 2rem;
  transition: all 0.3s;
}
.prog-card:hover {
  border-color: rgba(250,70,22,0.3);
  transform: translateY(-3px);
}
.prog-icon { font-size: 2rem; margin-bottom: 1rem; }
.prog-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.prog-card p { font-size: 0.875rem; color: var(--gray); line-height: 1.65; margin-bottom: 1rem; }
.prog-location { font-size: 0.8rem !important; color: var(--orange) !important; }
.prog-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  text-decoration: none;
  transition: opacity 0.2s;
}
.prog-link:hover { opacity: 0.75; }

/* ── CTA BAND ── */
.cta-band {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, var(--blue) 0%, rgba(0,21,128,0.9) 50%, var(--darker) 100%);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.cta-band::before {
  content: 'LEGENDS';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(4rem, 12vw, 10rem);
  font-weight: 900;
  color: rgba(255,255,255,0.03);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 0.1em;
}

/* ── FOOTER ── */
footer {
  background: var(--darker);
  border-top: 1px solid rgba(250,70,22,0.18);
  padding: 3.5rem 2rem 2rem;
  position: relative;
  z-index: 1;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand img {
  height: 55px;
  width: auto;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 8px rgba(250,70,22,0.3));
}
.footer-brand p {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.social-links { display: flex; gap: 0.6rem; }
.social-link {
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  text-decoration: none;
  color: var(--gray);
  transition: all 0.2s;
  cursor: pointer;
}
.social-link:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}
.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.55rem; }
.footer-col ul li a {
  font-size: 0.82rem;
  color: var(--gray);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--orange); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.25); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media(max-width:1024px) {
  .two-col { grid-template-columns: 1fr; gap: 3rem; }
  .mv-grid { grid-template-columns: 1fr; }
  .values-6-grid { grid-template-columns: repeat(2, 1fr); }
  .team-cards-grid { grid-template-columns: 1fr; }
  .programs-3-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .nav-links { display: none !important; }
  .hamburger { display: flex; }
  .nav-dropdown { display: none !important; }
}
@media(max-width:768px) {
  .values-6-grid { grid-template-columns: 1fr; }
  .programs-3-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ── MOBILE DROPDOWN ── */
.mobile-dropdown {
  width: 100%;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-dropdown-toggle {
  width: 100%;
  background: none;
  border: none;
  color: rgba(255,255,255,0.85);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 1rem 1.5rem;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s;
}
.mobile-dropdown-toggle:hover { color: var(--orange); }
.mobile-dropdown-menu {
  display: none;
  flex-direction: column;
  background: rgba(255,255,255,0.04);
}
.mobile-dropdown-menu.open { display: flex; }
.mobile-dropdown-menu a {
  padding: 0.75rem 2.2rem;
  border-bottom: none !important;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}
.mobile-dropdown-menu a:hover { color: var(--orange); }
