/* Fetching Fletchers — landing page
   Dark, cinematic, bold. Hurricane green + orange. */

@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --black: #06090a;
  --near-black: #0a1310;
  --charcoal: #101a15;
  --charcoal-light: #17241d;
  --green: #0f6b40;
  --green-bright: #1cc476;
  --green-deep: #083a23;
  --orange: #e96b2a;
  --orange-deep: #c8501a;
  --loss-red: #c94b3f;
  --white: #ffffff;
  --off-white: #f6f2ea;
  --text-muted: rgba(255, 255, 255, 0.68);
  --text-faint: rgba(255, 255, 255, 0.45);
  --border-dark: rgba(255, 255, 255, 0.12);

  --font-display: 'Archivo Black', sans-serif;
  --font-body: 'Manrope', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 64px; }

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { margin: 0 0 0.5em; line-height: 1.15; }
p { margin: 0 0 1em; }

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

.uc { text-transform: uppercase; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-watch {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 16px 34px -14px rgba(31, 138, 84, 0.65);
}
.btn-watch:hover { background: var(--green-bright); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255, 255, 255, 0.08); }

.btn-orange {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 16px 34px -14px rgba(233, 107, 42, 0.6);
}
.btn-orange:hover { background: var(--orange-deep); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  background:
    radial-gradient(ellipse 900px 500px at 15% 30%, rgba(31, 138, 84, 0.35), transparent 60%),
    radial-gradient(ellipse 800px 600px at 85% 20%, rgba(233, 107, 42, 0.22), transparent 55%),
    radial-gradient(ellipse 1000px 700px at 50% 100%, rgba(13, 59, 46, 0.55), transparent 60%),
    linear-gradient(180deg, #0a1712 0%, #08110d 45%, #050807 100%);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(115deg, rgba(255,255,255,0.02) 0px, rgba(255,255,255,0.02) 1px, transparent 1px, transparent 90px);
  pointer-events: none;
  z-index: 1;
}
.hero-vignette-top {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 260px;
  background: linear-gradient(180deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 100%);
  pointer-events: none;
  z-index: 1;
}
.hero-vignette-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 320px;
  background: linear-gradient(0deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 100%);
  pointer-events: none;
  z-index: 1;
}

.wordmark {
  display: block;
  justify-self: start;
}
.wordmark-logo {
  height: 56px;
  width: auto;
  max-width: none;
  display: block;
}
/* Header logo scales up without affecting the header's own height:
   the anchor keeps its original 56px footprint (so the grid row/header
   size is unchanged), while the image inside is absolutely positioned,
   scaled to 140px (2.5x), and vertically centered so it overflows evenly
   above and below without pushing the header taller. */
.site-header .wordmark {
  position: relative;
  height: 56px;
  width: 43.265625px;
}
.site-header .wordmark-logo {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 140px;
  width: auto;
}

.playmaker-logo-big {
  height: 176px;
  width: auto;
  display: block;
}

/* ---------- Site header (logo left / nav center / social right) ---------- */
.site-header {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  column-gap: 20px;
  padding: 28px 32px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  justify-self: center;
}

.header-social {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-self: end;
}

.hero-mid {
  position: relative;
  z-index: 3;
  padding: 0 32px;
  margin-top: auto;
  margin-bottom: 100px;
}
.hero-mid-inner { max-width: 900px; margin: 0 auto; text-align: center; }

.hero-presented-by {
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8.3vw, 7.1rem);
  line-height: 0.98;
  color: var(--white);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
.hero-title .hl-2 { color: var(--green-bright); }

.hero-meta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 32px;
  padding: 12px 26px;
  border: 1.5px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  transition: background 0.2s ease, border-color 0.2s ease;
}
.hero-meta:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.5);
}
.hero-meta .divider { color: var(--text-faint); }
.hero-meta .platform {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--white);
  letter-spacing: 0;
}
.hero-mid .btn-watch { font-size: 1.06rem; }

