:root {
  --ink: #ffffff;
  --paper: #0a0a0a;
  --acid: #ff6b00;
  --orange: #ff5500;
  --blue: #e04500;
  --line: rgba(255, 255, 255, 0.18);
  --condensed: "Barlow Condensed", "Arial Narrow", sans-serif;
  --display: "Anton", "Impact", sans-serif;
  --mono: "DM Mono", monospace;
}

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

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 110px;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--condensed);
  font-weight: 600;
  overflow-x: hidden;
}

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

button,
input {
  font: inherit;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.055;
  z-index: 20;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.65'/%3E%3C/svg%3E");
}

.cursor-glow {
  position: fixed;
  width: 420px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 85, 0, 0.14);
  filter: blur(70px);
  pointer-events: none;
  z-index: 22;
  transform: translate(-50%, -50%);
}

.slide-nav {
  position: fixed;
  z-index: 40;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  transition: opacity .25s ease, transform .25s ease;
}

/* Off-home: arrow fixed on left edge, vertical panel on click */
.slide-nav:not(.on-home) {
  left: 12px;
  top: 50%;
  flex-direction: column;
  transform: translateY(-50%);
  opacity: 1;
  pointer-events: auto;
}

/* On-home: horizontal icon row at top right, no arrow */
.slide-nav.on-home {
  position: absolute;
  left: auto;
  right: 3vw;
  top: 25px;
  flex-direction: row;
  align-items: center;
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.slide-nav.on-home .slide-nav-toggle {
  display: none;
}

.slide-nav-items {
  display: flex;
  gap: 6px;
  transition: max-height .45s ease, opacity .25s ease, transform .45s ease, padding .3s ease, border-color .3s ease, background .3s ease;
}

.slide-nav.on-home .slide-nav-items {
  flex-direction: row;
  align-items: center;
  width: auto;
  max-height: none;
  overflow: visible;
  opacity: 1;
  padding: 0;
  gap: 16px;
  border: none;
  background: transparent;
  backdrop-filter: none;
  transform: none;
}

.slide-nav:not(.on-home) .slide-nav-items {
  flex-direction: column;
  align-items: stretch;
  width: 52px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0;
  border: 1px solid transparent;
  background: transparent;
  transform: translateX(-8px);
}

.slide-nav:not(.on-home).open .slide-nav-items {
  max-height: 520px;
  opacity: 1;
  padding: 10px;
  overflow: visible;
  border-color: rgba(255, 255, 255, .18);
  background: rgba(10, 10, 10, .48);
  backdrop-filter: blur(12px);
  transform: translateX(0);
}

.slide-nav.on-home .slide-nav-link {
  visibility: visible;
  pointer-events: auto;
}

.slide-nav:not(.on-home):not(.open) .slide-nav-link {
  visibility: hidden;
  pointer-events: none;
}

.slide-nav-toggle,
.slide-nav-link {
  height: 46px;
  border: 1px solid rgba(255, 255, 255, .16);
  color: var(--ink);
  background: rgba(5, 5, 5, .88);
  backdrop-filter: blur(12px);
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

.slide-nav-link {
  width: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: width .3s ease, border-color .3s ease, background .3s ease, box-shadow .3s ease;
}

.slide-nav:not(.on-home).open .slide-nav-link {
  width: 36px;
  height: 36px;
}

.slide-nav-link:hover,
.slide-nav-link:focus-visible,
.slide-nav-link.active {
  border-color: var(--orange);
  background: rgba(20, 9, 3, .95);
  box-shadow: 0 0 18px rgba(255, 85, 0, .25);
}

/* Keep the home-page icon row crisp over the hero without changing the off-home panel. */
/* clip-path clips box-shadow, so the neon glow needs a non-clipped shape here. */
.slide-nav.on-home .slide-nav-link {
  clip-path: none !important;
  overflow: visible;
  border-radius: 9px;
  border-width: 2px;
  border-color: #ff8a1f;
  background: #2a1207;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow:
    0 0 0 1px #ff8a1f,
    0 0 8px 1px rgba(255, 138, 31, .7),
    0 0 18px 4px rgba(255, 85, 0, .45);
}

.slide-nav.on-home .slide-nav-link:hover,
.slide-nav.on-home .slide-nav-link:focus-visible {
  border-color: #ffb06b;
  background: #3d1804;
  box-shadow:
    0 0 0 1px #ffb06b,
    0 0 10px 2px rgba(255, 176, 107, .8),
    0 0 22px 5px rgba(255, 85, 0, .55);
}

.slide-nav.on-home .slide-nav-link:focus-visible {
  outline: 2px solid rgba(255, 179, 107, .95);
  outline-offset: 3px;
}

.slide-nav.on-home .slide-nav-link.active {
  border-color: #fff0e5;
  background: #ff5500;
  box-shadow:
    0 0 0 1px #fff0e5,
    0 0 10px 2px rgba(255, 176, 107, .85),
    0 0 24px 6px rgba(255, 85, 0, .6);
}

.slide-nav-link.coaches-nav,
.slide-nav-link.sponsors-nav {
  position: relative;
  overflow: visible;
  clip-path: none;
}

.slide-nav-link.coaches-nav::after,
.slide-nav-link.sponsors-nav::after {
  content: "?";
  position: absolute;
  top: -7px;
  right: -7px;
  z-index: 2;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1.5px solid #fff;
  background: var(--orange);
  color: #111;
  font: 900 12px/1 var(--condensed);
  letter-spacing: 0;
  text-shadow: none;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, .45),
    0 0 10px rgba(255, 85, 0, .9);
  pointer-events: none;
}

.slide-nav.on-home .slide-nav-link.coaches-nav::after,
.slide-nav.on-home .slide-nav-link.sponsors-nav::after {
  top: -8px;
  right: -8px;
  width: 20px;
  height: 20px;
  font-size: 13px;
}

.slide-nav-toggle {
  width: 46px;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: border-color .3s, background .3s, transform .35s;
}

.slide-nav-toggle:hover,
.slide-nav-toggle:focus-visible,
.slide-nav:not(.on-home).open .slide-nav-toggle {
  border-color: var(--orange);
  background: rgba(20, 9, 3, .95);
}

.slide-nav-toggle svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .35s;
}

.slide-nav:not(.on-home).open .slide-nav-toggle svg {
  transform: rotate(180deg);
}

.slide-nav-link svg {
  width: 22px;
  min-width: 22px;
  height: 22px;
  margin: 0;
  fill: none;
  stroke: rgba(255, 255, 255, .78);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke .3s, filter .3s;
}

.slide-nav-link:hover svg,
.slide-nav-link:focus-visible svg,
.slide-nav-link.active svg {
  stroke: var(--orange);
  filter: drop-shadow(0 0 5px rgba(255, 85, 0, .75));
}

.slide-nav.on-home .slide-nav-link svg {
  fill: none;
  stroke: #ffb066;
  stroke-width: 2;
  filter: drop-shadow(0 0 4px rgba(255, 138, 31, .7));
}

.slide-nav.on-home .slide-nav-link.active svg {
  stroke: #fff;
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, .7));
}

.slide-nav-link span {
  display: none;
}

.site-header {
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3vw;
  border-bottom: 2px solid rgba(255, 85, 0, 0.35);
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 25;
  background: linear-gradient(180deg, rgba(10,10,10,.95) 0%, rgba(10,10,10,.7) 100%);
  pointer-events: none;
}

.site-header a,
.site-header nav {
  pointer-events: auto;
}

.brand {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}

.brand-logo {
  height: 62px;
  width: auto;
  display: block;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, .55));
  transition: transform 0.3s cubic-bezier(.2,.8,.2,1);
}

.brand:hover .brand-logo {
  transform: scale(1.04) rotate(-1deg);
}

.brand-logo-footer {
  height: 88px;
}

.site-header nav {
  display: none;
  gap: 34px;
  text-transform: uppercase;
  font: 500 11px var(--mono);
}

.site-header nav a {
  position: relative;
}

.site-header nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s;
}

.site-header nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta,
.slash-link {
  background: var(--orange);
  color: var(--ink);
  padding: 14px 18px;
  font-size: 12px;
  font-family: var(--mono);
  text-transform: uppercase;
  font-weight: 500;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  box-shadow: 4px 4px 0 rgba(255, 85, 0, 0.35);
}

.header-cta span,
.slash-link span {
  color: var(--paper);
  margin-left: 16px;
}

.hero {
  min-height: 100svh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 112px 7vw 55px;
  overflow: hidden;
  isolation: isolate;
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image:
    linear-gradient(to right, rgba(255, 85, 0, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 85, 0, 0.04) 1px, transparent 1px);
  background-size: 6.25vw 6.25vw;
  mask-image: linear-gradient(to bottom, transparent, #000 30%, #000 85%, transparent);
}

.speed-streaks {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.speed-streaks span {
  position: absolute;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--orange), var(--ink));
  transform: skewX(-22deg);
  opacity: 0;
  animation: speedStreak 2.8s ease-out infinite;
}

.speed-streaks span:nth-child(1) { top: 18%; left: 8%; width: 140px; animation-delay: 0s; }
.speed-streaks span:nth-child(2) { top: 32%; left: 22%; width: 220px; animation-delay: .6s; }
.speed-streaks span:nth-child(3) { top: 48%; left: 5%; width: 180px; animation-delay: 1.2s; }
.speed-streaks span:nth-child(4) { top: 62%; left: 15%; width: 260px; animation-delay: 1.8s; }
.speed-streaks span:nth-child(5) { top: 78%; left: 28%; width: 120px; animation-delay: 2.4s; }

@keyframes speedStreak {
  0% { opacity: 0; transform: translateX(-40px) skewX(-22deg); }
  15% { opacity: .85; }
  100% { opacity: 0; transform: translateX(120px) skewX(-22deg); }
}

.hero-crest {
  position: absolute;
  right: 2vw;
  top: 50%;
  left: auto;
  width: min(50vw, 620px);
  z-index: 1;
  pointer-events: none;
  transform: translateY(-50%);
  isolation: isolate;
}

.hero-crest::before {
  content: "";
  position: absolute;
  inset: 6% 2% 8%;
  z-index: -1;
  background:
    radial-gradient(circle at 42% 38%, rgba(255, 85, 0, .2), transparent 58%),
    radial-gradient(circle at 50% 62%, rgba(0, 0, 0, .62), transparent 68%);
  border-radius: 50%;
  filter: blur(1px);
}

.hero-crest.reveal {
  opacity: 0;
  transform: translateY(calc(-50% + 28px));
}

.hero-crest.reveal.visible {
  opacity: 1;
  transform: translateY(-50%);
}

.hero-crest svg {
  width: 100%;
  display: block;
  overflow: visible;
  filter:
    drop-shadow(0 12px 28px rgba(0, 0, 0, 0.65))
    drop-shadow(0 0 14px rgba(255, 85, 0, .22));
  animation: crestFloat 4s ease-in-out infinite;
}

.hero-crest .torso {
  fill: url("#heroPassJersey");
}

.hero-crest .passer {
  animation: passerReady 3.2s cubic-bezier(0.45, 0, 0.3, 1) infinite;
}

.hero-crest .pass-legs {
  transform-box: fill-box;
  transform-origin: 50% 12%;
  animation: passLegsSet 3.2s cubic-bezier(0.45, 0, 0.3, 1) infinite;
}

.hero-crest .pass-arms {
  transform-box: fill-box;
  transform-origin: 72% 18%;
  animation: passPlatform 3.2s cubic-bezier(0.45, 0, 0.3, 1) infinite;
}

.hero-crest .hero-pass-ball {
  transform-origin: 218px 268px;
  animation: passBallContact 3.2s cubic-bezier(0.45, 0, 0.3, 1) infinite;
}

.hero .neon-strikes span:nth-child(4),
.hero .neon-strikes span:nth-child(6) {
  display: none;
}

@keyframes passerReady {
  0%, 100% { transform: translate(0, 4px); }
  50% { transform: translate(0, -6px); }
}

@keyframes passLegsSet {
  0%, 100% { transform: rotate(-1deg); }
  50% { transform: rotate(1deg); }
}

@keyframes passPlatform {
  0%, 100% { transform: rotate(2deg); }
  50% { transform: rotate(-2deg); }
}

@keyframes passBallContact {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(0, -2px) scale(1.02); }
}

@keyframes crestFloat {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-10px) rotate(1deg); }
}

.neon-strikes {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.neon-strikes span {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), #fff);
  box-shadow:
    0 0 8px rgba(255, 85, 0, 0.95),
    0 0 22px rgba(255, 85, 0, 0.55),
    0 0 40px rgba(255, 85, 0, 0.25);
  transform: skewX(-28deg);
  opacity: 0;
  animation: neonStrike 3.2s ease-out infinite;
}

.neon-strikes span:nth-child(1) { top: 12%; left: 4%; width: 180px; animation-delay: 0s; }
.neon-strikes span:nth-child(2) { top: 24%; right: 8%; width: 240px; animation-delay: .5s; }
.neon-strikes span:nth-child(3) { top: 40%; left: 12%; width: 320px; animation-delay: 1s; }
.neon-strikes span:nth-child(4) { top: 58%; right: 5%; width: 200px; animation-delay: 1.5s; }
.neon-strikes span:nth-child(5) { top: 72%; left: 20%; width: 280px; animation-delay: 2s; }
.neon-strikes span:nth-child(6) { top: 86%; right: 18%; width: 160px; animation-delay: 2.5s; }
.neon-strikes span:nth-child(7) { top: 33%; left: 55%; width: 140px; animation-delay: .8s; }

@keyframes neonStrike {
  0% { opacity: 0; transform: translateX(-60px) skewX(-28deg); }
  12% { opacity: 1; }
  100% { opacity: 0; transform: translateX(140px) skewX(-28deg); }
}

