:root {
  --black: #030303;
  --black-soft: #090909;
  --ink: #111;
  --bone: #e8e3d7;
  --bone-strong: #f2eee4;
  --muted: #bcb6aa;
  --blue: #0038ff;
  --blue-hot: #064bff;
  --line: rgba(232, 227, 215, 0.2);
  --panel: rgba(8, 8, 8, 0.82);
  --wrap: min(1120px, calc(100vw - 96px));
  --gutter: clamp(22px, 4vw, 56px);
  --font-display: Impact, "Arial Narrow", "PT Sans Narrow", sans-serif;
  --font-body: Inter, Arial, Helvetica, sans-serif;
  --hero-h: 176vh;
  --section-h: 158vh;
  --audience-h: 158vh;
  --join-h: 132vh;
  --motion-scale: 1;
  --ease: cubic-bezier(.2,.75,.17,1);
  --texture-ink: url("textures/ink-cloud.webp");
  --texture-blue-splatter: url("textures/blue-splatter-heavy.webp");
  --texture-scratch: url("textures/scratch-overlay.webp");
  --texture-dust: url("textures/dust-overlay.webp");
}

@supports (background-image: image-set(url("textures/blue-splatter-heavy.avif") type("image/avif"))) {
  :root {
    --texture-ink: image-set(url("textures/ink-cloud.avif") type("image/avif"), url("textures/ink-cloud.webp") type("image/webp"));
    --texture-blue-splatter: image-set(url("textures/blue-splatter-heavy.avif") type("image/avif"), url("textures/blue-splatter-heavy.webp") type("image/webp"));
    --texture-scratch: image-set(url("textures/scratch-overlay.avif") type("image/avif"), url("textures/scratch-overlay.webp") type("image/webp"));
    --texture-dust: image-set(url("textures/dust-overlay.avif") type("image/avif"), url("textures/dust-overlay.webp") type("image/webp"));
  }
}

* { box-sizing: border-box; }
html { background: var(--black); }
body {
  margin: 0;
  min-width: 320px;
  color: var(--bone);
  background: transparent;
  font-family: var(--font-body);
  overflow-x: hidden;
  text-rendering: geometricPrecision;
}
img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }

.site-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background: #030303;
}
.site-bg::before {
  content: "";
  position: absolute;
  inset: -8%;
  background:
    var(--texture-ink) 8% 5% / min(900px, 82vw) auto no-repeat,
    var(--texture-ink) 102% 42% / min(820px, 76vw) auto no-repeat,
    var(--texture-ink) 20% 92% / min(760px, 72vw) auto no-repeat;
  opacity: .58;
  mix-blend-mode: screen;
}
.bg-layer { position: absolute; inset: -8%; pointer-events: none; }
.bg-ink {
  background:
    var(--texture-ink) -10% 18% / 760px auto no-repeat,
    var(--texture-ink) 112% 60% / 820px auto no-repeat;
  opacity: .42;
  mix-blend-mode: screen;
}
.bg-scratch {
  background: var(--texture-scratch) 50% 0 / 1300px auto repeat-y;
  opacity: .36;
  mix-blend-mode: screen;
}
.bg-dust {
  background: var(--texture-dust) 50% 0 / 1180px auto repeat-y;
  opacity: .10;
  mix-blend-mode: screen;
}

.page-shell { position: relative; z-index: 1; }
.layout-wrap { width: var(--wrap); margin: 0 auto; }
.section { position: relative; min-height: var(--section-h); overflow: hidden; }
.section::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(1120px, 92vw);
  height: 2px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(232,227,215,.3), rgba(0,56,255,.75), rgba(232,227,215,.24), transparent);
  opacity: .42;
  box-shadow: 0 0 0 1px rgba(255,255,255,.04), 0 -10px 34px rgba(255,255,255,.05);
}

.hero-section { min-height: var(--hero-h); padding-top: clamp(28px, 3vw, 46px); }
.join-section { min-height: var(--join-h); }
.audience-section { min-height: var(--audience-h); }

.section-skyline {
  position: absolute;
  pointer-events: none;
  opacity: .42;
  z-index: 0;
  mix-blend-mode: screen;
}
.section-skyline img { width: 100%; height: auto; }
.hero-skyline { left: 50%; bottom: 10vh; width: min(1340px, 120vw); transform: translateX(-50%); }
.footer-skyline { left: 50%; bottom: 0; width: min(1280px, 120vw); transform: translateX(-50%); opacity: .40; }

