/* ============================================
   Athlete Development Club — Shared Stylesheet
   ============================================ */

:root {
  --black: #0A0A0A;
  --black-soft: #101014;
  --panel: #1B3E73;
  --border: rgba(255, 255, 255, 0.14);

  --gold: #E8621F;
  --gold-text: #14213D;
  --blue: #1B3E73;
  --blue-accent: #4F8AF0;
  --white: #FFFFFF;
  --gray: #B9C0CC;
  --gray-dim: #7A8494;

  --font-display: 'Oswald', -apple-system, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --gold-glow: rgba(232, 98, 31, 0.28);
  --blue-glow: rgba(46, 92, 160, 0.35);

  --container: 1160px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2px;
  line-height: 1.05;
}

/* ===== Skip link (accessibility) ===== */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--gold);
  color: var(--gold-text);
  padding: 10px 16px;
  z-index: 200;
}
.skip-link:focus { left: 16px; top: 16px; }

/* ===== Header / Nav ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
}

.nav-left { display: flex; align-items: center; gap: 14px; }

.home-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border: 1px solid var(--blue-accent);
  border-radius: 6px;
  color: var(--blue-accent);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  flex-shrink: 0;
  transition: background 0.2s ease, color 0.2s ease;
}
.home-btn:hover { background: var(--blue-accent); color: var(--white); }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-mark {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-dim);
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: 1.1;
  text-align: center;
}
.logo-mark img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.nav-logo-text { display: flex; flex-direction: column; gap: 3px; }
.nav-logo-main {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  background: linear-gradient(90deg, var(--gold), var(--blue-accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.nav-logo-text span:last-child { color: var(--gray); font-family: var(--font-body); font-weight: 600; font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; }

.nav-social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--gray);
  flex-shrink: 0;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.nav-social:hover { color: var(--gold); border-color: var(--gold); }
.nav-social svg { width: 17px; height: 17px; flex-shrink: 0; }
.nav-social-label { display: none; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  position: relative;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray);
  padding-bottom: 4px;
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-links a.active {
  color: var(--white);
}
.nav-links a.active::after { width: 100%; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: filter 0.2s ease;
}
.nav-links a.nav-cta { color: var(--white); padding: 10px 22px; }
.nav-cta:hover { filter: brightness(1.12); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
}

@media (max-width: 860px) {
  .nav-links { position: fixed; top: 66px; left: 0; right: 0; background: var(--black); flex-direction: column; align-items: flex-start; gap: 0; border-bottom: 1px solid var(--border); max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
  .nav-links.open { max-height: 480px; }
  .nav-links a, .nav-links a.nav-cta { width: 100%; padding: 16px 24px; border-bottom: 1px solid var(--border); border-radius: 0; text-align: left; }
  .nav-links a.active { border-bottom: 1px solid var(--border); background: var(--panel); }
  .nav-links a.nav-social {
    width: 100%;
    height: auto;
    justify-content: flex-start;
    gap: 12px;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid var(--border);
    padding: 16px 24px;
    margin: 0;
  }
  .nav-links a.nav-social:hover { color: var(--gold); }
  .nav-social-label {
    display: inline;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
  }
  .nav-social svg { width: 20px; height: 20px; }
  .nav-links a::after { display: none; }
  .nav-toggle { display: block; }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: filter 0.2s ease, transform 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }

.btn-primary { position: relative; overflow: hidden; background: var(--gold); color: var(--white); box-shadow: 0 10px 28px var(--gold-glow); }
.btn-primary:hover { filter: brightness(1.08); box-shadow: 0 12px 34px var(--gold-glow); }
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -60%;
  width: 35%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-20deg);
  animation: shimmerSweep 4.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes shimmerSweep {
  0% { left: -60%; }
  18% { left: 130%; }
  100% { left: 130%; }
}

.btn-secondary { background: var(--gold); color: var(--white); border: none; }
.btn-secondary:hover { filter: brightness(1.1); box-shadow: 0 10px 28px var(--gold-glow); }

.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===== Hero (homepage) ===== */
.hero {
  position: relative;
  z-index: 0;
  overflow: hidden;
  padding: 100px 24px 80px;
  background: var(--black-soft);
}

.hero-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.hero-eyebrow {
  color: var(--gold);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
  animation: heroFadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: 0.05s;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(36px, 5vw, 58px);
  margin-bottom: 22px;
  animation: heroFadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: 0.15s;
}