.orbit {
  position: absolute;
  border: 1px solid rgba(246, 240, 232, 0.18);
  border-radius: 50%;
  z-index: -2;
}

.orbit::before {
  content: "";
  width: 10px;
  aspect-ratio: 1;
  border-radius: 50%;
  position: absolute;
  top: 16%;
  left: 12%;
  background: var(--orange);
}

.orbit-one,
.orbit-two {
  display: none;
}

.orbit-one {
  width: 48vw;
  aspect-ratio: 1;
  right: -11vw;
  bottom: -23vw;
}

.orbit-two {
  width: 30vw;
  aspect-ratio: 1;
  right: -2vw;
  bottom: -14vw;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 18px;
  width: 53%;
  margin-left: 4.5%;
  font: 500 10px var(--mono);
  letter-spacing: 0.08em;
  position: relative;
  z-index: 2;
}

.hero-kicker .line {
  height: 1px;
  background: var(--ink);
  flex: 1;
}

h1,
h2,
.stat-num,
.numbers-statement,
.ticker-track span {
  font-family: var(--condensed);
  font-style: italic;
  font-weight: 900;
  text-transform: uppercase;
}

h1 {
  margin: 1.6vh 0 0;
  font-size: clamp(116px, 18.4vw, 310px);
  font-weight: 900;
  letter-spacing: 0.075em;
  line-height: 0.86;
  padding-bottom: 0.08em;
  transform: skewX(-6deg);
  position: relative;
  z-index: 5;
  overflow: visible;
}

.title-row {
  display: block;
  position: relative;
  z-index: 5;
  overflow: visible;
  line-height: 0.92;
  padding-bottom: 0.06em;
}

.hero-title {
  position: relative;
  overflow: visible;
}

.hero-title .title-letter {
  display: inline-block;
  opacity: 1;
  padding-bottom: 0.04em;
  line-height: 1;
  will-change: transform, filter;
  animation: heroLetterSpike 2.8s cubic-bezier(.18,.84,.28,1) infinite;
  animation-delay: calc(var(--i) * 55ms);
}

.hero-title .title-light .title-letter {
  color: var(--ink);
  text-shadow: 3px 3px 0 rgba(255, 85, 0, 0.25);
}

.hero-title .title-heavy .title-main .title-letter {
  background-image: linear-gradient(
    105deg,
    #d03a00 0%,
    #ff5500 16%,
    #ff7a22 32%,
    #ffb35a 48%,
    #ff7a22 64%,
    #ff5500 82%,
    #d03a00 100%
  );
  background-size: 240% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  filter:
    drop-shadow(5px 5px 0 rgba(200, 55, 0, 0.4))
    drop-shadow(0 0 12px rgba(255, 100, 20, 0.35));
  animation:
    heroLetterSpike 2.8s cubic-bezier(.18,.84,.28,1) infinite,
    heroLavaSweep 2.4s linear infinite;
  animation-delay:
    calc(var(--i) * 55ms),
    calc(var(--i) * -120ms);
}

.title-light {
  font-weight: 800;
  font-style: italic;
  font-size: 0.62em;
  letter-spacing: 0.1em;
  margin-left: 2%;
  line-height: 1.05;
  color: var(--ink);
  text-shadow: 3px 3px 0 rgba(255, 85, 0, 0.25);
}

.title-heavy {
  white-space: nowrap;
  letter-spacing: 0.035em;
  color: var(--orange);
  font-style: italic;
  font-weight: 900;
  overflow: visible;
}

.title-heavy .title-main {
  position: relative;
  z-index: 3;
  display: inline-block;
  font-style: italic;
  font-weight: 900;
  overflow: visible;
  padding-bottom: 0.05em;
  line-height: 1;
}

.title-trail {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  white-space: nowrap;
  color: #ff5500;
  font-style: italic;
  font-weight: 900;
  letter-spacing: 0.035em;
  pointer-events: none;
  user-select: none;
  opacity: 0;
  animation: heroTrailKick 2.8s cubic-bezier(.15,.85,.25,1) infinite;
}

.title-trail.trail-two {
  color: rgba(255, 180, 90, 0.45);
  animation-delay: .05s;
}

.title-trail.trail-three {
  color: #d03a00;
  animation-delay: .1s;
}

.hero-title.is-split .title-light {
  color: transparent;
  text-shadow: none;
}

.hero-title.is-split .title-heavy .title-main {
  color: transparent;
}

@keyframes heroLetterSpike {
  0%, 58%, 100% {
    transform: translate3d(0, 0, 0) skewX(0) scaleY(1) rotate(0deg);
  }
  10% {
    transform: translate3d(0, -0.05em, 0) skewX(-6deg) scaleY(1.08) rotate(-1deg);
  }
  16% {
    transform: translate3d(0.01em, 0.02em, 0) skewX(4deg) scaleY(0.94) rotate(1deg);
  }
  22% {
    transform: translate3d(0, -0.01em, 0) skewX(-2deg) scaleY(1.02);
  }
  28% {
    transform: translate3d(0, 0, 0) skewX(0) scaleY(1);
  }
}

@keyframes heroLavaSweep {
  0% { background-position: 100% 50%; }
  100% { background-position: -100% 50%; }
}

@keyframes heroTrailKick {
  0%, 62%, 100% {
    opacity: 0;
    transform: translate3d(0, 0, 0) skewX(0);
    filter: blur(0);
  }
  8% {
    opacity: 0.55;
    transform: translate3d(-0.04em, 0.02em, 0) skewX(-6deg);
    filter: blur(0.5px);
  }
  18% {
    opacity: 0.28;
    transform: translate3d(-0.16em, 0.06em, 0) skewX(-14deg);
    filter: blur(1.5px);
  }
  28% {
    opacity: 0;
    transform: translate3d(-0.28em, 0.1em, 0) skewX(-18deg);
    filter: blur(3px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-title .title-letter,
  .hero-title .title-heavy .title-main .title-letter,
  .title-trail {
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
    filter: none !important;
  }

  .hero-title .title-heavy .title-main .title-letter {
    color: var(--orange);
    -webkit-text-fill-color: var(--orange);
    background: none;
  }

  .title-trail {
    display: none;
  }
}

.ball-wrap {
  display: inline-block;
  width: 0.72em;
  height: 0.72em;
  margin: 0 0.02em;
  vertical-align: 0.04em;
}

.volleyball {
  display: block;
  width: 100%;
  height: 100%;
  border: 0.035em solid #111;
  border-radius: 50%;
  background: radial-gradient(circle at 34% 26%, #ffffff 0%, #f1f1ed 58%, #b5b5b1 100%);
  box-shadow: 0.05em 0.07em 0 #111;
  animation: ballSpin 10s linear infinite;
}

@keyframes ballSpin {
  to { transform: rotate(360deg); }
}

.hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin: 1vh 5% 0;
  position: relative;
  z-index: 5;
}

.hero-bottom p {
  max-width: 620px;
  font-size: clamp(22px, 1.9vw, 32px);
  font-weight: 700;
  line-height: 1.02;
  text-transform: uppercase;
}

.hero-bottom strong {
  color: var(--orange);
  font-weight: 800;
}

.vertical-note {
  position: absolute;
  left: 2vw;
  top: 50%;
  writing-mode: vertical-rl;
  transform: rotate(180deg) translateY(50%);
  font: 700 10px var(--condensed);
  font-style: italic;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  z-index: 2;
}

.score-tag {
  position: absolute;
  right: 2vw;
  top: 45%;
  display: flex;
  align-items: center;
  background: var(--blue);
  color: white;
  transform: rotate(90deg) translateX(50%);
  transform-origin: right center;
  font: 500 8px var(--mono);
}

.score-tag span {
  padding: 8px 10px;
}

.score-tag b {
  color: var(--acid);
  font-size: 13px;
  margin-left: 6px;
}

.score-tag i {
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,.4);
}

.ticker {
  background: var(--orange);
  color: var(--paper);
  overflow: hidden;
  transform: rotate(-1deg) scale(1.02);
  position: relative;
  z-index: 3;
}

.ticker-track {
  display: flex;
  align-items: center;
  width: max-content;
  padding: 17px 0;
  animation: ticker 20s linear infinite;
}

.ticker-track span {
  font-size: 22px;
  font-weight: 900;
  font-style: italic;
  letter-spacing: 0.12em;
  margin: 0 32px;
}

.ticker-track i {
  color: var(--ink);
  font-style: normal;
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

.section-pad {
  padding: 110px 7vw;
}

.section-label {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 15px;
  font: 700 10px var(--mono);
  letter-spacing: 0.08em;
  margin-bottom: 70px;
}

.section-label span {
  width: 29px;
  aspect-ratio: 1;
  background: var(--orange);
  color: var(--ink);
  display: grid;
  place-items: center;
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
}

.manifesto,
.who,
.mission,
.camp,
.sponsors {
  min-height: 900px;
  position: relative;
  overflow: hidden;
}

.coaches,
.charity {
  position: relative;
  overflow: hidden;
}

.who {
  min-height: 0;
  padding-top: 36px;
  padding-bottom: 28px;
  background:
    radial-gradient(ellipse at 12% 18%, rgba(255, 85, 0, .1), transparent 38%),
    radial-gradient(ellipse at 88% 72%, rgba(255, 40, 0, .07), transparent 42%),
    #070707;
}

.who .section-label {
  margin-bottom: 24px;
}

.who-layout,
.mission-layout,
.camp-layout,
.charity-layout,
.manifesto-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 6vw;
  align-items: start;
  position: relative;
  z-index: 5;
}

.mission-layout {
  grid-template-columns: 0.75fr 1.25fr;
  gap: 7vw;
}

.who-layout {
  grid-template-columns: 1fr 1fr;
  gap: 6vw;
  align-items: start;
}

.who-decor .who-orbit {
  position: absolute;
  width: 28vw;
  height: 28vw;
  border: 1px dashed rgba(255, 85, 0, .18);
  border-radius: 50%;
  animation: charityOrbit 28s linear infinite;
  pointer-events: none;
}

.who-decor .who-orbit:first-child {
  left: -12vw;
  bottom: -8%;
}

.who-decor .who-orbit.orbit-two {
  right: -10vw;
  top: 8%;
  width: 22vw;
  height: 22vw;
  animation-direction: reverse;
  animation-duration: 20s;
}

.who-beam {
  position: absolute;
  top: 22%;
  left: 6%;
  width: 160px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), #fff);
  box-shadow: 0 0 10px rgba(255, 85, 0, .65);
  transform: skewX(-24deg);
  animation: charityBeamRush 3.8s ease-out infinite;
  opacity: 0;
}

.who-beam.beam-two {
  top: auto;
  left: auto;
  bottom: 18%;
  right: 8%;
  width: 200px;
  animation-delay: 1.6s;
}

.who-corner {
  position: absolute;
  width: 54px;
  height: 54px;
  border: 1.5px solid rgba(255, 85, 0, .35);
  pointer-events: none;
}

.who-corner.corner-a {
  top: 12%;
  left: 4%;
  border-right: 0;
  border-bottom: 0;
}

.who-corner.corner-b {
  right: 5%;
  bottom: 14%;
  border-left: 0;
  border-top: 0;
}

.who-float-ball {
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, .4),
    0 0 14px rgba(255, 85, 0, .3);
  animation: missionFloatSpin 7s ease-in-out infinite;
  pointer-events: none;
}

.who-float-ball img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.who-float-ball.ball-a {
  top: 18%;
  left: 42%;
  width: 34px;
  opacity: .42;
}

.who-float-ball.ball-b {
  bottom: 16%;
  left: 18%;
  width: 26px;
  opacity: .32;
  animation-delay: 1.4s;
}

.section-mark {
  position: absolute;
  top: 3%;
  right: 2%;
  z-index: 1;
  width: min(42vw, 460px);
  height: min(40vw, 420px);
  pointer-events: none;
}

.section-mark-glow {
  position: absolute;
  right: 4%;
  top: 8%;
  width: 70%;
  height: 58%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 85, 0, .38) 0%, rgba(255, 40, 0, .14) 42%, transparent 70%);
  filter: blur(28px);
  animation: whoGlowPulse 4.8s ease-in-out infinite;
  pointer-events: none;
}

.section-mark-glow.glow-two {
  right: 18%;
  top: 42%;
  width: 48%;
  height: 40%;
  background: radial-gradient(circle, rgba(255, 140, 0, .28) 0%, transparent 68%);
  filter: blur(22px);
  animation-delay: 1.2s;
}

.section-mark-num {
  position: absolute;
  right: 0;
  top: 0;
  font: italic 900 clamp(160px, 20vw, 280px)/.78 var(--condensed);
  letter-spacing: -.04em;
  color: transparent;
  -webkit-text-stroke: 2.5px rgba(255, 85, 0, .55);
  text-shadow:
    14px 14px 0 rgba(255, 85, 0, .1),
    0 0 40px rgba(255, 85, 0, .22);
  animation: whoNumDrift 5.5s ease-in-out infinite;
}

.section-mark-rules {
  position: absolute;
  right: 8%;
  top: calc(50% + 2.35em);
  width: 78%;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), rgba(255, 255, 255, .35) 38%, transparent 88%);
  opacity: .9;
}

.section-mark-meta {
  position: absolute;
  right: 8%;
  top: 50%;
  display: grid;
  gap: 14px;
  text-align: right;
}

.section-mark-meta b {
  color: #fff;
  font: italic 800 clamp(22px, 2.4vw, 34px) var(--condensed);
  letter-spacing: .08em;
  text-shadow: 0 0 18px rgba(255, 85, 0, .25);
}

