:root {
  --navy: #0E2240;
  --navy-dk: #081530;
  --red: #C8102E;
  --gold: #D4AF37;
  --cream: #F8F5EE;
  --white: #FFFFFF;
  --ink: #111827;
  --muted: #5B6478;
  --rule: #E2DFD6;
  --shadow-sm: 0 4px 14px rgba(14, 34, 64, 0.06);
  --shadow-md: 0 10px 30px rgba(14, 34, 64, 0.10);
  --shadow-lg: 0 24px 60px rgba(14, 34, 64, 0.16);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h, 72px);
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: "Raleway", -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

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

.container { width: min(1100px, 92%); margin: 0 auto; }
.container-wide { width: min(1240px, 94%); margin: 0 auto; }

/* ── Top bar ── */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  overflow: visible;
  background: rgba(8, 21, 48, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.28s ease;
}

.topbar.is-away {
  transform: translateY(-100%);
  pointer-events: none;
}

html.nav-away .team-picker {
  top: 0;
}

html.nav-away .team-tabs {
  top: 0;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 16px;
}

.topbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--white);
  flex-shrink: 0;
}

.topbar-brand img { height: 36px; width: auto; }

.topbar-brand span {
  font-family: "Anton", sans-serif;
  font-size: 14px;
  letter-spacing: 0.14em;
}

.topbar-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.topbar-nav a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.topbar-nav a:hover,
.topbar-nav a.is-active { color: var(--gold); }

.nav-drop {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-drop-btn {
  appearance: none;
  background: none;
  border: 0;
  padding: 0;
  display: inline-flex;
  align-items: center;
  line-height: inherit;
  color: rgba(255, 255, 255, 0.78);
  font-family: inherit;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}

.nav-drop-btn::after {
  content: "";
  width: 0;
  height: 0;
  margin-left: 6px;
  border-left: 3.5px solid transparent;
  border-right: 3.5px solid transparent;
  border-top: 4px solid currentColor;
}

.nav-drop-btn:hover,
.nav-drop.is-active .nav-drop-btn,
.nav-drop-btn[aria-expanded="true"] {
  color: var(--gold);
}

.nav-drop-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 188px;
  padding: 8px 0;
  background: var(--navy-dk);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  z-index: 30;
}

.nav-drop-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  height: 12px;
}

.nav-drop-menu a {
  display: block;
  padding: 10px 16px;
  white-space: nowrap;
}

@media (hover: hover) and (pointer: fine) {
  .nav-drop:hover .nav-drop-menu,
  .nav-drop:focus-within .nav-drop-menu {
    display: block;
  }
}

.nav-drop.is-open .nav-drop-menu {
  display: block;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}

@media (max-width: 860px) {
  .nav-toggle { display: inline-block; }
  .topbar-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--navy-dk);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 4%;
    gap: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .topbar-nav.open { display: flex; }
  .topbar-nav a {
    padding: 12px 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .topbar-nav .nav-cta {
    margin: 12px 0 8px;
    text-align: center;
  }
  .nav-drop-btn { display: none; }
  .nav-drop,
  .nav-drop-menu {
    display: contents;
  }
  .nav-drop-menu::before { display: none; }
}

/* ── Shared type ── */
section { padding: 72px 0; }

.section-dark { background: var(--navy); color: var(--white); }
.section-dark h2 { color: var(--white); }
.section-dark .eyebrow { color: var(--gold); }
.section-dark .lead { color: rgba(255, 255, 255, 0.82); }
.section-dark .accent-line { background: var(--red); }

.section-navy-dk { background: var(--navy-dk); color: var(--white); }
.section-navy-dk h2 { color: var(--white); }
.section-navy-dk .eyebrow { color: var(--gold); }
.section-navy-dk .lead { color: rgba(255, 255, 255, 0.82); }
.section-navy-dk .accent-line { background: var(--red); }

.section-cream { background: var(--cream); }
.section-white { background: var(--white); }

