:root {
  --ink: #16202e;
  --muted: #5a6978;
  --navy: #0d2b52;
  --blue: #2879c8;
  --gold: #f2a541;
  --clay: #b85538;
  --green: #46745c;
  --paper: #ffffff;
  --mist: #f4f8fb;
  --line: #dce6ef;
  --shadow: 0 20px 48px rgba(13, 43, 82, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 100;
  background: var(--gold);
  color: #2b1a06;
  padding: 10px 14px;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 16px;
}

.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;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 0 36px;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand img {
  height: 46px;
  width: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 15px;
  font-weight: 700;
}

.site-nav a:not(.button) {
  color: #2b3745;
}

.site-nav a:not(.button):hover {
  color: var(--blue);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 20px;
  border: 0;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--gold);
  color: #2b1a06;
}

.button-secondary {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.08);
}

.button-dark {
  color: #ffffff;
  background: var(--navy);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.menu-button span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--navy);
}

.has-open-modal {
  overflow: hidden;
}

.donation-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 88px 20px 28px;
  background: rgba(4, 14, 28, 0.68);
}

.donation-modal.is-open {
  display: flex;
}

.donation-modal__panel {
  position: relative;
  width: min(560px, 100%);
  max-height: min(760px, calc(100vh - 116px));
  overflow-y: auto;
  padding: 34px 28px 28px;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 30px 90px rgba(4, 14, 28, 0.38);
}

.donation-modal__panel h2 {
  margin: 0 48px 22px;
  color: #123442;
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1;
  text-align: center;
}

.donation-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  min-height: 40px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.donation-widget {
  display: flex;
  justify-content: center;
  min-height: 520px;
}

.donation-modal__fallback {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.donation-modal__fallback a {
  color: var(--blue);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: end;
  overflow: hidden;
  color: #ffffff;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 24, 47, 0.95) 0%, rgba(13, 43, 82, 0.82) 47%, rgba(13, 43, 82, 0.34) 100%),
    url("assets/images/hero-youth.jpeg") center / cover;
}

.hero-content {
  position: relative;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 118px 0 86px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #8fc0ef;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 790px;
  margin-bottom: 22px;
  font-size: clamp(44px, 7vw, 82px);
}

.hero-lede {
  max-width: 720px;
  margin-bottom: 30px;
  color: #dce7f3;
  font-size: 21px;
}

.hero-actions,
.season-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-note {
  max-width: 660px;
  margin: 24px 0 0;
  color: #b9cade;
  font-size: 15px;
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--navy);
  color: #ffffff;
}

.stat {
  padding: 32px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.stat strong {
  display: block;
  font-size: 40px;
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 8px;
  color: #bed0e3;
  font-size: 14px;
  font-weight: 700;
}

.section {
  padding: 88px 36px;
}

.section-grid,
.season-grid,
.contact-grid,
.store-grid,
.store-campaign-grid {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  gap: 56px;
  align-items: center;
}

.section h2 {
  max-width: 760px;
  margin-bottom: 20px;
  color: var(--navy);
  font-size: clamp(34px, 5vw, 54px);
}

.section p {
  color: var(--muted);
  font-size: 17px;
}

.story {
  background: var(--mist);
}

.quote-block {
  margin: 28px 0;
  padding: 22px 24px;
  border-left: 5px solid var(--gold);
  background: #ffffff;
  color: var(--navy);
  font-size: 23px;
  font-weight: 850;
  line-height: 1.32;
  box-shadow: 0 10px 28px rgba(13, 43, 82, 0.08);
}

.team-proof {
  background: #081c36;
  color: #ffffff;
}

.team-proof .section-heading h2,
.team-proof .section-heading p:not(.eyebrow) {
  color: #ffffff;
}

.team-proof .section-heading p:not(.eyebrow) {
  color: #c8d7e8;
}

.team-proof-grid {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 22px;
  align-items: stretch;
}

.video-feature,
.mentor-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.24);
}

.video-feature > div:not(.video-frame),
.mentor-card > div {
  padding: 24px;
}

.video-frame,
.mini-video {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  overflow: hidden;
  background: #000000;
}

.video-frame iframe,
.mini-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-feature span,
.mentor-card span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.video-feature h3,
.mentor-card h3 {
  margin-bottom: 12px;
  color: #ffffff;
  font-size: 28px;
}

.video-feature p,
.mentor-card p {
  margin-bottom: 0;
  color: #c8d7e8;
  font-size: 16px;
}

.mentor-card img {
  width: 100%;
  aspect-ratio: 0.82 / 1;
  object-fit: cover;
  object-position: top center;
}