.section-mark-meta i {
  color: rgba(255, 85, 0, .95);
  font: 500 clamp(10px, 1.1vw, 13px) var(--mono);
  font-style: normal;
  letter-spacing: .16em;
}

.section-mark-chevrons {
  position: absolute;
  right: 2%;
  top: 36%;
  display: grid;
  gap: 10px;
}

.section-mark-chevrons i {
  display: block;
  width: 42px;
  height: 12px;
  border-right: 3px solid var(--orange);
  border-bottom: 3px solid var(--orange);
  transform: rotate(-45deg);
  opacity: .55;
  animation: whoChevronPulse 2.4s ease-in-out infinite;
}

.section-mark-chevrons i:nth-child(2) {
  opacity: .4;
  animation-delay: .15s;
}

.section-mark-chevrons i:nth-child(3) {
  opacity: .28;
  animation-delay: .3s;
}

.section-mark-chevrons i:nth-child(4) {
  opacity: .16;
  animation-delay: .45s;
}

.section-mark-rail {
  position: absolute;
  right: -4px;
  top: 6%;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  color: rgba(255, 255, 255, .5);
  font: 700 clamp(12px, 1.3vw, 16px) var(--condensed);
  font-style: italic;
  letter-spacing: .32em;
}

.section-mark-dots {
  position: absolute;
  left: 8%;
  top: 18%;
  display: grid;
  gap: 10px;
}

.section-mark-dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 10px rgba(255, 85, 0, .7);
  opacity: .65;
  animation: charityHeartFloat 3.8s ease-in-out infinite;
}

.section-mark-dots i:nth-child(2) {
  width: 5px;
  height: 5px;
  opacity: .4;
  animation-delay: .4s;
}

.section-mark-dots i:nth-child(3) {
  width: 4px;
  height: 4px;
  opacity: .28;
  animation-delay: .8s;
}

.section-mark-slash {
  position: absolute;
  left: 0;
  bottom: 22%;
  width: 56%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), #fff);
  box-shadow: 0 0 12px rgba(255, 85, 0, .55);
  transform: skewX(-24deg);
  animation: charityBeamRush 3.8s ease-out infinite;
  opacity: 0;
}

.section-mark-diamond {
  position: absolute;
  left: 18%;
  top: 48%;
  width: 12px;
  height: 12px;
  border: 2px solid rgba(255, 85, 0, .55);
  transform: rotate(45deg);
  box-shadow: 0 0 12px rgba(255, 85, 0, .35);
  animation: whoDiamondPulse 3s ease-in-out infinite;
}

.section-mark-arc {
  position: absolute;
  right: -8%;
  top: -4%;
  width: 55%;
  aspect-ratio: 1;
  border: 1.5px dashed rgba(255, 85, 0, .28);
  border-radius: 50%;
  border-left-color: transparent;
  border-bottom-color: transparent;
  animation: charityOrbit 20s linear infinite;
}

@keyframes whoNumDrift {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes whoChevronPulse {
  0%, 100% { opacity: .25; transform: rotate(-45deg) translate(0, 0); }
  50% { opacity: .85; transform: rotate(-45deg) translate(3px, 3px); }
}

@keyframes whoGlowPulse {
  0%, 100% { opacity: .65; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}

@keyframes whoDiamondPulse {
  0%, 100% { opacity: .4; transform: rotate(45deg) scale(1); }
  50% { opacity: .9; transform: rotate(45deg) scale(1.15); }
}

.who-serve-path {
  position: absolute;
  left: 8%;
  bottom: 10%;
  width: min(34vw, 360px);
  height: 24%;
  opacity: .4;
  pointer-events: none;
}

.who-serve-path path {
  stroke: var(--orange);
  stroke-width: 2;
  stroke-dasharray: 8 11;
  stroke-linecap: round;
  animation: missionServeDash 2.8s linear infinite;
  filter: drop-shadow(0 0 5px rgba(255, 85, 0, .45));
}

.who-title-mark {
  display: block;
  width: 72px;
  height: 3px;
  margin: 12px 0 0;
  background: linear-gradient(90deg, var(--orange), transparent);
  box-shadow: 0 0 12px rgba(255, 85, 0, .55);
}

.who-body {
  position: relative;
  z-index: 5;
  max-width: min(100%, 520px);
  margin-top: 28px;
  padding-bottom: 0;
}

.who-copy {
  position: relative;
  z-index: 5;
}

.who-copy h2 {
  position: static;
  white-space: nowrap;
  font-size: clamp(64px, 8vw, 140px);
  line-height: 0.9;
}

.who h2 em {
  display: inline;
  white-space: nowrap;
}

.who-intro {
  max-width: 420px;
  margin-top: 16px;
  font-size: clamp(18px, 1.7vw, 26px);
  font-weight: 700;
  line-height: 1.2;
  color: rgba(255, 255, 255, .92);
}

.who-card {
  max-width: 520px;
  justify-self: start;
  margin-top: 18px;
  padding: 38px;
  border: 1px solid rgba(255, 85, 0, .68);
  background: rgba(7, 7, 7, .85);
  box-shadow: 14px 14px 0 rgba(255, 85, 0, .18), 0 0 40px rgba(255, 85, 0, .12);
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
  position: relative;
  z-index: 5;
}

.who-card-kicker {
  display: block;
  margin-bottom: 36px;
  color: var(--orange);
  font: 700 9px var(--mono);
  letter-spacing: .14em;
}

.who-card strong {
  display: block;
  font: italic 900 clamp(52px, 6vw, 96px)/.75 var(--condensed);
  letter-spacing: .075em;
}

.who-card-body {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.who-card-body p {
  margin: 0;
  font-size: clamp(15px, 1.25vw, 18px);
  font-weight: 700;
  line-height: 1.3;
  color: rgba(255, 255, 255, .9);
}

.who-body,
.mission-body {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.who-body p,
.mission-body p,
.charity-body > p {
  font-size: clamp(17px, 1.45vw, 24px);
  font-weight: 700;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.92);
}

.who-body p {
  transform: translateX(0);
  transition: color .3s, transform .3s;
}

.who-body p:hover {
  color: #fff;
  transform: translateX(10px);
}

.who .spike-figure {
  position: relative;
  bottom: auto;
  right: auto;
  left: auto;
  z-index: 1;
  width: min(100%, 560px);
  max-width: none;
  min-height: auto;
  margin: 0;
  opacity: 1;
  pointer-events: none;
  overflow: visible;
  transform: none;
  transform-origin: center center;
  justify-self: end;
  align-self: start;
}

.who-visual {
  position: relative;
  z-index: 5;
  display: grid;
  gap: 22px;
  align-content: start;
  justify-items: end;
}

.who-aside {
  width: 100%;
  max-width: none;
  padding: 42px 44px;
  border: 1px solid rgba(255, 85, 0, .55);
  background: rgba(7, 7, 7, .78);
  box-shadow: 12px 12px 0 rgba(255, 85, 0, .12);
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
}

.who-aside-kicker {
  display: block;
  margin-bottom: 24px;
  color: var(--orange);
  font: 700 11px var(--mono);
  letter-spacing: .16em;
}

.who-aside-list {
  list-style: none;
  display: grid;
  gap: 2px;
  margin: 0 0 26px;
  background: rgba(255, 85, 0, .35);
  border: 1.5px solid rgba(255, 85, 0, .55);
}

.who-aside-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: center;
  padding: 28px 30px;
  background: #0b0b0b;
}

.who-aside-list b {
  color: var(--orange);
  font: 700 14px var(--mono);
  letter-spacing: .12em;
}

.who-aside-list span {
  font: italic 800 clamp(28px, 3vw, 40px)/1 var(--condensed);
  letter-spacing: .06em;
}

.who-aside-note {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  color: rgba(255, 255, 255, .78);
}

.who .spike-figure::before,
.who .spike-figure::after,
.who .spike-speed-lines,
.who .figure-caption {
  display: none;
}

.who .spike-figure svg {
  filter: drop-shadow(0 0 14px rgba(255, 85, 0, .25));
  transform: none;
  width: 100%;
}

@media (min-width: 801px) and (max-width: 1200px) {
  .who .spike-figure {
    width: min(100%, 420px);
  }

  .who-card {
    max-width: 440px;
    padding: 28px;
  }
}

.mission {
  padding-top: 36px;
  background:
    linear-gradient(135deg, rgba(255, 85, 0, .055), transparent 38%),
    #050505;
}

.mission-motion {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.mission-court {
  position: absolute;
  inset: 8% 4% 10%;
  opacity: .18;
  background-image:
    linear-gradient(to right, rgba(255, 85, 0, .35) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, .12) 1px, transparent 1px);
  background-size: 5.5vw 5.5vw;
  mask-image: radial-gradient(ellipse at 70% 45%, #000 20%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse at 70% 45%, #000 20%, transparent 72%);
}

.mission-net {
  position: absolute;
  top: 12%;
  right: 6%;
  width: min(28vw, 320px);
  height: min(38vh, 420px);
  opacity: .28;
  background:
    repeating-linear-gradient(
      0deg,
      transparent 0 26px,
      rgba(255, 255, 255, .45) 26px 28px
    ),
    repeating-linear-gradient(
      90deg,
      transparent 0 26px,
      rgba(255, 255, 255, .45) 26px 28px
    );
  border-left: 4px solid var(--orange);
  box-shadow: -2px 0 18px rgba(255, 85, 0, .35);
  transform: skewX(-4deg);
}

.mission-serve-path {
  position: absolute;
  left: 4%;
  bottom: 8%;
  width: 70%;
  height: 42%;
  overflow: visible;
}

.mission-serve-path path {
  stroke: rgba(255, 85, 0, .45);
  stroke-width: 3;
  stroke-dasharray: 10 14;
  stroke-linecap: round;
  animation: missionServeDash 2.8s linear infinite;
  filter: drop-shadow(0 0 6px rgba(255, 85, 0, .6));
}

.mission-ball {
  position: relative;
  display: block;
  top: auto;
  right: auto;
  width: 96px;
  margin-top: 72px;
  margin-left: clamp(160px, 28vw, 420px);
  aspect-ratio: 1;
  border: 0;
  border-radius: 50%;
  overflow: visible;
  isolation: isolate;
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, .8),
    0 0 28px rgba(255, 85, 0, .55),
    0 0 48px rgba(255, 85, 0, .35);
  animation: missionBallFloat 3.6s ease-in-out infinite;
}

.mission-ball img {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 50%;
}

.mission-ball::before {
  content: "";
  position: absolute;
  inset: -7px;
  z-index: 2;
  border: 2px solid rgba(255, 255, 255, .72);
  border-radius: 50%;
  opacity: .8;
  pointer-events: none;
}

.mission-ball-halo {
  position: absolute;
  inset: -18px;
  z-index: 1;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, .35);
  box-shadow:
    0 0 0 8px rgba(255, 255, 255, .08),
    0 0 0 16px rgba(255, 85, 0, .08),
    0 0 24px rgba(255, 85, 0, .35);
  pointer-events: none;
  animation: missionHaloPulse 2.4s ease-in-out infinite;
}

.mission-ball-trail {
  position: absolute;
  top: 42%;
  right: 78%;
  z-index: 0;
  width: clamp(780px, 92vw, 1400px);
  height: 88px;
  pointer-events: none;
  transform-origin: right center;
  transform: translateY(-50%) rotate(-32deg);
}

.mission-trail-glow {
  position: absolute;
  inset: 4px -10px 4px 0;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 40, 0, .18) 18%,
    rgba(255, 85, 0, .38) 55%,
    rgba(255, 200, 80, .55) 88%,
    rgba(255, 255, 255, .35) 100%
  );
  filter: blur(10px);
  opacity: .95;
  animation: missionBallTrailPulse 1.1s ease-in-out infinite;
}

.mission-trail-core {
  position: absolute;
  inset: 18px 0;
  border-radius: 999px;
  background:
    linear-gradient(
      90deg,
      transparent 0%,
      rgba(255, 40, 0, .25) 10%,
      rgba(255, 85, 0, .78) 40%,
      rgba(255, 180, 40, .98) 72%,
      #fff 100%
    );
  box-shadow:
    0 0 14px rgba(255, 85, 0, 1),
    0 0 34px rgba(255, 61, 0, .7),
    0 0 60px rgba(255, 85, 0, .4);
  animation: missionBallTrailPulse 1.1s ease-in-out infinite;
}

.mission-trail-streak {
  position: absolute;
  right: 4%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 60, 0, .55) 25%,
    rgba(255, 170, 50, .95) 70%,
    #fff 100%
  );
  box-shadow:
    0 0 8px rgba(255, 85, 0, .95),
    0 0 18px rgba(255, 120, 0, .65);
  transform-origin: right center;
  animation: missionStreakRush 1.05s ease-in-out infinite;
}

.mission-trail-streak.s1 {
  top: 22%;
  width: 86%;
  transform: rotate(-7deg);
  animation-delay: 0s;
}

.mission-trail-streak.s2 {
  top: 40%;
  width: 96%;
  height: 4px;
  transform: rotate(-1deg);
  animation-delay: .12s;
}

.mission-trail-streak.s3 {
  top: 58%;
  width: 78%;
  transform: rotate(6deg);
  opacity: .9;
  animation-delay: .22s;
}

.mission-trail-streak.s4 {
  top: 72%;
  width: 64%;
  height: 2px;
  transform: rotate(11deg);
  opacity: .75;
  animation-delay: .34s;
}

.mission-trail-dash {
  position: absolute;
  left: 0;
  top: 50%;
  width: 82%;
  height: 7px;
  transform: translateY(-50%);
  background: repeating-linear-gradient(
    90deg,
    rgba(255, 85, 0, .95) 0 14px,
    transparent 14px 26px
  );
  filter: drop-shadow(0 0 6px rgba(255, 85, 0, .9));
  opacity: .95;
  animation: missionDashSlide 1.2s linear infinite;
}

