:root {
  --bg: #f4f6fb;
  --surface: #ffffff;
  --ink: #0f1728;
  --muted: #3e4a63;
  --brand: #101c3d;
  --brand-2: #070d1f;
  --accent: #e10600;
  --accent-2: #b90400;
  --line: #d3dae8;
  --success: #1f7a3f;
  --radius: 12px;
  --shadow: 0 10px 28px rgba(8, 17, 40, 0.14);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Rajdhani", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #f8f9fc 0%, var(--bg) 62%);
}

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

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid #89a6ff;
  outline-offset: 2px;
}

.top-sponsor-bar {
  background: linear-gradient(90deg, #0a122c, #152a61 65%, #b90400);
  color: #fff;
  padding: 10px 16px;
  overflow: hidden;
  white-space: nowrap;
}

.ticker {
  display: inline-block;
  padding-left: 100%;
  animation: ticker 18s linear infinite;
  font-weight: 600;
  letter-spacing: 0.03em;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(9, 16, 38, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #273455;
}

.nav-wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.brand {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}

.brand img {
  width: 66px;
  height: auto;
  display: block;
}

.brand span {
  color: #fff;
  line-height: 1;
}

.brand small {
  display: block;
  color: #ff625f;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.nav-links a {
  padding: 8px 10px;
  border-radius: 8px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #d0d9ef;
  font-size: 0.9rem;
}

.nav-links a:hover,
.nav-links a.active {
  background: #263861;
  color: #fff;
}

main {
  max-width: 1140px;
  margin: 0 auto;
  padding: 30px 20px 56px;
}

.hero {
  display: block;
  margin-bottom: 30px;
}

.hero-overlay h1 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 0.98;
  margin: 0 0 14px;
  color: #ffffff;
  text-wrap: balance;
  text-transform: uppercase;
}

.hero-overlay p {
  margin: 0 0 18px;
  color: #e3ecff;
  font-size: 1.16rem;
  max-width: 38ch;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn {
  padding: 12px 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(13, 47, 165, 0.22);
}

.btn.primary {
  background: linear-gradient(120deg, #f0130d, #bf0904 70%);
  color: #fff;
}

.btn.ghost {
  background: #fff;
  border-color: #bac7e3;
  color: #102042;
}

.hero-card {
  background: linear-gradient(145deg, #0f1d44, #0b1735);
  color: #fff;
  border: 1px solid #2c3c68;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
}

.hero-video {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid #4d6196;
  box-shadow: var(--shadow);
  min-height: 340px;
}

.hero-main {
  min-height: clamp(420px, 65vh, 680px);
}

.hero-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(7, 17, 43, 0.85) 12%, rgba(7, 17, 43, 0.5) 50%, rgba(7, 17, 43, 0.2) 100%);
}

.hero-overlay {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 1;
  color: #fff;
  max-width: 680px;
}

.hero-card h3 {
  margin-top: 0;
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.hero-card p {
  color: #d6def4;
}

.hero-content .hero-card {
  margin-top: 14px;
}

.pill-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.pill {
  background: #243963;
  color: #f1f5ff;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
}

.section {
  margin: 24px 0 30px;
}

.section h2 {
  font-family: "Barlow Condensed", sans-serif;
  margin: 0 0 10px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.section p.lead {
  color: var(--muted);
  margin-top: 0;
  max-width: 64ch;
  line-height: 1.45;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(7, 28, 115, 0.14);
}

.card h3,
.card h4 {
  margin: 0 0 8px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.35rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.card p,
.card li {
  color: var(--muted);
}

.card ul {
  margin: 0;
  padding-left: 18px;
}

.policy-detail {
  margin-top: 18px;
}

.staff-directory {
  display: grid;
  gap: 18px;
}

.staff-group {
  padding: clamp(18px, 3vw, 26px);
}

.staff-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.staff-profile {
  display: grid;
  grid-template-columns: 76px 1fr;
  align-items: center;
  gap: 14px;
  min-height: 96px;
  padding: 12px;
  border: 1px solid #dce2ef;
  border-radius: 16px;
  background: #fff;
}

.staff-photo-placeholder {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  overflow: hidden;
  border: 1px dashed #b9c9ef;
  border-radius: 18px;
  background: linear-gradient(145deg, #edf3ff, #fff);
  color: #0b45b8;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: .04em;
}

.staff-profile img {
  width: 76px;
  height: 76px;
  object-fit: cover;
  border-radius: 18px;
}

.staff-profile strong,
.staff-profile span {
  display: block;
}

.staff-profile strong {
  color: #09183b;
  font-size: 1.08rem;
}

.staff-profile span {
  color: var(--muted);
}

.coach-division-directory {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.coach-division-card {
  padding: clamp(18px, 3vw, 26px);
}

.coach-division-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.coach-division-heading span {
  color: #d21812;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.coach-slot-grid {
  display: grid;
  gap: 12px;
}

.coach-profile {
  display: grid;
  grid-template-columns: 92px 1fr;
  align-items: center;
  gap: 14px;
  min-height: 112px;
  padding: 12px;
  border: 1px solid #dce2ef;
  border-radius: 16px;
  background: #fff;
}

.coach-photo-placeholder {
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  overflow: hidden;
  border: 1px dashed #b9c9ef;
  border-radius: 20px;
  background: linear-gradient(145deg, #edf3ff, #fff);
  color: #0b45b8;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.coach-profile img {
  width: 92px;
  height: 92px;
  object-fit: cover;
  border-radius: 20px;
}

.coach-profile strong,
.coach-profile span {
  display: block;
}

.coach-profile strong {
  color: #09183b;
  font-size: 1.08rem;
}

.coach-profile span {
  color: var(--muted);
}

.coach-team-slot {
  width: fit-content;
  margin-top: 8px;
  padding: 4px 9px;
  border: 1px solid #dce2ef;
  border-radius: 999px;
  background: #f7f9fd;
  color: #0b45b8 !important;
  font-size: .78rem;
  font-weight: 800;
}

.energy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.energy-card {
  margin: 0;
  background: var(--surface);
  border: 1px solid #9db5f6;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.energy-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 18px 34px rgba(7, 28, 115, 0.18);
}

.energy-card img {
  width: 100%;
  height: 235px;
  object-fit: cover;
  display: block;
}

.energy-meta {
  padding: 12px 14px 14px;
}

.energy-meta h3 {
  margin: 0 0 6px;
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
}

.energy-meta p {
  margin: 0;
  color: var(--muted);
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.photo-item {
  margin: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.photo-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.photo-item figcaption {
  padding: 10px 12px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
  color: #0d1c42;
}

.highlight {
  border: 2px solid #f2a3b0;
  background: #fff5f7;
}

.sponsor-strip {
  background: linear-gradient(130deg, #0a122c, #102457 54%, #b90400);
  border-radius: var(--radius);
  color: #fff;
  padding: 18px;
  display: grid;
  gap: 10px;
}

.sponsor-logos {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}

.logo-box {
  background: #ffffff12;
  border: 1px solid #ffffff29;
  border-radius: 12px;
  padding: 12px;
  text-align: center;
  font-weight: 600;
}

.cta-band {
  margin-top: 20px;
  padding: 20px;
  border-radius: var(--radius);
  background: linear-gradient(112deg, #0f1d44, #19387a 52%, #d10c07);
  color: #fff;
}

.cta-band h3 {
  margin: 0 0 8px;
  font-family: "Sora", sans-serif;
}

.sponsor-thanks {
  padding: 24px;
  border: 1px solid #b3c4f7;
  border-radius: var(--radius);
  background: linear-gradient(160deg, #f8faff 0%, #edf2ff 62%, #ffeef2 100%);
}

.sponsor-thanks h2 {
  font-size: clamp(1.8rem, 3.1vw, 2.8rem);
  color: #0a1432;
}

.yardsign-feature {
  margin: 14px 0 16px;
  background: #fff;
  border: 1px solid #c2d1f7;
  border-radius: 16px;
  padding: 12px;
  box-shadow: var(--shadow);
}

.yardsign-feature img {
  width: 100%;
  max-height: 420px;
  object-fit: contain;
  display: block;
  border-radius: 10px;
}

.thanks-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.thanks-card {
  background: #fff;
  border: 1px solid #c2d1f7;
  border-radius: 16px;
  padding: 14px;
  height: 300px;
  text-align: center;
  box-shadow: var(--shadow);
  display: grid;
  gap: 10px;
  align-content: start;
}

.thanks-card img {
  width: 100%;
  height: 140px;
  object-fit: contain;
  display: block;
}

.thanks-card h3 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.02rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.sponsor-object {
  width: 100%;
  height: 140px;
  border: 1px solid #d9e2fb;
  border-radius: 10px;
  background: #f9fbff;
}

.vector-fallback {
  display: inline-flex;
  height: 140px;
  width: 100%;
  align-items: center;
  justify-content: center;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  color: var(--brand-2);
}

details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
}

details + details {
  margin-top: 10px;
}

summary {
  cursor: pointer;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

footer {
  border-top: 1px solid var(--line);
  margin-top: 40px;
  padding: 20px;
  color: var(--muted);
}

.site-footer {
  display: grid;
  gap: 18px;
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
  padding: 28px 0;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.footer-brand strong,
.footer-brand span {
  display: block;
}

.footer-brand strong {
  color: #09183b;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.35rem;
  text-transform: uppercase;
}

.creator-credit {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #09183b;
  font-weight: 800;
}

.creator-credit span {
  color: var(--muted);
  font-size: .86rem;
  font-weight: 700;
}

.creator-credit a {
  display: inline-flex;
}

.creator-credit img {
  width: 68px;
  height: 68px;
  object-fit: contain;
  border: 1px solid #dce2ef;
  border-radius: 14px;
  background: #fff;
}

.footer-policy-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.footer-policy-links a {
  color: #0b45b8;
  font-weight: 800;
}

.footer-copyright {
  margin: 0;
  font-size: .92rem;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

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

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 900px) {
  .hero,
  .grid-3,
  .grid-2,
  .staff-list,
  .coach-division-directory,
  .energy-grid,
  .photo-grid,
  .thanks-grid,
  .sponsor-logos {
    grid-template-columns: 1fr;
  }

  .hero-overlay {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }

  .nav-wrap {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Redesigned homepage */
.home-page { background: #f7f8fc; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 100; background: #fff; color: #071c73; padding: 10px 14px; border-radius: 8px; }
.skip-link:focus { top: 16px; }
.announcement-bar { background: #071c73; color: #fff; font-size: .95rem; }
.announcement-inner { width: min(1180px, calc(100% - 32px)); margin: auto; padding: 10px 0; display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.announcement-inner a { color: #fff; font-weight: 700; }
.home-nav-wrap { width: min(1240px, calc(100% - 32px)); align-items: center; padding-block: 14px; }
.official-nav { justify-content: flex-end; gap: 5px 12px; }
.official-nav a { font-size: .82rem; white-space: nowrap; }
.official-nav .nav-register { background: #e31a14; border-radius: 8px; color: #fff; padding: 9px 14px; }
.nav-toggle { display: none; background: #071c73; border: 0; border-radius: 8px; color: #fff; font: inherit; font-weight: 700; padding: 9px 14px; }
.home-page main { width: min(1180px, calc(100% - 32px)); }
.home-hero { min-height: 650px; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: clamp(30px, 5vw, 76px); padding: clamp(54px, 8vw, 96px) 0; }
.eyebrow { margin: 0 0 12px; color: #d21812; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.hero-copy h1 { max-width: 780px; margin: 0; color: #09183b; font-family: "Barlow Condensed", sans-serif; font-size: clamp(3.4rem, 7vw, 6.35rem); font-weight: 800; letter-spacing: -.035em; line-height: .9; text-transform: none; }
.hero-subheadline { max-width: 680px; color: #46526d; font-size: clamp(1.08rem, 1.7vw, 1.3rem); line-height: 1.55; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 8px; margin: 24px 0; }
.hero-badges span { background: #fff; border: 1px solid #dce2ef; border-radius: 999px; color: #263553; font-size: .86rem; font-weight: 700; padding: 8px 12px; }
.hero-actions { gap: 12px; }
.hero-actions .btn { padding: 14px 20px; }
.hero-visual { position: relative; min-height: 520px; overflow: hidden; border-radius: 30px 30px 110px 30px; box-shadow: 0 28px 70px rgba(7, 28, 115, .18); }
.hero-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(5, 18, 49, .35)); }
.hero-visual img { width: 100%; height: 100%; min-height: 520px; object-fit: cover; display: block; }
.hero-status-card { position: absolute; z-index: 1; left: 22px; bottom: 22px; display: flex; align-items: center; gap: 12px; background: rgba(255,255,255,.95); border-radius: 14px; padding: 13px 16px; box-shadow: 0 12px 32px rgba(9,24,59,.25); }
.hero-status-card strong, .hero-status-card small { display: block; }
.hero-status-card strong { color: #09183b; }
.hero-status-card small { color: #56617a; }
.status-dot { width: 11px; height: 11px; border-radius: 50%; background: #15a35b; box-shadow: 0 0 0 5px rgba(21,163,91,.14); }
.section-heading { max-width: 720px; margin-bottom: 26px; }
.home-page .section { margin: 70px 0; }
.home-page .section h2 { color: #09183b; font-size: clamp(2.5rem, 5vw, 4.25rem); line-height: .96; text-transform: none; letter-spacing: -.02em; }
.parent-hub { padding: clamp(34px, 6vw, 64px); margin-inline: calc(50% - 50vw) !important; padding-inline: max(32px, calc((100vw - 1180px) / 2)); background: #09183b; color: #fff; }
.parent-hub h2, .parent-hub .lead { color: #fff !important; }
.parent-hub .lead { opacity: .7; }
.parent-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.parent-card { min-height: 245px; display: flex; flex-direction: column; padding: 24px; background: #fff; border-radius: 16px; color: #09183b; text-decoration: none; transition: transform .2s ease; }
.parent-card:hover { transform: translateY(-5px); }
.parent-card h3 { margin: 26px 0 8px; font-family: "Barlow Condensed", sans-serif; font-size: 1.65rem; }
.parent-card p { color: #5a6478; line-height: 1.45; }
.card-number { color: #d21812; font-weight: 800; }
.text-link { margin-top: auto; color: #0b45b8; font-weight: 800; }
.clinic-feature { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(30px, 6vw, 70px); }
.clinic-image { overflow: hidden; border-radius: 22px 70px 22px 22px; }
.clinic-image img { width: 100%; height: 430px; object-fit: cover; display: block; }
.clinic-copy > p:not(.eyebrow) { color: #526078; font-size: 1.1rem; line-height: 1.6; }
.location-note { border-left: 4px solid #e31a14; padding: 10px 0 10px 18px; }
.tradition-section { display: grid; grid-template-columns: .8fr 1.2fr; gap: 60px; padding: 55px; border: 1px solid #dce2ef; border-radius: 24px; background: #fff; }
.tradition-copy { margin: 0; color: #526078; font-size: clamp(1.15rem, 2vw, 1.45rem); line-height: 1.6; }
.resource-links { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.resource-links a { display: flex; flex-direction: column; gap: 7px; min-height: 125px; justify-content: center; background: #fff; border: 1px solid #dce2ef; border-radius: 14px; padding: 18px; color: #09183b; text-decoration: none; }
.resource-links a:hover { border-color: #0b45b8; }
.resource-links strong { font-size: 1.08rem; }
.resource-links span { color: #68738a; }
.sponsor-callout { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: clamp(30px, 5vw, 54px); border-radius: 24px; background: linear-gradient(120deg, #071c73, #0b45b8); color: #fff; }
.sponsor-callout h2, .sponsor-callout .eyebrow { color: #fff !important; }
.sponsor-callout p:not(.eyebrow) { max-width: 650px; margin-bottom: 0; font-size: 1.15rem; }
.sponsor-button { flex: 0 0 auto; background: #fff; color: #071c73; }
.sponsor-recognition { margin-inline: calc(50% - 50vw) !important; padding: clamp(48px, 7vw, 78px) max(16px, calc((100vw - 1180px) / 2)); background: #09183b; color: #fff; }
.sponsor-recognition-heading { max-width: 820px; }
.sponsor-recognition-heading h2, .sponsor-recognition-heading .lead { color: #fff !important; }
.sponsor-recognition-heading .lead { opacity: .76; }
.sponsor-tiers { display: grid; gap: 34px; }
.sponsor-tier h3 { margin: 0 0 13px; color: #b9c9ef; font-family: "Barlow Condensed", sans-serif; font-size: 1.15rem; letter-spacing: .08em; text-transform: uppercase; }
.sponsor-tier-grid { display: grid; gap: 14px; }
.sponsor-recognition-card { display: grid; grid-template-rows: auto auto; align-content: start; gap: 0; min-width: 0; overflow: hidden; border: 1px solid rgba(255,255,255,.14); border-radius: 16px; background: #fff; color: #09183b; text-decoration: none; box-shadow: 0 16px 36px rgba(0,0,0,.18); }
.sponsor-logo-frame { display: flex; align-items: center; justify-content: center; width: auto; min-width: 0; margin: 12px 12px 0; padding: 28px; overflow: hidden; box-sizing: border-box; border: 1px solid #e0e5ee; border-radius: 12px; background: #fff; box-shadow: 0 3px 10px rgba(9,24,59,.05); }
.sponsor-logo-frame img { display: block; width: 100%; height: 100%; max-width: 100%; max-height: 100%; object-fit: contain; object-position: center; }
.sponsor-logo-placeholder { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; color: #0b45b8; font-family: "Barlow Condensed", sans-serif; font-weight: 800; line-height: 1; text-align: center; text-transform: uppercase; }
.sponsor-recognition-details { display: flex; align-items: center; flex-direction: column; gap: 3px; padding: 15px 16px 18px; text-align: center; }
.sponsor-recognition-details strong { font-size: 1.15rem; }
.sponsor-recognition-details span { color: #667189; }
.sponsor-tier-title .sponsor-tier-grid { grid-template-columns: 1fr; }
.sponsor-tier-title .sponsor-recognition-card { border: 3px solid #e5b842; }
.sponsor-tier-title .sponsor-logo-frame { height: 280px; }
.sponsor-tier-title .sponsor-logo-placeholder { font-size: clamp(2rem, 5vw, 4rem); }
.sponsor-tier-title .sponsor-recognition-details strong { font-size: 1.65rem; }
.sponsor-tier-platinum .sponsor-tier-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.sponsor-tier-platinum .sponsor-logo-frame { height: 220px; }
.sponsor-tier-platinum .sponsor-logo-placeholder { font-size: 1.65rem; }
.sponsor-tier-gold .sponsor-tier-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.sponsor-tier-gold .sponsor-logo-frame { height: 180px; }
.sponsor-tier-silver .sponsor-tier-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.sponsor-tier-silver .sponsor-logo-frame { height: 155px; padding: 24px; }
.sponsor-tier-community .sponsor-tier-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.sponsor-tier-community .sponsor-logo-frame { height: 120px; padding: 24px; }
.sponsor-tier-community .sponsor-recognition-details { padding: 12px 12px 14px; }
.sponsor-secondary-cta { display: flex; align-items: center; justify-content: flex-end; gap: 14px; margin-top: 38px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.16); color: #b9c9df; font-size: .95rem; }
.sponsor-secondary-cta .btn { padding: 9px 14px; font-size: .82rem; }
.home-footer { margin-inline: auto; }

@media (max-width: 1050px) {
  .nav-toggle { display: block; margin-left: auto; }
  .official-nav { display: none; width: 100%; padding-top: 14px; }
  .official-nav.is-open { display: grid; grid-template-columns: repeat(3, 1fr); }
  .official-nav a { padding: 9px; }
  .parent-grid, .resource-links { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .home-nav-wrap { flex-direction: row; align-items: center; }
  .brand span { font-size: 1rem; }
  .official-nav.is-open { grid-template-columns: repeat(2, 1fr); }
  .home-hero, .clinic-feature, .tradition-section { grid-template-columns: 1fr; }
  .home-hero { padding-top: 46px; min-height: auto; }
  .hero-visual, .hero-visual img { min-height: 390px; }
  .parent-grid, .resource-links { grid-template-columns: 1fr; }
  .parent-hub { padding-inline: 16px; }
  .tradition-section { gap: 14px; padding: 28px; }
  .sponsor-callout { align-items: flex-start; flex-direction: column; }
  .sponsor-tier-title .sponsor-recognition-card, .sponsor-tier-platinum .sponsor-recognition-card { grid-template-columns: 1fr; }
  .sponsor-tier-title .sponsor-logo-frame { height: 190px; }
  .sponsor-tier-platinum .sponsor-tier-grid, .sponsor-tier-gold .sponsor-tier-grid, .sponsor-tier-silver .sponsor-tier-grid { grid-template-columns: 1fr; }
  .sponsor-tier-community .sponsor-tier-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sponsor-secondary-cta { align-items: flex-start; flex-direction: column; }
  .footer-top { align-items: flex-start; flex-direction: column; }
}

/* Navigable rules guide */
.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; }
.rules-hero { display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 36px; padding: clamp(34px, 6vw, 64px); border-radius: 24px; background: #09183b; color: #fff; }
.rules-hero h1 { margin: 0 0 15px; font-family: "Barlow Condensed", sans-serif; font-size: clamp(3.4rem, 7vw, 6rem); line-height: .9; }
.rules-hero p:not(.eyebrow) { max-width: 700px; color: #d8e0f1; font-size: 1.08rem; line-height: 1.55; }
.rules-hero-actions { display: flex; align-items: flex-start; flex-direction: column; gap: 12px; }
.rules-hero-actions span { color: #b7c3de; font-size: .9rem; }
.rule-finder { display: grid; grid-template-columns: auto 1fr; align-items: end; gap: 24px; padding: 24px; border: 1px solid var(--line); border-radius: 16px; background: #fff; box-shadow: var(--shadow); }
.rule-finder h2 { margin-bottom: 0; }
.rule-search input { width: 100%; border: 1px solid #b9c6dc; border-radius: 10px; font: inherit; font-size: 1rem; padding: 13px 15px; }
.rule-search input:focus { border-color: #0b45b8; outline: 3px solid rgba(11,69,184,.14); }
.rule-search-status { grid-column: 2; margin: -15px 0 0; color: var(--muted); font-size: .9rem; }
.rules-layout { display: grid; grid-template-columns: 220px minmax(0, 1fr); gap: 24px; align-items: start; }
.rules-toc { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 4px; padding: 18px; border: 1px solid var(--line); border-radius: 14px; background: #fff; box-shadow: var(--shadow); }
.rules-toc strong { margin-bottom: 8px; color: #09183b; font-family: "Barlow Condensed", sans-serif; font-size: 1.2rem; text-transform: uppercase; }
.rules-toc a { border-radius: 7px; color: #4d5a72; padding: 7px 8px; text-decoration: none; }
.rules-toc a:hover { background: #edf2ff; color: #0b45b8; }
.rules-sections { min-width: 0; }
.rule-section { scroll-margin-top: 100px; padding: 0; border-radius: 14px; overflow: hidden; }
.rule-section + .rule-section { margin-top: 12px; }
.rule-section[hidden] { display: none; }
.rule-section summary { display: flex; align-items: center; gap: 13px; padding: 18px 20px; background: #fff; color: #09183b; font-family: "Barlow Condensed", sans-serif; font-size: 1.5rem; list-style: none; }
.rule-section summary::-webkit-details-marker { display: none; }
.rule-section summary::after { content: "+"; margin-left: auto; color: #0b45b8; font-family: sans-serif; font-size: 1.5rem; }
.rule-section[open] summary::after { content: "−"; }
.rule-section summary span { display: grid; place-items: center; width: 34px; height: 34px; flex: 0 0 34px; border-radius: 50%; background: #edf2ff; color: #0b45b8; font-family: "Rajdhani", sans-serif; font-size: .9rem; font-weight: 800; }
.rule-body { padding: 8px 24px 24px; background: #fff; border-top: 1px solid #e4e9f2; }
.rule-body h3 { margin: 22px 0 8px; color: #0b45b8; font-family: "Barlow Condensed", sans-serif; font-size: 1.35rem; }
.rule-body ul { margin: 10px 0; padding-left: 22px; }
.rule-body li { margin-bottom: 8px; color: #4d5a72; line-height: 1.48; }
.rule-warning { margin: 18px 0; padding: 16px; border-left: 4px solid #e31a14; background: #fff1f0; color: #61201e; line-height: 1.5; }
.rule-diagram-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.rule-visual { margin: 0; overflow: hidden; border: 1px solid #d8e0ed; border-radius: 14px; background: #fff; box-shadow: var(--shadow); }
.rule-visual > a { display: block; }
.rule-visual img { display: block; width: 100%; height: auto; aspect-ratio: 3 / 2; object-fit: cover; }
.rule-visual figcaption { display: flex; flex-direction: column; gap: 5px; padding: 14px 16px 16px; color: #4d5a72; font-size: .92rem; line-height: 1.4; }
.rule-visual figcaption strong { color: #09183b; font-family: "Barlow Condensed", sans-serif; font-size: 1.35rem; }
.rule-visual figcaption a { margin-top: 5px; color: #0b45b8; font-weight: 800; }
.scoring-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; padding-top: 22px; }
.scoring-grid > div { padding: 17px; border-radius: 10px; background: #edf2ff; }
.scoring-grid strong, .scoring-grid span { display: block; }
.scoring-grid strong { color: #0b45b8; font-family: "Barlow Condensed", sans-serif; font-size: 2.2rem; }
.scoring-grid span { color: #4d5a72; }
.scoring-note { grid-column: 1 / -1; color: #4d5a72; line-height: 1.5; }
.penalty-table-wrap { max-width: 100%; overflow-x: auto; margin-top: 18px; }
.penalty-table { width: 100%; min-width: 700px; border-collapse: collapse; font-size: .92rem; }
.penalty-table th { background: #09183b; color: #fff; text-align: left; }
.penalty-table th, .penalty-table td { border: 1px solid #d8e0ed; padding: 10px; }
.penalty-table tbody tr:nth-child(even) { background: #f4f7fc; }
.no-rule-results { padding: 28px; border-radius: 14px; background: #fff; color: var(--muted); text-align: center; }

@media (max-width: 850px) {
  .rules-hero, .rules-layout { grid-template-columns: 1fr; }
  .rule-diagram-grid { grid-template-columns: 1fr; }
  .rules-toc { position: static; display: grid; grid-template-columns: repeat(2, 1fr); }
  .rules-toc strong { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  .rule-finder { grid-template-columns: 1fr; }
  .rule-search-status { grid-column: auto; margin-top: -15px; }
  .rules-toc { grid-template-columns: 1fr; }
  .rules-toc strong { grid-column: auto; }
  .rule-section summary { padding: 15px; font-size: 1.25rem; }
  .rule-body { padding: 6px 16px 18px; }
  .scoring-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Official 2026 important dates */
.dates-hero { padding: clamp(34px, 7vw, 70px); border-radius: 24px; background: linear-gradient(125deg, #09183b, #0b45b8); color: #fff; }
.dates-hero h1 { margin: 0 0 14px; font-family: "Barlow Condensed", sans-serif; font-size: clamp(3.5rem, 7vw, 6rem); line-height: .9; }
.dates-hero .eyebrow, .dates-hero .lead { color: #fff; }
.dates-hero .lead { max-width: 720px; opacity: .84; }
.dates-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.date-section { padding-top: 24px; }
.date-section-heading { display: flex; gap: 18px; align-items: flex-start; margin-bottom: 22px; }
.date-section-heading > span { display: grid; place-items: center; flex: 0 0 46px; height: 46px; border-radius: 50%; background: #e31a14; color: #fff; font-weight: 800; }
.date-section-heading h2 { margin-bottom: 4px; color: #09183b; font-size: clamp(2rem, 4vw, 3rem); }
.date-section-heading p { margin: 0; color: var(--muted); }
.date-card-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.date-card-grid.three-up { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.date-card { padding: 22px; border: 1px solid var(--line); border-radius: 16px; background: #fff; box-shadow: var(--shadow); }
.date-card.is-completed, .evaluation-card.is-completed, .date-notes p.is-completed { border-color: #cfd8e8; background: linear-gradient(145deg, #fff, #f7f9fd); }
.date-status { display: inline-flex; align-items: center; gap: 6px; width: fit-content; margin-bottom: 10px; padding: 5px 9px; border: 1px solid #bdd7c8; border-radius: 999px; background: #ecf9f1; color: #12683b; font-size: .72rem; font-weight: 800; letter-spacing: .06em; line-height: 1; text-transform: uppercase; }
.date-status::before { content: "✓"; display: inline-grid; place-items: center; width: 14px; height: 14px; border-radius: 50%; background: #15a35b; color: #fff; font-size: .66rem; }
.date-card time { display: block; margin-bottom: 10px; color: #d10c07; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; }
.date-card h3 { margin: 0 0 7px; color: #09183b; font-family: "Barlow Condensed", sans-serif; font-size: 1.7rem; }
.date-card p { margin-bottom: 0; color: var(--muted); line-height: 1.45; }
.full-season-calendar-callout { display: flex; align-items: center; justify-content: space-between; gap: 22px; margin-top: 18px; padding: 24px; border: 1px solid #bed0f3; border-radius: 18px; background: linear-gradient(135deg, #09183b, #0b45b8); color: #fff; box-shadow: var(--shadow); }
.full-season-calendar-callout .eyebrow, .full-season-calendar-callout h3, .full-season-calendar-callout p { color: #fff; }
.full-season-calendar-callout h3 { margin: 4px 0 6px; font-family: "Barlow Condensed", sans-serif; font-size: clamp(1.7rem, 3vw, 2.35rem); text-transform: uppercase; }
.full-season-calendar-callout p { margin: 0; opacity: .84; }
.calendar-cta { align-items: center; }
.calendar-cta .eyebrow { color: #fff; }
.calendar-cta .btn { white-space: nowrap; }
.league-lobster-embed { min-height: 640px; overflow: hidden; padding: 10px; border: 1px solid #dce2ef; border-radius: 18px; background: #fff; box-shadow: var(--shadow); }
.league-lobster-embed #ll-schedule-embed { min-height: 620px; }
.calendar-fallback { margin: 14px 0 0; color: var(--muted); font-size: .96rem; }
.calendar-fallback a { color: #0b45b8; font-weight: 800; }
.featured-date { background: #09183b; border-color: #09183b; color: #fff; }
.featured-date h3, .featured-date p { color: #fff; }
.featured-date time { color: #ffaaa7; }
.evaluation-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.evaluation-card { padding: 20px; border-left: 4px solid #0b45b8; border-radius: 10px; background: #fff; box-shadow: var(--shadow); }
.evaluation-card h3 { margin: 0; color: #09183b; font-family: "Barlow Condensed", sans-serif; font-size: 1.55rem; }
.evaluation-card p { margin: 2px 0 13px; color: var(--muted); }
.evaluation-card strong, .evaluation-card span { display: block; }
.evaluation-card span { margin-top: 4px; color: #0b45b8; font-weight: 800; }
.date-notes { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 16px; }
.date-notes p { flex: 1 1 260px; margin: 0; padding: 13px 15px; border-radius: 10px; background: #eaf0fc; color: #27344f; }
.schedule-notices { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.schedule-notices > div { padding: 26px; border-radius: 16px; background: #09183b; color: #fff; }
.schedule-notices h2 { color: #fff; font-size: 2rem; }
.schedule-notices p { line-height: 1.5; }
.schedule-notices a { color: #fff; font-weight: 800; }
.dates-disclaimer { display: flex; align-items: center; gap: 14px; padding: 18px 22px; border: 1px solid #f0c671; border-radius: 12px; background: #fff8e8; color: #60450a; }
.dates-disclaimer strong { white-space: nowrap; }

@media (max-width: 760px) {
  .date-card-grid, .date-card-grid.three-up, .evaluation-grid, .schedule-notices { grid-template-columns: 1fr; }
  .full-season-calendar-callout { align-items: flex-start; flex-direction: column; }
  .dates-disclaimer { align-items: flex-start; flex-direction: column; }
  .dates-disclaimer strong { white-space: normal; }
}

/* 2026 sponsorship packages */
.sponsor-packages > h1 { margin: 0 0 12px; color: #09183b; font-family: "Barlow Condensed", sans-serif; font-size: clamp(3rem, 6vw, 5rem); line-height: .95; }
.sponsor-package-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; margin-top: 30px; }
.sponsor-package { position: relative; padding: 24px; }
.package-heading { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; padding-bottom: 14px; margin-bottom: 16px; border-bottom: 1px solid var(--line); }
.package-heading h2 { margin: 0; color: #09183b; font-size: 2rem; }
.package-heading strong { color: #d10c07; font-family: "Barlow Condensed", sans-serif; font-size: 2rem; white-space: nowrap; }
.sponsor-package li { margin-bottom: 9px; line-height: 1.4; }
.featured-package { border: 2px solid #0b45b8; background: linear-gradient(145deg, #fff, #f3f7ff); }
.package-label { position: absolute; right: 18px; top: -13px; border-radius: 999px; background: #0b45b8; color: #fff; font-size: .8rem; font-weight: 800; padding: 6px 10px; text-transform: uppercase; letter-spacing: .05em; }
.sponsor-addons { display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 18px; padding: 26px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow); }
.sponsor-addons h2 { margin-bottom: 0; }
.addon-price { min-width: 180px; padding: 18px; border-radius: 14px; background: #eef3ff; }
.addon-price strong, .addon-price span { display: block; }
.addon-price strong { color: #0b45b8; font-family: "Barlow Condensed", sans-serif; font-size: 2rem; }
.addon-price span { color: var(--muted); font-weight: 600; }
.sponsor-cta { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.sponsor-cta h3 { font-family: "Barlow Condensed", sans-serif; font-size: 2rem; }
.sponsor-cta p { margin-bottom: 0; }
.past-sponsors { padding: clamp(28px, 5vw, 48px); border: 1px solid #dce2ef; border-radius: 22px; background: linear-gradient(145deg, #fff, #f3f7ff); }
.sponsor-directory .sponsor-tier h3 { color: #0b45b8; }
.sponsor-directory .sponsor-recognition-card { border-color: #d8e0ed; box-shadow: var(--shadow); }
.official-sponsor-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; max-width: 720px; }
.official-sponsor-card { display: grid; grid-template-columns: 150px 1fr; align-items: center; gap: 18px; min-height: 120px; padding: 18px; border: 1px solid #d8e0ed; border-radius: 14px; background: #fff; color: #09183b; text-decoration: none; box-shadow: var(--shadow); transition: transform .2s ease, border-color .2s ease; }
.official-sponsor-card:hover { transform: translateY(-3px); border-color: #0b45b8; }
.official-sponsor-card img { width: 100%; height: 80px; object-fit: contain; image-rendering: auto; }
.official-sponsor-card strong { font-family: "Barlow Condensed", sans-serif; font-size: 1.35rem; }
.sponsor-interest { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(28px, 6vw, 70px); align-items: start; padding: clamp(28px, 5vw, 54px); border-radius: var(--radius); background: #09183b; color: #fff; }
.form-intro h2 { margin-top: 0; color: #fff; font-family: "Barlow Condensed", sans-serif; font-size: clamp(2.4rem, 4vw, 3.5rem); line-height: 1; }
.form-intro > p:not(.eyebrow) { color: #d7dff2; line-height: 1.55; }
.form-contact-note { display: flex; flex-direction: column; gap: 3px; margin-top: 24px; padding: 16px; border-left: 3px solid #e31a14; background: #ffffff0d; }
.form-contact-note a { color: #fff; }
.sponsor-form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; padding: 24px; border-radius: 18px; background: #fff; color: #09183b; }
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field-wide { grid-column: 1 / -1; }
.form-field label, .form-field legend { font-weight: 700; }
.form-field label span { color: #d10c07; }
.form-field input:not([type="checkbox"]), .form-field select, .form-field textarea { width: 100%; box-sizing: border-box; border: 1px solid #bdc8dc; border-radius: 9px; background: #fff; color: #09183b; font: inherit; padding: 11px 12px; }
.form-field textarea { resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: #0b45b8; outline: 3px solid rgba(11,69,184,.14); }
.addon-options { display: flex; flex-direction: row; flex-wrap: wrap; gap: 10px 22px; margin: 0; padding: 15px; border: 1px solid #d7dfed; border-radius: 10px; }
.addon-options legend { padding: 0 5px; }
.addon-options label { display: flex; align-items: center; gap: 7px; font-weight: 600; }
.addon-options input { width: 18px; height: 18px; accent-color: #0b45b8; }
.form-submit-row { display: flex; align-items: center; gap: 16px; }
.form-submit-row button { border: 0; cursor: pointer; }
.form-helper { margin: 0; color: #667189; font-size: .86rem; line-height: 1.35; }

@media (max-width: 760px) {
  .sponsor-package-grid, .sponsor-addons { grid-template-columns: 1fr; }
  .sponsor-addons { align-items: stretch; }
  .addon-price { min-width: 0; }
  .sponsor-cta { align-items: flex-start; flex-direction: column; }
  .sponsor-interest, .sponsor-form { grid-template-columns: 1fr; }
  .official-sponsor-grid { grid-template-columns: 1fr; }
  .official-sponsor-card { grid-template-columns: 120px 1fr; }
  .form-field-wide { grid-column: auto; }
  .form-submit-row { align-items: flex-start; flex-direction: column; }
}