.hero p {
  color: var(--white);
  font-size: 17px;
  max-width: 480px;
  margin: 0 0 32px;
  animation: heroFadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: 0.25s;
}

.hero .btn-row {
  animation: heroFadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: 0.35s;
}

/* Inline stat row, replaces the old full-bleed banner */
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  animation: heroFadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: 0.45s;
}
.hero-stats .stat-num { font-family: var(--font-display); font-size: 26px; font-weight: 800; color: var(--gold); }
.hero-stats .stat-label { font-size: 12.5px; color: var(--gray); text-transform: uppercase; letter-spacing: 0.5px; margin-top: 2px; }

/* Embedded evaluation card, the hero's signature element */
.eval-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px 28px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 0 1px rgba(232,98,31,0.08);
  animation: heroSlideRight 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: 0.3s;
}
.eval-card h3 { color: var(--white); font-size: 19px; margin-bottom: 6px; }
.eval-card .eval-sub { color: var(--gray); font-size: 13.5px; margin-bottom: 22px; }
.eval-card .field { margin-bottom: 14px; }
.eval-card .field label { font-size: 11px; }
.eval-card .field input, .eval-card .field select { padding: 10px 12px; font-size: 14px; }
.eval-card .btn-primary { width: 100%; text-align: center; border: none; cursor: pointer; }
.eval-card .eval-note { color: var(--gray-dim); font-size: 11.5px; margin-top: 14px; text-align: center; }

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes heroSlideRight {
  from { opacity: 0; transform: translateX(44px); }
  to { opacity: 1; transform: translateX(0); }
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; }
}

/* ===== Page header (interior pages) ===== */
.page-header {
  padding: 64px 24px 40px;
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.page-header .eyebrow { color: var(--gold); font-weight: 700; font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 12px; }
.page-header h1 { color: var(--white); font-size: clamp(32px, 5vw, 48px); margin-bottom: 14px; }
.page-header p { color: var(--gray); max-width: 620px; margin: 0 auto; font-size: 16px; }

/* ===== Scroll-reveal system ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-52px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-left.is-visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(52px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-right.is-visible { opacity: 1; transform: translateX(0); }

/* ===== Background pattern utilities ===== */

/* Giant faded lettering behind content, e.g. data-letters="ADC" */
.bg-lettering { position: relative; z-index: 0; overflow: hidden; }
.bg-lettering::before {
  content: attr(data-letters);
  position: absolute;
  z-index: -1;
  top: 50%;
  right: -2%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(160px, 22vw, 420px);
  line-height: 1;
  color: rgba(232, 98, 31, 0.07);
  letter-spacing: -0.02em;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

/* Soft dot-grid texture, fades toward the edges, drifts slowly */
.bg-dots { position: relative; z-index: 0; overflow: hidden; }
.bg-dots::before {
  content: '';
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.09) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  -webkit-mask-image: radial-gradient(ellipse at center, black 35%, transparent 78%);
  mask-image: radial-gradient(ellipse at center, black 35%, transparent 78%);
  pointer-events: none;
  animation: dotsDrift 42s linear infinite;
}

/* Diagonal stripes, orange or gray variant, slowly scrolling */
.bg-diagonal-orange, .bg-diagonal-gray { position: relative; z-index: 0; overflow: hidden; }
.bg-diagonal-orange::before, .bg-diagonal-gray::before {
  content: '';
  position: absolute;
  z-index: -1;
  inset: -20% -10%;
  background-repeat: repeat;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(180deg, transparent, black 30%, black 70%, transparent);
  mask-image: linear-gradient(180deg, transparent, black 30%, black 70%, transparent);
  animation: diagonalDrift 28s linear infinite;
}
.bg-diagonal-orange::before {
  background-image: repeating-linear-gradient(-45deg, rgba(232, 98, 31, 0.08), rgba(232, 98, 31, 0.08) 2px, transparent 2px, transparent 42px);
}
.bg-diagonal-gray::before {
  background-image: repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.05) 2px, transparent 2px, transparent 42px);
}

@keyframes dotsDrift {
  from { background-position: 0 0; }
  to { background-position: 280px 280px; }
}
@keyframes diagonalDrift {
  from { background-position: 0 0; }
  to { background-position: 300px 300px; }
}

/* Floating particle dots */
.particles { position: absolute; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; }
.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--gold);
  animation: floatDrift 9s ease-in-out infinite;
}
@keyframes floatDrift {
  0%, 100% { transform: translate(0, 0); opacity: 0.25; }
  50% { transform: translate(10px, -26px); opacity: 0.55; }
}