/* ---------- Hero sign-up widget ---------- */
.hero-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.signup-widget { display: inline-flex; align-items: center; }

.hero-mid .signup-trigger,
.hero-mid .signup-thanks { font-size: 1.06rem; }

.signup-widget[data-state="button"] .signup-form,
.signup-widget[data-state="button"] .signup-thanks { display: none; }
.signup-widget[data-state="form"] .signup-trigger,
.signup-widget[data-state="form"] .signup-thanks { display: none; }
.signup-widget[data-state="done"] .signup-trigger,
.signup-widget[data-state="done"] .signup-form { display: none; }

.signup-hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

.signup-form {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  padding: 5px 5px 5px 22px;
  animation: signupIn 0.25s ease;
}
.signup-input {
  background: transparent;
  border: none;
  outline: none;
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  min-width: 180px;
}
.signup-input::placeholder { color: var(--text-faint); }
.signup-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--green);
  border: none;
  color: var(--white);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.signup-submit:hover { background: var(--green-bright); transform: translateY(-1px); }

.signup-thanks {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 999px;
  background: rgba(47, 174, 112, 0.14);
  border: 2px solid var(--green-bright);
  color: var(--white);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  animation: signupIn 0.25s ease;
}
.signup-thanks svg { color: var(--green-bright); flex-shrink: 0; }

@keyframes signupIn {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}

@media (max-width: 480px) {
  .signup-input { min-width: 130px; }
}

/* ---------- Sticky site head (interior pages) ---------- */
.site-head {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--black);
  border-bottom: 1px solid var(--border-dark);
}

.page-main { min-height: calc(100svh - 85px); }
.page-main.fit-content { min-height: auto; }

.page-title-row { padding: 44px 0 36px; }
.page-title-row .eyebrow-tag { margin-bottom: 14px; }
.page-title-row h1 { margin-bottom: 10px; }
.page-lede { color: var(--text-muted); font-size: 1.02rem; max-width: 640px; margin: 0; }

.compact-section { padding-bottom: 72px; }

/* ---------- Nav links (used in header-nav) ---------- */
.tab-link {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.tab-link:hover { color: var(--white); }
.tab-link.active { color: var(--white); border-color: var(--orange); }

/* ---------- Sections ---------- */
.section { padding: 110px 0; scroll-margin-top: 64px; }
.section.charcoal { background: var(--near-black); }
.section.deep { background: var(--green-deep); }
.section.black { background: var(--black); }

.eyebrow-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--orange);
  margin-bottom: 18px;
}
.eyebrow-tag::before {
  content: '';
  width: 22px; height: 2px;
  background: var(--orange);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  color: var(--white);
  letter-spacing: -0.01em;
}

.section-head { max-width: 680px; margin-bottom: 40px; }
.section-head p { color: var(--text-muted); font-size: 1.05rem; margin: 0; }

/* ---------- Stat grid ---------- */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-dark);
  border: 1px solid var(--border-dark);
  margin-bottom: 44px;
}
.stat-card {
  background: var(--near-black);
  padding: 26px 24px;
  text-align: center;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--green-bright);
  margin-bottom: 10px;
}
.stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* ---------- Route list ---------- */
.route-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.route-step {
  border-top: 3px solid var(--orange);
  padding-top: 20px;
}
.route-step .step-num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--orange);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.route-step h4 {
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 10px;
}
.route-step p { color: var(--text-muted); font-size: 0.92rem; margin: 0; }

/* ---------- Two col ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.two-col p { color: var(--text-muted); font-size: 1.02rem; }

.rv-art.banner { aspect-ratio: 21/6; }

.rv-art {
  aspect-ratio: 16/11;
  border-radius: 4px;
  border: 1px solid var(--border-dark);
  background:
    radial-gradient(ellipse at 30% 20%, rgba(233,107,42,0.25), transparent 55%),
    radial-gradient(ellipse at 75% 80%, rgba(31,138,84,0.3), transparent 55%),
    var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- Bio grid ---------- */