.recognition-strip {
  width: min(1120px, 100%);
  margin: 22px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.recognition-strip article {
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.recognition-strip strong,
.recognition-strip span {
  display: block;
}

.recognition-strip strong {
  color: #ffffff;
  font-size: 18px;
}

.recognition-strip span {
  margin-top: 4px;
  color: #b8cadd;
  font-size: 14px;
  font-weight: 750;
}

.image-stack {
  margin: 0;
}

.image-stack img,
.store-grid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-stack figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.section-heading {
  width: min(1120px, 100%);
  margin: 0 auto 38px;
}

.section-heading > p:not(.eyebrow) {
  max-width: 760px;
  font-size: 18px;
}

.compact {
  margin-bottom: 28px;
}

.pillar-grid {
  width: min(1120px, 100%);
  margin: 0 auto 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.pillar-grid article {
  min-height: 230px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.pillar-grid span,
.timeline span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--clay);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pillar-grid h3,
.program-card h3,
.proof-list h3,
.timeline h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 21px;
}

.pillar-grid p,
.program-card p,
.proof-list p,
.timeline p {
  margin-bottom: 0;
  font-size: 15px;
}

.program-grid {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.program-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.program-card img {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
}

.program-card > div {
  padding: 22px;
}

.tag {
  margin-bottom: 8px;
  color: var(--green) !important;
  font-size: 12px !important;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.season {
  color: #ffffff;
  background: var(--navy);
}

.season h2,
.season p {
  color: #ffffff;
}

.season p:not(.eyebrow) {
  color: #cbd9e8;
}

.donation-panel {
  padding: 28px;
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--ink);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.28);
}

.progress-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--navy);
  font-weight: 850;
}

.progress-top span {
  color: var(--muted);
}

.progress-bar {
  height: 14px;
  margin: 16px 0 10px;
  overflow: hidden;
  border-radius: 999px;
  background: #e7eef5;
}

.progress-bar span {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--gold));
}

.donation-panel p {
  color: var(--muted) !important;
  font-size: 14px;
}

.gift-buttons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: 18px 0;
}

.gift-buttons button {
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--navy);
  font-weight: 900;
  cursor: pointer;
}

.gift-buttons button.is-selected {
  color: #ffffff;
  border-color: var(--navy);
  background: var(--navy);
}

.panel-button {
  width: 100%;
}

.small-copy {
  margin: 12px 0 0;
}

.roadmap {
  background: var(--mist);
}

.timeline {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.timeline article {
  padding: 24px;
  border-radius: var(--radius);
  background: #ffffff;
  border: 1px solid var(--line);
}

.store-campaign {
  background: #ffffff;
}

.store-campaign-grid {
  margin-bottom: 26px;
}

.drop-copy p:not(.eyebrow) {
  max-width: 690px;
}

.mockup-panel {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.mockup-panel img,
.drop-slate {
  width: 100%;
  aspect-ratio: 1.4 / 1;
}

.mockup-panel img {
  object-fit: cover;
  object-position: center;
}

.drop-slate {
  display: grid;
  align-content: end;
  gap: 16px;
  padding: 28px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(5, 16, 30, 0.24), rgba(5, 16, 30, 0.82)),
    radial-gradient(circle at 76% 20%, rgba(240, 166, 53, 0.5), transparent 12rem),
    linear-gradient(135deg, #06111f, #0c3668);
}

.drop-slate span,
.drop-slate strong {
  display: block;
}

.drop-slate span {
  color: #a9d3ff;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.drop-slate strong {
  max-width: 520px;
  font-size: clamp(28px, 4.3vw, 54px);
  line-height: 0.98;
}

.mockup-panel figcaption {
  padding: 16px 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.money-model,
.drop-offer-grid,
.partner-wall {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.money-model {
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 22px;
}

.money-model article,
.drop-product,
.partner-wall article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.money-model article {
  padding: 22px;
}

.money-model span,
.drop-product span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--clay);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.money-model h3,
.drop-product h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 22px;
}

.money-model p,
.drop-product p {
  margin-bottom: 0;
  font-size: 15px;
}

.drop-offer-grid {
  grid-template-columns: 1.4fr repeat(4, 1fr);
}

.drop-product {
  min-height: 248px;
  padding: 22px;
  background: var(--mist);
}

.feature-product {
  color: #ffffff;
  background: linear-gradient(135deg, #06111f, #0d3b6d);
}

.feature-product span,
.feature-product h3,
.feature-product p {
  color: #ffffff;
}

.clinics {
  background: #ffffff;
}

.clinic-grid,
.sponsor-tiers {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.clinic-grid {
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  margin-bottom: 22px;
}

.clinic-card,
.sponsor-tiers article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--mist);
}

.clinic-card {
  min-height: 280px;
  padding: 26px;
}

.feature-card {
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(13, 43, 82, 0.94), rgba(40, 121, 200, 0.72)),
    url("assets/images/lions-football-cheer.png") center / cover;
}

.clinic-card span,
.sponsor-tiers span {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--clay);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.feature-card span,
.feature-card h3,
.feature-card p {
  color: #ffffff;
}

.clinic-card h3 {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 28px;
}

.clinic-card p,
.sponsor-tiers p {
  margin-bottom: 0;
  font-size: 15px;
}

.sponsor-tiers {
  grid-template-columns: repeat(4, 1fr);
}

.sponsor-tiers article {
  padding: 20px;
  background: #ffffff;
}

.sponsor-tiers strong {
  display: block;
  color: var(--navy);
  font-size: 19px;
}

.sponsor-tiers span {
  margin: 6px 0 10px;
  color: var(--green);
}

.proof-list {
  display: grid;
  gap: 14px;
}

.proof-list article {
  padding: 22px;
  border-left: 5px solid var(--gold);
  border-radius: var(--radius);
  background: var(--mist);
}

.partner-proof {
  background: var(--mist);
}

.partner-wall {
  grid-template-columns: repeat(4, 1fr);
}

.partner-wall article {
  min-height: 124px;
  padding: 20px;
  background: #ffffff;
}

.partner-wall strong,
.partner-wall span {
  display: block;
}

.partner-wall strong {
  color: var(--navy);
  font-size: 18px;
  line-height: 1.18;
}

.partner-wall span {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.store-band {
  background: #fbf7ef;
}

.store-grid {
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1fr);
}

.store-grid img {
  aspect-ratio: 1.25 / 1;
}

.store-prices {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 24px;
}

.store-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.store-quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 16px;
}