.paint-zone {
  position: absolute;
  pointer-events: none;
  background: var(--texture-blue-splatter) center / contain no-repeat;
  opacity: .68;
  filter: saturate(1.15) contrast(1.08);
  mix-blend-mode: screen;
  -webkit-mask-image: radial-gradient(closest-side, #000 58%, rgba(0,0,0,.82) 75%, transparent 100%);
  mask-image: radial-gradient(closest-side, #000 58%, rgba(0,0,0,.82) 75%, transparent 100%);
  z-index: 0;
}
.paint-zone-hero { width: 680px; height: 840px; right: -120px; top: 18vh; transform: rotate(-13deg); }
.paint-zone-mission { width: 740px; height: 760px; right: 3vw; top: 24vh; transform: rotate(12deg); opacity: .55; }
.paint-zone-audience { width: 840px; height: 760px; left: 50%; top: 36vh; transform: translateX(-50%) rotate(-8deg); opacity: .42; }
.paint-zone-join { width: 640px; height: 620px; right: 2vw; top: 26vh; transform: rotate(8deg); opacity: .5; }

.hero-logo {
  width: 210px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}
.hero-logo img {
  transform: translateX(11.67%);
}
.is-loaded .hero-logo { opacity: 1; transform: none; }
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 49% 51%;
  align-items: start;
  min-height: 860px;
  padding-top: clamp(54px, 7vh, 94px);
  z-index: 2;
}
.hero-copy { position: relative; z-index: 5; padding-top: 12px; }
.display-title {
  position: relative;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(118px, 11.1vw, 168px);
  line-height: .78;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  color: var(--bone-strong);
  text-shadow: 0 1px 0 rgba(255,255,255,.08), 0 11px 24px rgba(0,0,0,.8);
  filter: contrast(1.08);
}
.display-title span { display: block; }
.section-title {
  position: relative;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(48px, 4.9vw, 72px);
  line-height: .86;
  letter-spacing: 0;
  word-spacing: .08em;
  text-transform: uppercase;
  color: var(--bone-strong);
  text-shadow: 0 1px 0 rgba(255,255,255,.08), 0 10px 18px rgba(0,0,0,.76);
}
.display-title::after, .section-title::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--texture-scratch) center / 700px auto;
  opacity: .34;
  mix-blend-mode: multiply;
  pointer-events: none;
}
.blue-underline {
  display: block;
  width: clamp(168px, 23vw, 310px);
  height: clamp(10px, 1vw, 16px);
  margin: clamp(8px, 1vw, 12px) 0 clamp(22px, 2vw, 32px);
  transform-origin: left center;
  transform: scaleX(0);
  opacity: 0;
  transition: transform .85s var(--ease), opacity .35s ease;
  background:
    var(--texture-blue-splatter) 50% 46% / 380px auto no-repeat,
    linear-gradient(90deg, transparent 0, var(--blue) 9%, var(--blue-hot) 88%, transparent 100%);
  clip-path: polygon(1% 40%, 91% 8%, 100% 43%, 96% 63%, 7% 92%, 0 70%);
  box-shadow: 0 0 20px rgba(0,56,255,.28);
}
.hero-underline { width: clamp(260px, 34vw, 430px); height: 18px; margin-top: 4px; }
.is-visible.blue-underline, .is-loaded .hero-underline { transform: scaleX(1); opacity: 1; }
.hero-lede,
.section-lede,
.panel-lede {
  margin: 0 0 20px;
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -.02em;
  color: var(--bone-strong);
}
.hero-lede { font-size: clamp(24px, 2.2vw, 31px); }
.section-lede, .panel-lede { font-size: clamp(22px, 2.1vw, 30px); }
.body-copy {
  margin: 0;
  color: rgba(232,227,215,.9);
  font-size: clamp(15px, 1.16vw, 17px);
  line-height: 1.42;
  font-weight: 640;
  letter-spacing: -.015em;
}
.hero-body { margin-top: 18px; }
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 26px;
  border: 1px solid rgba(232,227,215,.28);
  border-radius: 2px;
  color: var(--bone-strong);
  background: #030303;
  font-family: var(--font-display);
  font-size: 23px;
  line-height: 1;
  letter-spacing: .02em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.btn::before {
  content: "";
  position: absolute;
  inset: -20px;
  background: var(--texture-scratch) center / 560px auto;
  opacity: .32;
  pointer-events: none;
}
.btn-primary {
  border-color: rgba(0,56,255,.86);
  box-shadow: inset 0 0 0 1px rgba(0,56,255,.5), 0 0 0 1px rgba(0,56,255,.18), 0 0 24px rgba(0,56,255,.22);
}
.btn-secondary { border-color: #6a6a6a; }
.btn-quiet {
  min-height: 46px;
  padding-inline: 20px;
  font-size: clamp(15px, 1.35vw, 18px);
  line-height: 1.08;
  white-space: normal;
  opacity: .82;
}
.btn:hover { transform: translateY(-2px); border-color: var(--blue-hot); background: #07123c; box-shadow: 0 0 30px rgba(0,56,255,.24); }
.btn:active { transform: translateY(0); }
.btn:disabled { cursor: wait; opacity: .72; transform: none; }

.hero-card-stack { position: relative; min-height: 720px; z-index: 4; }
.card-asset { position: absolute; display: block; }
.card-asset img { width: 100%; height: auto; filter: drop-shadow(0 28px 42px rgba(0,0,0,.7)); }
.hero-card-main {
  width: min(44vw, 490px);
  left: 4%;
  top: 4px;
  transform: rotate(7deg);
  z-index: 3;
}
.mission-grid {
  position: relative;
  display: grid;
  grid-template-columns: 45% 55%;
  min-height: 850px;
  align-items: center;
  padding-top: 8vh;
  z-index: 2;
}
.section-copy { position: relative; z-index: 4; }
.mission-visuals { position: relative; min-height: 730px; }
.athlete-portrait {
  position: absolute;
  width: min(42vw, 520px);
  left: 2%;
  top: 42px;
  opacity: .9;
  filter: drop-shadow(0 28px 52px rgba(0,0,0,.7));
}
.mission-card {
  position: absolute;
  width: min(31vw, 360px);
  right: 5%;
  top: 168px;
  transform: rotate(9deg);
  filter: drop-shadow(0 24px 44px rgba(0,0,0,.82));
}

.audience-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(54px, 7vw, 92px);
  min-height: 820px;
  align-items: start;
  padding-top: 17vh;
  z-index: 2;
}
.audience-grid::before {
  content: "";
  position: absolute;
  top: 14vh;
  bottom: 12vh;
  left: 50%;
  width: 2px;
  background: linear-gradient(180deg, transparent, rgba(0,56,255,.75), rgba(232,227,215,.2), transparent);
  opacity: .75;
  box-shadow: 0 0 24px rgba(0,56,255,.32);
}
.audience-panel { position: relative; min-height: 670px; }
.audience-panel .body-copy { max-width: 410px; }
.text-link {
  display: inline-flex;
  width: auto;
  margin-top: 16px;
  padding: 0;
  border: 0;
  color: rgba(232,227,215,.72);
  background: transparent;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
  text-align: left;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 5px;
  transition: color .2s ease, opacity .2s ease;
}
.text-link:hover { color: var(--bone-strong); }
.athletes-visuals, .fans-visuals { position: absolute; pointer-events: none; }
.athletes-visuals { width: min(34vw, 380px); right: -42px; top: 230px; height: 500px; }
.athlete-back { position: absolute; width: 102%; right: 10%; top: 0; filter: drop-shadow(0 22px 42px rgba(0,0,0,.7)); }
.athlete-small-card { position: absolute; width: 46%; right: 0; top: 112px; transform: rotate(11deg); opacity: .88; filter: drop-shadow(0 18px 32px rgba(0,0,0,.72)); }
.fans-visuals { width: min(24vw, 286px); right: 0; top: 130px; }
.fan-card { width: 100%; transform: rotate(-9deg); filter: drop-shadow(0 24px 44px rgba(0,0,0,.76)); }

.join-grid {
  position: relative;
  display: grid;
  grid-template-columns: 44% 44%;
  justify-content: space-between;
  align-items: start;
  padding-top: 16vh;
  min-height: 640px;
  z-index: 2;
}
.join-application { margin-top: 34px; width: min(360px, 100%); }
.signup-panel {
  position: relative;
  width: min(420px, 100%);
  padding: 31px 31px 34px;
  border: 1px solid #5a5a5a;
  background: #050505;
  box-shadow: 0 30px 70px rgba(0,0,0,.65);
  backdrop-filter: none;
}
.signup-panel::before,
.signup-panel::after {
  content: none !important;
  display: none !important;
}
.signup-panel h3 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 38px;
  line-height: .9;
  letter-spacing: -.01em;
  color: var(--bone-strong);
}
.signup-panel h3::after {
  content: "";
  display: block;
  width: 148px;
  height: 8px;
  margin-top: 8px;
  background: var(--blue);
  clip-path: polygon(0 44%,100% 18%,95% 75%,4% 90%);
}
.signup-panel p {
  margin: 0 0 22px;
  color: rgba(232,227,215,.78);
  font-size: 14px;
  line-height: 1.35;
  font-weight: 650;
}
.signup-form { display: grid; gap: 11px; }
.signup-form label { display: block; }
.signup-form input {
  width: 100%;
  height: 47px;
  color: var(--bone-strong);
  background: #030303;
  border: 1px solid #5a5a5a;
  border-radius: 0;
  padding: 0 15px;
  outline: 0;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.signup-form input::placeholder { color: #9a9a9a; }
.signup-form input:focus { border-color: var(--blue-hot); box-shadow: 0 0 0 3px rgba(0,56,255,.18); background: #030303; }
.form-error { min-height: 17px; margin: 0; color: #ffefe8; font-size: 12px; font-weight: 800; }
.btn-submit {
  width: 100%;
  margin-top: 2px;
  min-height: 48px;
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 0 28px rgba(0,56,255,.2);
  font-size: 21px;
}
.form-success {
  display: none;
  padding: 14px 0 0;
  color: var(--bone-strong);
  font-size: 13px;
  line-height: 1.35;
}
.form-success strong { display: block; font-family: var(--font-display); font-size: 25px; letter-spacing: .02em; }
.signup-form.is-success label,
.signup-form.is-success .btn-submit,
.signup-form.is-success .form-error { display: none; }
.signup-form.is-success .form-success { display: block; }
.panel-close { display: none; }

.site-footer {
  position: relative;
  padding: 26px 0;
  border-top: 1px solid rgba(232,227,215,.14);
  background: rgba(0,0,0,.72);
  z-index: 2;
}
.footer-grid {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 24px;
}
.footer-logo {
  width: 210px;
  justify-self: start;
}
.footer-grid p {
  margin: 0;
  justify-self: end;
  text-align: right;
  color: var(--bone);
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: .08em;
  line-height: 1.2;
}
.social-links { display: flex; justify-content: flex-end; gap: 22px; }
.social-links a { display: inline-flex; width: 26px; height: 26px; opacity: .9; transition: opacity .2s ease, transform .2s ease, color .2s ease; }
.social-links a:hover { opacity: 1; color: var(--blue-hot); transform: translateY(-2px); }
.social-links svg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible, .is-loaded .hero-section .reveal { opacity: 1; transform: none; }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .22s; }
.delay-3 { transition-delay: .33s; }
.headline-reveal { transform: translateY(42px); }
.image-fade { transform: translateY(20px) scale(.985); }
.card-settle { transform: translateY(34px) rotate(var(--r, 0deg)); }
.panel-rise { transform: translateY(30px); }
.is-visible.panel-rise { transform: none; }

.modal { position: fixed; inset: 0; z-index: 50; display: grid; place-items: center; padding: 24px; pointer-events: none; opacity: 0; transition: opacity .22s ease; }
.modal.is-open { opacity: 1; pointer-events: auto; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.68); backdrop-filter: blur(2px); }
.modal-panel {
  position: relative;
  transform: scale(.96) translateY(10px);
  opacity: 0;
  transition: transform .25s var(--ease), opacity .25s ease;
  margin-left: 0;
}
.modal.is-open .modal-panel { transform: scale(1) translateY(0); opacity: 1; }
.modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 32px;
  height: 32px;
  border: 0;
  background: transparent;
  color: var(--bone);
  font-size: 27px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}
.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: 1279px) {
  :root { --wrap: min(1000px, calc(100vw - 64px)); --hero-h: 164vh; --section-h: 148vh; --audience-h: 152vh; --join-h: 130vh; }
  .display-title { font-size: clamp(96px, 12vw, 132px); }
  .hero-grid { grid-template-columns: 48% 52%; min-height: 780px; }
  .hero-card-main { width: min(45vw, 430px); left: 0; }
  .mission-grid { min-height: 780px; }
  .athlete-portrait { width: min(45vw, 470px); }
  .mission-card { width: min(33vw, 330px); }
  .audience-grid { gap: 58px; }
  .fans-visuals { width: min(26vw, 260px); }
}