/* Pulsing radial glow behind the hero */
.hero::after {
  content: '';
  position: absolute;
  z-index: -1;
  inset: 0;
  background: radial-gradient(circle at 15% 20%, rgba(232, 98, 31, 0.22), transparent 55%);
  animation: glowPulse 6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}

/* Secondary ticker strip, subdued, opposite direction to the main banner */
.ticker-strip {
  background: var(--black-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-track {
  display: inline-flex;
  animation: marqueeScroll 44s linear infinite reverse;
}
.ticker-track span {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  padding: 0 26px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.ticker-track span::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  display: inline-block;
}
.ticker-track span:nth-child(even)::before { background: var(--blue-accent); }

/* Blueprint grid lines, fades toward edges */
.bg-grid { position: relative; z-index: 0; overflow: hidden; }
.bg-grid::before {
  content: '';
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 85%);
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 85%);
  pointer-events: none;
}

/* Repeating chevron / arrow pattern */
.bg-chevron { position: relative; z-index: 0; overflow: hidden; }
.bg-chevron::before {
  content: '';
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='34' viewBox='0 0 60 34'%3E%3Cpath d='M0 0 L30 17 L60 0 L60 8 L30 25 L0 8 Z' fill='%23E8621F' fill-opacity='0.09'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 60px 34px;
  -webkit-mask-image: linear-gradient(180deg, transparent, black 25%, black 75%, transparent);
  mask-image: linear-gradient(180deg, transparent, black 25%, black 75%, transparent);
  pointer-events: none;
}

/* Sparse angled motion streaks */
.bg-speedlines { position: relative; z-index: 0; overflow: hidden; }
.bg-speedlines::before {
  content: '';
  position: absolute;
  z-index: -1;
  inset: -10% -5%;
  background-image: repeating-linear-gradient(
    100deg,
    transparent 0px, transparent 60px,
    rgba(232, 98, 31, 0.12) 60px, rgba(232, 98, 31, 0.12) 64px,
    transparent 64px, transparent 140px,
    rgba(255, 255, 255, 0.06) 140px, rgba(255, 255, 255, 0.06) 143px
  );
  pointer-events: none;
}

/* Crosshatch, two diagonals layered */
.bg-crosshatch { position: relative; z-index: 0; overflow: hidden; }
.bg-crosshatch::before {
  content: '';
  position: absolute;
  z-index: -1;
  inset: -20% -10%;
  background-image:
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.05) 0, rgba(255, 255, 255, 0.05) 1px, transparent 1px, transparent 34px),
    repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.05) 0, rgba(255, 255, 255, 0.05) 1px, transparent 1px, transparent 34px);
  -webkit-mask-image: linear-gradient(180deg, transparent, black 30%, black 70%, transparent);
  mask-image: linear-gradient(180deg, transparent, black 30%, black 70%, transparent);
  pointer-events: none;
}

/* ===== Sections ===== */
.section { padding: 84px 24px; border-top: 1px solid var(--border); }
.section-alt { background: var(--black-soft); }

.section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-head .eyebrow { color: var(--gold); font-weight: 700; font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 10px; }
.section-head h2 { color: var(--white); font-size: clamp(28px, 4vw, 42px); }
.section-head p { color: var(--gray); margin-top: 14px; font-size: 16px; }

/* ===== Card grid ===== */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 28px;
  transition: box-shadow 0.25s ease, transform 0.2s ease, border-color 0.25s ease;
}
.card:hover { border-color: rgba(232,98,31,0.4); box-shadow: 0 16px 40px var(--gold-glow); transform: translateY(-3px); }
.card .card-dot {
  display: inline-block;
  background: var(--gold);
  color: var(--gold-text);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 16px;
}
.card h3 { color: var(--white); font-size: 20px; margin-bottom: 10px; }
.card p { color: var(--gray); font-size: 14.5px; }