.store-quick-links a {
  color: var(--navy);
  font-size: 14px;
  font-weight: 850;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.store-prices span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 12px;
  border: 1px solid rgba(9, 38, 74, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
}

.contact {
  background: var(--mist);
}

.policy-hero {
  background:
    linear-gradient(90deg, rgba(8, 24, 47, 0.94), rgba(13, 43, 82, 0.76)),
    url("assets/images/hero-youth.jpeg") center / cover;
  color: #ffffff;
}

.policy-wrap {
  width: min(920px, 100%);
  margin: 0 auto;
}

.policy-hero h1 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: clamp(42px, 6vw, 68px);
}

.policy-hero p:not(.eyebrow) {
  color: #dce7f3;
  font-size: 18px;
}

.policy-content {
  background: #ffffff;
}

.policy-content h2 {
  max-width: none;
  margin: 34px 0 12px;
  font-size: clamp(25px, 3vw, 34px);
}

.policy-content h2:first-child {
  margin-top: 0;
}

.policy-content p {
  max-width: 840px;
}

.policy-content a {
  color: var(--blue);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.contact-grid {
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(13, 43, 82, 0.1);
}

.contact-form label {
  display: grid;
  gap: 6px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 850;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 13px;
  background: #ffffff;
  color: var(--ink);
}

.contact-form textarea {
  resize: vertical;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px !important;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 34px;
  padding: 52px 36px 28px;
  background: #081c36;
  color: #c7d5e6;
}

.site-footer > div,
.footer-bottom {
  width: min(1120px, 100%);
}

.site-footer img {
  height: 44px;
  width: auto;
  margin-bottom: 16px;
}

.site-footer h2 {
  margin-bottom: 12px;
  color: #ffffff;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer a,
.site-footer span {
  display: block;
  margin-bottom: 8px;
  color: #c7d5e6;
}

.site-footer p {
  max-width: 420px;
  margin-bottom: 0;
}

.footer-bottom {
  grid-column: 1 / -1;
  margin-top: 14px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #92a8c2;
  font-size: 13px;
}

.brief-page {
  background: #f7fafc;
}

.brief-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 0 36px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
}

.brief-header nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 15px;
  font-weight: 800;
}

.brief-hero,
.brief-section {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.brief-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 42px;
  align-items: end;
  padding: 78px 0 56px;
}

.brief-hero h1 {
  max-width: 860px;
  color: var(--navy);
  font-size: clamp(42px, 6vw, 72px);
}

.brief-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: 21px;
}

.brief-hero aside {
  padding: 26px;
  border-radius: var(--radius);
  background: var(--navy);
  color: #ffffff;
  box-shadow: var(--shadow);
}

.brief-hero aside strong,
.brief-hero aside span {
  display: block;
}

.brief-hero aside strong {
  color: #b9cade;
  font-size: 14px;
  text-transform: uppercase;
}

.brief-hero aside span {
  margin: 6px 0 10px;
  color: var(--gold);
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
}