.section-head { margin-bottom: 36px; }
.section-head.center { text-align: center; }
.section-head.center .accent-line { margin-left: auto; margin-right: auto; }

.eyebrow {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}

.accent-line {
  display: block;
  width: 56px;
  height: 4px;
  background: var(--gold);
  border-radius: 2px;
  margin: 14px 0 20px;
}

h2 {
  font-family: "Anton", sans-serif;
  letter-spacing: 0.03em;
  font-size: clamp(30px, 4.5vw, 44px);
  color: var(--navy);
  margin: 0 0 12px;
  line-height: 1.05;
}

.lead {
  font-size: 17px;
  color: var(--muted);
  max-width: 720px;
  margin: 0;
  line-height: 1.6;
}

.section-head.center .lead { margin-left: auto; margin-right: auto; }

.cta-btn {
  display: inline-block;
  background: var(--red);
  color: #fff;
  text-decoration: none;
  border: 0;
  border-radius: 8px;
  padding: 14px 22px;
  font-weight: 800;
  letter-spacing: 0.04em;
  font-size: 14px;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(200, 16, 46, 0.32);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(200, 16, 46, 0.4);
}

.cta-btn.outline {
  background: transparent;
  border: 2px solid var(--white);
  box-shadow: none;
}

.cta-btn.outline:hover { background: rgba(255, 255, 255, 0.1); }

.cta-btn.ghost {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
  box-shadow: none;
}

.cta-btn.ghost:hover { background: var(--navy); color: var(--white); }

.cta-btn.disabled,
.cta-btn[aria-disabled="true"] {
  background: var(--muted);
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* ── Hero ── */
.hero {
  background-image:
    linear-gradient(135deg, rgba(8, 21, 48, 0.82) 0%, rgba(14, 34, 64, 0.72) 100%),
    url("../assets/images/hero.jpg");
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 72px 0 80px;
  text-align: center;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: linear-gradient(to right, var(--red) 0%, var(--red) 32%, var(--gold) 32%, var(--gold) 80%, transparent 80%);
}

.hero-logo {
  width: min(280px, 64%);
  height: auto;
  display: block;
  margin: 0 auto 20px;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.35));
}

.hero .eyebrow {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.hero h1 {
  font-family: "Anton", sans-serif;
  font-size: clamp(42px, 8vw, 76px);
  line-height: 0.98;
  letter-spacing: 0.02em;
  margin: 0 auto 14px;
  max-width: 900px;
}

.hero-tagline {
  font-family: "Anton", sans-serif;
  font-size: clamp(20px, 3.5vw, 32px);
  line-height: 1.1;
  letter-spacing: 0.06em;
  color: var(--gold);
  margin: 0 auto 20px;
  max-width: 760px;
  text-transform: uppercase;
}

.hero .lead {
  font-size: clamp(17px, 2.4vw, 22px);
  max-width: 720px;
  margin: 0 auto 24px;
  color: rgba(255, 255, 255, 0.94);
  font-weight: 600;
  line-height: 1.5;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
}

.chip {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
}

.chip.hot {
  background: rgba(200, 16, 46, 0.35);
  border-color: var(--red);
}

.chip.soon {
  background: rgba(212, 175, 55, 0.22);
  border-color: var(--gold);
  color: var(--gold);
}

/* ── Hero video ── */
.hero--video { position: relative; overflow: hidden; }

/* keep the red/gold rule above the video layer */
.hero--video::before { z-index: 3; }

.hero--video .hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--navy-dk) url("../assets/video/hero-poster.jpg") center 30% / cover no-repeat;
}

.hero--video .hero-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* the source is 9:16 portrait; anchoring the crop high keeps faces and
     jerseys in frame on wide screens instead of a band of torsos */
  object-position: center 30%;
}

.hero--video::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(8, 21, 48, 0.86) 0%, rgba(8, 21, 48, 0.72) 45%, rgba(8, 21, 48, 0.94) 100%);
}

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