/* ===== Program tier cards ===== */
.tier {
  background: rgba(10, 10, 10, 0.62);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.tier:hover { transform: translateY(-4px); border-color: rgba(232,98,31,0.4); box-shadow: 0 16px 40px var(--gold-glow); }
.tier .img-placeholder {
  aspect-ratio: 16 / 10;
  border: none;
  border-radius: 0;
  margin-bottom: 0;
}
.tier-body { padding: 28px 26px 30px; display: flex; flex-direction: column; flex: 1; }
.tier .tier-age { color: var(--gold); font-weight: 700; font-size: 12px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 8px; }
.tier h3 { color: var(--white); font-size: 24px; margin-bottom: 12px; }
.tier p { color: var(--gray); font-size: 14.5px; margin-bottom: 20px; }
.tier ul { margin-bottom: 26px; flex-grow: 1; }
.tier li { color: var(--white); font-size: 14px; padding: 7px 0; border-top: 1px solid var(--border); }
.tier li:first-child { border-top: none; }

/* ===== Forms (Apply / Contact) ===== */
.form-panel {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px;
  max-width: 640px;
  margin: 0 auto;
}
.field { margin-bottom: 20px; }
.field label { display: block; font-size: 13px; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; color: var(--gray); margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%;
  background: var(--black-soft);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 12px 14px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.field textarea { resize: vertical; min-height: 110px; }

/* ===== Banner strip (matches Instagram post CTA bar) ===== */
.banner-strip {
  background: var(--gold);
  padding: 22px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  animation: marqueeScroll 16s linear infinite;
}
.marquee-track span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold-text);
  padding: 0 36px;
  display: inline-block;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== Footer ===== */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 56px 24px 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-grid h4 { color: var(--white); font-size: 14px; letter-spacing: 1px; margin-bottom: 16px; }
.footer-grid p, .footer-grid a { color: var(--gray); font-size: 14px; }
.footer-grid li { margin-bottom: 10px; }
.footer-grid a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--gray-dim);
  font-size: 13px;
}

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

/* ===== About dropdown nav (Our Story / Coaches) ===== */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  all: unset;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray);
  padding-bottom: 4px;
  transition: color 0.2s ease;
}
.nav-dropdown-toggle .caret { font-size: 9px; transition: transform 0.2s ease; }
.nav-dropdown-toggle:hover { color: var(--white); }
.nav-dropdown-toggle.active { color: var(--white); }
.nav-dropdown.open .nav-dropdown-toggle .caret,
.nav-dropdown:hover .nav-dropdown-toggle .caret { transform: rotate(180deg); }

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 0;
  background: var(--black-soft);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 8px;
  min-width: 190px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  box-shadow: 0 20px 44px rgba(0,0,0,0.5);
  z-index: 50;
}
.nav-dropdown.open .nav-dropdown-menu,
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: 11px 14px;
  border-radius: 6px;
  color: var(--gray);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
}
.nav-dropdown-menu a:hover { color: var(--white); background: rgba(255,255,255,0.06); }
.nav-dropdown-menu a.active { color: var(--gold); }

@media (max-width: 860px) {
  .nav-dropdown-toggle { width: 100%; padding: 16px 24px; border-bottom: 1px solid var(--border); justify-content: space-between; }
  .nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    background: var(--panel);
    display: none;
    padding: 0;
  }
  .nav-dropdown.open .nav-dropdown-menu { display: block; }
  .nav-dropdown-menu a { padding: 14px 36px; border-bottom: 1px solid var(--border); }
}

/* ===== Big image overlay tiles (Train With ADC) ===== */
.tile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.image-tile {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  border-radius: 14px;
  overflow: hidden;
  background: #0a0a0a;
}
.image-tile:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.5); }
.image-tile-media {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 4px;
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-shadow: 0 1px 3px rgba(0,0,0,0.6);
}
.image-tile-overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 150px;
  overflow: hidden;
  padding: 26px 24px 24px;
  background: linear-gradient(180deg, transparent, rgba(10,10,10,0.92) 62%);
}
.image-tile-overlay h3 { color: var(--white); font-size: 21px; margin-bottom: 8px; }
.image-tile-overlay p { color: var(--gray); font-size: 14px; line-height: 1.5; }

/* ===== Large layered background section (Why ADC) ===== */
.why-section { position: relative; z-index: 0; overflow: hidden; }
.why-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: #0a0a0a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: rgba(255,255,255,0.18);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.why-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.82), rgba(10,10,10,0.94));
  pointer-events: none;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 44px;
  margin-top: 12px;
}
.why-item h3 {
  position: relative;
  padding-left: 22px;
  color: var(--white);
  font-size: 22px;
  margin-bottom: 10px;
}
.why-item h3::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
}
.why-item.blue-dot h3::before { background: var(--blue-accent); }
.why-item p { color: var(--gray); font-size: 15px; line-height: 1.6; }