.bio-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 380px));
  justify-content: center;
  gap: 40px 40px;
  align-items: start;
}
.bio-card { display: flex; flex-direction: column; }

.bio-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  overflow: hidden;
  background: var(--charcoal);
}
.bio-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bio-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 42%, rgba(0,0,0,0.88) 100%);
  pointer-events: none;
}
.bio-photo-overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 20px 22px;
}
.bio-photo-overlay h3 { font-size: 1.35rem; color: var(--white); margin-bottom: 6px; }
.bio-role {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}

.bio-desc { margin-top: 18px; color: var(--text-muted); font-size: 0.92rem; line-height: 1.55; }

@media (min-width: 901px) {
  .bio-card:nth-child(1) { margin-top: 0; }
  .bio-card:nth-child(2) { margin-top: 90px; }
  .bio-grid { margin-bottom: 56px; }
}

.guest-note {
  text-align: center;
  padding-top: 36px;
  border-top: 1px solid var(--border-dark);
}
.guest-note p { color: var(--text-faint); margin: 0; font-size: 0.95rem; font-style: italic; }

/* ---------- Watch layout ---------- */
.watch-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
  align-items: start;
}

.featured-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.03) 0px, rgba(255,255,255,0.03) 10px, transparent 10px, transparent 20px),
    var(--charcoal);
  border: 1px solid var(--border-dark);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.featured-thumb-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.featured-thumb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 8, 7, 0.32);
  border-radius: 4px;
}
.play-btn {
  position: relative;
  z-index: 1;
  width: 76px; height: 76px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background 0.2s ease;
}
.play-btn svg { margin-left: 4px; }
.featured-thumb:hover .play-btn { transform: scale(1.08); background: rgba(255, 255, 255, 0.14); }
.featured-body { margin-top: 20px; }
.featured-body h2 { font-family: var(--font-display); font-size: 1.6rem; color: var(--white); margin-bottom: 6px; }
.featured-body p { color: var(--text-faint); font-size: 0.92rem; margin: 0; }

.two-col.story-layout { grid-template-columns: 1fr 280px; align-items: start; }

.tiktok-col { display: block; }

.tiktok-embed-wrap {
  border: 1px solid var(--border-dark);
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  background: var(--charcoal);
}
.tiktok-embed-wrap iframe { width: 100%; height: 100%; border: none; display: block; }

.tiktok-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 12px;
}
.tiktok-caption span { font-size: 0.82rem; color: var(--text-faint); }
.tiktok-caption a { font-size: 0.78rem; font-weight: 700; color: var(--orange); white-space: nowrap; }
.tiktok-caption a:hover { color: var(--orange-deep); }

.about-copy p { color: var(--text-muted); font-size: 1.31rem; line-height: 1.87; margin-bottom: 1em; }
.about-copy p:last-child { margin-bottom: 0; }

.compact-section.tight { padding-bottom: 20px; }
.page-title-row.compact { padding: 28px 0 24px; }

.episode-tag {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.episode-list { display: flex; flex-direction: column; gap: 14px; }
.episode-row {
  display: flex;
  gap: 12px;
  padding: 6px;
  border-radius: 4px;
  transition: background 0.2s ease;
}
.episode-row:hover { background: var(--charcoal); }
.episode-row-thumb {
  flex: 0 0 140px;
  aspect-ratio: 16 / 9;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.03) 0px, rgba(255,255,255,0.03) 10px, transparent 10px, transparent 20px),
    var(--charcoal);
  border: 1px solid var(--border-dark);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-faint);
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.04em;
  overflow: hidden;
}
.episode-row-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.episode-row-body { flex: 1; min-width: 0; padding-top: 2px; }
.episode-row-body .episode-tag { font-size: 0.66rem; margin-bottom: 4px; }
.episode-row-body h4 { font-size: 0.92rem; font-weight: 700; color: var(--white); margin: 0 0 3px; }
.episode-row-body p { font-size: 0.8rem; color: var(--text-faint); margin: 0; }