.hero--video .hero-logo { width: min(240px, 56%); margin-bottom: 16px; }
.hero--video .lead { margin-bottom: 22px; text-shadow: 0 2px 12px rgba(8, 21, 48, 0.55); }
.hero--video h1 { text-shadow: 0 4px 24px rgba(8, 21, 48, 0.5); }

.hero-quote {
  margin: 0;
  padding: 2px 0 2px 16px;
  border-left: 3px solid var(--gold);
  text-align: left;
}

.quote-scroller {
  margin: 26px auto 0;
  max-width: 560px;
  text-align: left;
}

.quote-scroller-viewport {
  position: relative;
  min-height: 112px;
}

.quote-scroller .hero-quote {
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.quote-scroller .hero-quote.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.quote-dots {
  display: flex;
  gap: 8px;
  margin-top: 14px;
  padding-left: 16px;
}

.quote-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
}

.quote-dot.is-active {
  background: var(--gold);
}

.hero-quote blockquote {
  margin: 0 0 6px;
  font-size: clamp(15px, 2vw, 17px);
  font-style: italic;
  font-weight: 600;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 2px 10px rgba(8, 21, 48, 0.55);
}

.hero-quote figcaption {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

@media (min-width: 901px) {
  .hero--video { padding: 84px 0 92px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero--video .hero-video { display: none; }
  .quote-scroller .hero-quote {
    position: relative;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    margin-bottom: 16px;
  }
  .quote-scroller .hero-quote:last-child { margin-bottom: 0; }
  .quote-scroller-viewport { min-height: 0; }
  .quote-dots { display: none; }
}

.towns-rows {
  margin: 0 auto 28px;
  max-width: 960px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.towns-row {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  line-height: 1.6;
}

.towns-row .dot { color: var(--gold); margin: 0 8px; }

.status-banner {
  background: var(--navy);
  color: var(--white);
  padding: 12px 16px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.status-banner strong { color: var(--gold); }

.status-banner a {
  color: var(--gold);
  font-weight: 800;
}

/* ── Placeholders ── */
.ph {
  background:
    repeating-linear-gradient(
      -45deg,
      rgba(14, 34, 64, 0.04),
      rgba(14, 34, 64, 0.04) 10px,
      rgba(14, 34, 64, 0.08) 10px,
      rgba(14, 34, 64, 0.08) 20px
    );
  border: 2px dashed rgba(14, 34, 64, 0.22);
  border-radius: 12px;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  min-height: 140px;
  padding: 16px;
}

.ph span { max-width: 180px; line-height: 1.4; }

.ph-play {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 3px solid rgba(14, 34, 64, 0.35);
  display: grid;
  place-items: center;
  margin: 0 auto 10px;
  font-size: 18px;
  color: var(--navy);
}

.section-dark .ph,
.section-navy-dk .ph {
  background:
    repeating-linear-gradient(
      -45deg,
      rgba(255, 255, 255, 0.04),
      rgba(255, 255, 255, 0.04) 10px,
      rgba(255, 255, 255, 0.08) 10px,
      rgba(255, 255, 255, 0.08) 20px
    );
  border-color: rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.7);
}

.section-dark .ph-play,
.section-navy-dk .ph-play {
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--gold);
}

/* ── Photo strip ── */
.photo-strip-wrap {
  overflow: hidden;
  padding: 28px 0;
  background: var(--navy-dk);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.photo-strip {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: strip-scroll 42s linear infinite;
  padding: 0 12px;
}

.photo-strip:hover { animation-play-state: paused; }

.photo-strip .ph {
  width: 220px;
  height: 150px;
  min-height: 0;
  flex-shrink: 0;
  border-radius: 10px;
}

@keyframes strip-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── Season cards ── */
.season-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.season-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
}

a.season-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.season-card-media {
  height: 180px;
  position: relative;
}

.season-card-media .ph {
  height: 100%;
  min-height: 0;
  border: 0;
  border-radius: 0;
}

.season-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.season-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--navy);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
}