@media (max-width: 1023px) {
  :root { --wrap: min(890px, calc(100vw - 48px)); --hero-h: 150vh; --section-h: 140vh; --audience-h: 150vh; --join-h: 125vh; --motion-scale: .62; }
  .hero-section { padding-top: 30px; }
  .hero-logo { width: 180px; }
  .hero-grid { grid-template-columns: 48% 52%; min-height: 760px; padding-top: 64px; }
  .display-title { font-size: clamp(86px, 12.5vw, 112px); }
  .hero-card-main { width: min(46vw, 386px); left: -3%; top: 22px; }
  .section-title { font-size: clamp(44px, 6.5vw, 62px); }
  .mission-grid { grid-template-columns: 43% 57%; min-height: 760px; padding-top: 10vh; }
  .mission-visuals { min-height: 650px; }
  .athlete-portrait { width: min(47vw, 430px); top: 60px; left: -6%; }
  .mission-card { width: min(34vw, 290px); right: 0; top: 182px; }
  .audience-grid { padding-top: 15vh; gap: 42px; }
  .audience-panel { min-height: 680px; }
  .athletes-visuals { width: min(40vw, 330px); right: -44px; top: 270px; }
  .fans-visuals { width: min(31vw, 240px); top: 236px; right: 2px; }
  .join-grid { grid-template-columns: 43% 50%; }
  .footer-grid { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .footer-grid p { justify-self: center; text-align: center; }
  .social-links { justify-content: center; }
}

@media (max-width: 767px) {
  :root { --wrap: min(100vw - 34px, 560px); --hero-h: 138vh; --section-h: 128vh; --audience-h: auto; --join-h: 122vh; --motion-scale: .42; }
  .site-bg::before { opacity: .52; }
  .bg-scratch { opacity: .28; background-size: 820px auto; }
  .bg-dust { opacity: .06; }
  .section { min-height: var(--section-h); }
  .hero-section { min-height: var(--hero-h); padding-top: 24px; }
  .hero-logo { width: 160px; }
  .hero-grid { display: block; min-height: 0; padding-top: 52px; }
  .hero-copy { padding-top: 0; }
  .display-title { font-size: clamp(77px, 24.6vw, 112px); letter-spacing: -.045em; line-height: .8; }
  .hero-underline { width: min(310px, 83vw); height: 15px; margin-bottom: 20px; }
  .hero-lede { font-size: clamp(21px, 6.1vw, 27px); }
  .body-copy { font-size: 15px; line-height: 1.43; }
  .hero-actions { display: grid; gap: 12px; margin-top: 26px; }
  .btn { width: 100%; min-height: 54px; font-size: 22px; }
  .hero-card-stack { min-height: min(86vw, 520px); margin-top: 34px; }
  .hero-card-main { width: min(67vw, 330px); left: 2%; top: 4px; }
  .hero-skyline { bottom: 8vh; width: 160vw; opacity: .40; }
  .paint-zone-hero { width: 500px; height: 620px; right: -220px; top: 22vh; opacity: .44; }

  .mission-grid { display: block; min-height: 0; padding-top: 16vh; }
  .section-title { font-size: clamp(43px, 13vw, 60px); }
  .section-lede, .panel-lede { font-size: clamp(20px, 5.8vw, 27px); }
  .mission-visuals { min-height: 520px; margin-top: 36px; }
  .athlete-portrait { width: min(82vw, 430px); left: 50%; top: 0; transform: translateX(-50%); opacity: .86; }
  .mission-card { width: min(54vw, 260px); right: 2%; top: 145px; }

  .audience-section { min-height: auto; padding-top: 12vh; padding-bottom: 18vh; }
  .audience-grid { display: block; min-height: 0; padding-top: 0; }
  .audience-grid::before { display: none; }
  .audience-panel { min-height: 800px; padding-top: 0; margin-bottom: 14vh; }
  .audience-panel:last-child { margin-bottom: 0; }
  .audience-panel .body-copy { max-width: 100%; }
  .athletes-visuals { width: min(88vw, 390px); right: 50%; transform: translateX(50%); top: 300px; }
  .fans-visuals { width: min(58vw, 270px); right: 2%; top: 310px; }
  .fan-card { transform: rotate(-7deg); }
  .paint-zone-audience { width: 560px; height: 560px; left: 55%; top: 44vh; opacity: .38; }

  .join-section { min-height: var(--join-h); }
  .join-grid { display: block; min-height: 0; padding-top: 14vh; }
  .join-application { width: 100%; margin-top: 28px; }
  .signup-panel { width: 100%; margin-top: 40px; padding: 27px 22px 28px; }
  .signup-panel h3 { font-size: 34px; }
  .footer-skyline { width: 170vw; opacity: .38; }

  .site-footer { padding-bottom: calc(28px + env(safe-area-inset-bottom)); }
  .footer-logo { width: 188px; }
  .footer-grid p { font-size: 13px; }
  .social-links { gap: 18px; }

  .modal { align-items: end; padding: 0; }
  .modal-panel { width: 100%; max-width: none; margin-left: 0; border-inline: 0; border-bottom: 0; padding: 30px 22px calc(28px + env(safe-area-inset-bottom)); transform: translateY(100%); }
  .modal.is-open .modal-panel { transform: translateY(0); }
}

@media (max-width: 374px) {
  :root { --wrap: calc(100vw - 28px); --hero-h: 140vh; --section-h: 132vh; --join-h: 126vh; }
  .display-title { font-size: clamp(68px, 24vw, 86px); }
  .hero-card-stack { min-height: 470px; }
  .hero-card-main { width: 72vw; }
  .btn { font-size: 20px; padding-inline: 16px; }
  .audience-panel { min-height: 820px; }
  .fans-visuals { width: min(63vw, 250px); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .bg-layer { transform: none !important; }
}

/* Preserve reference rotations while reveal motion is active. */
.hero-card-main { --rot: 7deg; }
.mission-card { --rot: 9deg; }
.athlete-small-card { --rot: 11deg; }
.fan-card { --rot: -9deg; }
.reveal { transform: translateY(24px) rotate(var(--rot, 0deg)) scale(var(--reveal-scale, 1)); }
.image-fade { --reveal-scale: .985; transform: translateY(20px) rotate(var(--rot, 0deg)) scale(var(--reveal-scale)); }
.card-settle { transform: translateY(34px) rotate(var(--rot, 0deg)); }
.reveal.is-visible,
.is-loaded .hero-section .reveal { transform: translateY(0) rotate(var(--rot, 0deg)) scale(1); }
.panel-rise { transform: translateY(30px); }
.is-visible.panel-rise { transform: translateY(0); }
@media (max-width: 767px) {
  .athlete-portrait.image-fade { transform: translateX(-50%) translateY(20px) scale(.985); }
  .athlete-portrait.image-fade.is-visible { transform: translateX(-50%) translateY(0) scale(1); }
  .fan-card { --rot: -7deg; }
}

/* Corrected full-document background system. */
body {
  position: relative;
  background: var(--black);
}

.site-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background: var(--black);
}

.site-bg::before {
  display: none;
}

.bg-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.bg-ink {
  display: block;
  background-image: var(--texture-ink);
  background-repeat: repeat-y;
  background-position: center 36vh;
  background-size: min(1420px, 112vw) auto;
  opacity: .20;
  mix-blend-mode: screen;
}

.bg-scratch {
  display: block;
  background-image: var(--texture-scratch);
  background-repeat: repeat-y;
  background-position: center top;
  background-size: min(1380px, 110vw) auto;
  opacity: .22;
  mix-blend-mode: screen;
}

.bg-dust {
  display: block;
  background-image: var(--texture-dust);
  background-repeat: repeat-y;
  background-position: center top;
  background-size: min(1320px, 106vw) auto;
  opacity: .06;
  mix-blend-mode: screen;
}

.page-shell,
.site-footer {
  position: relative;
  z-index: 1;
}

/* No section-owned white paint layers. They were the source of the paint
   appearing compressed into section bottoms. */
.section::before {
  content: none !important;
}

/* The remaining city motifs use identical geometry at every breakpoint. */
.section-skyline {
  position: absolute !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: min(1280px, 118vw) !important;
  aspect-ratio: 2172 / 724;
  opacity: .30 !important;
  mix-blend-mode: screen;
  z-index: 1;
}
.section-skyline img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.section-skyline picture {
  display: block;
  width: 100%;
  height: 100%;
}
.hero-skyline { bottom: 10vh !important; }
.footer-skyline { bottom: 0 !important; }

@media (max-width: 767px) {
  .bg-ink {
    background-size: 168vw auto;
    opacity: .17;
  }
  .bg-scratch {
    background-size: 166vw auto;
    opacity: .18;
  }
  .bg-dust {
    background-size: 158vw auto;
    opacity: .045;
  }
  .section-skyline {
    width: 170vw !important;
    opacity: .28 !important;
  }
}

/* Final positioning pass: keep the composition seamless and stop artwork
   from crossing copy at the measured capture sizes. */
.section::after,
.audience-grid::before {
  content: none !important;
  display: none !important;
}

.site-footer {
  border-top: 0 !important;
}

.site-footer {
  background: #fff;
  color: var(--black);
  border-top: 0 !important;
}

.footer-logo img {
  filter: brightness(0) saturate(100%);
}

.footer-grid p,
.social-links a,
.social-links a:hover {
  color: var(--black);
}

.athlete-portrait {
  mix-blend-mode: lighten;
  z-index: 1;
}

.mission-card {
  z-index: 3;
}

.section-skyline {
  filter: none;
  transition: none;
}

.paint-zone {
  --paint-opacity: .68;
  opacity: var(--paint-opacity);
  filter: saturate(1.15) contrast(1.08);
  transition: none;
}

.paint-zone-hero { --paint-opacity: .68; }
.paint-zone-mission { --paint-opacity: .55; }
.paint-zone-audience { --paint-opacity: .42; }
.paint-zone-join { --paint-opacity: .5; }
.athletes-visuals {
  top: 410px;
  right: 0;
  width: min(28vw, 326px);
}

.fans-visuals {
  top: 390px;
  right: 42px;
  width: min(20vw, 236px);
}

@media (max-width: 1279px) and (min-width: 1024px) {
  .athletes-visuals {
    top: 344px;
    right: 8px;
    width: min(28vw, 304px);
  }

  .fans-visuals {
    top: 338px;
    right: 64px;
    width: min(20vw, 216px);
  }
}

@media (max-width: 1023px) and (min-width: 768px) {
  .athletes-visuals {
    right: 16px;
    width: min(32vw, 310px);
    top: 330px;
  }

  .fans-visuals {
    top: 310px;
    right: 92px;
    width: min(21vw, 222px);
  }

  .athlete-portrait {
    left: 2%;
    width: min(45vw, 410px);
  }
}

@media (max-width: 767px) {
  .hero-skyline {
    bottom: 1vh !important;
    width: 192vw !important;
    opacity: .42 !important;
  }

  .fans-panel {
    min-height: 780px;
  }

  .paint-zone-hero { --paint-opacity: .44; }
  .paint-zone-audience { --paint-opacity: .38; }

  .athletes-visuals {
    left: 50%;
    right: auto;
    top: 340px;
    width: min(84vw, 370px);
    transform: translateX(-50%);
  }

  .athlete-small-card {
    right: 8%;
  }

  .fans-visuals {
    top: 315px;
    left: 50%;
    right: auto;
    width: min(54vw, 238px);
    opacity: .92;
    transform: translateX(-50%);
  }
}

@media (max-width: 374px) {
  .hero-skyline {
    bottom: 0 !important;
    width: 205vw !important;
    opacity: .44 !important;
  }

  .fans-visuals {
    top: 330px;
    width: min(58vw, 230px);
  }
}

/* Audience composition pass: keep both columns built from the same pieces,
   but vary the visual order and center the art inside each column. */
.audience-panel .section-title {
  font-size: clamp(42px, 4.25vw, 62px);
}

@media (min-width: 768px) {
  .audience-grid {
    align-items: start;
  }

  .audience-panel {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }

  .audience-panel .section-title {
    white-space: nowrap;
  }

  .audience-panel .body-copy {
    max-width: min(100%, 410px);
  }

  .athletes-visuals,
  .fans-visuals {
    position: relative;
    left: 50%;
    right: auto;
    top: auto;
    transform: translateX(-50%);
  }

  .athletes-visuals {
    width: min(74%, 326px);
    height: clamp(300px, 31vw, 420px);
    margin-top: clamp(42px, 5.6vw, 76px);
  }

  .fans-visuals {
    order: -1;
    width: min(54%, 236px);
    margin-bottom: clamp(32px, 4vw, 54px);
  }
}

@media (max-width: 1023px) and (min-width: 768px) {
  .audience-panel .section-title {
    font-size: clamp(40px, 5.4vw, 52px);
  }

  .athletes-visuals {
    width: min(76%, 286px);
    height: 348px;
    margin-top: 40px;
  }

  .fans-visuals {
    width: min(50%, 190px);
    margin-bottom: 36px;
  }
}

@media (max-width: 767px) {
  .audience-panel .section-title {
    font-size: clamp(38px, 11.3vw, 52px);
    line-height: .88;
  }
}

/* Center the actual artwork inside each visual frame. The containers were
   centered, but some nested assets still carried right/left-biased offsets. */
.athlete-back {
  right: 4%;
  width: 98%;
}

.athlete-small-card {
  right: 14%;
  width: 44%;
}

@media (min-width: 768px) {
  .mission-card {
    right: 10%;
  }

  .fan-card {
    position: relative;
    left: 7px;
    top: 20px;
  }
}

@media (max-width: 767px) {
  .athlete-back {
    top: 34px;
    right: 4%;
  }

  .athlete-small-card {
    top: 154px;
    right: 16%;
  }
}

@media (min-width: 768px) {
  .fans-visuals {
    width: min(64%, 285px);
  }
}

@media (max-width: 1023px) and (min-width: 768px) {
  .fans-visuals {
    width: min(60%, 228px);
  }
}

@media (max-width: 767px) {
  .hero-section {
    padding-bottom: clamp(180px, 32vh, 260px);
  }

  .hero-skyline {
    bottom: clamp(20px, 4vh, 42px) !important;
    width: 178vw !important;
    opacity: .38 !important;
  }

  .mission-card {
    right: 18%;
  }

  .fans-visuals {
    width: min(68vw, 300px);
  }
}

@media (max-width: 374px) {
  .hero-section {
    padding-bottom: 190px;
  }

  .hero-skyline {
    width: 188vw !important;
  }

  .fans-visuals {
    width: min(70vw, 280px);
  }
}

.audience-heading {
  position: relative;
  display: inline-block;
  max-width: 100%;
}
@media (min-width: 768px) {
  .audience-panel {
    align-items: flex-start;
  }

  .athletes-visuals,
  .fans-visuals {
    position: relative;
    left: 50% !important;
    right: auto !important;
    top: auto !important;
    transform: translateX(-50%) !important;
  }

  .athletes-visuals {
    order: -1;
    width: min(72%, 326px);
    height: clamp(306px, 31vw, 420px);
    margin-top: 0;
    margin-bottom: clamp(34px, 4.2vw, 58px);
  }

  .fans-heading {
    order: 0;
  }

  .fans-visuals {
    order: 4;
    width: min(66%, 292px);
    margin-top: clamp(38px, 5vw, 70px);
    margin-bottom: 0;
  }

  .fan-card {
    left: 0;
    top: 0;
  }
}

@media (max-width: 1023px) and (min-width: 768px) {
  .athletes-visuals {
    width: min(76%, 286px);
    height: 348px;
    margin-bottom: 38px;
  }

  .fans-visuals {
    width: min(64%, 238px);
    margin-top: 42px;
  }
}

@media (max-width: 767px) {
  .athletes-visuals,
  .fans-visuals {
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
  }

  .athletes-visuals {
    width: min(84vw, 370px);
  }

  .fans-visuals {
    width: min(70vw, 304px);
  }
}

@media (max-width: 374px) {
  .fans-visuals {
    width: min(72vw, 282px);
  }
}

.athlete-back {
  right: 0 !important;
}

.athlete-small-card {
  right: 22% !important;
}

/* Mobile spacing system: one rhythm for copy-to-art gaps and centered visual
   frames so sections stop drifting independently on phone layouts. */
@media (max-width: 767px) {
  :root {
    --mobile-section-pad: clamp(92px, 13vh, 124px);
    --mobile-section-pad-end: clamp(108px, 16vh, 150px);
    --mobile-copy-art-gap: clamp(58px, 13vw, 72px);
  }

  .mission-section,
  .audience-section,
  .join-section {
    min-height: auto;
    padding-block: var(--mobile-section-pad) var(--mobile-section-pad-end);
  }

  .mission-grid,
  .audience-grid,
  .join-grid {
    padding-top: 0;
  }

  .hero-grid,
  .mission-grid,
  .join-grid,
  .audience-grid {
    position: relative;
    z-index: 2;
  }

  .hero-card-stack {
    min-height: clamp(470px, 112vw, 540px);
    margin-top: var(--mobile-copy-art-gap);
  }

  .hero-card-main {
    width: min(67vw, 316px);
    left: 16%;
    top: 0;
  }

  .mission-grid,
  .join-grid {
    display: flex;
    flex-direction: column;
  }

  .mission-visuals {
    width: 100%;
    min-height: clamp(520px, 121vw, 560px);
    margin-top: var(--mobile-copy-art-gap);
  }

  .join-application {
    margin-top: 28px;
  }

  .signup-panel {
    margin-top: var(--mobile-copy-art-gap);
  }

  .audience-grid {
    display: flex;
    flex-direction: column;
    gap: var(--mobile-section-pad);
    min-height: 0;
  }

  .audience-panel,
  .fans-panel {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 0;
    margin-bottom: 0;
    padding-top: 0;
  }

  .athletes-visuals,
  .fans-visuals {
    position: relative;
    align-self: center;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    transform: none !important;
    margin-top: var(--mobile-copy-art-gap);
    pointer-events: none;
  }

  .athletes-visuals {
    width: min(84vw, 370px);
    height: clamp(470px, 112vw, 520px);
  }

  .fans-visuals {
    width: min(68vw, 304px);
  }

  .fan-card {
    position: relative;
    left: 0;
    top: 0;
  }
}

@media (max-width: 374px) {
  .hero-card-stack {
    min-height: 470px;
  }

  .hero-card-main {
    width: 68vw;
    left: 16%;
  }

}

/* Launch audience grid reset: one 2x2 system, one mobile stack order. */
.audience-section {
  min-height: auto !important;
  padding-block: clamp(150px, 16vh, 210px) clamp(130px, 14vh, 190px);
}

.audience-grid {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
  grid-template-areas:
    "athletes-art athletes-copy"
    "fans-copy fans-art" !important;
  align-items: start !important;
  gap: clamp(78px, 8vw, 120px) clamp(58px, 7vw, 100px) !important;
  min-height: 0 !important;
  padding-top: 0 !important;
}

.athletes-panel { grid-area: athletes-copy; }
.athletes-visuals { grid-area: athletes-art; }
.fans-visuals { grid-area: fans-art; }
.fans-panel { grid-area: fans-copy; }

.audience-panel,
.audience-copy {
  position: relative !important;
  display: block !important;
  min-height: 0 !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

.audience-panel .section-title {
  font-size: clamp(44px, 4.9vw, 68px) !important;
  line-height: .88 !important;
  white-space: normal !important;
}

.audience-panel .body-copy {
  max-width: 430px !important;
}

.audience-art,
.athletes-visuals,
.fans-visuals {
  position: relative !important;
  inset: auto !important;
  left: auto !important;
  right: auto !important;
  top: auto !important;
  display: grid !important;
  place-items: center !important;
  width: 100% !important;
  min-height: clamp(410px, 40vw, 560px) !important;
  height: auto !important;
  margin: 0 !important;
  transform: none !important;
  pointer-events: none;
}

.audience-art picture,
.athletes-visuals picture,
.fans-visuals picture {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.athlete-back {
  position: relative !important;
  inset: auto !important;
  right: auto !important;
  top: auto !important;
  width: min(92%, 450px) !important;
  max-height: 560px;
  object-fit: contain;
}

.athlete-small-card {
  display: none !important;
}

.fan-card {
  position: relative !important;
  inset: auto !important;
  left: auto !important;
  top: auto !important;
  width: min(78%, 340px) !important;
  max-height: 540px;
  object-fit: contain;
  transform: rotate(-7deg) !important;
}

.fans-heading {
  position: relative;
  display: inline-block;
  max-width: 100%;
}
@media (max-width: 1023px) and (min-width: 768px) {
  .audience-section {
    padding-block: clamp(120px, 13vh, 160px);
  }

  .audience-grid {
    gap: clamp(52px, 6vw, 74px) clamp(36px, 5vw, 58px) !important;
  }

  .audience-panel .section-title {
    font-size: clamp(38px, 5.2vw, 50px) !important;
  }

  .audience-panel .body-copy {
    max-width: 360px !important;
  }

  .audience-art,
  .athletes-visuals,
  .fans-visuals {
    min-height: clamp(330px, 36vw, 430px) !important;
  }

  .athlete-back {
    width: min(96%, 360px) !important;
  }

  .fan-card {
    width: min(82%, 270px) !important;
  }
}

@media (max-width: 767px) {
  .audience-section {
    padding-block: clamp(94px, 13vh, 126px) clamp(108px, 15vh, 150px) !important;
  }

  .audience-grid {
    --mobile-section-pad: clamp(94px, 13vh, 126px);
    --mobile-copy-art-gap: clamp(58px, 13vw, 72px);
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: 1fr !important;
    grid-template-areas:
      "athletes-copy"
      "athletes-art"
      "fans-copy"
      "fans-art" !important;
    gap: 0 !important;
  }

  .athletes-panel { order: 1; }
  .athletes-visuals { order: 2; }
  .fans-panel { order: 3; }
  .fans-visuals { order: 4; }

  .hero-title {
    font-size: clamp(44px, 14vw, 60px) !important;
    line-height: .9 !important;
    letter-spacing: -.025em !important;
    white-space: nowrap !important;
  }

  .hero-title span {
    display: inline !important;
  }

  .hero-title span + span::before {
    content: " ";
  }

  .section-title,
  .audience-panel .section-title {
    font-size: clamp(34px, 10.4vw, 48px) !important;
    line-height: .9 !important;
    white-space: nowrap !important;
  }

  .audience-panel .body-copy {
    max-width: 100% !important;
  }

  .audience-art,
  .athletes-visuals,
  .fans-visuals {
    min-height: auto !important;
    width: 100% !important;
    margin-top: var(--mobile-copy-art-gap) !important;
  }

  .athlete-back {
    width: min(88vw, 370px) !important;
  }

  .fan-card {
    width: min(76vw, 318px) !important;
  }

  .fans-panel {
    margin-top: var(--mobile-section-pad) !important;
    padding-top: 0 !important;
  }
  .btn,
  .signup-panel h3 {
    white-space: nowrap !important;
  }

  .site-footer {
    padding: 14px 0 calc(16px + env(safe-area-inset-bottom)) !important;
  }

  .footer-grid {
    grid-template-columns: 1fr !important;
    justify-items: center !important;
    gap: 8px !important;
    text-align: center !important;
  }

  .footer-logo {
    width: clamp(132px, 38vw, 156px) !important;
    justify-self: center !important;
  }

  .footer-logo img {
    margin-inline: auto !important;
  }

  .footer-grid p {
    font-size: 10px !important;
    line-height: 1.12 !important;
    letter-spacing: .06em !important;
  }

  .social-links {
    justify-content: center !important;
    gap: 13px !important;
  }

  .social-links a,
  .social-links svg {
    width: 20px !important;
    height: 20px !important;
  }
}

@media (max-width: 374px) {
  .hero-title {
    font-size: clamp(40px, 13.5vw, 50px) !important;
  }

  .section-title,
  .audience-panel .section-title {
    font-size: clamp(31px, 9.8vw, 38px) !important;
  }
}

/* Tablet hero separation: keep the art column out of the copy column. */
@media (max-width: 1023px) and (min-width: 768px) {
  .hero-grid {
    grid-template-columns: minmax(0, 44%) minmax(0, 56%) !important;
    padding-top: clamp(56px, 6.5vh, 76px) !important;
  }

  .hero-copy {
    max-width: 360px;
  }

  .hero-title {
    font-size: clamp(74px, 10.2vw, 88px) !important;
    line-height: .82 !important;
    letter-spacing: -.025em !important;
  }

  .hero-underline {
    width: min(330px, 40vw) !important;
  }

  .hero-actions {
    max-width: 350px;
  }

  .hero-actions .btn {
    min-height: 50px;
    padding-inline: 20px;
    font-size: 20px;
  }

  .hero-card-stack {
    min-height: 640px !important;
  }

  .hero-card-main {
    width: min(38vw, 315px) !important;
    left: 16% !important;
    top: clamp(58px, 7vw, 76px) !important;
  }

}

/* Final mobile correction: keep the mission card off the athlete face and
   force the footer logo into a real centered row. */
@media (max-width: 767px) {
  .mission-card {
    width: min(46vw, 220px) !important;
    right: 4% !important;
    top: clamp(230px, 62vw, 286px) !important;
  }

  .site-footer .footer-grid {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    gap: 8px !important;
    text-align: center !important;
  }

  .site-footer .footer-logo {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    margin: 0 auto !important;
    justify-self: center !important;
  }

  .site-footer .footer-logo img {
    display: block !important;
    width: clamp(132px, 38vw, 156px) !important;
    max-width: 156px !important;
    margin: 0 auto !important;
    transform: translateX(11.67%);
  }

  .site-footer .footer-grid p,
  .site-footer .social-links {
    width: 100% !important;
    text-align: center !important;
    justify-content: center !important;
  }
}

.fans-heading {
  position: relative;
}

/* Responsive rhythm correction: one final source of truth for section frame
   height, city placement, and the audience pair across the launch views. */
@media (min-width: 1024px) {
  .hero-section {
    min-height: clamp(1120px, 138vh, 1520px) !important;
    padding-top: clamp(48px, 5vh, 66px) !important;
  }

  .hero-grid {
    min-height: clamp(700px, 76vh, 860px) !important;
    padding-top: clamp(76px, 8vh, 104px) !important;
  }

  .hero-skyline {
    bottom: clamp(60px, 7vh, 100px) !important;
  }

  .mission-section {
    min-height: clamp(860px, 88vh, 980px) !important;
  }

  .mission-grid {
    min-height: clamp(620px, 66vh, 760px) !important;
    padding-top: clamp(28px, 4vh, 48px) !important;
  }

  .audience-section {
    padding-block: clamp(112px, 12vh, 150px) !important;
  }

  .audience-grid {
    gap: clamp(68px, 7vw, 104px) clamp(58px, 6vw, 92px) !important;
  }

  .join-section {
    min-height: clamp(860px, 82vh, 920px) !important;
  }

  .join-grid {
    min-height: 0 !important;
    padding-top: clamp(92px, 11vh, 128px) !important;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .hero-section {
    min-height: clamp(1180px, 132vh, 1360px) !important;
    padding-top: 38px !important;
  }

  .hero-grid {
    min-height: clamp(640px, 72vh, 720px) !important;
    padding-top: clamp(68px, 7vh, 82px) !important;
  }

  .hero-skyline {
    bottom: clamp(62px, 7vh, 86px) !important;
  }

  .mission-section {
    min-height: clamp(860px, 88vh, 920px) !important;
  }

  .mission-grid {
    min-height: clamp(600px, 63vh, 680px) !important;
    padding-top: clamp(30px, 4vh, 44px) !important;
  }

  .audience-section {
    padding-block: clamp(104px, 11vh, 128px) !important;
  }

  .audience-grid {
    gap: clamp(48px, 5.5vw, 64px) clamp(36px, 5vw, 56px) !important;
  }

  .audience-art,
  .athletes-visuals,
  .fans-visuals {
    min-height: clamp(330px, 35vw, 400px) !important;
  }

  .join-section {
    min-height: 900px !important;
  }

  .join-grid {
    min-height: 0 !important;
    padding-top: clamp(100px, 11vh, 120px) !important;
  }
}

@media (max-width: 767px) {
  :root {
    --mobile-section-pad: clamp(88px, 12vh, 112px);
    --mobile-section-pad-end: var(--mobile-section-pad);
    --mobile-copy-art-gap: clamp(54px, 13vw, 66px);
  }

  .mission-section,
  .audience-section,
  .join-section {
    padding-block: var(--mobile-section-pad) !important;
  }

  .mission-visuals,
  .signup-panel,
  .athletes-visuals,
  .fans-visuals {
    margin-top: var(--mobile-copy-art-gap) !important;
  }

  .fans-panel {
    margin-top: var(--mobile-section-pad) !important;
  }
}

.hero-copy,
.fans-heading {
  position: relative !important;
}

@media (min-width: 1024px) {
  .hero-section {
    min-height: clamp(1160px, 142vh, 1580px) !important;
    padding-top: clamp(64px, 6.6vh, 88px) !important;
  }

  .hero-grid {
    min-height: clamp(720px, 78vh, 880px) !important;
    padding-top: clamp(98px, 9.8vh, 128px) !important;
  }

  .hero-skyline {
    bottom: clamp(46px, 5.8vh, 86px) !important;
  }
}

@media (max-width: 767px) {
  :root {
    --mobile-section-pad: clamp(64px, 8vh, 78px);
    --mobile-copy-art-gap: clamp(42px, 10vw, 54px);
    --mobile-audience-pair-gap: clamp(138px, 34vw, 168px);
  }

  .mission-section,
  .audience-section,
  .join-section {
    padding-block: var(--mobile-section-pad) !important;
  }

  .mission-visuals,
  .signup-panel,
  .athletes-visuals,
  .fans-visuals {
    margin-top: var(--mobile-copy-art-gap) !important;
  }

  .fans-panel {
    margin-top: var(--mobile-audience-pair-gap) !important;
  }
}

/* Tablet/desktop visual correction: the bottom city must read cleanly, so the
   join splatter lives higher in the section and below the skyline layer. */
@media (min-width: 768px) {
  .paint-zone-join {
    --paint-opacity: .34;
    top: clamp(92px, 13vh, 156px) !important;
    right: clamp(18px, 7vw, 150px) !important;
    width: clamp(460px, 42vw, 600px) !important;
    height: clamp(420px, 36vw, 540px) !important;
    z-index: 0 !important;
  }

  .footer-skyline {
    z-index: 1 !important;
  }
}

@media (min-width: 1280px) {
  .hero-section {
    padding-top: clamp(86px, 7.5vh, 112px) !important;
  }

  .hero-grid {
    padding-top: clamp(128px, 11vh, 164px) !important;
  }
}

/* Hero density correction: keep the first viewport dramatic without letting
   the card, buttons, city, and headline collide visually. */
@media (min-width: 1280px) {
  .hero-title {
    font-size: clamp(118px, 9.8vw, 150px) !important;
    line-height: .82 !important;
    letter-spacing: -.025em !important;
  }

  .hero-card-main {
    width: min(30vw, 430px) !important;
    left: 12% !important;
    top: clamp(18px, 2.5vh, 32px) !important;
  }

}

@media (min-width: 1024px) and (max-width: 1279px) {
  .hero-section {
    min-height: clamp(1260px, 164vh, 1340px) !important;
  }

  .hero-grid {
    padding-top: clamp(104px, 12vh, 132px) !important;
  }

  .hero-card-main {
    width: min(30vw, 300px) !important;
    left: 18% !important;
    top: clamp(0px, 1.5vh, 12px) !important;
  }

}

@media (max-width: 767px) {
  .hero-section {
    min-height: clamp(1360px, 158vh, 1500px) !important;
  }

  .hero-card-stack {
    margin-top: clamp(58px, 14vw, 72px) !important;
  }

  .hero-card-main {
    width: min(66vw, 300px) !important;
    left: 17% !important;
  }

}

/* Final viewport evidence pass: open the hero headline and reserve a real
   mobile city band below the join form instead of letting it sit underneath. */
.hero-title {
  letter-spacing: 0 !important;
}

@media (min-width: 1280px) {
  .hero-title {
    font-size: clamp(106px, 8.7vw, 136px) !important;
    line-height: 1.02 !important;
  }
}

@media (min-width: 768px) and (max-width: 1279px) {
  .hero-title {
    line-height: 1.02 !important;
    letter-spacing: 0 !important;
  }
}

@media (max-width: 767px) {
  .hero-title {
    font-size: clamp(40px, 12.4vw, 54px) !important;
    line-height: 1 !important;
    letter-spacing: 0 !important;
  }

  .join-section {
    min-height: clamp(1050px, 134vh, 1180px) !important;
    padding-bottom: clamp(250px, 32vh, 330px) !important;
  }

  .join-grid {
    padding-top: clamp(64px, 8vh, 86px) !important;
  }

  .paint-zone-join {
    --paint-opacity: .28;
    top: clamp(118px, 19vh, 176px) !important;
    right: -38vw !important;
    width: clamp(430px, 126vw, 560px) !important;
    height: clamp(430px, 118vw, 540px) !important;
    z-index: 0 !important;
  }

  .footer-skyline {
    bottom: 0 !important;
    width: 178vw !important;
    opacity: .34 !important;
    filter: brightness(.58) contrast(1.08) !important;
    mix-blend-mode: screen !important;
    z-index: 1 !important;
  }

  .hero-skyline {
    bottom: clamp(78px, 9vh, 104px) !important;
    width: 182vw !important;
    opacity: .44 !important;
    filter: none !important;
    mix-blend-mode: screen !important;
    z-index: 3 !important;
  }
}

@media (min-width: 768px) and (max-width: 1279px) {
  .layout-wrap {
    width: min(1120px, calc(100vw - clamp(128px, 14vw, 160px))) !important;
  }

  .hero-copy,
  .athletes-panel,
  .join-copy {
    justify-self: start !important;
  }
}

/* Mobile athlete-art restoration: keep the For Athletes image in its slot and
   above the audience paint layer. */
@media (max-width: 767px) {
  .audience-grid {
    isolation: isolate !important;
  }

  .paint-zone-audience {
    z-index: 0 !important;
  }

  .athletes-panel,
  .fans-panel {
    position: relative !important;
    z-index: 3 !important;
  }

  .athletes-visuals {
    order: 2 !important;
    position: relative !important;
    z-index: 4 !important;
    display: grid !important;
    place-items: center !important;
    width: 100% !important;
    min-height: clamp(390px, 108vw, 470px) !important;
    margin-top: var(--mobile-copy-art-gap) !important;
    overflow: visible !important;
    transform: none !important;
  }

  .athletes-visuals picture {
    position: relative !important;
    z-index: 2 !important;
    display: grid !important;
    place-items: center !important;
    width: 100% !important;
  }

  .athlete-back {
    display: block !important;
    position: relative !important;
    z-index: 3 !important;
    width: min(88vw, 370px) !important;
    height: auto !important;
    opacity: 1 !important;
    visibility: visible !important;
    mix-blend-mode: normal !important;
    filter: brightness(1.24) contrast(1.08) drop-shadow(0 22px 42px rgba(0,0,0,.72)) !important;
  }
}

/* Mission spacing lock: the copy-to-art rhythm is intentionally larger than
   the base mobile section gap, matching the approved phone reference. */
@media (max-width: 767px) {
  :root {
    --mission-copy-art-gap: clamp(112px, 27vw, 138px);
  }

  .mission-section {
    padding-block: clamp(72px, 9vh, 92px) clamp(98px, 13vh, 126px) !important;
  }

  .mission-grid {
    display: flex !important;
    flex-direction: column !important;
    min-height: 0 !important;
    padding-top: 0 !important;
  }

  .mission-visuals {
    position: relative !important;
    width: 100% !important;
    min-height: clamp(570px, 136vw, 660px) !important;
    margin-top: var(--mission-copy-art-gap) !important;
    overflow: visible !important;
    z-index: 3 !important;
  }

  .mission-visuals picture {
    display: block !important;
  }

  .athlete-portrait {
    left: 50% !important;
    top: 0 !important;
    width: min(90vw, 430px) !important;
    max-width: none !important;
    opacity: .92 !important;
  }

  .mission-card {
    right: max(4px, calc((100vw - var(--wrap)) / 2)) !important;
    top: clamp(174px, 45vw, 226px) !important;
    width: min(53vw, 250px) !important;
  }
}

@media (min-width: 768px) {
  .paint-zone-mission {
    left: clamp(318px, 45vw, 760px) !important;
    right: auto !important;
    top: clamp(230px, 24vh, 320px) !important;
    width: clamp(520px, 54vw, 760px) !important;
    height: clamp(520px, 54vw, 760px) !important;
  }

  .mission-grid {
    grid-template-columns: minmax(240px, .82fr) minmax(320px, 1.18fr) !important;
    column-gap: clamp(44px, 7vw, 118px) !important;
    align-items: center !important;
  }

  .mission-visuals {
    min-height: clamp(610px, 60vw, 760px) !important;
    transform: translateX(clamp(8px, 2.4vw, 34px)) !important;
  }

  .athlete-portrait {
    left: clamp(-28px, -2vw, -8px) !important;
    top: clamp(68px, 6vw, 104px) !important;
    width: min(38vw, 500px) !important;
  }

  .mission-card {
    right: clamp(-34px, -2.2vw, -10px) !important;
    top: clamp(188px, 16vw, 238px) !important;
    width: min(28vw, 340px) !important;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .mission-grid {
    grid-template-columns: minmax(240px, .86fr) minmax(300px, 1.14fr) !important;
    column-gap: clamp(42px, 6.4vw, 58px) !important;
  }

  .mission-visuals {
    min-height: clamp(560px, 70vw, 650px) !important;
    transform: translateX(clamp(6px, 2vw, 18px)) !important;
  }

  .athlete-portrait {
    left: -18px !important;
    top: clamp(82px, 11vw, 96px) !important;
    width: min(39vw, 300px) !important;
  }

  .mission-card {
    right: -18px !important;
    top: clamp(192px, 25vw, 218px) !important;
    width: min(30vw, 230px) !important;
  }
}

@media (min-width: 768px) and (max-width: 1180px) and (orientation: portrait) {
  .paint-zone-audience {
    left: 50% !important;
    top: clamp(250px, 28vh, 310px) !important;
    width: min(94vw, 740px) !important;
    height: min(70vw, 560px) !important;
    transform: translateX(-50%) rotate(-8deg) !important;
  }
}

/* Locked mission artwork composition: the athlete portrait and card are a
   single visual unit, with the card held over the face at the same ratio in
   every responsive layout. */
.mission-visuals {
  --mission-art-frame: min(100%, clamp(320px, 52vw, 660px));
  width: var(--mission-art-frame) !important;
  justify-self: center !important;
  isolation: isolate !important;
}

.mission-visuals picture {
  position: static !important;
}

.athlete-portrait,
.mission-card {
  position: absolute !important;
  right: auto !important;
  max-width: none !important;
}

.athlete-portrait {
  z-index: 2 !important;
  width: calc(var(--mission-art-frame) * .68) !important;
  left: calc(var(--mission-art-frame) * .04) !important;
  top: calc(var(--mission-art-frame) * .06) !important;
  transform: none !important;
}

.mission-card {
  z-index: 3 !important;
  width: calc(var(--mission-art-frame) * .57) !important;
  left: calc(var(--mission-art-frame) * .43) !important;
  top: calc(var(--mission-art-frame) * .20) !important;
  transform: rotate(9deg) !important;
}

@media (min-width: 768px) {
  .mission-visuals {
    min-height: calc(var(--mission-art-frame) * 1.08) !important;
    transform: none !important;
  }
}

@media (min-width: 1024px) {
  .mission-visuals {
    --mission-art-frame: min(100%, clamp(520px, 48vw, 670px));
  }
}

@media (max-width: 767px) {
  .mission-visuals {
    --mission-art-frame: min(92vw, 430px);
    width: var(--mission-art-frame) !important;
    min-height: calc(var(--mission-art-frame) * 1.28) !important;
    margin-inline: auto !important;
  }

  .athlete-portrait {
    width: calc(var(--mission-art-frame) * .68) !important;
    left: calc(var(--mission-art-frame) * .04) !important;
    top: calc(var(--mission-art-frame) * .06) !important;
  }

  .mission-card {
    width: calc(var(--mission-art-frame) * .57) !important;
    left: calc(var(--mission-art-frame) * .43) !important;
    top: calc(var(--mission-art-frame) * .20) !important;
  }
}

/* Mobile hero vertical lock: center the first card between the copy/actions
   block and the visible skyline, and keep the card centerline aligned to the city. */
@media (max-width: 767px) {
  .hero-card-stack {
    margin-top: clamp(92px, 23vw, 118px) !important;
    min-height: clamp(530px, 124vw, 620px) !important;
  }

  .hero-card-main {
    left: 14.5% !important;
  }

  .hero-skyline {
    bottom: clamp(114px, 13vh, 142px) !important;
  }
}

/* Athlete-pitch hierarchy pass. Keep loud type for section anchors, make
   supporting ideas read as subheads, and keep collector capture secondary. */
.section-lede,
.panel-lede {
  max-width: 520px;
  margin-bottom: 12px;
  font-size: clamp(19px, 1.55vw, 24px);
  line-height: 1.18;
  letter-spacing: -.01em;
  font-weight: 820;
}

.subsection-title {
  position: relative;
  margin: 0;
  max-width: 560px;
  color: var(--bone-strong);
  font-family: var(--font-display);
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: .98;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 1px 0 rgba(255,255,255,.06), 0 8px 16px rgba(0,0,0,.66);
}

.subsection-title::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--texture-scratch) center / 620px auto;
  opacity: .24;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.subsection-title + .blue-underline,
.audience-heading .blue-underline {
  width: clamp(96px, 10vw, 150px);
  height: 7px;
  margin-bottom: 16px;
  opacity: .78;
}

.btn-quiet {
  min-height: 42px;
  padding-inline: 18px;
  font-size: clamp(14px, 1.12vw, 16px);
  opacity: .72;
}

.collector-link {
  display: inline-flex;
  width: auto;
  margin-top: 14px;
  color: rgba(232,227,215,.66);
  font-size: 13px;
}

.join-grid {
  grid-template-columns: minmax(0, 560px);
  justify-content: start;
  min-height: 500px;
}

.join-copy {
  max-width: 560px;
}

.join-application {
  display: flex;
}

.join-copy .section-lede {
  margin-bottom: 12px;
}

.join-copy .body-copy {
  max-width: 470px;
}

.btn-submit {
  min-height: 46px;
  font-size: 19px;
}

@media (max-width: 1023px) and (min-width: 768px) {
  .subsection-title {
    font-size: clamp(23px, 3.5vw, 30px);
    line-height: 1;
  }

  .join-grid {
    grid-template-columns: minmax(0, 460px) !important;
    min-height: 520px !important;
  }
}

@media (max-width: 767px) {
  .section-lede,
  .panel-lede {
    font-size: clamp(18px, 5vw, 22px) !important;
    line-height: 1.2 !important;
  }

  .subsection-title {
    font-size: clamp(22px, 6.4vw, 28px) !important;
    line-height: 1 !important;
    white-space: normal !important;
  }

  .subsection-title + .blue-underline,
  .audience-heading .blue-underline {
    width: min(118px, 31vw);
    height: 6px;
    margin-bottom: 14px;
  }

  .btn-quiet {
    justify-self: start;
    width: auto !important;
    min-height: auto !important;
    padding: 0;
    border: 0;
    background: transparent;
    color: rgba(232,227,215,.68);
    font-family: inherit;
    font-size: 14px !important;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: 0;
    text-align: left;
    text-decoration: underline;
    text-underline-offset: 5px;
    text-transform: none;
    opacity: 1;
  }

  .btn-quiet::before {
    content: none;
  }

  .join-section {
    min-height: auto !important;
  }

  .join-grid {
    display: block;
    min-height: 460px !important;
  }
}

/* Single-line section title pass. */
.section-title,
.audience-panel .section-title {
  white-space: nowrap !important;
}

@media (max-width: 767px) {
  .section-title,
  .audience-panel .section-title {
    font-size: clamp(32px, 9.2vw, 42px) !important;
    line-height: .92 !important;
  }
}

@media (max-width: 374px) {
  .section-title,
  .audience-panel .section-title {
    font-size: clamp(29px, 8.6vw, 34px) !important;
  }
}

.fan-athlete {
  position: relative !important;
  inset: auto !important;
  display: block;
  width: min(106%, 560px) !important;
  max-height: 570px;
  object-fit: contain;
  filter: drop-shadow(0 24px 44px rgba(0,0,0,.76));
  transform: translateX(-2%) rotate(-3deg) !important;
}

.join-grid {
  grid-template-columns: minmax(0, 560px) minmax(0, 520px) !important;
  justify-content: space-between !important;
  align-items: center !important;
  min-height: clamp(640px, 72vh, 780px) !important;
}

.join-art {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 100%;
  min-height: clamp(420px, 38vw, 560px);
  pointer-events: none;
}

.join-art picture {
  display: grid;
  place-items: center;
  width: 100%;
}

.join-athlete {
  display: block;
  width: min(44vw, 500px);
  max-height: 620px;
  object-fit: contain;
  filter: drop-shadow(0 26px 46px rgba(0,0,0,.72));
  transform: translateX(4%) rotate(2deg);
}

@media (max-width: 1023px) and (min-width: 768px) {
  .fan-athlete {
    width: min(108%, 440px) !important;
    max-height: 460px;
  }

  .join-grid {
    grid-template-columns: minmax(0, 430px) minmax(0, 360px) !important;
    min-height: 620px !important;
    gap: clamp(30px, 5vw, 52px);
  }

  .join-art {
    min-height: 420px;
  }

  .join-athlete {
    width: min(42vw, 360px);
  }
}

@media (max-width: 767px) {
  .fan-athlete {
    width: min(94vw, 430px) !important;
    max-height: none;
    transform: translateX(0) rotate(-2deg) !important;
  }

  .join-section {
    padding-bottom: clamp(104px, 16vh, 150px) !important;
  }

  .join-grid {
    display: flex !important;
    flex-direction: column !important;
    min-height: 0 !important;
  }

  .join-art {
    min-height: clamp(320px, 84vw, 430px);
    margin-top: clamp(38px, 11vw, 58px);
  }

  .join-athlete {
    width: min(88vw, 370px);
    transform: translateX(3%) rotate(2deg);
  }
}

/* Measured spacing pass: keep the new athlete cutouts in scale with the
   existing face/back-view art and make the vertical rhythm uniform. */
@media (max-width: 767px) {
  :root {
    --mobile-section-pad: clamp(64px, 8vh, 78px);
    --mobile-section-end-pad: clamp(98px, 13vh, 126px);
    --mobile-flow-gap: calc(var(--mobile-section-pad) + var(--mobile-section-end-pad));
    --mobile-join-inner-gap: calc(var(--mobile-section-end-pad) - var(--mobile-section-pad));
  }

  .fan-athlete {
    width: min(82vw, 360px) !important;
    transform: translateX(0) rotate(-2deg) !important;
  }

  .join-athlete {
    width: min(78vw, 340px) !important;
    transform: translateX(2%) rotate(2deg) !important;
  }

  .fans-panel {
    margin-top: calc(var(--mobile-flow-gap) + 7px) !important;
  }

  .join-grid {
    padding-top: max(32px, calc(var(--mobile-join-inner-gap) + 7px)) !important;
  }

  .join-art {
    min-height: auto !important;
    margin-top: var(--mobile-copy-art-gap) !important;
  }

  .mission-visuals {
    min-height: clamp(330px, 92vw, 400px) !important;
  }

  .mission-grid {
    position: relative !important;
    top: -7px !important;
  }
}

@media (min-width: 768px) {
  :root {
    --section-flow-gap: clamp(180px, 16vw, 240px);
    --section-flow-half-gap: calc(var(--section-flow-gap) / 2);
    --section-head-pad: clamp(108px, 12vh, 148px);
  }

  .mission-section,
  .audience-section,
  .join-section {
    min-height: auto !important;
  }

  .mission-section {
    padding-block: var(--section-head-pad) var(--section-flow-half-gap) !important;
  }

  .mission-grid {
    min-height: 0 !important;
    padding-top: 0 !important;
    align-items: center !important;
  }

  .audience-section {
    padding-block: var(--section-flow-half-gap) !important;
  }

  .audience-grid {
    row-gap: var(--section-flow-gap) !important;
  }

  .join-section {
    padding-block: var(--section-flow-half-gap) clamp(260px, 27vw, 430px) !important;
  }

  .join-grid {
    min-height: 0 !important;
    padding-top: 0 !important;
  }

  .fan-athlete {
    width: min(76%, 390px) !important;
    max-height: 520px !important;
  }

  .join-athlete {
    width: min(32vw, 390px) !important;
    max-height: 540px !important;
  }

  .join-art {
    min-height: clamp(360px, 34vw, 500px) !important;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .mission-section {
    padding-top: calc(var(--section-head-pad) + 7px) !important;
    padding-bottom: calc(var(--section-flow-half-gap) + 10px) !important;
  }

  .audience-grid {
    row-gap: 190px !important;
  }

  .join-section {
    padding-top: calc(var(--section-flow-half-gap) + 5px) !important;
  }

  .mission-grid {
    position: relative !important;
    top: -6px !important;
  }

  .fan-athlete {
    width: min(78%, 320px) !important;
    max-height: 390px !important;
  }

  .join-athlete {
    width: min(34vw, 320px) !important;
    max-height: 400px !important;
  }
}

@media (min-width: 1024px) and (max-width: 1279px) {
  .mission-section {
    padding-top: calc(var(--section-head-pad) + 41px) !important;
    padding-bottom: calc(var(--section-flow-half-gap) + 15px) !important;
  }

  .audience-grid {
    row-gap: 186px !important;
  }

  .join-section {
    padding-top: calc(var(--section-flow-half-gap) + 5px) !important;
  }
}

@media (min-width: 1280px) {
  .mission-section {
    padding-top: calc(var(--section-head-pad) + 45px) !important;
    padding-bottom: calc(var(--section-flow-half-gap) + 10px) !important;
  }

  .join-section {
    padding-top: var(--section-flow-half-gap) !important;
  }
}

/* Clip-safe paint pass: decorative paint and absolute art should never reveal
   a hard section edge or viewport crop in the review sizes. */
.section {
  overflow: hidden !important;
}

.mission-section {
  overflow: visible !important;
}

@media (max-width: 767px) {
  .paint-zone-hero {
    right: clamp(38px, 10vw, 48px) !important;
    top: clamp(132px, 19vh, 168px) !important;
    width: min(72vw, 310px) !important;
    height: min(86vw, 370px) !important;
  }

  .mission-card {
    left: calc(var(--mission-art-frame) * .41) !important;
  }

  .paint-zone-mission,
  .paint-zone-audience,
  .paint-zone-join {
    left: 50% !important;
    right: auto !important;
    width: min(78vw, 340px) !important;
    height: min(78vw, 340px) !important;
  }

  .paint-zone-mission {
    top: clamp(210px, 28vh, 270px) !important;
    transform: translateX(-50%) rotate(12deg) !important;
  }

  .paint-zone-audience {
    top: clamp(330px, 42vh, 430px) !important;
    transform: translateX(-50%) rotate(-8deg) !important;
  }

  .paint-zone-join {
    top: clamp(168px, 22vh, 210px) !important;
    transform: translateX(-50%) rotate(8deg) !important;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .paint-zone-hero {
    right: clamp(70px, 10vw, 96px) !important;
    width: min(72vw, 560px) !important;
    height: min(78vw, 620px) !important;
  }

  .paint-zone-mission {
    left: auto !important;
    right: clamp(46px, 7vw, 78px) !important;
    top: clamp(132px, 14vh, 164px) !important;
    width: min(54vw, 500px) !important;
    height: min(54vw, 500px) !important;
  }

  .paint-zone-audience {
    width: min(86vw, 680px) !important;
    height: min(66vw, 520px) !important;
  }
}

@media (min-width: 1024px) {
  .paint-zone-hero {
    right: clamp(118px, 10vw, 158px) !important;
    width: clamp(560px, 50vw, 720px) !important;
    height: clamp(620px, 54vw, 780px) !important;
  }

  .paint-zone-mission {
    left: auto !important;
    right: clamp(72px, 8vw, 150px) !important;
    top: clamp(86px, 10vh, 132px) !important;
    width: clamp(500px, 42vw, 640px) !important;
    height: clamp(500px, 42vw, 640px) !important;
  }
}

/* Audience pairing lock: preserve art positions while keeping the 2x2 grid
   and mobile stack from drifting under later overrides. */
@media (min-width: 768px) {
  .audience-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    grid-template-areas:
      "athletes-art athletes-copy"
      "fans-copy fans-art" !important;
    align-items: start !important;
  }

  .athletes-panel { grid-area: athletes-copy !important; }
  .athletes-visuals { grid-area: athletes-art !important; }
  .fans-visuals { grid-area: fans-art !important; }
  .fans-panel { grid-area: fans-copy !important; }

  .athletes-panel,
  .fans-panel,
  .athletes-visuals,
  .fans-visuals {
    align-self: start !important;
    justify-self: stretch !important;
  }
}

@media (max-width: 767px) {
  .athletes-panel { order: 1 !important; }
  .athletes-visuals { order: 2 !important; }
  .fans-panel { order: 3 !important; }
  .fans-visuals { order: 4 !important; }
}

/* Final measured rhythm locks for the restored diagonal 2x2. */
@media (max-width: 374px) {
  .hero-skyline {
    bottom: calc(clamp(114px, 13vh, 142px) - 10px) !important;
  }
}

@media (min-width: 375px) and (max-width: 767px) {
  .hero-skyline {
    bottom: calc(clamp(114px, 13vh, 142px) + 5px) !important;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .audience-grid {
    row-gap: 185px !important;
  }
}

/* Audience 2x2 visual alignment lock: keep each copy block paired with its
   own image and keep the art from crowding the opposite row. */
@media (min-width: 768px) {
  .audience-art,
  .athletes-visuals,
  .fans-visuals {
    align-items: start !important;
    min-height: clamp(330px, 32vw, 450px) !important;
  }

  .audience-art picture,
  .athletes-visuals picture,
  .fans-visuals picture {
    place-items: start center !important;
  }

  .athlete-back {
    display: block !important;
    align-self: start !important;
    width: min(76%, 380px) !important;
    max-height: 450px !important;
  }

  .fan-athlete {
    display: block !important;
    align-self: start !important;
    width: min(68%, 350px) !important;
    max-height: 430px !important;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .audience-art,
  .athletes-visuals,
  .fans-visuals {
    min-height: clamp(285px, 36vw, 340px) !important;
  }

  .athlete-back {
    width: min(78%, 292px) !important;
    max-height: 340px !important;
  }

  .fan-athlete {
    width: min(66%, 250px) !important;
    max-height: 315px !important;
  }
}

@media (min-width: 1024px) {
  .audience-art,
  .athletes-visuals,
  .fans-visuals {
    min-height: clamp(235px, 23vw, 335px) !important;
  }

  .athlete-back {
    width: min(58%, 300px) !important;
    max-height: 365px !important;
  }

  .fan-athlete {
    width: min(54%, 285px) !important;
    max-height: 330px !important;
  }
}

@media (min-width: 1280px) {
  .audience-grid {
    row-gap: 150px !important;
  }
}

@media (min-width: 1024px) {
  .mission-visuals {
    --mission-art-frame: min(100%, clamp(420px, 37vw, 540px)) !important;
  }
}

@media (min-width: 1024px) and (max-width: 1279px) {
  .audience-section {
    padding-bottom: max(48px, calc(var(--section-flow-half-gap) - 42px)) !important;
  }

  .audience-grid {
    row-gap: 140px !important;
  }

  .join-section {
    padding-top: max(48px, calc(var(--section-flow-half-gap) - 42px)) !important;
  }
}

@media (min-width: 1280px) {
  .audience-section {
    padding-bottom: max(56px, calc(var(--section-flow-half-gap) - 60px)) !important;
  }

  .audience-grid {
    row-gap: 135px !important;
  }

  .join-section {
    padding-top: max(56px, calc(var(--section-flow-half-gap) - 60px)) !important;
  }
}

/* Final visual rhythm lock: equalize the visible title-to-title cadence around
   the restored 2x2 grid. */
@media (max-width: 374px) {
  .audience-section {
    padding-top: calc(var(--mobile-section-pad) + 10px) !important;
  }

  .fans-panel {
    margin-top: calc(var(--mobile-flow-gap) + 24px) !important;
  }

  .join-grid {
    padding-top: calc(max(32px, calc(var(--mobile-join-inner-gap) + 7px)) + 16px) !important;
  }
}

@media (min-width: 375px) and (max-width: 767px) {
  .audience-section {
    padding-top: calc(var(--mobile-section-pad) + 7px) !important;
  }

  .fans-panel {
    margin-top: calc(var(--mobile-flow-gap) + 18px) !important;
  }

  .join-grid {
    padding-top: calc(max(32px, calc(var(--mobile-join-inner-gap) + 7px)) + 10px) !important;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .audience-section {
    padding-top: calc(var(--section-flow-half-gap) - 15px) !important;
    padding-bottom: calc(var(--section-flow-half-gap) - 25px) !important;
  }

  .audience-grid {
    row-gap: 185px !important;
  }

  .join-section {
    padding-top: calc(var(--section-flow-half-gap) - 25px) !important;
  }
}

@media (min-width: 1024px) and (max-width: 1279px) {
  .audience-section {
    padding-top: calc(var(--section-flow-half-gap) - 31px) !important;
    padding-bottom: max(78px, calc(var(--section-flow-half-gap) - 9px)) !important;
  }

  .join-section {
    padding-top: max(78px, calc(var(--section-flow-half-gap) - 9px)) !important;
  }

  .audience-grid {
    row-gap: 170px !important;
  }
}

@media (min-width: 1280px) {
  .audience-section {
    padding-top: max(44px, calc(var(--section-flow-half-gap) - 70px)) !important;
    padding-bottom: max(78px, calc(var(--section-flow-half-gap) - 37px)) !important;
  }

  .join-section {
    padding-top: max(78px, calc(var(--section-flow-half-gap) - 37px)) !important;
  }

  .audience-grid {
    row-gap: 176px !important;
  }
}

/* Final section composition system: this owns the full BE READY -> 2x2 ->
   STEP IN run so tablet and desktop do not inherit conflicting old offsets. */
@media (min-width: 768px) {
  .mission-section,
  .audience-section,
  .join-section {
    min-height: auto !important;
  }

  .mission-section {
    padding-top: clamp(112px, 10vh, 148px) !important;
    padding-bottom: clamp(132px, 15vh, 178px) !important;
  }

  .mission-grid {
    display: grid !important;
    grid-template-columns: minmax(0, .86fr) minmax(0, 1fr) !important;
    align-items: start !important;
    min-height: 0 !important;
    padding-top: 0 !important;
    top: 0 !important;
  }

  .mission-visuals {
    min-height: clamp(310px, 34vw, 430px) !important;
  }

  .athlete-portrait {
    width: min(34vw, 360px) !important;
    left: 5% !important;
    top: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .mission-card {
    width: min(25vw, 280px) !important;
    right: 8% !important;
    top: clamp(48px, 6vw, 82px) !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .audience-section {
    padding-top: 0 !important;
    padding-bottom: clamp(140px, 14vh, 182px) !important;
  }

  .audience-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    grid-template-areas:
      "athletes-art athletes-copy"
      "fans-copy fans-art" !important;
    column-gap: clamp(48px, 7vw, 96px) !important;
    row-gap: clamp(148px, 13vw, 188px) !important;
    align-items: start !important;
    min-height: 0 !important;
    padding-top: 0 !important;
  }

  .athletes-panel,
  .fans-panel,
  .athletes-visuals,
  .fans-visuals {
    align-self: start !important;
    justify-self: stretch !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .athletes-panel { grid-area: athletes-copy !important; }
  .athletes-visuals { grid-area: athletes-art !important; }
  .fans-visuals { grid-area: fans-art !important; }
  .fans-panel { grid-area: fans-copy !important; }

  .audience-art {
    display: grid !important;
    place-items: start center !important;
    width: 100% !important;
    height: auto !important;
    transform: none !important;
  }

  .audience-art picture {
    display: grid !important;
    place-items: start center !important;
    width: 100% !important;
  }

  .athlete-back {
    position: relative !important;
    display: block !important;
    width: min(56%, 292px) !important;
    max-height: 350px !important;
    inset: auto !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .fan-athlete {
    position: relative !important;
    display: block !important;
    width: min(54%, 286px) !important;
    max-height: 340px !important;
    inset: auto !important;
    transform: rotate(-3deg) !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .join-section {
    padding-top: 0 !important;
    padding-bottom: clamp(260px, 27vw, 430px) !important;
  }

  .join-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    grid-template-areas: "join-art join-copy" !important;
    column-gap: clamp(48px, 7vw, 96px) !important;
    align-items: start !important;
    justify-content: stretch !important;
    min-height: 0 !important;
    padding-top: 0 !important;
  }

  .join-art { grid-area: join-art !important; }
  .join-copy { grid-area: join-copy !important; }
}

@media (min-width: 768px) and (max-width: 899px) {
  .mission-section {
    padding-bottom: 132px !important;
  }

  .mission-grid {
    grid-template-columns: minmax(0, .9fr) minmax(0, 1fr) !important;
  }

  .mission-visuals {
    min-height: 330px !important;
  }

  .athlete-portrait {
    width: min(31vw, 260px) !important;
  }

  .mission-card {
    width: min(22vw, 214px) !important;
    right: 5% !important;
    top: 52px !important;
  }

  .audience-grid {
    column-gap: clamp(42px, 6vw, 58px) !important;
    row-gap: 164px !important;
  }

  .athlete-back {
    width: min(80%, 286px) !important;
    max-height: 344px !important;
  }

  .fan-athlete {
    width: min(74%, 264px) !important;
    max-height: 318px !important;
  }

  .audience-section {
    padding-bottom: 156px !important;
  }
}

@media (min-width: 900px) and (max-width: 1279px) {
  .mission-section {
    padding-bottom: 190px !important;
  }

  .mission-visuals {
    min-height: 350px !important;
  }

  .athlete-portrait {
    width: min(31vw, 300px) !important;
  }

  .mission-card {
    width: min(23vw, 242px) !important;
    right: 7% !important;
    top: 54px !important;
  }

  .audience-grid {
    row-gap: 164px !important;
  }

  .athlete-back {
    width: min(70%, 316px) !important;
    max-height: 378px !important;
  }

  .fan-athlete {
    width: min(66%, 302px) !important;
    max-height: 360px !important;
  }
}

@media (min-width: 1024px) and (max-width: 1279px) {
  .audience-section {
    padding-bottom: 164px !important;
  }
}

@media (min-width: 1280px) {
  .mission-section {
    padding-bottom: 254px !important;
  }

  .mission-visuals {
    min-height: 390px !important;
  }

  .audience-grid {
    row-gap: 176px !important;
  }

  .audience-section {
    padding-bottom: 176px !important;
  }
}

@media (min-width: 1024px) {
  .join-athlete {
    width: clamp(282px, calc(12vw + 160px), 330px) !important;
    max-height: 410px !important;
  }
}

.athlete-portrait.reveal,
.mission-card.reveal,
.athlete-back.reveal,
.fan-athlete.reveal,
.join-athlete.reveal {
  opacity: 1 !important;
  visibility: visible !important;
}

/* Final pair alignment: tablet and desktop image blocks should center with the
   copy they support, not sit top- or bottom-aligned inside their rows. */
@media (min-width: 768px) {
  .mission-grid,
  .audience-grid,
  .join-grid {
    align-items: center !important;
  }

  .mission-copy,
  .athletes-panel,
  .fans-panel,
  .join-copy {
    align-self: center !important;
  }

  .mission-visuals,
  .audience-art,
  .athletes-visuals,
  .fans-visuals,
  .join-art {
    align-self: center !important;
    place-items: center !important;
  }

  .audience-art picture,
  .athletes-visuals picture,
  .fans-visuals picture {
    place-items: center !important;
  }
}

@media (max-width: 767px) {
  .join-section {
    padding-bottom: clamp(190px, 26vh, 250px) !important;
  }
}

@media (max-width: 767px) {
  .site-footer {
    padding: 8px 0 !important;
  }

  .site-footer .footer-grid {
    gap: 4px !important;
  }

  .site-footer .footer-logo img {
    width: clamp(112px, 31vw, 128px) !important;
    max-width: 128px !important;
  }

  .site-footer .footer-grid p {
    font-size: 9px !important;
    line-height: 1 !important;
  }
}

.athlete-portrait {
  width: calc(var(--mission-art-frame) * .76) !important;
  left: calc(var(--mission-art-frame) * .01) !important;
  top: calc(var(--mission-art-frame) * .03) !important;
}

@media (max-width: 767px) {
  .athlete-back {
    width: min(71vw, 300px) !important;
  }
}