/* ---------- Press doc ---------- */
.press-doc {
  background: var(--off-white);
  color: var(--black);
  border-radius: 4px;
  padding: 44px 52px;
}
.press-doc .dateline {
  color: var(--orange-deep);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.press-doc h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--green-deep);
  line-height: 1.25;
  margin-bottom: 26px;
}
.press-doc p { color: #2a2a26; font-size: 1rem; }
.press-doc .press-quote {
  border-left: 3px solid var(--orange);
  padding-left: 20px;
  font-style: italic;
  color: var(--green-deep);
  font-weight: 700;
  font-size: 1.05rem;
  margin: 28px 0;
}
.press-contact {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(0,0,0,0.12);
  font-size: 0.9rem;
  color: #55524a;
}
.press-contact a { color: var(--orange-deep); font-weight: 700; }

.news-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
  align-items: start;
}

.news-side { display: flex; flex-direction: column; gap: 18px; }

.press-mentions-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.press-clipping {
  display: flex;
  flex-direction: column;
  background: var(--off-white);
  border-radius: 2px;
  padding: 20px 22px 18px;
  box-shadow: 0 14px 26px -18px rgba(0, 0, 0, 0.6);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.press-clipping:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 30px -16px rgba(0, 0, 0, 0.65);
}
.press-clipping-outlet {
  font-family: var(--font-body);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #55524a;
  padding-bottom: 10px;
  margin-bottom: 12px;
  border-top: 3px double #2a2a26;
  border-bottom: 1px solid rgba(0, 0, 0, 0.18);
  padding-top: 8px;
}
.press-clipping-headline {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.32;
  color: #1a1a17;
}
.press-clipping-read {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--orange-deep);
  margin-top: 14px;
}

/* ---------- Contact ---------- */
.contact-single {
  max-width: 460px;
  margin: 0 auto;
  padding: 56px 40px;
  text-align: center;
  background: var(--near-black);
  border: 1px solid var(--border-dark);
  border-radius: 8px;
}
.contact-single-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(47, 174, 112, 0.12);
  color: var(--green-bright);
}
.contact-single-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 12px;
}
.contact-single-email {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  white-space: nowrap;
  color: var(--white);
  border-bottom: 2px solid var(--orange);
  padding-bottom: 5px;
  margin-bottom: 16px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.contact-single-email:hover { color: var(--orange); border-color: var(--orange-deep); }
.contact-single p { color: var(--text-muted); font-size: 0.92rem; margin: 0; }

/* ---------- Sponsors ---------- */
.sponsor-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 44px;
  align-items: start;
  background: var(--near-black);
  border: 1px solid var(--border-dark);
  border-radius: 4px;
  padding: 44px;
}
.sponsor-gallery {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sponsor-gallery img {
  display: block;
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 4px;
  background: var(--charcoal);
}
.sponsor-body h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.4vw, 1.9rem);
  color: var(--white);
  margin-bottom: 14px;
}
.sponsor-body p { color: var(--text-muted); font-size: 1rem; line-height: 1.6; margin-bottom: 12px; }
.sponsor-body p:last-of-type { margin-bottom: 22px; }
.sponsor-links { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.sponsor-social-row { display: flex; gap: 10px; }

@media (max-width: 700px) {
  .sponsor-card { grid-template-columns: 1fr; padding: 32px; }
  .sponsor-gallery { flex-direction: row; }
  .sponsor-gallery img { width: 100% !important; height: auto !important; aspect-ratio: 1; }
}

/* ---------- Tracker ---------- */
.tracker-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 28px;
  align-items: start;
}

.tracker-card {
  background: var(--near-black);
  border: 1px solid var(--border-dark);
  border-radius: 4px;
  padding: 20px;
}
.tracker-map { width: 100%; height: auto; display: block; }

.state {
  fill: rgba(31, 138, 84, 0.12);
  stroke: rgba(255, 255, 255, 0.2);
  stroke-width: 1;
  stroke-linejoin: round;
  transition: fill 0.2s ease;
}