.season-badge.closed { background: var(--red); }
.season-badge.soon { background: var(--gold); color: var(--navy); }

.season-card-body {
  padding: 24px 22px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.season-card-body h3 {
  font-family: "Anton", sans-serif;
  font-size: 28px;
  letter-spacing: 0.03em;
  line-height: 1.02;
  color: var(--navy);
  margin: 0 0 8px;
}

.season-card-body p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 15px;
  flex: 1;
}

.season-meta {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}

.season-card .cta-row {
  justify-content: flex-start;
  margin-top: auto;
  flex-wrap: nowrap;
  gap: 10px;
}

.season-card .cta-row .cta-btn {
  min-width: 0;
  flex: 1 1 0;
  text-align: center;
  box-sizing: border-box;
  border: 2px solid transparent;
  padding: 12px 10px;
  font-size: 13px;
}

.season-card .cta-row .cta-btn:not(.ghost) {
  border-color: var(--red);
}

.season-card .cta-row .cta-btn.ghost {
  border-color: var(--navy);
}

/* ── Feature cards ── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 14px;
  padding: 24px 22px;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--red);
}

.feature-card .icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  font-family: "Anton", sans-serif;
  font-size: 18px;
}

.feature-card h3 {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 800;
  color: var(--navy);
}

.feature-card p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

/* ── Rosters + free agency ── */
.roster-split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
  align-items: stretch;
}

.roster-copy h3 {
  font-family: "Anton", sans-serif;
  font-size: 26px;
  letter-spacing: 0.03em;
  color: var(--gold);
  margin: 0 0 12px;
}

.roster-copy h3 + p + h3 {
  margin-top: 22px;
}

.roster-copy p {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
}

.roster-copy p:last-child { margin-bottom: 0; }

.score-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.score-card .score-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.score-card .score {
  font-family: "Anton", sans-serif;
  font-size: clamp(56px, 10vw, 84px);
  line-height: 0.9;
  letter-spacing: 0.04em;
  color: var(--white);
  margin: 0 0 8px;
}

.score-card .score-sub {
  font-family: "Anton", sans-serif;
  font-size: clamp(16px, 2.4vw, 20px);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 12px;
}

.score-card .score-note {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.45;
}

/* ── Why / format (summer) ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.why-callout {
  max-width: 720px;
  margin: 0 auto 22px;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 14px;
  padding: 22px 28px 24px;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--gold);
  text-align: center;
}

.olympic-rings {
  display: block;
  width: 88px;
  height: auto;
  margin: 0 auto 12px;
}

.why-callout h3 {
  font-family: "Anton", sans-serif;
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--navy);
  margin: 0 0 8px;
}

.why-callout p {
  margin: 0;
  font-size: 16px;
  color: var(--muted);
  line-height: 1.55;
}

.why-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 14px;
  padding: 24px 20px;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--red);
}

@media (min-width: 901px) {
  .why-card:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -8px;
    width: 18px;
    height: 18px;
    transform: translate(50%, -50%);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23D4AF37' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='M13 6l6 6-6 6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    pointer-events: none;
    z-index: 2;
  }
}

@media (max-width: 900px) {
  .why-card:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -8px;
    width: 18px;
    height: 18px;
    transform: translate(-50%, 50%) rotate(90deg);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23D4AF37' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='M13 6l6 6-6 6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    pointer-events: none;
    z-index: 2;
  }
}

.why-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 800;
  color: var(--navy);
  min-width: 0;
}

.why-check {
  flex: none;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: var(--gold);
  box-shadow: inset 0 0 0 1.5px rgba(14, 34, 64, 0.1);
  position: relative;
}

.why-check::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 3px;
  width: 6px;
  height: 11px;
  border-right: 2.5px solid var(--navy);
  border-bottom: 2.5px solid var(--navy);
  transform: rotate(45deg);
}

.why-card p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

.paths {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.path-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 14px;
  padding: 28px 26px;
  position: relative;
}

.path-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: var(--red);
  border-radius: 14px 0 0 14px;
}

.path-card h3 {
  font-family: "Anton", sans-serif;
  font-size: 22px;
  color: var(--gold);
  letter-spacing: 0.04em;
  margin: 0 0 10px;
}

.path-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
}

.format-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
}

.format-box {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.format-box .head {
  background: var(--navy);
  color: var(--gold);
  padding: 14px 20px;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.format-box ul {
  list-style: none;
  margin: 0;
  padding: 18px 22px;
}

.format-box li {
  padding: 7px 0 7px 20px;
  position: relative;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
}

.format-box li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 1px;
}

.format-highlight {
  background: var(--white);
  border-radius: 14px;
  padding: 28px;
  border-left: 5px solid var(--gold);
  box-shadow: var(--shadow-md);
}

.format-highlight p {
  margin: 0 0 12px;
  font-size: 16px;
  line-height: 1.65;
}

.format-highlight p:last-child { margin-bottom: 0; }

/* ── Teams tabs ── */
.team-picker {
  position: sticky;
  top: 72px;
  z-index: 50;
  margin: 0 0 28px;
  padding: 12px 0 14px;
  background: var(--navy);
  box-shadow: 0 12px 28px rgba(8, 21, 48, 0.32);
  transition: top 0.28s ease;
}