.brief-hero aside p {
  margin: 0;
  color: #d8e4f0;
  font-size: 15px;
}

.brief-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1fr);
  gap: 36px;
  align-items: start;
  padding: 52px 0;
  border-top: 1px solid var(--line);
}

.brief-copy h2 {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: clamp(30px, 4vw, 48px);
}

.brief-copy p,
.brief-list p,
.run-card li,
.guardrail-card p,
.money-grid p,
.tier-table p,
.calendar-grid p {
  color: var(--muted);
  font-size: 16px;
}

.brief-copy .source-note {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--navy);
  font-size: 14px;
  font-weight: 750;
}

.brief-callout,
.guardrail-card,
.run-card,
.brief-list article,
.money-grid article,
.tier-table article,
.calendar-grid article {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(13, 43, 82, 0.08);
}

.brief-callout {
  margin-top: 24px;
  padding: 22px;
  border-left: 5px solid var(--gold);
  color: var(--navy);
  font-size: 22px;
  font-weight: 850;
  line-height: 1.35;
}

.brief-list {
  display: grid;
  gap: 14px;
}

.brief-list article,
.guardrail-card,
.run-card,
.gate-panel,
.validation-assets article {
  padding: 22px;
}

.brief-list h3,
.run-card h3,
.money-grid h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 21px;
}

.guardrail-card {
  border-left: 5px solid var(--clay);
}

.guardrail-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--clay);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.logistics-gate {
  align-items: stretch;
}

.logistics-gate .button {
  margin-top: 12px;
}

.gate-panel {
  border-left: 5px solid var(--clay);
}

.gate-panel h3 {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 24px;
}

.gate-panel ul,
.responsibility-grid ul {
  margin: 16px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.gate-panel li + li,
.responsibility-grid li + li {
  margin-top: 8px;
}

.run-card ol {
  margin: 0;
  padding-left: 20px;
}

.run-card li + li {
  margin-top: 10px;
}

.money-grid,
.tier-table,
.calendar-grid,
.responsibility-grid,
.validation-assets {
  grid-column: 1 / -1;
  display: grid;
  gap: 16px;
}

.validation-assets {
  grid-template-columns: 1.2fr 0.8fr;
}

.validation-assets article {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(13, 43, 82, 0.08);
}

.validation-assets .mini-video {
  margin: -22px -22px 20px;
}

.validation-assets img {
  width: calc(100% + 44px);
  max-width: none;
  margin: -22px -22px 20px;
  aspect-ratio: 0.82 / 1;
  object-fit: cover;
  object-position: top center;
}

.validation-assets h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 22px;
}

.money-grid {
  grid-template-columns: repeat(3, 1fr);
}

.money-grid article,
.tier-table article,
.calendar-grid article,
.responsibility-grid article {
  padding: 22px;
}

.money-grid span,
.calendar-grid span,
.responsibility-grid span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--clay);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.responsibility-grid {
  grid-template-columns: repeat(2, 1fr);
}

.responsibility-grid article {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(13, 43, 82, 0.08);
}

.tier-table {
  grid-template-columns: repeat(4, 1fr);
}

.tier-table strong,
.tier-table span {
  display: block;
}

.tier-table strong {
  color: var(--navy);
  font-size: 21px;
}

.tier-table span {
  margin: 6px 0 12px;
  color: var(--green);
  font-weight: 900;
}

.calendar-grid {
  grid-template-columns: repeat(3, 1fr);
}

/* Visual upgrade layer */
:root {
  --ink: #111827;
  --muted: #5b6472;
  --navy: #09264a;
  --midnight: #071525;
  --blue: #1f75d6;
  --sky: #72b7ff;
  --gold: #f0a635;
  --clay: #c25138;
  --green: #4a7c63;
  --purple: #7d5cc6;
  --paper: #fffdf8;
  --mist: #f3f7fb;
  --line: rgba(14, 42, 78, 0.14);
  --shadow: 0 28px 80px rgba(8, 30, 58, 0.16);
  --heavy-shadow: 0 34px 90px rgba(4, 14, 28, 0.34);
}