.route-path {
  fill: none;
  stroke: var(--orange);
  stroke-width: 2;
  stroke-dasharray: 7 9;
  stroke-linecap: round;
  opacity: 0.6;
}

.route-path-active {
  fill: none;
  stroke: var(--orange);
  stroke-width: 3;
  stroke-dasharray: 8 6;
  stroke-linecap: round;
  opacity: 1;
  filter: drop-shadow(0 0 4px rgba(233, 107, 42, 0.7));
  animation: route-flow 1.1s linear infinite;
}
@keyframes route-flow { to { stroke-dashoffset: -28; } }

.wp-ring { fill: none; }
.wp-home .wp-ring { stroke: var(--green-bright); stroke-width: 2; }
.wp-home .wp-dot { fill: var(--green-bright); }
.wp-stop .wp-ring { stroke: var(--text-faint); stroke-width: 1.5; }
.wp-stop .wp-dot { fill: var(--near-black); stroke: var(--text-muted); stroke-width: 1.5; }
.wp-stop.status-win .wp-ring { stroke: var(--green-bright); stroke-width: 2; }
.wp-stop.status-win .wp-dot { fill: var(--green-bright); stroke: none; }
.wp-stop.status-loss .wp-ring { stroke: var(--loss-red); stroke-width: 2; }
.wp-stop.status-loss .wp-dot { fill: var(--loss-red); stroke: none; }
.wp-stop.status-live .wp-ring { stroke: var(--orange); stroke-width: 2; }
.wp-stop.status-live .wp-dot { fill: var(--orange); stroke: none; }
.wp-label {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.06em;
  fill: var(--white);
  text-transform: uppercase;
  paint-order: stroke;
  stroke: var(--black);
  stroke-width: 4px;
  stroke-linejoin: round;
}
.wp-sublabel {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 10px;
  fill: var(--text-faint);
  paint-order: stroke;
  stroke: var(--black);
  stroke-width: 3px;
  stroke-linejoin: round;
}

.travel-marker .marker-glow { fill: var(--orange); opacity: 0.25; }
.travel-marker .marker-rv { filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.6)); }
@keyframes marker-pulse {
  0%, 100% { r: 18; opacity: 0.28; }
  50% { r: 23; opacity: 0.08; }
}
.travel-marker .marker-glow { animation: marker-pulse 1.8s ease-in-out infinite; }

.tracker-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin: 18px 0 14px;
}
.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
}
.legend-swatch { width: 11px; height: 11px; border-radius: 50%; flex-shrink: 0; }
.legend-swatch.home { background: var(--green-bright); }
.legend-swatch.stop { background: transparent; border: 1.5px solid var(--text-muted); }
.legend-swatch.win { background: var(--green-bright); }
.legend-swatch.loss { background: var(--loss-red); }
.legend-swatch.live { background: var(--orange); box-shadow: 0 0 0 4px rgba(233, 107, 42, 0.2); }

.tracker-note { color: var(--text-faint); font-size: 0.86rem; margin: 0; }

.en-route-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: rgba(233, 107, 42, 0.1);
  border: 1.5px solid rgba(233, 107, 42, 0.4);
  color: var(--orange);
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.en-route-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(233, 107, 42, 0.22);
  animation: live-dot-pulse 1.8s ease-in-out infinite;
}

/* ---------- Season schedule (sidebar) ---------- */
.sched-list {
  background: var(--near-black);
  border: 1px solid var(--border-dark);
  border-radius: 4px;
  overflow: hidden;
}
.sched-side-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  transition: background 0.2s ease;
}
.sched-side-row + .sched-side-row { border-top: 1px solid var(--border-dark); }
.sched-side-row:hover { background: var(--charcoal); }
.sched-side-row.status-win { background: rgba(47, 174, 112, 0.07); }
.sched-side-row.status-loss { background: rgba(201, 75, 63, 0.07); }
.sched-side-row.status-live { background: rgba(233, 107, 42, 0.09); }

.team-badge {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.54rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.01em;
  flex-shrink: 0;
}