.mission-trail-dash.dash-two {
  top: 36%;
  width: 68%;
  height: 4px;
  opacity: .55;
  transform: translateY(-50%) rotate(-5deg);
  animation-duration: .95s;
  animation-delay: .15s;
  background: repeating-linear-gradient(
    90deg,
    rgba(255, 200, 80, .9) 0 10px,
    transparent 10px 20px
  );
}

.mission-trail-sparks {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.mission-trail-sparks i {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fff;
  box-shadow:
    0 0 8px #ffb84a,
    0 0 14px rgba(255, 85, 0, .95);
  animation: missionSparkFly 1.15s ease-out infinite;
}

.mission-trail-sparks i:nth-child(1) { top: 18%; right: 48%; animation-delay: 0s; }
.mission-trail-sparks i:nth-child(2) { top: 42%; right: 62%; width: 4px; height: 4px; animation-delay: .18s; }
.mission-trail-sparks i:nth-child(3) { top: 68%; right: 54%; animation-delay: .32s; }
.mission-trail-sparks i:nth-child(4) { top: 28%; right: 72%; width: 3px; height: 3px; animation-delay: .48s; }
.mission-trail-sparks i:nth-child(5) { top: 55%; right: 78%; width: 4px; height: 4px; animation-delay: .62s; }
.mission-trail-sparks i:nth-child(6) { top: 78%; right: 66%; width: 3px; height: 3px; animation-delay: .78s; }

.mission-trail-fire {
  position: absolute;
  left: -14px;
  top: 50%;
  width: 84px;
  height: 90px;
  transform: translateY(-50%);
  pointer-events: none;
}

.mission-trail-fire i {
  position: absolute;
  bottom: 18px;
  left: 50%;
  width: 18px;
  height: 42px;
  background:
    linear-gradient(180deg, #fff 0%, #ffcc33 28%, #ff5500 68%, #ff2200 100%);
  border-radius: 60% 60% 20% 20% / 70% 70% 30% 30%;
  transform: translateX(-50%);
  box-shadow: 0 0 12px rgba(255, 85, 0, .95), 0 0 24px rgba(255, 40, 0, .6);
  animation: missionFlameFlicker 0.55s ease-in-out infinite;
  transform-origin: center bottom;
}

.mission-trail-fire i:nth-child(1) {
  left: 22%;
  width: 14px;
  height: 34px;
  animation-delay: 0s;
}

.mission-trail-fire i:nth-child(2) {
  left: 42%;
  width: 22px;
  height: 52px;
  animation-delay: .08s;
}

.mission-trail-fire i:nth-child(3) {
  left: 58%;
  width: 18px;
  height: 44px;
  animation-delay: .16s;
}

.mission-trail-fire i:nth-child(4) {
  left: 74%;
  width: 15px;
  height: 36px;
  animation-delay: .22s;
}

.mission-trail-fire i:nth-child(5) {
  left: 12%;
  bottom: 30px;
  width: 11px;
  height: 24px;
  opacity: .85;
  animation-delay: .28s;
}

.mission-trail-fire i:nth-child(6) {
  left: 86%;
  bottom: 28px;
  width: 12px;
  height: 28px;
  opacity: .8;
  animation-delay: .34s;
}

.mission-trail-fire i:nth-child(7) {
  left: 50%;
  bottom: 36px;
  width: 10px;
  height: 22px;
  opacity: .75;
  animation-delay: .4s;
}

.mission-arc {
  position: absolute;
  top: 10%;
  right: 7%;
  width: 44vw;
  height: 44vw;
  border: 2px dashed rgba(255, 85, 0, .28);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  animation: missionArcSpin 18s linear infinite;
}

.mission-arc.arc-two {
  top: auto;
  bottom: -8%;
  right: auto;
  left: -10%;
  width: 32vw;
  height: 32vw;
  border-color: rgba(255, 85, 0, .18);
  border-right-color: transparent;
  border-top-color: transparent;
  animation-direction: reverse;
  animation-duration: 26s;
}

.mission-base {
  position: absolute;
  left: 4%;
  right: 4%;
  bottom: 7%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 85, 0, .45), rgba(255, 255, 255, .28), rgba(255, 85, 0, .45), transparent);
  box-shadow: 0 0 12px rgba(255, 85, 0, .25);
}

.mission-base::before,
.mission-base::after {
  content: none;
}

.mission-base-glow {
  position: absolute;
  left: 50%;
  bottom: -2%;
  width: min(70vw, 720px);
  height: 180px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(255, 85, 0, .16), transparent 68%);
  filter: blur(18px);
  pointer-events: none;
}

.mission-bottom-path {
  position: absolute;
  left: 3%;
  right: 3%;
  bottom: 4%;
  width: 94%;
  height: 160px;
  overflow: visible;
}

.mission-bottom-path path {
  stroke: rgba(255, 85, 0, .42);
  stroke-width: 2.5;
  stroke-dasharray: 8 12;
  stroke-linecap: round;
  fill: none;
  animation: missionServeDash 3.2s linear infinite;
  filter: drop-shadow(0 0 6px rgba(255, 85, 0, .45));
}

.mission-bottom-slash {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), #fff);
  box-shadow: 0 0 10px rgba(255, 85, 0, .7);
  transform: skewX(-24deg);
  animation: missionStrike 3.4s ease-out infinite;
  opacity: 0;
}

.mission-bottom-slash.slash-a {
  left: 8%;
  bottom: 18%;
  width: 160px;
}

.mission-bottom-slash.slash-b {
  left: 38%;
  bottom: 12%;
  width: 220px;
  animation-delay: 1.1s;
}

.mission-bottom-slash.slash-c {
  right: 10%;
  bottom: 20%;
  width: 140px;
  animation-delay: 2s;
}

.mission-bottom-corner {
  position: absolute;
  width: 64px;
  height: 64px;
  border: 1.5px solid rgba(255, 85, 0, .45);
  pointer-events: none;
}

.mission-bottom-corner.corner-l {
  left: 3%;
  bottom: 5%;
  border-right: 0;
  border-top: 0;
}

.mission-bottom-corner.corner-r {
  right: 3%;
  bottom: 5%;
  border-left: 0;
  border-top: 0;
}

.mission-bottom-dots {
  position: absolute;
  left: 18%;
  bottom: 14%;
  display: flex;
  gap: 14px;
  align-items: center;
}

.mission-bottom-dots i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 10px rgba(255, 85, 0, .7);
  opacity: .55;
  animation: charityHeartFloat 3.8s ease-in-out infinite;
}

.mission-bottom-dots i:nth-child(2) { width: 5px; height: 5px; opacity: .4; animation-delay: .2s; }
.mission-bottom-dots i:nth-child(3) { width: 7px; height: 7px; opacity: .65; animation-delay: .4s; }
.mission-bottom-dots i:nth-child(4) { width: 4px; height: 4px; opacity: .3; animation-delay: .6s; }
.mission-bottom-dots i:nth-child(5) { width: 5px; height: 5px; opacity: .45; animation-delay: .8s; }

.mission-bottom-chevrons {
  position: absolute;
  right: 16%;
  bottom: 15%;
  display: flex;
  gap: 8px;
}

.mission-bottom-chevrons i {
  display: block;
  width: 12px;
  height: 12px;
  border-right: 2px solid rgba(255, 85, 0, .55);
  border-bottom: 2px solid rgba(255, 85, 0, .55);
  transform: rotate(-45deg);
  opacity: .5;
  animation: charityHeartFloat 3.6s ease-in-out infinite;
}

.mission-bottom-chevrons i:nth-child(2) { opacity: .4; animation-delay: .15s; }
.mission-bottom-chevrons i:nth-child(3) { opacity: .3; animation-delay: .3s; }
.mission-bottom-chevrons i:nth-child(4) { opacity: .2; animation-delay: .45s; }

.mission-bottom-diamond {
  position: absolute;
  left: 50%;
  bottom: 10%;
  width: 11px;
  height: 11px;
  border: 1.5px solid rgba(255, 85, 0, .6);
  transform: translateX(-50%) rotate(45deg);
  box-shadow: 0 0 12px rgba(255, 85, 0, .35);
  animation: whoDiamondPulse 3s ease-in-out infinite;
}

.mission-bottom-rail {
  position: absolute;
  left: 50%;
  bottom: 2.5%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, .38);
  font: 700 11px var(--condensed);
  font-style: italic;
  letter-spacing: .28em;
  white-space: nowrap;
  pointer-events: none;
}

.mission-strike {
  position: absolute;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--orange), #fff);
  box-shadow: 0 0 8px rgba(255, 85, 0, .85), 0 0 22px rgba(255, 85, 0, .45);
  transform: skewX(-24deg);
  animation: missionStrike 3.2s ease-out infinite;
}

.strike-a { top: 28%; right: 3%; width: 260px; }
.strike-b { top: 56%; left: 7%; width: 190px; animation-delay: 1s; }
.strike-c { bottom: 18%; right: 22%; width: 330px; animation-delay: 2s; }

.mission-copy,
.mission-card,
.mission-body,
.who-copy,
.who-body {
  position: relative;
  z-index: 5;
}

.mission-card {
  max-width: 560px;
  justify-self: end;
  padding: 38px;
  border: 1px solid rgba(255, 85, 0, .68);
  background: rgba(7, 7, 7, .88);
  box-shadow: 14px 14px 0 rgba(255, 85, 0, .18), 0 0 40px rgba(255, 85, 0, .12);
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
}

.mission-card-kicker {
  display: block;
  margin-bottom: 28px;
  color: var(--orange);
  font: 700 9px var(--mono);
  letter-spacing: .14em;
}

.mission-card strong {
  display: block;
  font: italic 900 clamp(40px, 4.8vw, 72px)/.82 var(--condensed);
  letter-spacing: .05em;
}

.mission-card-body {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.mission-card-body p {
  margin: 0;
  font-size: clamp(15px, 1.25vw, 18px);
  font-weight: 600;
  line-height: 1.4;
  color: rgba(255, 255, 255, .9);
}

.mission-body p {
  transform: translateX(0);
  transition: color .3s, transform .3s;
}

.mission-body p:hover {
  color: #fff;
  transform: translateX(10px);
}

@keyframes missionBallFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(12deg); }
}

@keyframes missionBallTrailPulse {
  0%, 100% {
    opacity: .78;
    filter: brightness(1);
  }
  50% {
    opacity: 1;
    filter: brightness(1.25);
  }
}

@keyframes missionHaloPulse {
  0%, 100% { transform: scale(1); opacity: .85; }
  50% { transform: scale(1.06); opacity: 1; }
}

@keyframes missionDashSlide {
  to { background-position: 26px 0; }
}

@keyframes missionFlameFlicker {
  0%, 100% { transform: translateX(-50%) scaleY(1) scaleX(1); opacity: 1; }
  40% { transform: translateX(-50%) scaleY(1.18) scaleX(.86); opacity: .9; }
  70% { transform: translateX(-50%) scaleY(.92) scaleX(1.08); opacity: 1; }
}

@keyframes missionStreakRush {
  0%, 100% {
    opacity: .55;
    filter: brightness(1);
  }
  45% {
    opacity: 1;
    filter: brightness(1.35);
  }
  70% {
    opacity: .8;
    filter: brightness(1.1);
  }
}

@keyframes missionSparkFly {
  0% {
    opacity: 0;
    transform: translate(0, 0) scale(.6);
  }
  25% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(-42px, -10px) scale(.2);
  }
}

@keyframes missionFloatSpin {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(8px, -16px) rotate(40deg); }
}

@keyframes missionServeDash {
  to { stroke-dashoffset: -48; }
}

@keyframes missionArcSpin {
  to { transform: rotate(360deg); }
}

@keyframes missionStrike {
  0% { opacity: 0; transform: translateX(-80px) skewX(-24deg); }
  15% { opacity: .9; }
  100% { opacity: 0; transform: translateX(130px) skewX(-24deg); }
}

@keyframes missionNumberPulse {
  0%, 100% { opacity: .5; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(-10px); }
}

.mission-copy h2 {
  position: sticky;
  top: 120px;
}

.section-decor {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.camp {
  min-height: 0;
  padding-top: 56px;
  padding-bottom: 28px;
  background: linear-gradient(145deg, #110803, #070707 55%, #120600);
}

.camp .section-label {
  margin-bottom: 28px;
}

.camp-layout,
.charity-layout {
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 8vw;
}

.charity-layout {
  align-items: center;
}

.camp-copy,
.camp-card,
.charity-copy,
.charity-card,
.charity-body,
.sponsors-layout {
  position: relative;
  z-index: 5;
}

.camp-intro {
  max-width: 520px;
  margin-top: 44px;
  font-size: clamp(20px, 2vw, 32px);
  font-weight: 700;
  line-height: 1.1;
}

.camp-title-wrap {
  position: relative;
  display: inline-block;
  isolation: isolate;
}

.camp-maple {
  position: absolute;
  left: 50%;
  top: 52%;
  z-index: 0;
  width: min(110%, 480px);
  height: auto;
  transform: translate(-50%, -50%) rotate(-6deg);
  opacity: 0.22;
  pointer-events: none;
  user-select: none;
}

.camp-title-wrap h2 {
  position: relative;
  z-index: 1;
}

.camp-court {
  position: absolute;
  inset: 12% 8% 18% 6%;
  border: 1px solid rgba(255, 85, 0, .18);
  background:
    linear-gradient(90deg, transparent 49.6%, rgba(255, 85, 0, .22) 49.6%, rgba(255, 85, 0, .22) 50.4%, transparent 50.4%),
    linear-gradient(rgba(255, 85, 0, .05), transparent 40%),
    repeating-linear-gradient(
      0deg,
      transparent 0 46px,
      rgba(255, 255, 255, .03) 46px 47px
    );
  opacity: .55;
  pointer-events: none;
}

.camp-net {
  position: absolute;
  top: 28%;
  left: 42%;
  width: 3px;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, .55), var(--orange), transparent);
  box-shadow: 0 0 18px rgba(255, 85, 0, .35);
  opacity: .45;
}