.teams-block > .teams-stage {
  z-index: 1;
}

.teams-stage > .container {
  position: relative;
  z-index: 1;
}

.team-tabs-hint {
  margin: 0 0 10px;
  text-align: center;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.team-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 0;
}

.team-tab {
  appearance: none;
  border: 2px solid transparent;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-radius: 999px;
  padding: 8px 16px 8px 10px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.team-tab img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.team-tab.is-active {
  background: var(--white);
  color: var(--navy);
  border-color: var(--gold);
}

.team-panel { display: none; }
.team-panel.is-active { display: block; }

#team-storm { --team-texture: url("/assets/images/textures/storm.png"); }
#team-blaze { --team-texture: url("/assets/images/textures/blaze.png"); }
#team-frost { --team-texture: url("/assets/images/textures/frost.png"); }
#team-tide { --team-texture: url("/assets/images/textures/tide.png"); }
#team-gale { --team-texture: url("/assets/images/textures/gale.png"); }
#team-quake { --team-texture: url("/assets/images/textures/quake.png"); }

.team-panel-grid {
  display: grid;
  grid-template-columns: 1fr min(300px, 36%);
  gap: 18px;
  align-items: stretch;
  min-width: 0;
}

.team-panel-left {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
  min-height: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
}

.jersey-card,
.video-card,
.chant-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  overflow: hidden;
}

.team-panel-left .jersey-card,
.team-panel-left .chant-card {
  border: 0;
  border-radius: 0;
}

.jersey-card {
  position: relative;
  isolation: isolate;
  flex: 1.15 1 0;
  min-height: 0;
  overflow: hidden;
  background: var(--navy-dk);
}

.jersey-card-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  z-index: 0;
}

.jersey-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 8px;
  z-index: 2;
  pointer-events: none;
  background-color: var(--team-primary, var(--gold));
  background-image: var(--team-texture);
  background-repeat: repeat-x;
  background-size: 96px 96px;
  background-position: center;
}

.chant-card .panel-label {
  position: relative;
  z-index: 2;
  margin: 0 0 3px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1.1;
}

.video-card {
  position: relative;
  aspect-ratio: 9 / 16;
  width: 100%;
  display: flex;
  background: #000;
}