body {
  background:
    radial-gradient(circle at 18% 8%, rgba(114, 183, 255, 0.16), transparent 32rem),
    radial-gradient(circle at 88% 20%, rgba(240, 166, 53, 0.13), transparent 24rem),
    linear-gradient(180deg, #fffdf8 0%, #f6f9fd 46%, #fffdf8 100%);
  text-rendering: optimizeLegibility;
}

.site-shell {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(9, 38, 74, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(9, 38, 74, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.72), transparent 72%);
}

.site-header {
  min-height: 82px;
  padding: 0 max(26px, calc((100vw - 1200px) / 2));
  background: rgba(255, 253, 248, 0.82);
  border-bottom-color: rgba(9, 38, 74, 0.1);
  box-shadow: 0 10px 30px rgba(9, 38, 74, 0);
  transition: min-height 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  min-height: 70px;
  background: rgba(255, 253, 248, 0.94);
  box-shadow: 0 16px 40px rgba(9, 38, 74, 0.11);
}

.brand img {
  height: 50px;
}

.site-nav {
  gap: 10px;
}

.site-nav a:not(.button) {
  padding: 10px 12px;
  border-radius: var(--radius);
}

.site-nav a:not(.button):hover {
  background: rgba(31, 117, 214, 0.08);
}

.button {
  min-height: 46px;
  padding: 13px 22px;
  box-shadow: 0 10px 24px rgba(9, 38, 74, 0.08);
}

.button-primary {
  background: linear-gradient(135deg, #f7bf56, var(--gold));
}

.button-primary:hover {
  background: linear-gradient(135deg, #ffd37b, #f0a635);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.hero {
  min-height: min(860px, calc(100vh - 0px));
  background: var(--midnight);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  background: linear-gradient(180deg, transparent, rgba(7, 21, 37, 0.96));
  pointer-events: none;
}

.hero-media {
  transform: scale(1.02);
  background:
    radial-gradient(circle at 82% 26%, rgba(240, 166, 53, 0.24), transparent 19rem),
    radial-gradient(circle at 10% 84%, rgba(31, 117, 214, 0.2), transparent 22rem),
    linear-gradient(90deg, rgba(3, 12, 24, 0.96) 0%, rgba(9, 38, 74, 0.88) 44%, rgba(9, 38, 74, 0.22) 100%),
    url("assets/images/hero-youth.jpeg") center / cover;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 46px;
  align-items: end;
  width: min(1200px, calc(100% - 52px));
  padding: 150px 0 96px;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.eyebrow {
  color: var(--clay);
  font-size: 12px;
  letter-spacing: 0.13em;
}

.hero .eyebrow {
  color: #a9d3ff;
}

h1 {
  max-width: 900px;
  font-size: clamp(52px, 7.6vw, 104px);
  letter-spacing: 0;
}

.hero-lede {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.52;
}

.hero-note {
  color: rgba(222, 235, 249, 0.74);
}

.hero-proof {
  position: relative;
  z-index: 1;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(5, 16, 30, 0.56);
  backdrop-filter: blur(16px);
  box-shadow: var(--heavy-shadow);
}

.proof-kicker,
.proof-item span {
  color: rgba(216, 230, 246, 0.7);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.proof-item {
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.proof-item strong,
.proof-item span {
  display: block;
}

.proof-item strong {
  color: #ffffff;
  font-size: 19px;
  line-height: 1.15;
}

.proof-item span {
  margin-top: 5px;
  letter-spacing: 0;
  text-transform: none;
}

.stats-band {
  position: relative;
  z-index: 2;
  width: min(1200px, calc(100% - 52px));
  margin: -36px auto 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(9, 38, 74, 0.98), rgba(10, 53, 96, 0.98)),
    radial-gradient(circle at 10% 10%, rgba(240, 166, 53, 0.18), transparent 18rem);
  box-shadow: var(--heavy-shadow);
}

.stat {
  padding: 28px;
}

.stat strong {
  color: #ffffff;
  font-size: clamp(34px, 4vw, 54px);
}

.stat span {
  color: #bfd3ea;
}

.section {
  padding: clamp(76px, 9vw, 124px) 36px;
}

.section h2 {
  max-width: 840px;
  font-size: clamp(38px, 5.2vw, 68px);
}

.section-heading {
  margin-bottom: 48px;
}

.section-heading > p:not(.eyebrow) {
  max-width: 840px;
  color: #667386;
  font-size: 19px;
}

.team-proof {
  position: relative;
  overflow: hidden;
  margin-top: -1px;
  background:
    radial-gradient(circle at 18% 18%, rgba(125, 92, 198, 0.26), transparent 28rem),
    radial-gradient(circle at 86% 12%, rgba(240, 166, 53, 0.16), transparent 22rem),
    linear-gradient(140deg, #050b16 0%, #071525 48%, #102b4a 100%);
}

.team-proof::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px),
    linear-gradient(45deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 34px 34px;
  pointer-events: none;
}

.team-proof > * {
  position: relative;
}

.team-proof-grid {
  width: min(1200px, 100%);
  grid-template-columns: minmax(0, 1.28fr) minmax(310px, 0.72fr);
  gap: 26px;
}

.video-feature,
.mentor-card {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.38);
}

.video-frame {
  aspect-ratio: 16 / 8.7;
}

.video-feature > div:not(.video-frame),
.mentor-card > div {
  padding: 28px;
}

.video-feature h3,
.mentor-card h3 {
  font-size: clamp(26px, 3vw, 38px);
}

.mentor-card img {
  aspect-ratio: 0.82 / 1;
  filter: saturate(1.04) contrast(1.02);
}

.recognition-strip {
  width: min(1200px, 100%);
  margin-top: 26px;
}

.recognition-strip article {
  padding: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.045));
}

.story {
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.96), rgba(244, 248, 251, 0.96)),
    radial-gradient(circle at 78% 18%, rgba(74, 124, 99, 0.12), transparent 24rem);
}