.camp-net::before,
.camp-net::after {
  content: "";
  position: absolute;
  left: 50%;
  width: min(28vw, 220px);
  height: 38%;
  border: 1px solid rgba(255, 255, 255, .12);
  border-left: none;
  transform: translateX(-50%);
  background:
    repeating-linear-gradient(90deg, transparent 0 14px, rgba(255, 85, 0, .12) 14px 15px),
    repeating-linear-gradient(0deg, transparent 0 12px, rgba(255, 255, 255, .08) 12px 13px);
  opacity: .7;
}

.camp-net::before { top: 8%; }
.camp-net::after { bottom: 8%; transform: translateX(-50%) scaleX(-1); }

.camp-float-ball {
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, .5),
    0 0 18px rgba(255, 85, 0, .4);
  animation: missionFloatSpin 7.5s ease-in-out infinite;
}

.camp-float-ball img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.camp-float-ball.ball-b {
  bottom: 20%;
  left: 10%;
  width: 42px;
  opacity: .5;
  animation-delay: 1.2s;
}

.camp-serve-path {
  position: absolute;
  right: 4%;
  bottom: 10%;
  width: min(48vw, 520px);
  height: 34%;
  opacity: .55;
  pointer-events: none;
}

.camp-serve-path path {
  stroke: var(--orange);
  stroke-width: 2.5;
  stroke-dasharray: 10 12;
  stroke-linecap: round;
  animation: missionServeDash 2.8s linear infinite;
  filter: drop-shadow(0 0 6px rgba(255, 85, 0, .55));
}

.camp-card {
  max-width: 480px;
  justify-self: end;
  padding: 38px;
  border: 1px solid rgba(255, 85, 0, .68);
  background: rgba(7, 7, 7, .85);
  box-shadow: 14px 14px 0 rgba(255, 85, 0, .18), 0 0 40px rgba(255, 85, 0, .12);
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
}

.camp-card-kicker {
  display: block;
  margin-bottom: 42px;
  color: var(--orange);
  font: 700 9px var(--mono);
  letter-spacing: .14em;
}

.camp-card strong {
  display: block;
  font: italic 900 clamp(64px, 7vw, 110px)/.75 var(--condensed);
  letter-spacing: .075em;
}

.camp-card-body {
  display: grid;
  gap: 14px;
  margin-top: 32px;
}

.camp-card-body p {
  max-width: none;
  margin-top: 0;
  font-size: clamp(15px, 1.25vw, 18px);
  font-weight: 700;
  line-height: 1.28;
  color: rgba(255, 255, 255, .9);
}

.charity-card {
  max-width: 520px;
  justify-self: end;
  padding: 38px;
  border: 1px solid rgba(255, 85, 0, .68);
  background: rgba(7, 7, 7, .85);
  box-shadow: 14px 14px 0 rgba(255, 85, 0, .18), 0 0 40px rgba(255, 85, 0, .12);
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
}

.charity-card-kicker {
  display: block;
  margin-bottom: 36px;
  color: var(--orange);
  font: 700 9px var(--mono);
  letter-spacing: .14em;
}

.charity-card strong {
  display: block;
  font: italic 900 clamp(52px, 6vw, 96px)/.75 var(--condensed);
  letter-spacing: .075em;
}

.charity-card-body {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.charity-card-body p {
  margin: 0;
  font-size: clamp(15px, 1.25vw, 18px);
  font-weight: 700;
  line-height: 1.3;
  color: rgba(255, 255, 255, .9);
}

.camp-decor .camp-ring {
  position: absolute;
  right: -8vw;
  bottom: -15vw;
  width: 52vw;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 85, 0, .36);
  border-radius: 50%;
  box-shadow: inset 0 0 80px rgba(255, 85, 0, .08);
  animation: campRingRotate 20s linear infinite;
}

.camp-line {
  position: absolute;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--orange), #fff);
  box-shadow: 0 0 12px rgba(255, 85, 0, .7);
  transform: skewX(-24deg);
  animation: campLineRush 3.4s ease-out infinite;
}

.camp-line.line-one { top: 22%; left: 4%; width: 280px; }
.camp-line.line-two { right: 8%; bottom: 23%; width: 360px; animation-delay: 1.6s; }

.coaches {
  min-height: auto;
  display: grid;
  align-content: start;
  padding: 36px 7vw 40px;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(255, 85, 0, .14), transparent 48%),
    radial-gradient(ellipse at 82% 78%, rgba(255, 40, 0, .08), transparent 40%),
    linear-gradient(145deg, #0c0805, #070707 55%, #120600);
}

.coaches .section-label {
  margin-bottom: 20px;
}

.coaches-layout {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 1.2vw;
  margin-bottom: 0;
  padding-bottom: 0;
}

.coaches-soon {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 8px;
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}

.coaches-soon p {
  max-width: 420px;
  margin: 4px 0 0;
  font-size: clamp(16px, 1.6vw, 22px);
  font-weight: 700;
  line-height: 1.25;
  color: rgba(255, 255, 255, .88);
}

.coaches-spiker {
  position: absolute;
  left: -4%;
  right: auto;
  bottom: -6%;
  z-index: 0;
  width: min(58vw, 720px);
  height: auto;
  opacity: .16;
  pointer-events: none;
  user-select: none;
  mix-blend-mode: screen;
  filter: contrast(1.05);
}

.coaches-decor {
  z-index: 1;
}

.coaches .section-label,
.coaches-layout {
  position: relative;
  z-index: 5;
}

.coaches h2 {
  text-align: center;
  font-size: clamp(52px, 7vw, 110px);
  line-height: 0.9;
  white-space: nowrap;
}

.coaches h2 em {
  display: inline;
  margin-top: 0;
  line-height: inherit;
}

.coaches-qmark {
  font: italic 900 clamp(100px, 15vw, 220px)/.75 var(--condensed);
  color: transparent;
  -webkit-text-stroke: 3px rgba(255, 85, 0, .7);
  text-shadow:
    12px 12px 0 rgba(255, 85, 0, .12),
    0 0 50px rgba(255, 85, 0, .28);
  animation: coachesQPulse 3.2s ease-in-out infinite;
}

.coaches-soon strong {
  font: italic 900 clamp(40px, 5.5vw, 84px)/.8 var(--condensed);
  letter-spacing: .06em;
  color: var(--orange);
  text-shadow: 0 0 24px rgba(255, 85, 0, .35);
}

.coaches-decor .coaches-orbit {
  position: absolute;
  width: 36vw;
  height: 36vw;
  border: 1px dashed rgba(255, 85, 0, .22);
  border-radius: 50%;
  animation: charityOrbit 24s linear infinite;
  pointer-events: none;
}

.coaches-decor .coaches-orbit:first-child {
  left: -16vw;
  top: 10%;
}

.coaches-decor .coaches-orbit.orbit-two {
  right: -14vw;
  bottom: -8%;
  width: 28vw;
  height: 28vw;
  animation-direction: reverse;
}

.coaches-slash {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), #fff);
  box-shadow: 0 0 10px rgba(255, 85, 0, .7);
  transform: skewX(-24deg);
  animation: sponsorStrike 3.4s ease-out infinite;
  opacity: 0;
}

.coaches-slash { top: 20%; left: 8%; width: 180px; }
.coaches-slash.slash-two { bottom: 22%; right: 10%; left: auto; width: 220px; animation-delay: 1.2s; }
.coaches-slash.slash-three { top: 58%; left: 12%; width: 140px; animation-delay: 2s; }
.coaches-slash.slash-four { top: 72%; left: 4%; width: 110px; animation-delay: 2.6s; }
.coaches-slash.slash-five { top: 34%; right: 6%; left: auto; width: 130px; animation-delay: .6s; }

.coaches-glow {
  position: absolute;
  left: 50%;
  top: 42%;
  width: min(48vw, 420px);
  height: min(48vw, 420px);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 85, 0, .28), transparent 68%);
  filter: blur(30px);
  animation: whoGlowPulse 4.5s ease-in-out infinite;
  pointer-events: none;
}

.coaches-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 12px rgba(255, 85, 0, .7);
  animation: charityHeartFloat 4s ease-in-out infinite;
}

.coaches-dot { top: 28%; left: 18%; }
.coaches-dot.dot-two { bottom: 26%; right: 16%; width: 6px; height: 6px; animation-delay: 1s; }
.coaches-dot.dot-three { top: 48%; left: 8%; width: 5px; height: 5px; animation-delay: 1.6s; }
.coaches-dot.dot-four { top: 18%; right: 14%; width: 7px; height: 7px; animation-delay: 2.1s; }
.coaches-dot.dot-five { bottom: 18%; left: 14%; width: 5px; height: 5px; animation-delay: .4s; }

.coaches-corner {
  position: absolute;
  width: 72px;
  height: 72px;
  border: 1.5px solid rgba(255, 85, 0, .45);
  pointer-events: none;
}

.coaches-corner.corner-a {
  left: 3%;
  top: 12%;
  border-right: 0;
  border-bottom: 0;
}

.coaches-corner.corner-b {
  right: 4%;
  bottom: 4%;
  border-left: 0;
  border-top: 0;
}

.coaches-corner.corner-c {
  left: 3%;
  bottom: 6%;
  width: 48px;
  height: 48px;
  border-right: 0;
  border-top: 0;
}

.coaches-corner.corner-d {
  right: 4%;
  top: 18%;
  width: 48px;
  height: 48px;
  border-left: 0;
  border-bottom: 0;
}

.coaches-ring {
  position: absolute;
  border: 1px dashed rgba(255, 85, 0, .28);
  border-radius: 50%;
  pointer-events: none;
  animation: charityOrbit 28s linear infinite;
}

.coaches-ring.ring-left {
  left: 2%;
  top: 38%;
  width: min(18vw, 200px);
  height: min(18vw, 200px);
}

.coaches-ring.ring-right {
  right: 2%;
  top: 42%;
  width: min(14vw, 160px);
  height: min(14vw, 160px);
  animation-direction: reverse;
  animation-duration: 22s;
}

.coaches-chevron-col {
  position: absolute;
  top: 50%;
  z-index: 1;
  display: grid;
  gap: 10px;
  transform: translateY(-50%);
  pointer-events: none;
}

.coaches-chevron-col.col-left { left: 12%; }
.coaches-chevron-col.col-right { right: 12%; }

.coaches-chevron-col i {
  display: block;
  width: 14px;
  height: 14px;
  border-right: 2px solid rgba(255, 85, 0, .55);
  border-bottom: 2px solid rgba(255, 85, 0, .55);
  transform: rotate(-45deg);
  opacity: .55;
  animation: charityHeartFloat 3.8s ease-in-out infinite;
}

.coaches-chevron-col.col-right i {
  transform: rotate(135deg);
}

.coaches-chevron-col i:nth-child(2) { opacity: .45; animation-delay: .15s; }
.coaches-chevron-col i:nth-child(3) { opacity: .35; animation-delay: .3s; }
.coaches-chevron-col i:nth-child(4) { opacity: .25; animation-delay: .45s; }
.coaches-chevron-col i:nth-child(5) { opacity: .18; animation-delay: .6s; }

.coaches-side {
  position: absolute;
  top: 50%;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 12px;
  transform: translateY(-50%);
  color: rgba(255, 85, 0, .85);
  pointer-events: none;
}

.coaches-side.side-left {
  left: 4.5%;
}

.coaches-side.side-right {
  right: 4.5%;
}

.coaches-side-frame {
  display: grid;
  place-items: center;
  width: clamp(88px, 9vw, 118px);
  height: clamp(88px, 9vw, 118px);
  border: 1.5px solid rgba(255, 85, 0, .55);
  background:
    linear-gradient(135deg, rgba(255, 85, 0, .12), transparent 55%),
    rgba(0, 0, 0, .25);
  box-shadow:
    0 0 28px rgba(255, 85, 0, .18),
    inset 0 0 0 1px rgba(255, 85, 0, .12);
  clip-path: polygon(10% 0, 100% 0, 100% 90%, 90% 100%, 0 100%, 0 10%);
  animation: whoNumDrift 5.5s ease-in-out infinite;
}

.coaches-side.side-right .coaches-side-frame {
  animation-delay: .8s;
  clip-path: polygon(0 0, 90% 0, 100% 10%, 100% 100%, 10% 100%, 0 90%);
}

.coaches-whistle,
.coaches-clip {
  width: clamp(44px, 5vw, 64px);
  height: auto;
  filter: drop-shadow(0 0 12px rgba(255, 85, 0, .45));
}

.coaches-side-label {
  color: rgba(255, 255, 255, .55);
  font: 600 10px var(--mono);
  letter-spacing: .18em;
  white-space: nowrap;
}

.coaches-side-tag {
  margin-top: 2px;
  padding: 4px 8px;
  border: 1px solid rgba(255, 85, 0, .4);
  color: rgba(255, 85, 0, .75);
  font: 700 9px var(--condensed);
  letter-spacing: .14em;
  background: rgba(255, 85, 0, .08);
}

.coaches-bars,
.coaches-diamonds {
  display: grid;
  gap: 8px;
  justify-items: center;
}

.coaches-bars i {
  display: block;
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  opacity: .7;
  animation: charityHeartFloat 3.6s ease-in-out infinite;
}