/* ===== Scroll indicator ===== */
.scroll-indicator {
  all: unset;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin: 36px auto 0;
  color: var(--gray);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.2s ease;
}
.scroll-indicator:hover { color: var(--white); }
.scroll-indicator .chevron {
  font-size: 20px;
  line-height: 1;
  color: var(--gold);
  animation: scrollBounce 1.6s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50% { transform: translateY(8px); opacity: 1; }
}

/* ===== Stacked large-image service rows (Training Services) ===== */
.service-row {
  display: flex;
  align-items: center;
  gap: 44px;
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}
.service-row:last-child { border-bottom: none; }
.service-row.reverse { flex-direction: row-reverse; }
.img-placeholder.service-image { flex: 0 0 62%; aspect-ratio: 16 / 9; margin-bottom: 0; }
.img-placeholder.program-photo { aspect-ratio: 4 / 3; }
.img-placeholder.program-photo img { object-position: center 25%; }
.video-placeholder-block.service-video { flex: 0 0 32%; }
.service-content { flex: 1; min-width: 220px; }
.service-content .tier-age { color: var(--gold); font-weight: 700; font-size: 12px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 8px; }
.service-content h3 { color: var(--white); font-size: 27px; margin-bottom: 12px; }
.service-content p { color: var(--gray); font-size: 14.5px; margin-bottom: 18px; line-height: 1.6; }
.service-content ul { margin-bottom: 22px; }
.service-content li { color: var(--white); font-size: 14px; padding: 6px 0; border-top: 1px solid var(--border); }
.service-content li:first-child { border-top: none; }

@media (max-width: 800px) {
  .service-row, .service-row.reverse { flex-direction: column; }
  .img-placeholder.service-image, .video-placeholder-block.service-video { flex: 0 0 auto; width: 100%; }
}

/* ===== Photo vignette (Training Services) ===== */
.photo-vignette {
  position: relative;
  overflow: hidden;
}
.photo-vignette::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(ellipse at center, transparent 32%, rgba(0,0,0,0.4) 75%, rgba(0,0,0,0.68) 100%);
  pointer-events: none;
}

/* ===== Real media with graceful fallback to placeholder ===== */
.img-placeholder, .coach-photo, .video-placeholder-block {
  position: relative;
}
.img-placeholder img, .coach-photo img, .video-placeholder-block video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}
.hero-video-placeholder video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.image-tile-media img, .why-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ph-filename {
  display: block;
  margin-top: 6px;
  font-size: 10px;
  font-weight: 400;
  color: var(--gray-dim);
  text-transform: none;
  letter-spacing: 0;
}