.section-grid,
.season-grid,
.contact-grid,
.store-grid,
.store-campaign-grid {
  width: min(1200px, 100%);
}

.quote-block {
  border: 1px solid rgba(9, 38, 74, 0.1);
  border-left: 7px solid var(--gold);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-stack img,
.store-grid img {
  box-shadow: var(--heavy-shadow);
}

.program-section {
  background: linear-gradient(180deg, #fffdf8, #f3f7fb);
}

.pillar-grid,
.program-grid,
.clinic-grid,
.sponsor-tiers,
.timeline {
  width: min(1200px, 100%);
}

.pillar-grid article,
.program-card,
.timeline article,
.clinic-card,
.sponsor-tiers article,
.proof-list article,
.contact-form {
  border-color: rgba(9, 38, 74, 0.12);
  box-shadow: 0 16px 42px rgba(9, 38, 74, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.pillar-grid article:hover,
.program-card:hover,
.timeline article:hover,
.clinic-card:hover,
.sponsor-tiers article:hover {
  transform: translateY(-4px);
  border-color: rgba(31, 117, 214, 0.26);
  box-shadow: 0 26px 70px rgba(9, 38, 74, 0.14);
}

.pillar-grid article {
  background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.program-grid {
  gap: 24px;
}

.program-card {
  position: relative;
  background: #ffffff;
}

.program-card img {
  aspect-ratio: 1.38 / 1;
}

.program-card > div {
  padding: 24px;
}

.season {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 12%, rgba(240, 166, 53, 0.22), transparent 28rem),
    radial-gradient(circle at 82% 22%, rgba(31, 117, 214, 0.22), transparent 28rem),
    linear-gradient(140deg, #071525, #0b2b52);
}

.season::before {
  content: "$500";
  position: absolute;
  right: -38px;
  top: -26px;
  color: rgba(255, 255, 255, 0.04);
  font-size: clamp(120px, 20vw, 280px);
  font-weight: 950;
  line-height: 1;
  pointer-events: none;
}

.donation-panel {
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: var(--heavy-shadow);
}

.roadmap {
  background:
    linear-gradient(180deg, #f3f7fb, #fffdf8),
    radial-gradient(circle at 20% 10%, rgba(31, 117, 214, 0.12), transparent 24rem);
}

.timeline article {
  position: relative;
  overflow: hidden;
}

.timeline article::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(var(--blue), var(--gold));
}

.store-campaign {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 20%, rgba(31, 117, 214, 0.12), transparent 26rem),
    linear-gradient(180deg, #fffdf8, #f3f7fb);
}

.store-campaign::before {
  content: "STILL HERE";
  position: absolute;
  right: -24px;
  top: 18px;
  color: rgba(9, 38, 74, 0.035);
  font-size: clamp(76px, 13vw, 190px);
  font-weight: 950;
  line-height: 0.9;
  pointer-events: none;
}

.store-campaign > * {
  position: relative;
}

.mockup-panel,
.money-model article,
.drop-product,
.partner-wall article {
  box-shadow: 0 16px 42px rgba(9, 38, 74, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.mockup-panel:hover,
.money-model article:hover,
.drop-product:hover,
.partner-wall article:hover {
  transform: translateY(-4px);
  border-color: rgba(31, 117, 214, 0.26);
  box-shadow: 0 26px 70px rgba(9, 38, 74, 0.14);
}

.money-model,
.drop-offer-grid,
.partner-wall {
  width: min(1200px, 100%);
}

.drop-product {
  background: linear-gradient(180deg, #ffffff, #f7fbff);
}

.feature-product {
  background: linear-gradient(135deg, #06111f, #0d3b6d);
}

.clinics {
  background:
    radial-gradient(circle at 88% 18%, rgba(194, 81, 56, 0.12), transparent 24rem),
    linear-gradient(180deg, #fffdf8, #f7fbff);
}

.feature-card {
  background:
    linear-gradient(135deg, rgba(6, 20, 37, 0.92), rgba(31, 117, 214, 0.72)),
    url("assets/images/lions-football-cheer.png") center / cover;
}

.proof {
  background: #ffffff;
}

.partner-proof {
  background:
    radial-gradient(circle at 84% 12%, rgba(240, 166, 53, 0.13), transparent 24rem),
    linear-gradient(180deg, #f3f7fb, #fffdf8);
}

.store-band {
  background:
    linear-gradient(120deg, rgba(240, 166, 53, 0.13), rgba(74, 124, 99, 0.1)),
    #fff8ed;
}

.contact {
  background:
    linear-gradient(180deg, #f3f7fb, #fffdf8);
}

.site-footer {
  background:
    radial-gradient(circle at 82% 0%, rgba(31, 117, 214, 0.18), transparent 20rem),
    linear-gradient(140deg, #06111f, #081c36);
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

@media (max-width: 980px) {
  .site-header {
    padding: 0 20px;
  }

  .menu-button {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 82px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 20px 20px;
    background: #ffffff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 36px rgba(13, 43, 82, 0.1);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px 0;
  }

  .site-nav .button {
    margin-top: 8px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 132px 0 74px;
  }

  .hero-proof {
    max-width: 560px;
  }

  .proof-item {
    padding: 13px 0;
  }

  .stats-band,
  .pillar-grid,
  .program-grid,
  .timeline,
  .clinic-grid,
  .sponsor-tiers,
  .money-grid,
  .tier-table,
  .calendar-grid,
  .responsibility-grid,
  .recognition-strip,
  .validation-assets {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-grid,
  .season-grid,
  .contact-grid,
  .store-grid,
  .team-proof-grid,
  .brief-hero,
  .brief-section {
    grid-template-columns: 1fr;
  }

  .brief-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
    padding: 18px 20px;
  }

  .brief-header nav {
    flex-wrap: wrap;
  }
}

@media (max-width: 640px) {
  .brand img {
    height: 38px;
  }

  .site-header {
    min-height: 74px;
  }

  .site-header.is-scrolled {
    min-height: 68px;
  }

  .site-nav {
    top: 74px;
  }

  .hero-content {
    width: min(100% - 32px, 1120px);
    padding: 92px 0 58px;
  }

  h1 {
    font-size: 44px;
  }

  .hero-lede {
    font-size: 18px;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    width: min(100% - 32px, 1120px);
    padding: 96px 0 50px;
    gap: 22px;
  }

  .hero-proof {
    padding: 16px;
  }

  .proof-item {
    padding: 10px 0;
  }

  .proof-item strong {
    font-size: 17px;
  }

  .button {
    width: 100%;
  }

  .site-nav .button,
  .brief-header .button {
    width: auto;
  }

  .video-feature > div:not(.video-frame),
  .mentor-card > div {
    padding: 22px;
  }

  .stats-band,
  .pillar-grid,
  .program-grid,
  .timeline,
  .clinic-grid,
  .sponsor-tiers,
  .money-grid,
  .tier-table,
  .calendar-grid,
  .responsibility-grid,
  .recognition-strip,
  .validation-assets,
  .gift-buttons,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 66px 20px;
  }

  .stat {
    padding: 26px 20px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .progress-top {
    display: grid;
    gap: 6px;
  }

  .brief-hero,
  .brief-section {
    width: min(100% - 32px, 1120px);
  }

  .brief-hero {
    padding-top: 54px;
  }

  .brief-hero p {
    font-size: 18px;
  }
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 16px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.program-card .text-link {
  color: var(--blue);
}

.contact-quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 16px;
}

.get-involved-preview {
  background:
    radial-gradient(circle at 88% 18%, rgba(74, 124, 99, 0.14), transparent 24rem),
    linear-gradient(180deg, #fffdf8, #f3f7fb);
}

.involved-preview-grid,
.involvement-cards,
.program-detail-grid,
.program-hero-grid,
.involvement-form-grid,
.lineup-grid,
.next-step-band {
  width: min(1200px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 24px;
}

.involved-preview-grid {
  grid-template-columns: repeat(2, 1fr);
}

.involved-preview-grid article,
.involvement-cards article,
.lineup-grid article,
.program-panel,
.role-list article {
  border: 1px solid rgba(9, 38, 74, 0.12);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 16px 42px rgba(9, 38, 74, 0.08);
}

.involved-preview-grid article,
.involvement-cards article,
.lineup-grid article,
.program-panel {
  padding: 26px;
}

.involved-preview-grid span,
.involvement-cards span,
.lineup-grid span,
.program-facts span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--clay);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.involved-preview-grid h3,
.role-list h3,
.lineup-grid h3,
.program-panel h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 24px;
}

.involved-preview-grid p,
.role-list p,
.lineup-grid p,
.program-panel li {
  color: var(--muted);
  font-size: 15px;
}

.program-hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background: #071525;
}

.program-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 18%, rgba(240, 166, 53, 0.22), transparent 25rem),
    linear-gradient(90deg, rgba(3, 12, 24, 0.96), rgba(9, 38, 74, 0.84) 52%, rgba(9, 38, 74, 0.18)),
    var(--program-hero-image, url("assets/images/hero-youth.jpeg")) center / cover;
  transform: scale(1.02);
}

.program-hero > * {
  position: relative;
}

.program-hero-grid {
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: end;
  min-height: 620px;
  padding-top: 68px;
}

.program-hero h1 {
  margin-bottom: 18px;
  color: #ffffff;
}

.program-hero .hero-lede {
  color: rgba(255, 255, 255, 0.86);
}

.program-facts {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(5, 16, 30, 0.6);
  backdrop-filter: blur(16px);
  box-shadow: var(--heavy-shadow);
}

.program-facts span {
  color: var(--gold);
}

.program-facts strong,
.program-facts p {
  display: block;
  color: #ffffff;
}

.program-facts strong {
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.15;
}

.program-facts p {
  margin-bottom: 0;
  color: #cbd9e8;
  font-size: 15px;
}

.program-hero--mentoring {
  --program-hero-image: url("assets/images/mentoring-on-the-fly.jpeg");
}

.program-hero--internship {
  --program-hero-image: url("assets/images/we-turn-ship.jpeg");
}

.program-hero--prevention {
  --program-hero-image: url("assets/images/life-skills.jpeg");
}

.program-hero--tennis {
  --program-hero-image: url("assets/images/community-tennis.jpeg");
}

.program-hero--lions {
  --program-hero-image: url("assets/images/lions-football-cheer.png");
}

.program-hero--cycle {
  --program-hero-image: url("assets/images/we-cycle4us.jpeg");
}

.involvement-hero {
  --program-hero-image: url("assets/images/store-group.jpeg");
}

.program-detail {
  background: linear-gradient(180deg, #fffdf8, #f3f7fb);
}

.program-detail-grid {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  align-items: start;
}

.program-detail p {
  max-width: 760px;
}

.program-panel ul {
  margin: 14px 0 0;
  padding-left: 20px;
}

.program-panel li + li {
  margin-top: 10px;
}

.program-lineup {
  background: #fffdf8;
}

.lineup-grid {
  grid-template-columns: repeat(4, 1fr);
}

.lineup-grid.three-up {
  grid-template-columns: repeat(3, 1fr);
}

.next-step-band {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  background:
    radial-gradient(circle at 80% 10%, rgba(240, 166, 53, 0.18), transparent 22rem),
    linear-gradient(135deg, #071525, #0b2b52);
}

.next-step-band h2 {
  color: #ffffff;
}

.next-step-band .eyebrow {
  color: #a9d3ff;
}

.involvement-intro {
  background: linear-gradient(180deg, #fffdf8, #f7fbff);
}

.involvement-cards {
  grid-template-columns: repeat(2, 1fr);
}

.involvement-cards h2 {
  margin-bottom: 12px;
  font-size: clamp(30px, 3.2vw, 42px);
}

.involvement-section {
  background: #f3f7fb;
}

.internship-band {
  background:
    radial-gradient(circle at 16% 18%, rgba(31, 117, 214, 0.12), transparent 24rem),
    linear-gradient(180deg, #fffdf8, #f3f7fb);
}

.involvement-form-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.78fr);
  align-items: start;
}

.role-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.role-list article {
  padding: 20px;
  border-left: 5px solid var(--gold);
}

.involved-form fieldset {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.involved-form legend {
  padding: 0 6px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 850;
}

.involved-form fieldset label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 750;
}

.involved-form input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--blue);
}

@media (max-width: 980px) {
  .program-hero-grid,
  .program-detail-grid,
  .involvement-form-grid,
  .next-step-band {
    grid-template-columns: 1fr;
  }

  .program-hero-grid {
    min-height: auto;
    padding-top: 96px;
  }

  .program-facts {
    max-width: 640px;
  }

  .lineup-grid,
  .lineup-grid.three-up {
    grid-template-columns: repeat(2, 1fr);
  }

  .next-step-band .season-actions {
    justify-content: start;
  }
}

@media (max-width: 640px) {
  .involved-preview-grid,
  .involvement-cards,
  .lineup-grid,
  .lineup-grid.three-up {
    grid-template-columns: 1fr;
  }

  .program-facts strong {
    font-size: 20px;
  }

  .contact-quick-links {
    display: grid;
    gap: 4px;
  }
}