.coaches-bars i:nth-child(2) { width: 36px; opacity: .5; animation-delay: .2s; }
.coaches-bars i:nth-child(3) { width: 24px; opacity: .35; animation-delay: .4s; }

.coaches-diamonds i {
  width: 11px;
  height: 11px;
  border: 1.5px solid rgba(255, 85, 0, .65);
  transform: rotate(45deg);
  animation: whoDiamondPulse 3s ease-in-out infinite;
}

.coaches-diamonds i:nth-child(2) { opacity: .6; animation-delay: .25s; }
.coaches-diamonds i:nth-child(3) { opacity: .35; animation-delay: .5s; }

.coaches-rail-left,
.coaches-rail-right {
  position: absolute;
  top: 26%;
  z-index: 1;
  writing-mode: vertical-rl;
  color: rgba(255, 255, 255, .42);
  font: 700 12px var(--condensed);
  font-style: italic;
  letter-spacing: .3em;
  pointer-events: none;
}

.coaches-rail-left {
  left: 1.4%;
  transform: rotate(180deg);
}

.coaches-rail-right {
  right: 1.4%;
}

@keyframes coachesQPulse {
  0%, 100% {
    transform: translateY(0) scale(1);
    filter: brightness(1);
  }
  50% {
    transform: translateY(-8px) scale(1.03);
    filter: brightness(1.12);
  }
}

.charity {
  min-height: auto;
  padding: 40px 7vw 20px;
  margin-top: 0;
  background:
    radial-gradient(ellipse at 18% 22%, rgba(255, 85, 0, .12), transparent 42%),
    radial-gradient(ellipse at 82% 78%, rgba(255, 40, 0, .08), transparent 40%),
    #060606;
}

.charity .section-label {
  margin-top: 0;
  margin-bottom: 20px;
}

.charity h2 span,
.charity h2 em {
  display: block;
}

.charity h2 em {
  margin-top: .32em;
  line-height: .85;
  white-space: nowrap;
}

.charity-actions {
  display: grid;
  gap: 1px;
  margin-top: 42px;
  background: rgba(255, 85, 0, .35);
  border: 1.5px solid rgba(255, 85, 0, .85);
  box-shadow:
    0 0 0 1px rgba(255, 160, 60, .25),
    0 0 18px rgba(255, 85, 0, .45),
    0 0 42px rgba(255, 40, 0, .28),
    inset 0 0 24px rgba(255, 85, 0, .08);
  animation: charityActionsGlow 2.8s ease-in-out infinite;
}

.charity-actions span {
  padding: 18px 20px 20px;
  background: #0b0b0b;
  font: 800 20px/1.15 var(--condensed);
  font-style: italic;
  letter-spacing: .08em;
  overflow: visible;
}

.charity-actions b {
  display: inline-block;
  margin-right: 16px;
  color: var(--orange);
  font: 700 10px var(--mono);
  text-shadow: 0 0 10px rgba(255, 85, 0, .55);
}

@keyframes charityActionsGlow {
  0%, 100% {
    box-shadow:
      0 0 0 1px rgba(255, 160, 60, .22),
      0 0 16px rgba(255, 85, 0, .4),
      0 0 36px rgba(255, 40, 0, .22),
      inset 0 0 20px rgba(255, 85, 0, .06);
    border-color: rgba(255, 85, 0, .75);
  }
  50% {
    box-shadow:
      0 0 0 1px rgba(255, 180, 80, .4),
      0 0 24px rgba(255, 85, 0, .65),
      0 0 52px rgba(255, 40, 0, .38),
      inset 0 0 28px rgba(255, 85, 0, .12);
    border-color: rgba(255, 140, 40, .95);
  }
}

.impact-slider {
  position: relative;
  z-index: 5;
  width: min(94vw, 1180px);
  margin: 36px auto 0;
}

.impact-panel {
  display: grid;
  grid-template-columns: minmax(280px, 1.05fr) minmax(260px, 0.95fr);
  gap: 22px;
  align-items: stretch;
}

.impact-box {
  display: grid;
  gap: 1px;
  background: rgba(255, 85, 0, .35);
  border: 1.5px solid rgba(255, 85, 0, .85);
  box-shadow:
    0 0 0 1px rgba(255, 160, 60, .25),
    0 0 18px rgba(255, 85, 0, .45),
    0 0 42px rgba(255, 40, 0, .28),
    inset 0 0 24px rgba(255, 85, 0, .08);
  animation: charityActionsGlow 2.8s ease-in-out infinite;
}

.impact-item {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 18px;
  width: 100%;
  padding: 22px 28px;
  border: 0;
  background: #0b0b0b;
  color: #fff;
  text-align: left;
  cursor: pointer;
  font: italic 800 clamp(18px, 2.2vw, 32px)/1.1 var(--condensed);
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: background .35s ease, color .35s ease, transform .35s ease, box-shadow .35s ease;
}

.impact-item b {
  color: var(--orange);
  font: 700 clamp(12px, 1.2vw, 14px) var(--mono);
  font-style: normal;
  letter-spacing: .14em;
  text-shadow: 0 0 10px rgba(255, 85, 0, .55);
}

.impact-item span {
  display: block;
}

.impact-item.is-active {
  background: linear-gradient(90deg, rgba(255, 85, 0, .22), #120900 45%, #0b0b0b);
  box-shadow: inset 4px 0 0 var(--orange), 0 0 28px rgba(255, 85, 0, .18);
  transform: translateX(4px);
}

.impact-item:hover,
.impact-item:focus-visible {
  background: #140a04;
  outline: none;
}

.impact-detail {
  display: grid;
  align-content: center;
  gap: 18px;
  min-height: 100%;
  padding: 32px 34px;
  border: 1.5px solid rgba(255, 85, 0, .7);
  background: rgba(7, 7, 7, .9);
  box-shadow: 12px 12px 0 rgba(255, 85, 0, .14), 0 0 32px rgba(255, 85, 0, .1);
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
}

.impact-detail-kicker {
  color: var(--orange);
  font: 700 9px var(--mono);
  letter-spacing: .16em;
}

.impact-detail p {
  margin: 0;
  font-size: clamp(17px, 1.6vw, 24px);
  font-weight: 700;
  line-height: 1.35;
  color: rgba(255, 255, 255, .92);
  transition: opacity .25s ease, transform .25s ease;
}

.impact-detail p.is-switching {
  opacity: 0;
  transform: translateY(8px);
}

.impact-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.impact-dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 85, 0, .28);
  box-shadow: 0 0 8px rgba(255, 85, 0, .25);
  transition: background .3s, transform .3s;
  cursor: pointer;
}

.impact-dots i.is-active {
  background: var(--orange);
  transform: scale(1.25);
  box-shadow: 0 0 12px rgba(255, 85, 0, .7);
}

.charity-title-wrap {
  position: relative;
  display: inline-block;
  isolation: isolate;
}

.charity-heart-lg {
  position: absolute;
  left: 48%;
  top: 58%;
  z-index: 0;
  width: min(110%, 460px);
  height: auto;
  transform: translate(-50%, -50%) rotate(-6deg);
  fill: var(--orange);
  opacity: 0.12;
  pointer-events: none;
}

.charity-title-wrap h2 {
  position: relative;
  z-index: 1;
}

.charity-decor .charity-orbit {
  position: absolute;
  width: 42vw;
  height: 42vw;
  border: 1px dashed rgba(255, 85, 0, .22);
  border-radius: 50%;
  animation: charityOrbit 24s linear infinite;
}

.charity-decor .charity-orbit:first-child { left: -18vw; top: 8%; }
.charity-decor .charity-orbit.orbit-two {
  left: -8vw;
  right: auto;
  bottom: 8%;
  top: auto;
  animation-direction: reverse;
  width: 34vw;
  height: 34vw;
}

.charity-beam {
  position: absolute;
  top: 22%;
  left: 4%;
  width: 200px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--orange), #fff);
  box-shadow: 0 0 12px rgba(255, 85, 0, .7);
  transform: skewX(-24deg);
  animation: charityBeamRush 3.6s ease-out infinite;
  opacity: 0;
}

.charity-beam.beam-two {
  top: auto;
  left: 10%;
  bottom: 28%;
  right: auto;
  width: 240px;
  animation-delay: 1.4s;
}

.charity-court {
  position: absolute;
  inset: 14% 10% 16% 8%;
  border: 1px solid rgba(255, 85, 0, .14);
  background:
    linear-gradient(90deg, transparent 49.7%, rgba(255, 85, 0, .18) 49.7%, rgba(255, 85, 0, .18) 50.3%, transparent 50.3%),
    repeating-linear-gradient(
      0deg,
      transparent 0 52px,
      rgba(255, 255, 255, .025) 52px 53px
    );
  opacity: .45;
  pointer-events: none;
}

.charity-serve-path {
  position: absolute;
  left: 2%;
  bottom: 18%;
  width: min(38vw, 420px);
  height: 34%;
  opacity: .55;
  pointer-events: none;
}

.charity-serve-path path {
  stroke: var(--orange);
  stroke-width: 2.4;
  stroke-dasharray: 9 12;
  stroke-linecap: round;
  animation: missionServeDash 2.8s linear infinite;
  filter: drop-shadow(0 0 6px rgba(255, 85, 0, .5));
}

.charity-float-ball {
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, .45),
    0 0 16px rgba(255, 85, 0, .35);
  animation: missionFloatSpin 7.2s ease-in-out infinite;
}

.charity-float-ball img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.charity-float-ball.ball-a {
  top: 16%;
  right: 14%;
  width: 52px;
  opacity: .72;
}

.charity-plus {
  position: absolute;
  width: 36px;
  height: 36px;
  pointer-events: none;
  opacity: .55;
  animation: charityHeartFloat 4.8s ease-in-out infinite;
}

.charity-plus::before,
.charity-plus::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: var(--orange);
  box-shadow: 0 0 12px rgba(255, 85, 0, .45);
  transform: translate(-50%, -50%);
}

.charity-plus::before {
  width: 100%;
  height: 4px;
}

.charity-plus::after {
  width: 4px;
  height: 100%;
}

.charity-plus.plus-a {
  top: 34%;
  left: 18%;
}

.charity-plus.plus-b {
  bottom: 26%;
  left: 28%;
  right: auto;
  width: 26px;
  height: 26px;
  opacity: .35;
  animation-delay: 1.4s;
}

.charity-give-mark {
  position: absolute;
  top: 16%;
  left: 7%;
  right: auto;
  display: grid;
  gap: 2px;
  text-align: left;
  z-index: 3;
  pointer-events: none;
  animation: whoNumDrift 5.5s ease-in-out infinite;
}

.charity-give-mark b,
.charity-give-mark i {
  font: italic 900 clamp(28px, 3.4vw, 48px)/.85 var(--condensed);
  letter-spacing: .06em;
}

.charity-give-mark b {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 85, 0, .55);
}

.charity-give-mark i {
  color: rgba(255, 255, 255, .28);
  font-style: italic;
}

.charity-ribbon {
  position: absolute;
  left: 10%;
  bottom: 18%;
  width: 72px;
  height: 72px;
  border: 2px solid rgba(255, 85, 0, .4);
  border-radius: 50%;
  pointer-events: none;
  opacity: .7;
}

.charity-ribbon::before,
.charity-ribbon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 58%;
  width: 18px;
  height: 42px;
  background: linear-gradient(180deg, var(--orange), rgba(255, 85, 0, .15));
  transform-origin: top center;
}

.charity-ribbon::before {
  transform: translateX(-120%) rotate(18deg);
}

.charity-ribbon::after {
  transform: translateX(20%) rotate(-18deg);
}

.charity-pulse {
  position: absolute;
  left: 22%;
  top: 58%;
  width: 90px;
  height: 90px;
  border: 1.5px solid rgba(255, 85, 0, .35);
  border-radius: 50%;
  animation: charityPulseRing 3.2s ease-out infinite;
  pointer-events: none;
}

.charity-heart.heart-float {
  position: absolute;
  fill: var(--orange);
  opacity: 0.35;
  pointer-events: none;
  filter: drop-shadow(0 0 10px rgba(255, 85, 0, .45));
  animation: charityHeartFloat 4.8s ease-in-out infinite;
}

.charity-heart.heart-float.a {
  width: 42px;
  top: 22%;
  left: 22%;
  right: auto;
  animation-delay: 0s;
}

.charity-heart.heart-float.b {
  width: 28px;
  bottom: 20%;
  left: 8%;
  opacity: 0.28;
  animation-delay: 1.2s;
}

.charity-heart.heart-float.c {
  width: 34px;
  top: 42%;
  left: 14%;
  opacity: 0.22;
  animation-delay: 2.4s;
}

@keyframes charityBeamRush {
  0% { opacity: 0; transform: translateX(-70px) skewX(-24deg); }
  18% { opacity: .85; }
  100% { opacity: 0; transform: translateX(120px) skewX(-24deg); }
}

@keyframes charityHeartFloat {
  0%, 100% { transform: translateY(0) scale(1); opacity: .3; }
  50% { transform: translateY(-14px) scale(1.08); opacity: .55; }
}

@keyframes charityPulseRing {
  0% { transform: scale(.55); opacity: .7; }
  100% { transform: scale(1.7); opacity: 0; }
}