/* ===== Animated form success state (replaces the form on submit) ===== */
.form-success {
  display: none;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 56px 40px;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.form-success.show {
  display: block;
  animation: formSuccessPop 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
@keyframes formSuccessPop {
  0% { opacity: 0; transform: scale(0.82) translateY(14px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
.form-success .success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(76, 217, 123, 0.15);
  border: 2px solid #4CD97B;
  color: #4CD97B;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 22px;
}
.form-success h3 {
  color: var(--white);
  font-size: 24px;
  margin-bottom: 12px;
}
.form-success p {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.6;
}
.form-status.error {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  background: rgba(224, 57, 63, 0.12);
  color: #F0716F;
  border: 1px solid rgba(240, 113, 111, 0.3);
}

/* ===== Floating Apply button ===== */
.floating-apply {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.floating-apply:hover {
  transform: translateY(-3px);
  filter: brightness(1.08);
  box-shadow: 0 14px 36px rgba(0,0,0,0.55), 0 10px 28px var(--gold-glow);
}
@media (max-width: 600px) {
  .floating-apply {
    bottom: 16px;
    left: 16px;
    padding: 12px 22px;
    font-size: 13px;
  }
}

/* ===== Pulsing clickable step link ===== */
.pulse-link {
  all: unset;
  cursor: pointer;
  display: inline-block;
  color: var(--blue-accent);
  font-weight: 700;
  font-family: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  animation: pulseScale 1.8s ease-in-out infinite;
}
.pulse-link:hover { color: #FFFFFF; }
@keyframes pulseScale {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.14); }
}

/* ===== Glimmer text effect ===== */
.glimmer-text {
  display: inline-block;
  font-weight: 700;
  font-size: 1.2em;
  background: linear-gradient(90deg, var(--blue-accent) 0%, #A9C6FB 45%, #FFFFFF 50%, #A9C6FB 55%, var(--blue-accent) 100%);
  background-size: 250% auto;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--blue-accent);
  animation: glimmerSweep 3.5s linear infinite;
}
@keyframes glimmerSweep {
  0% { background-position: 200% center; }
  100% { background-position: -200% center; }
}

/* ===== Our Story side-by-side layout (About page) ===== */
.story-row {
  display: flex;
  align-items: center;
  gap: 48px;
}
.story-text { flex: 1; }
.story-text .eyebrow { display: block; color: var(--gold); font-weight: 700; font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 10px; }
.story-text h2 { color: var(--white); font-size: clamp(28px, 4vw, 40px); margin-bottom: 16px; }
.story-text p:last-child { color: var(--gray); font-size: 16px; line-height: 1.7; }
.video-placeholder-block.story-video { flex: 0 0 400px; }

@media (max-width: 800px) {
  .story-row { flex-direction: column; }
  .video-placeholder-block.story-video { flex: 0 0 auto; width: 100%; max-width: 400px; }
}

/* ===== Philosophy cards (About page) ===== */
.philosophy-card {
  border-left: 3px solid var(--gold);
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  background: linear-gradient(135deg, rgba(232,98,31,0.07), transparent 55%), var(--panel);
}
.philosophy-card .philosophy-num {
  display: block;
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 14px;
  color: var(--gold);
}

/* ===== Assessment flow diagram ===== */
.assess-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
}
.assess-flow .arrow { color: var(--gold); font-size: 16px; }

/* ===== Apply page path selector ===== */
.path-btn {
  all: unset;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  display: block;
  width: 100%;
  cursor: pointer;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 28px;
  transition: box-shadow 0.25s ease, transform 0.2s ease, border-color 0.25s ease;
}
.path-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 55%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.09), transparent);
  transform: skewX(-20deg);
  animation: shimmerSweep 5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes shimmerSweep {
  0% { left: -150%; }
  35% { left: 150%; }
  100% { left: 150%; }
}
.path-btn:hover { border-color: rgba(232,98,31,0.35); box-shadow: 0 16px 40px var(--gold-glow); transform: translateY(-3px); }
.path-btn.active { border-color: var(--gold); box-shadow: 0 16px 40px var(--gold-glow); }
.path-btn h3 { color: var(--white); font-size: 20px; margin-bottom: 10px; }
.path-btn p { color: var(--gray); font-size: 14.5px; }
.path-form-section { display: none; }
.path-form-section.active { display: block; }

/* ===== Focus visibility ===== */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* ===== Hero video placeholder ===== */
.hero-video-placeholder {
  position: absolute;
  inset: 0;
  z-index: -3;
  background: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-video-placeholder .placeholder-tag {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--gray);
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.hero-video-placeholder .play-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 2px solid var(--gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--white);
}

/* Single-column hero (no side card) */
.hero-grid.hero-single {
  display: block;
  max-width: 640px;
}

/* Glass-style eval card so it reads correctly over the video placeholder */
.eval-card {
  background: rgba(10, 10, 10, 0.74);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* ===== Reusable image / video placeholders ===== */
.img-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #0a0a0a;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-shadow: 0 1px 3px rgba(0,0,0,0.6);
  margin-bottom: 18px;
}

.video-placeholder-block {
  width: 100%;
  aspect-ratio: 9 / 16;
  background: #0a0a0a;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-shadow: 0 1px 3px rgba(0,0,0,0.6);
}
.video-placeholder-block.wide { aspect-ratio: 16 / 9; }
.video-placeholder-block .play-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid var(--white);
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--white);
}

/* ===== Full-width alternating coach rows ===== */
.coach-row {
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}
.coach-row:last-child { border-bottom: none; }
.coach-row.reverse { flex-direction: row-reverse; }
.coach-photo {
  flex: 0 0 420px;
  aspect-ratio: 4 / 5;
  background: #0a0a0a;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-shadow: 0 1px 3px rgba(0,0,0,0.6);
  text-align: center;
}
.coach-content { flex: 1; }
.coach-content h3 { color: var(--white); font-size: 24px; margin-bottom: 6px; }
.coach-content p { color: var(--gray); font-size: 15px; }

@media (max-width: 760px) {
  .coach-row, .coach-row.reverse { flex-direction: column; }
  .coach-photo { flex: 0 0 auto; width: 100%; max-width: 420px; }
}

/* ===== Reduced motion ===== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
  .reveal, .reveal-left, .reveal-right { opacity: 1 !important; transform: none !important; }
}