.sched-side-info { flex: 1; min-width: 0; }
.sched-side-name { font-size: 0.85rem; font-weight: 700; color: var(--white); margin-bottom: 2px; }
.sched-side-name .opp-vs { color: var(--text-faint); font-weight: 600; margin-right: 4px; }
.sched-side-sub { font-size: 0.72rem; color: var(--text-faint); line-height: 1.4; }

.status-dot {
  width: 18px; height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--text-faint);
}
.status-win { background: var(--green-bright); border-color: var(--green-bright); }
.status-loss { background: var(--loss-red); border-color: var(--loss-red); }
.status-live {
  background: var(--orange);
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(233, 107, 42, 0.22);
  animation: live-dot-pulse 1.8s ease-in-out infinite;
}
@keyframes live-dot-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(233, 107, 42, 0.22); }
  50% { box-shadow: 0 0 0 7px rgba(233, 107, 42, 0.06); }
}
.status-dot svg { display: none; }
.status-win .icon-check, .status-loss .icon-loss { display: block; }

@media (max-width: 900px) {
  .tracker-layout { grid-template-columns: 1fr; }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--black);
  border-top: 1px solid var(--border-dark);
  padding: 28px 0;
}
.footer-simple {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  column-gap: 16px;
}
/* Same overflow trick as the header: each logo's wrapper keeps a fixed
   56px-tall footprint (so the footer row height matches the header's),
   while the actual logo image is absolutely positioned and centered on
   that footprint at full size, overflowing above/below without changing
   the footer's height. */
.footer-simple .wordmark {
  position: relative;
  justify-self: start;
  height: 56px;
  width: 43.265625px;
}
.wordmark.small .wordmark-logo {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 153.6px;
}
.pm-logo-wrap {
  position: relative;
  justify-self: center;
  height: 56px;
  width: 98px;
}
.pm-logo-wrap .playmaker-logo-big {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: none;
  height: 130px;
}
.wordmark.small { font-size: 0.85rem; }
.footer-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-self: end;
  gap: 4px;
  font-size: 0.8rem;
  color: var(--text-faint);
  text-align: right;
}

/* ---------- Social icons (header + footer) ---------- */
.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.social-icon:hover { border-color: var(--green-bright); color: var(--white); transform: translateY(-2px); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .route-grid { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .two-col.story-layout { grid-template-columns: 1fr; }
  .tiktok-col { max-width: 280px; margin: 0 auto; }
  .bio-grid { grid-template-columns: 1fr; }
  .watch-layout { grid-template-columns: 1fr; }
  .episode-list { flex-direction: row; overflow-x: auto; gap: 12px; }
  .episode-row { flex-direction: column; flex: 0 0 200px; }
  .episode-row-thumb { flex-basis: auto; width: 100%; }
  .contact-grid { grid-template-columns: 1fr; }
  .press-doc { padding: 36px; }
  .hero-mid { padding: 0 24px; margin-bottom: 72px; }
  .site-header {
    grid-template-columns: 1fr;
    justify-items: center;
    row-gap: 16px;
    padding: 20px 24px;
  }
  .wordmark { justify-self: center; text-align: center; }
  .header-nav { justify-self: center; overflow-x: auto; max-width: 100%; gap: 24px; }
  .header-social { justify-self: center; }
}
@media (max-width: 560px) {
  .section { padding: 72px 0; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .header-nav { gap: 18px; }
  .contact-single { padding: 40px 16px; }
  .contact-single-email { font-size: 0.85rem; }
}
@media (max-width: 400px) {
  .contact-single { padding: 32px 12px; }
  .contact-single-email { font-size: 0.75rem; }
}
@media (max-width: 700px) {
  .footer-simple { grid-template-columns: 1fr; row-gap: 20px; justify-items: center; }
  .footer-simple .wordmark { justify-self: center; text-align: center; }
  .footer-copy { justify-self: center; align-items: center; text-align: center; }
  .news-layout { grid-template-columns: 1fr; }
}