.sponsors {
  min-height: 0;
  display: grid;
  align-content: start;
  padding-top: 24px;
  background:
    radial-gradient(ellipse at 18% 20%, rgba(255, 85, 0, .12), transparent 40%),
    radial-gradient(ellipse at 82% 78%, rgba(255, 40, 0, .08), transparent 42%),
    linear-gradient(115deg, #0a0a0a, #1b0903 58%, #070707);
}

.sponsors .section-label {
  margin-bottom: 20px;
}

.sponsors-layout {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  align-content: start;
  gap: 2.2vw;
  min-height: 0;
  text-align: center;
}

.sponsors h2 {
  font-size: clamp(80px, 11vw, 180px);
  text-align: center;
}

.sponsors h2 em {
  display: block;
  margin-top: .58em;
  line-height: .9;
  font-family: var(--display);
  font-style: normal;
  font-weight: 400;
  letter-spacing: .04em;
}

.sponsors-copy {
  margin-top: 8px;
  padding-bottom: 12px;
  text-align: center;
}

.sponsors-copy p {
  margin-bottom: 14px;
  font-size: clamp(19px, 2vw, 30px);
  font-weight: 700;
  line-height: 1.05;
}

.sponsors-copy a {
  color: var(--orange);
  font: italic 900 clamp(26px, 3vw, 48px) var(--condensed);
  letter-spacing: .05em;
  border-bottom: 2px solid currentColor;
}

.sponsor-slash {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), #fff);
  box-shadow: 0 0 10px rgba(255, 85, 0, .75);
  transform: skewX(-25deg);
  animation: sponsorStrike 3.5s ease-out infinite;
  opacity: 0;
}

.sponsor-slash { top: 16%; left: 6%; width: 180px; }
.sponsor-slash.slash-two { top: 28%; right: 8%; left: auto; width: 240px; animation-delay: .9s; }
.sponsor-slash.slash-three { bottom: 18%; left: 22%; width: 200px; animation-delay: 1.8s; }