.team-hype {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hype-sound {
  position: absolute;
  left: 10px;
  bottom: 10px;
  z-index: 2;
  border: 0;
  border-radius: 999px;
  padding: 7px 12px;
  background: rgba(5, 9, 16, 0.72);
  color: var(--white);
  font-family: inherit;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.hype-sound[aria-pressed="true"] {
  background: var(--gold);
  color: var(--navy-dk);
}

.video-card .ph {
  min-height: 0;
  flex: 1;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 0;
}

.chant-card {
  flex: 1 1 0;
  margin-top: 0;
  min-width: 0;
  min-height: 0;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(100px, 30%) 1fr;
  align-items: stretch;
}

.chant-uniform {
  position: relative;
  min-height: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 18px 12px;
  background: var(--team-primary, var(--navy-dk));
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.chant-uniform.is-light {
  background: var(--navy-dk);
}

.chant-uniform img {
  width: min(82%, 148px);
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.35));
}

.chant-uniform .name {
  font-family: "Anton", sans-serif;
  font-size: clamp(15px, 2.2vw, 20px);
  letter-spacing: 0.1em;
  color: var(--white);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}

.chant-uniform.is-light .name {
  color: var(--white);
  text-shadow: none;
}

.chant-copy {
  padding: 12px 14px 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.chant-card .style-note {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
  margin: 0 0 8px;
  line-height: 1.25;
}

.chant-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 12px;
  padding: 5px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.chant-row:last-child { border-bottom: 0; padding-bottom: 0; }

.chant-row .who {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2px;
  line-height: 1.15;
}

.chant-row p {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

/* ── Uniforms ── */
.uniforms-split {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 28px;
  align-items: center;
}

.uniforms-photo {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--rule);
  background: var(--navy);
}

.uniforms-photo img {
  width: 100%;
  height: auto;
}

.uniforms-copy h3 {
  font-family: "Anton", sans-serif;
  font-size: 26px;
  color: var(--navy);
  margin: 0 0 12px;
}

.uniforms-copy p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 16px;
}

/* ── Merch ── */
.merch-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.merch-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.merch-card .ph {
  height: 180px;
  min-height: 0;
  border: 0;
  border-radius: 0;
  border-bottom: 1px solid var(--rule);
}

.merch-card-body {
  padding: 18px 16px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.merch-card h3 {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
}

.merch-price {
  font-family: "Anton", sans-serif;
  font-size: 22px;
  color: var(--red);
  margin: 0 0 12px;
}

.merch-card .cta-btn {
  width: 100%;
  text-align: center;
  margin-top: auto;
  font-size: 12px;
  padding: 12px 14px;
}

.shop-note {
  text-align: center;
  margin: 22px 0 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
}

/* ── Details / venue / steps ── */
.details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.detail-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 20px 18px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.detail-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--red);
}

.detail-card .label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

.detail-card .value {
  font-family: "Anton", sans-serif;
  font-size: 28px;
  color: var(--red);
  letter-spacing: 0.03em;
  line-height: 1.1;
  margin-bottom: 6px;
}

.detail-card .value--with-fee {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 10px;
}

.detail-card .value-fee-note {
  font-family: "Raleway", sans-serif;
  font-size: 12px;
  font-weight: 600;
  font-style: italic;
  color: var(--muted);
  letter-spacing: normal;
}

.detail-card .note {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}

.venue-block {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 28px;
  align-items: center;
  margin-top: 8px;
}

.venue-photo {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--rule);
}

.venue-photo img {
  width: 100%;
  height: auto;
}

.venue-copy h3 {
  font-family: "Anton", sans-serif;
  font-size: 26px;
  color: var(--navy);
  letter-spacing: 0.03em;
  margin: 0 0 10px;
  line-height: 1.1;
}

.venue-copy .address {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 6px;
  line-height: 1.5;
}

.venue-copy .field-name {
  font-size: 14px;
  color: var(--muted);
  font-weight: 600;
  margin: 0 0 16px;
}

.maps-link {
  display: inline-block;
  color: var(--red);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
}

.maps-link:hover { text-decoration: underline; }

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.step {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.step .num {
  background: var(--navy);
  color: var(--gold);
  font-family: "Anton", sans-serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  padding: 10px;
}

.step h3 {
  font-size: 15px;
  margin: 14px 12px 6px;
  color: var(--navy);
}

.step p {
  font-size: 13px;
  color: var(--muted);
  margin: 0 14px 18px;
  line-height: 1.5;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.team-tile {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--rule);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.team-tile .swatch {
  height: 88px;
  display: grid;
  place-items: center;
  background: var(--team-primary, var(--navy));
}

.team-tile .swatch.dual {
  background: linear-gradient(135deg, var(--team-primary) 50%, var(--team-accent) 50%);
}

.team-tile img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.25));
  margin: 0 auto;
}