.sponsor-star {
  position: absolute;
  width: 14px;
  height: 14px;
  background: var(--orange);
  clip-path: polygon(50% 0, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  opacity: .55;
  filter: drop-shadow(0 0 8px rgba(255, 85, 0, .5));
  animation: charityHeartFloat 4.5s ease-in-out infinite;
}

.sponsor-star { top: 36%; left: 18%; }
.sponsor-star.star-two {
  top: 48%;
  right: 16%;
  width: 10px;
  height: 10px;
  opacity: .35;
  animation-delay: 1.2s;
}
.sponsor-star.star-three {
  top: 18%;
  left: 42%;
  width: 8px;
  height: 8px;
  opacity: .4;
  animation-delay: .4s;
}
.sponsor-star.star-four {
  top: 28%;
  right: 28%;
  width: 11px;
  height: 11px;
  opacity: .45;
  animation-delay: 1.8s;
}
.sponsor-star.star-five {
  bottom: 24%;
  left: 12%;
  width: 9px;
  height: 9px;
  opacity: .38;
  animation-delay: .9s;
}
.sponsor-star.star-six {
  bottom: 18%;
  right: 22%;
  width: 7px;
  height: 7px;
  opacity: .3;
  animation-delay: 2.2s;
}
.sponsor-star.star-seven {
  top: 58%;
  left: 32%;
  width: 6px;
  height: 6px;
  opacity: .28;
  animation-delay: 1.5s;
}
.sponsor-star.star-eight {
  top: 14%;
  right: 12%;
  width: 12px;
  height: 12px;
  opacity: .5;
  animation-delay: .6s;
}

.sponsor-orbit {
  position: absolute;
  right: -12vw;
  bottom: -10%;
  width: 34vw;
  height: 34vw;
  border: 1px dashed rgba(255, 85, 0, .2);
  border-radius: 50%;
  animation: charityOrbit 26s linear infinite;
  pointer-events: none;
}

@keyframes campRingRotate { to { transform: rotate(360deg); } }
@keyframes campLineRush {
  0% { opacity: 0; transform: translateX(-80px) skewX(-24deg); }
  15% { opacity: .9; }
  100% { opacity: 0; transform: translateX(130px) skewX(-24deg); }
}
@keyframes charityOrbit { to { transform: rotate(360deg); } }
@keyframes sponsorStrike {
  0% { opacity: 0; transform: translateX(-70px) skewX(-25deg); }
  18% { opacity: 1; }
  100% { opacity: 0; transform: translateX(150px) skewX(-25deg); }
}

.manifesto h2,
.who h2,
.mission h2,
.camp h2,
.coaches h2,
.charity h2,
.sponsors h2,
.drop h2,
.join h2 {
  font-size: clamp(80px, 11vw, 180px);
  font-weight: 900;
  line-height: 0.73;
  letter-spacing: 0.075em;
  transform: skewX(-6deg);
}

h2 em {
  color: var(--orange);
  font-weight: 900;
  font-style: italic;
}

.eyebrow {
  font: 700 11px/1.4 var(--mono);
  letter-spacing: 0.08em;
  margin-bottom: 25px;
}

.manifesto-side,
.mission-side {
  padding-top: 70px;
}

.manifesto-side > p:first-child,
.mission-side > p:first-child {
  font-size: clamp(24px, 2.35vw, 38px);
  font-weight: 600;
  line-height: 1.08;
}

.rule {
  height: 1px;
  background: var(--ink);
  margin: 40px 0 22px;
}

.mono {
  font: 500 10px/1.55 var(--mono);
  letter-spacing: 0.05em;
}

.spike-figure,
.jump-figure {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}

.spike-figure {
  min-height: 720px;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.spike-figure::before {
  content: "";
  position: absolute;
  inset: 12% 10%;
  z-index: -2;
  background:
    radial-gradient(circle, rgba(255, 85, 0, .22), transparent 58%),
    repeating-linear-gradient(90deg, rgba(255,255,255,.08) 0 1px, transparent 1px 38px),
    repeating-linear-gradient(0deg, rgba(255,255,255,.08) 0 1px, transparent 1px 38px);
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
  transform: skewX(-5deg);
}

.spike-figure::after {
  content: "";
  position: absolute;
  right: 0;
  top: 13%;
  bottom: 8%;
  width: 25%;
  z-index: -1;
  opacity: .45;
  background:
    repeating-linear-gradient(0deg, transparent 0 29px, rgba(255,255,255,.55) 29px 31px),
    repeating-linear-gradient(90deg, transparent 0 29px, rgba(255,255,255,.55) 29px 31px);
  border-left: 5px solid var(--orange);
}

.spike-speed-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.spike-speed-lines i {
  position: absolute;
  left: 6%;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--orange), #fff);
  box-shadow: 0 0 12px rgba(255, 85, 0, .6);
  transform: skewX(-25deg);
  animation: spikeLineRush 2.6s ease-out infinite;
}

.spike-speed-lines i:nth-child(1) { top: 22%; width: 180px; }
.spike-speed-lines i:nth-child(2) { top: 49%; width: 250px; animation-delay: .8s; }
.spike-speed-lines i:nth-child(3) { top: 76%; width: 140px; animation-delay: 1.6s; }

@keyframes spikeLineRush {
  0% { opacity: 0; transform: translateX(-50px) skewX(-25deg); }
  18% { opacity: 1; }
  100% { opacity: 0; transform: translateX(100px) skewX(-25deg); }
}

.spike-figure svg,
.jump-figure svg {
  position: relative;
  z-index: 2;
  width: 100%;
  overflow: visible;
}

.court-line {
  stroke: rgba(255, 255, 255, 0.12);
  stroke-width: 3;
}

.court-net {
  fill: none;
  stroke: rgba(246, 240, 232, 0.5);
  stroke-width: 3;
}

.court-net rect {
  fill: var(--orange);
  stroke: var(--ink);
}

.motion-trail {
  fill: none;
  stroke: var(--orange);
  stroke-linecap: round;
  stroke-dasharray: 18 20;
  animation: trailRush 1.25s linear infinite;
}

.trail-one {
  stroke-width: 14;
  opacity: 0.75;
}

.trail-two {
  stroke-width: 5;
  opacity: 0.45;
  animation-delay: -0.4s;
}

.spiker {
  animation: spikerHang 2.2s cubic-bezier(0.45, 0, 0.3, 1) infinite;
}

.spiker .limb,
.athlete .skin {
  fill: none;
  stroke: var(--ink);
  stroke-width: 26;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.spiker .forearm,
.athlete .forearm {
  stroke-width: 22;
}

.torso {
  fill: url("#vbJersey");
  stroke: var(--ink);
  stroke-width: 6;
  stroke-linejoin: round;
}

.jersey-stripe {
  fill: none;
  stroke: rgba(8, 8, 8, 0.7);
  stroke-width: 6;
}

.jersey-number {
  fill: var(--ink);
  stroke: var(--paper);
  stroke-width: 2;
  paint-order: stroke;
  font: 900 58px var(--condensed);
  font-style: italic;
  letter-spacing: -4px;
}

.shorts {
  fill: #141414;
  stroke: var(--ink);
  stroke-width: 6;
  stroke-linejoin: round;
}

.knee-pad {
  fill: #111;
  stroke: var(--orange);
  stroke-width: 4;
}

.shoe {
  fill: var(--orange);
  stroke: var(--ink);
  stroke-width: 6;
  stroke-linejoin: round;
}

.hand {
  fill: var(--ink);
}

.neck {
  fill: var(--ink);
  stroke: var(--ink);
  stroke-width: 4;
}

.player-head {
  fill: var(--ink);
  stroke: var(--paper);
  stroke-width: 5;
}

.hair {
  fill: var(--paper);
  stroke: var(--ink);
  stroke-width: 4;
}

.guide-arm {
  transform-box: fill-box;
  transform-origin: 80% 80%;
  animation: guideReach 2.2s cubic-bezier(0.45, 0, 0.3, 1) infinite;
}

.spike-arm {
  transform-box: fill-box;
  transform-origin: 20% 85%;
  animation: spikeWindup 2.2s cubic-bezier(0.45, 0, 0.3, 1) infinite;
}

.legs-air {
  transform-box: fill-box;
  transform-origin: 50% 20%;
  animation: legsTuck 2.2s cubic-bezier(0.45, 0, 0.3, 1) infinite;
}

.vb-ball {
  transform-origin: 138px 108px;
  animation: vbBallFloat 2.2s cubic-bezier(0.45, 0, 0.3, 1) infinite;
}

.ball-shell {
  fill: url("#logoBall");
  stroke: #111;
  stroke-width: 5.5;
}

.ball-panel {
  fill: rgba(185, 185, 180, .56);
}

.ball-seam {
  fill: none;
  stroke: #080808;
  stroke-width: 6;
  stroke-linecap: round;
}

@keyframes spikerHang {
  0%, 100% { transform: translate(0, 8px) rotate(-1deg); }
  50% { transform: translate(0, -14px) rotate(0.5deg); }
}

@keyframes guideReach {
  0%, 100% { transform: rotate(2deg); }
  50% { transform: rotate(-3deg); }
}

@keyframes spikeWindup {
  0%, 35%, 100% { transform: rotate(-12deg); }
  55% { transform: rotate(8deg); }
}

@keyframes legsTuck {
  0%, 100% { transform: rotate(-2deg); }
  50% { transform: rotate(3deg); }
}

@keyframes vbBallFloat {
  0%, 100% { transform: translate(0, 6px); }
  50% { transform: translate(0, -10px); }
}

@keyframes trailRush {
  to { stroke-dashoffset: -76; }
}

.figure-caption {
  position: absolute;
  right: -4%;
  top: 50%;
  background: var(--orange);
  color: white;
  font: 500 9px var(--mono);
  padding: 8px 10px;
}

.numbers {
  background: #030303;
  color: var(--ink);
}

.numbers .section-label span {
  color: var(--paper);
  background: var(--orange);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(255,255,255,.18);
}

.stat-card {
  min-height: 350px;
  padding: 35px;
  border-right: 1px solid rgba(255,255,255,.18);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stat-card:last-child {
  border-right: none;
}

.stat-card.acid {
  background: var(--orange);
  color: var(--paper);
  transform: rotate(2deg) scale(1.03);
  border: 1px solid var(--ink);
  box-shadow: 14px 14px 0 var(--acid);
  position: relative;
  z-index: 2;
}

.stat-num {
  font-size: clamp(110px, 13vw, 210px);
  font-weight: 900;
  letter-spacing: 0.03em;
  line-height: 0.8;
  transform: skewX(-6deg);
}

.stat-card p {
  font: 500 11px/1.4 var(--mono);
}

.numbers-statement {
  margin-top: 120px;
  font-size: clamp(52px, 8vw, 130px);
  font-weight: 900;
  line-height: 0.85;
  letter-spacing: 0.03em;
  transform: skewX(-6deg);
}

.numbers-statement span {
  color: var(--acid);
  font-style: italic;
}

.drop {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 850px;
  padding-right: 0;
  position: relative;
  overflow: hidden;
}

.drop-neon {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.drop-neon span {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), #fff);
  box-shadow: 0 0 10px rgba(255, 85, 0, 0.8), 0 0 24px rgba(255, 85, 0, 0.35);
  transform: skewX(-26deg);
  opacity: 0;
  animation: neonStrike 3.6s ease-out infinite;
}

.drop-neon span:nth-child(1) { top: 18%; left: 10%; width: 220px; animation-delay: .2s; }
.drop-neon span:nth-child(2) { top: 42%; right: 8%; width: 180px; animation-delay: 1.1s; }
.drop-neon span:nth-child(3) { top: 68%; left: 18%; width: 260px; animation-delay: 1.8s; }
.drop-neon span:nth-child(4) { top: 82%; right: 20%; width: 140px; animation-delay: 2.4s; }

.drop-copy {
  position: relative;
  z-index: 2;
}

.drop-index {
  font: 500 10px var(--mono);
  color: var(--blue);
  margin-bottom: 25px;
}

.drop h2 {
  font-size: clamp(92px, 10vw, 165px);
  letter-spacing: 0.04em;
}

.drop-copy > p:not(.drop-index) {
  max-width: 360px;
  margin-top: 45px;
  font-size: 23px;
  line-height: 1.05;
}

.slash-link {
  display: inline-block;
  margin-top: 35px;
}

.gear-vault {
  position: relative;
  min-height: 650px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.gear-neon-ring {
  position: absolute;
  width: 78%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 85, 0, 0.35);
  border-radius: 50%;
  box-shadow:
    0 0 18px rgba(255, 85, 0, 0.35),
    inset 0 0 30px rgba(255, 85, 0, 0.08);
  animation: gearRingSpin 18s linear infinite;
}

.gear-neon-ring::before,
.gear-neon-ring::after {
  content: "";
  position: absolute;
  inset: 14%;
  border: 1px dashed rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.gear-neon-ring::after {
  inset: 28%;
  border-style: solid;
  border-color: rgba(255, 85, 0, 0.22);
}

.gear-core {
  position: relative;
  z-index: 2;
  width: min(28vw, 220px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  animation: gearCoreFloat 3.5s ease-in-out infinite;
}

.gear-ball-svg {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  overflow: visible;
  filter: drop-shadow(0 0 18px rgba(255, 85, 0, 0.45));
}

.gear-card {
  position: absolute;
  z-index: 3;
  min-width: 148px;
  padding: 16px 18px;
  background: rgba(8, 8, 8, 0.92);
  border: 1px solid rgba(255, 85, 0, 0.55);
  box-shadow:
    0 0 14px rgba(255, 85, 0, 0.35),
    6px 6px 0 rgba(255, 85, 0, 0.18);
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  transition: transform 0.35s cubic-bezier(.2,.8,.2,1), box-shadow 0.35s;
}

.gear-vault:hover .gear-card {
  box-shadow:
    0 0 22px rgba(255, 85, 0, 0.55),
    8px 8px 0 rgba(255, 85, 0, 0.28);
}

.gear-tag {
  display: inline-block;
  margin-bottom: 8px;
  font: 500 9px var(--mono);
  color: var(--orange);
  letter-spacing: 0.12em;
}

.gear-card strong {
  display: block;
  font: 900 34px/1 var(--condensed);
  font-style: italic;
  letter-spacing: -0.04em;
  transform: skewX(-6deg);
}

.gear-card p {
  margin-top: 8px;
  font: 500 8px/1.4 var(--mono);
  color: rgba(255, 255, 255, 0.62);
  letter-spacing: 0.08em;
}

.card-one {
  top: 14%;
  left: 8%;
  transform: rotate(-4deg);
}

.card-two {
  top: 18%;
  right: 6%;
  transform: rotate(3deg);
}

.card-three {
  bottom: 16%;
  left: 10%;
  transform: rotate(2deg);
}

.card-four {
  bottom: 12%;
  right: 8%;
  transform: rotate(-3deg);
}

.gear-vault:hover .card-one { transform: rotate(-2deg) translateY(-6px); }
.gear-vault:hover .card-two { transform: rotate(1deg) translateY(-8px); }
.gear-vault:hover .card-three { transform: rotate(0deg) translateY(-6px); }
.gear-vault:hover .card-four { transform: rotate(-1deg) translateY(-8px); }

@keyframes gearRingSpin {
  to { transform: rotate(360deg); }
}

@keyframes gearCoreFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(8deg); }
}

.join {
  background: var(--orange);
  color: var(--paper);
  text-align: center;
  overflow: hidden;
}

.join h2 {
  font-size: clamp(85px, 13vw, 210px);
  letter-spacing: 0.04em;
}

.join h2 em {
  color: var(--ink);
}

.signup {
  max-width: 820px;
  margin: 70px auto 0;
  display: flex;
  border-bottom: 3px solid var(--paper);
}

.signup input {
  flex: 1;
  border: 0;
  background: transparent;
  color: var(--paper);
  padding: 20px 0;
  outline: none;
  font: 600 25px var(--mono);
  min-width: 0;
}

.signup input::placeholder {
  color: rgba(8,8,8,.55);
}

.signup button {
  border: 0;
  background: var(--paper);
  color: var(--ink);
  padding: 0 30px;
  cursor: pointer;
  font: 500 11px var(--mono);
}

.signup button span {
  color: var(--acid);
  margin-left: 20px;
}

.form-status {
  height: 24px;
  margin-top: 18px;
}

footer {
  min-height: 260px;
  background: #030303;
  color: var(--ink);
  padding: 60px 5vw 35px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: start;
  position: relative;
}

.footer-links a {
  transition: color 0.25s;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-links a:active,
.footer-links a:visited {
  color: var(--orange);
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 9px;
  font: 700 11px var(--mono);
  grid-column: 3;
}

.footer-contact {
  margin: 0 0 10px;
  color: var(--orange);
  font: italic 900 clamp(28px, 3vw, 42px)/1 var(--condensed);
  font-style: italic;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.copyright {
  position: absolute;
  left: 5vw;
  bottom: 30px;
  color: rgba(255,255,255,.45);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.2,.75,.2,1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 800px) {
  .slide-nav.on-home {
    left: auto;
    right: 3vw;
    top: 20px;
    gap: 7px;
  }

  .slide-nav:not(.on-home) {
    left: 8px;
    gap: 7px;
  }

  .slide-nav-toggle,
  .slide-nav-link {
    width: 42px;
    height: 42px;
  }

  .slide-nav:not(.on-home).open .slide-nav-items {
    max-height: 360px;
  }

  .slide-nav-items {
    gap: 5px;
  }

  .slide-nav:not(.on-home).open .slide-nav-link {
    width: 32px;
    height: 32px;
  }

  .slide-nav-link svg {
    width: 17px;
    min-width: 17px;
    height: 17px;
    margin: 0 7px;
  }

  .slide-nav-link span {
    display: none;
  }

  .site-header {
    padding: 0 20px;
    height: 82px;
  }

  .brand-logo {
    height: 48px;
  }

  .site-header nav {
    display: none;
  }

  .header-cta {
    padding: 12px;
    font-size: 10px;
  }

  .hero {
    min-height: 820px;
    padding: 125px 20px 45px;
  }

  .hero-crest,
  .hero-crest.reveal.visible {
    right: 2vw;
    left: auto;
    top: 50%;
    transform: translateY(-50%);
    width: min(52vw, 340px);
    opacity: 0.38;
  }

  .hero-kicker {
    width: 80%;
    margin-left: 7%;
  }

  h1 {
    font-size: clamp(88px, 28vw, 170px);
    line-height: .88;
    margin-top: 40px;
    padding-bottom: 0.1em;
  }

  .title-light {
    font-size: .55em;
  }

  .hero-bottom {
    margin: 32px 6% 0;
    align-items: center;
  }

  .hero-bottom p {
    max-width: 260px;
    font-size: clamp(18px, 5vw, 24px);
  }

  .vertical-note,
  .score-tag {
    display: none;
  }

  .brand-logo-footer {
    height: 72px;
  }

  .section-pad {
    padding: 85px 24px;
  }

  .manifesto,
  .who,
  .mission,
  .camp,
  .coaches,
  .charity,
  .sponsors {
    min-height: auto;
  }

  .who-layout,
  .mission-layout,
  .camp-layout,
  .charity-layout,
  .sponsors-layout,
  .coaches-layout,
  .manifesto-layout {
    grid-template-columns: 1fr;
  }

  .who-layout {
    grid-template-columns: 1fr;
  }

  .who-copy {
    padding-top: 0;
  }

  .who-float-ball.ball-a { width: 28px; }
  .who-float-ball.ball-b { display: none; }

  .section-mark {
    width: min(58vw, 240px);
    height: 220px;
    top: 4%;
    right: 2%;
  }

  .section-mark-num {
    -webkit-text-stroke-width: 1.8px;
  }

  .section-mark-meta b { font-size: 16px; }
  .section-mark-chevrons i:nth-child(n+3),
  .section-mark-dots,
  .section-mark-arc {
    display: none;
  }

  .who-serve-path {
    width: 55%;
    height: 18%;
    opacity: .28;
  }

  .who-corner {
    width: 36px;
    height: 36px;
  }

  .manifesto h2,
  .who h2,
  .mission h2,
  .camp h2,
  .coaches h2,
  .charity h2,
  .sponsors h2,
  .drop h2,
  .join h2 {
    font-size: clamp(67px, 21vw, 110px);
  }

  .who-copy h2 {
    font-size: clamp(42px, 12vw, 72px);
    white-space: nowrap;
  }

  .charity h2 em {
    white-space: normal;
  }

  .mission-copy h2,
  .who-copy h2 {
    position: static;
  }

  .who-body,
  .mission-body {
    margin-top: 28px;
    max-width: none;
    padding-bottom: 0;
  }

  .mission-card {
    max-width: none;
    justify-self: stretch;
    margin-top: 28px;
    padding: 28px 24px;
  }

  .mission-card strong {
    font-size: clamp(36px, 10vw, 56px);
  }

  .who-card {
    max-width: none;
    justify-self: stretch;
    margin-top: 28px;
    padding: 28px 24px;
  }

  .who-card strong {
    font-size: clamp(48px, 14vw, 72px);
  }

  .who-visual {
    justify-items: stretch;
    margin-top: 28px;
  }

  .who-aside {
    width: 100%;
  }

  .spike-figure,
  .jump-figure {
    margin-top: 40px;
  }

  .who .spike-figure {
    position: relative;
    bottom: auto;
    right: auto;
    width: min(92vw, 520px);
    margin: 0 auto;
    opacity: .9;
    transform: none;
    transform-origin: center center;
    justify-self: center;
  }

  .who .spike-figure::before,
  .who .spike-figure::after,
  .who .spike-speed-lines,
  .who .figure-caption {
    display: block;
  }

  .spike-figure {
    min-height: 540px;
  }

  .mission-ball {
    width: 72px;
    margin-top: 48px;
    margin-left: min(42vw, 180px);
    opacity: .9;
  }

  .mission-ball-trail {
    width: min(120vw, 720px);
    height: 64px;
  }

  .mission-trail-fire {
    width: 64px;
    height: 66px;
  }

  .mission-trail-streak.s4,
  .mission-trail-sparks i:nth-child(n+5) {
    display: none;
  }

  .mission-net {
    width: 42vw;
    height: 28vh;
    opacity: .2;
  }

  .mission-serve-path {
    width: 90%;
    height: 30%;
  }

  .mission-arc {
    width: 90vw;
    height: 90vw;
    right: -30%;
  }

  .mission-bottom-rail,
  .mission-bottom-chevrons,
  .mission-bottom-slash.slash-c {
    display: none;
  }

  .mission-bottom-path {
    height: 100px;
    opacity: .7;
  }

  .mission-base {
    bottom: 5%;
  }

  .camp-card {
    justify-self: start;
    margin-top: 50px;
  }

  .charity-card {
    max-width: none;
    justify-self: stretch;
    margin-top: 12px;
    padding: 28px 24px;
  }

  .charity-card strong {
    font-size: clamp(48px, 14vw, 72px);
  }

  .impact-panel {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .impact-detail {
    min-height: 0;
    padding: 26px 24px;
  }

  .impact-item {
    padding: 18px 20px;
  }

  .camp-decor .camp-ring {
    width: 100vw;
  }

  .camp-court {
    inset: 8% 4% 12% 4%;
  }

  .camp-float-ball.ball-b { width: 32px; }

  .camp-serve-path {
    width: 70%;
    height: 28%;
    opacity: .4;
  }

  .camp-maple {
    width: min(120%, 360px);
    opacity: .18;
  }

  .charity-copy {
    margin-bottom: 44px;
  }

  .charity-court {
    inset: 8% 4% 10% 4%;
  }

  .charity-float-ball.ball-a { width: 40px; }

  .charity-give-mark {
    top: 12%;
    left: 5%;
    right: auto;
  }

  .charity-plus.plus-b,
  .charity-ribbon {
    display: none;
  }

  .charity-serve-path {
    left: 0;
    width: 58%;
    height: 26%;
    opacity: .35;
  }

  .sponsors {
    min-height: 560px;
  }

  .sponsors-copy {
    padding-bottom: 0;
  }

  .sponsor-star.star-two,
  .sponsor-star.star-four,
  .sponsor-star.star-seven {
    display: none;
  }

  .coaches-spiker {
    width: min(78vw, 420px);
    opacity: .12;
    left: -10%;
    right: auto;
    bottom: 0;
  }

  .coaches-layout {
    grid-template-columns: 1fr;
  }

  .coaches-side,
  .coaches-rail-left,
  .coaches-rail-right,
  .coaches-corner,
  .coaches-ring,
  .coaches-chevron-col {
    display: none;
  }

  .stat-grid {
    grid-template-columns: 1fr;
  }

  .stat-card {
    min-height: 250px;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.18);
  }

  .stat-card.acid {
    transform: rotate(1deg) scale(1.02);
  }

  .numbers-statement {
    margin-top: 85px;
  }

  .drop {
    grid-template-columns: 1fr;
    padding-right: 0;
  }

  .drop-copy {
    padding-right: 24px;
  }

  .gear-vault {
    min-height: 520px;
    margin-top: 50px;
  }

  .gear-neon-ring {
    width: 92%;
  }

  .gear-core {
    width: 140px;
  }

  .gear-card {
    min-width: 120px;
    padding: 12px 14px;
  }

  .gear-card strong {
    font-size: 26px;
  }

  .card-one { top: 8%; left: 4%; }
  .card-two { top: 10%; right: 2%; }
  .card-three { bottom: 10%; left: 4%; }
  .card-four { bottom: 8%; right: 2%; }

  .signup input {
    font-size: 15px;
  }

  .signup button {
    padding: 0 18px;
  }

  .signup button span {
    display: none;
  }

  footer {
    grid-template-columns: 1fr;
    gap: 35px;
    padding-bottom: 70px;
  }

  .footer-links {
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