.team-tile .name {
  font-family: "Anton", sans-serif;
  font-size: 15px;
  letter-spacing: 0.08em;
  color: var(--navy);
  padding: 10px 6px 4px;
}

.team-tile .colors {
  font-size: 11px;
  color: var(--muted);
  font-style: italic;
  padding-bottom: 12px;
}

/* ── FAQ accordion ── */
.faq-list {
  display: grid;
  gap: 10px;
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 12px;
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  padding: 16px 20px;
  font-weight: 800;
  color: var(--navy);
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  font-family: "Anton", sans-serif;
  color: var(--red);
  font-size: 22px;
  line-height: 1;
}

.faq-item[open] summary::after { content: "–"; }

.faq-item .faq-body {
  padding: 0 20px 18px;
  color: var(--muted);
  font-size: 15px;
}

.faq-item .faq-body p { margin: 0 0 10px; }
.faq-item .faq-body p:last-child { margin-bottom: 0; }
.faq-item a { color: var(--red); font-weight: 800; }

.faq-modal {
  width: min(760px, calc(100vw - 28px));
  max-height: min(88vh, 920px);
  margin: auto;
  padding: 0;
  border: 0;
  border-radius: 14px;
  background: var(--cream);
  color: var(--navy);
  box-shadow: 0 28px 80px rgba(5, 9, 16, 0.48);
}

.faq-modal::backdrop {
  background: rgba(8, 21, 48, 0.74);
}

.faq-modal-inner {
  position: relative;
  padding: 32px 32px 28px;
  overflow: auto;
  max-height: min(88vh, 920px);
}

.faq-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--navy);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.faq-modal-close:hover {
  background: rgba(14, 34, 64, 0.08);
}

.faq-modal-kicker {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
}

.faq-modal h2 {
  margin: 0 0 8px;
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.15;
}

.faq-modal-lead {
  margin: 0 0 22px;
  max-width: 52ch;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.faq-modal .faq-list {
  margin: 0;
}

.faq-modal-permalink {
  margin: 22px 0 0;
  padding-top: 16px;
  border-top: 1px solid rgba(14, 34, 64, 0.12);
  font-size: 14px;
}

.faq-modal-permalink a {
  color: var(--navy);
  font-weight: 800;
}

@media (max-width: 700px) {
  .faq-modal-inner { padding: 28px 20px 22px; }
}

/* ── Winter coming soon ── */
.coming-soon-panel {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 16px;
  padding: 40px 32px;
  box-shadow: var(--shadow-md);
}

.coming-soon-panel h2 { margin-bottom: 12px; }

.coming-soon-panel p {
  color: var(--muted);
  font-size: 16px;
  margin: 0 0 16px;
}

/* ── Footer ── */
footer {
  padding: 72px 0 40px;
  background: var(--navy-dk);
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  text-align: left;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px 32px;
  align-items: start;
  margin-bottom: 56px;
}

.foot-brand {
  display: inline-flex;
  margin: 0;
}

.foot-brand img {
  height: 144px;
  width: auto;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.35));
}

.foot-tag {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.45em;
  margin: 14px 0 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.foot-fromx {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 1;
}

.foot-fromx .fromx-logo {
  height: 13px;
  width: auto;
  display: block;
}

.foot-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.foot-label {
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.foot-col a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.foot-col a:hover,
.foot-col a.is-active { color: var(--gold); }

.foot-portal {
  align-self: flex-start;
  margin-top: 6px;
  background: var(--gold);
  color: var(--navy) !important;
  padding: 10px 18px;
  letter-spacing: 0.18em;
}

.foot-portal:hover {
  background: var(--white);
  color: var(--navy) !important;
}

.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 0;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.foot-copy {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 0.4em;
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.foot-copy a {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.foot-copy .fromx-logo {
  height: 1em;
  width: auto;
  display: block;
}

.foot-mantra {
  margin: 0 0 0 auto;
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(255, 255, 255, 0.88);
}

@media (max-width: 760px) {
  footer { padding: 48px 0 32px; }
  .foot-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px 20px;
    margin-bottom: 36px;
  }
  .foot-brand-col {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .foot-tag {
    justify-content: center;
  }
  .foot-col a {
    font-size: 10px;
    letter-spacing: 0.06em;
  }
  .foot-col a:not(.foot-portal) {
    white-space: nowrap;
  }
  .foot-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .foot-mantra { margin-left: 0; }
}

.preview-flag {
  position: fixed;
  bottom: 12px;
  left: 12px;
  z-index: 200;
  background: var(--gold);
  color: var(--navy);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 6px;
  box-shadow: var(--shadow-md);
  pointer-events: none;
}

@media (max-width: 900px) {
  .season-grid,
  .feature-grid,
  .why-grid,
  .details-grid,
  .format-split,
  .paths,
  .venue-block,
  .uniforms-split,
  .team-panel-grid,
  .roster-split { grid-template-columns: 1fr; }
  .video-card {
    width: 100%;
    justify-self: stretch;
  }
  .merch-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: repeat(3, 1fr); }

  .teams-stage {
    display: grid;
    grid-template-columns: 5.75rem minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    width: min(1100px, 92%);
    margin: 0 auto;
  }
  .teams-stage > .container {
    width: 100%;
  }
  .team-picker {
    position: sticky;
    top: var(--chrome-h, 101px);
    align-self: start;
    z-index: 50;
    margin: 0;
    padding: 0;
    background: transparent;
    box-shadow: none;
  }
  .team-picker .container {
    width: 100%;
    padding: 0;
  }
  .team-tabs-hint { display: none; }
  .team-tabs {
    position: relative;
    top: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 6px;
    overflow: hidden;
    padding: 8px 6px;
    border-radius: 0 0 14px 14px;
    background: rgba(8, 21, 48, 0.55);
    backdrop-filter: blur(18px) saturate(1.25);
    -webkit-backdrop-filter: blur(18px) saturate(1.25);
    box-shadow: 0 12px 28px rgba(8, 21, 48, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-top: 0;
  }
  .team-tab {
    flex-direction: column;
    justify-content: center;
    width: 100%;
    min-width: 0;
    padding: 8px 4px 7px;
    border-radius: 12px;
    font-size: 9px;
    letter-spacing: 0.04em;
    gap: 4px;
  }
  .team-tab img {
    width: 32px;
    height: 32px;
  }

  .team-panel-left {
    display: contents;
    overflow: visible;
    min-width: 0;
    min-height: auto;
  }
  .jersey-card {
    flex: none;
    min-height: 0;
    width: 100%;
    max-width: 100%;
    justify-self: stretch;
    align-self: stretch;
    aspect-ratio: 16 / 10;
  }
  .jersey-card-photo {
    max-width: none;
    width: 100%;
    height: 100%;
  }
  .jersey-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
      linear-gradient(180deg, transparent 42%, rgba(5, 9, 16, 0.5) 100%),
      color-mix(in srgb, var(--team-primary, var(--navy)) 48%, transparent);
  }
  .chant-card {
    display: none;
  }
}

@media (max-width: 600px) {
  .why-grid,
  .details-grid,
  .steps { grid-template-columns: 1fr; }
  .merch-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .hero { padding: 48px 0 56px; }
}

@media (prefers-reduced-motion: reduce) {
  .photo-strip { animation: none; }
  .cta-btn:hover,
  a.season-card:hover { transform: none; }
  .topbar,
  .site-chrome,
  .team-picker,
  .team-tabs { transition: none; }
}
