*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #070d1c;
  --bg2: #0b1325;
  --blue-dark: #0e1b38;
  --blue-mid: #1b3671;
  --red: #f63e4e;
  --blue: #3364d1;
  --white: #ffffff;
  --white80: rgba(255, 255, 255, 0.8);
  --white60: rgba(255, 255, 255, 0.6);
  --white40: rgba(255, 255, 255, 0.4);
  --white20: rgba(255, 255, 255, 0.2);
  --white10: rgba(255, 255, 255, 0.1);
  --white05: rgba(255, 255, 255, 0.05);
  --gray-med: #c2c2c2;
  --black: #000;
  --rowi-low: #34c759;
  --rowi-med: #ff9f0a;
  --rowi-high: #f63e4e;
  --rowi-calc: #8e8e93;
  --focus-ring: #f63e4e;
  --focus-ring-on-dark: #ffffff;
  --radius: 12px;
  --radius-cta: 35px;
  --container: 1996px;
  --content-max: 1326px;
  --font: 'proxima-nova', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  --font-display: "FWC26", sans-serif;

  /* Fluid viewport: 320px → 1920px (design caps at 1996px container) */
  --vp-min: 20rem;
  --vp-max: 120rem;
  --vp-range: 100rem;
  --fluid: ((100vw - var(--vp-min)) / var(--vp-range));

  --section-pad: clamp(3rem, calc(3rem + 3rem * var(--fluid)), 6rem);
  --pad-gutter: clamp(1rem, calc(1rem + 1rem * var(--fluid)), 2rem);
  --pad-panel: clamp(1.5rem, calc(1.5rem + 1.5rem * var(--fluid)), 3rem);
  --radius-blob: clamp(3.75rem, calc(3.75rem + 17rem * var(--fluid)), 20.75rem);
  --radius-blob-alt: clamp(6.25rem, calc(6.25rem + 12.5rem * var(--fluid)), 18.75rem);

  /* Typography — fluid min @ 320px, max @ 1920px */
  --type-11: 0.6875rem;
  --type-12: 0.75rem;
  --type-13: 0.8125rem;
  --type-16: clamp(1rem, calc(1rem + 0rem * var(--fluid)), 1rem);
  --type-17: clamp(1.1rem, calc(1.1rem + 0.1rem * var(--fluid)), 1.2rem);
  --type-18: clamp(1.125rem, calc(1.125rem + 0.375rem * var(--fluid)), 1.5rem);
  --type-20: clamp(1.25rem, calc(1.25rem + 1.25rem * var(--fluid)), 2.5rem);
  --type-24: clamp(1.5rem, calc(1.5rem + 0.25rem * var(--fluid)), 1.75rem);
  --type-30: clamp(1.875rem, calc(1.875rem + 1.125rem * var(--fluid)), 3rem);
  --type-36: clamp(1.875rem, calc(1.875rem + 0.375rem * var(--fluid)), 2.25rem);
  --type-40: clamp(2.5rem, calc(2.5rem + 5.375rem * var(--fluid)), 7.875rem);
  --type-44: clamp(2.75rem, calc(2.75rem + 0.5rem * var(--fluid)), 3.25rem);
  --type-48: clamp(1.5rem, calc(1.5rem + 1.5rem * var(--fluid)), 3rem);
  --type-126: var(--type-40);

  /* Semantic aliases */
  --type-xs: var(--type-11);
  --type-sm: var(--type-12);
  --type-md: var(--type-16);
  --type-lg: var(--type-18);
  --type-xl: var(--type-24);
  --type-2xl: var(--type-30);
  --type-3xl: var(--type-40);
  --type-4xl: var(--type-44);
  --type-5xl: var(--type-48);

  /* Letter-spacing */
  --tracking-display: -0.00631rem;
  --tracking-display-lg: clamp(-0.00631rem, calc(-0.00631rem + -0.02494rem * var(--fluid)), -0.03125rem);
  --tracking-display-em: -0.03em;
  --tracking-body: -0.01563rem;
  --tracking-body-em: -0.015em;
  --tracking-eyebrow: 0.12963rem;
  --tracking-eyebrow-wide: 0.13em;
  --tracking-label: 0.04em;
  --tracking-caps: 0.08em;
  --tracking-caps-wide: 0.1em;
  --tracking-tab: 0.06em;
  --tracking-nudge: -0.5px;

  /* Line-height (paired with fluid type) */
  --leading-18: clamp(1.5rem, calc(1.5rem + 0.125rem * var(--fluid)), 1.625rem);
  --leading-30: clamp(1.9375rem, calc(1.9375rem + 1.0925rem * var(--fluid)), 3.03rem);
  --leading-40: clamp(2.6875rem, calc(2.6875rem + 4.8125rem * var(--fluid)), 7.5rem);
  --leading-48: clamp(2.5rem, calc(2.5rem + 0.53rem * var(--fluid)), 3.03rem);
  --leading-126: var(--leading-40);
  --leading-tight: 1.1;
  --leading-body: 1.5;
  --leading-relaxed: 1.6;
  --leading-meta: 1.38;
  --leading-12: 1.1875rem;
  --tracking-card: -0.25px;
  --tracking-tight-em: -0.01em;

  /* Surfaces */
  --overlay-dark: rgba(7, 13, 28, 0.5);
  --surface-blur: blur(25px);

  /* Full-bleed scroll tracks — align start/end with content column */
  --bleed-gutter: var(--pad-gutter);
  --bleed-align: max(0px, (100vw - var(--content-max)) / 2);
  --bleed-inset: calc(var(--bleed-align) + var(--bleed-gutter));
  --bleed-inset-flush: var(--bleed-align);
  /* Breakout from a padded .content-wrap parent back to viewport edges */
  --bleed-breakout: calc(var(--bleed-align) + var(--bleed-gutter));

  /* Quote block — fluid through 1920px */
  --quote-radius: var(--radius-blob);
  --quote-inner-max: clamp(20rem, calc(20rem + 43.625rem * var(--fluid)), 63.625rem);
  --quote-copy-max: clamp(18rem, calc(18rem + 34.5rem * var(--fluid)), 52.5rem);
  --quote-pad-block: clamp(3.03rem, calc(3.03rem + 4.97rem * var(--fluid)), 8rem);
  --quote-pad-inline: clamp(1rem, calc(1rem + 19.94rem * var(--fluid)), 20.94rem);

  /* Imagery & hero blobs */
  --hero-logo-h: clamp(1.5rem, calc(1.5rem + 1.125rem * var(--fluid)), 2.625rem);
  --hero-logo-w: clamp(8.4375rem, calc(8.4375rem + 6.3125rem * var(--fluid)), 14.75rem);
  --hero-blob-pad-y: clamp(2.5625rem, calc(2.5625rem + 5.3125rem * var(--fluid)), 7.875rem);
  --hero-blob-pad-x: clamp(1rem, calc(1rem + 9.625rem * var(--fluid)), 10.625rem);
  --hero-blob-pad-bottom: clamp(2.9375rem, calc(2.9375rem + 9.4375rem * var(--fluid)), 12.375rem);
  --hero-sonny-w: clamp(15.014rem, calc(15.014rem + 59.157rem * var(--fluid)), 74.171rem);
  --hero-sonny-h: clamp(14.625rem, calc(14.625rem + 57.625rem * var(--fluid)), 72.25rem);
  /* Hero Sonny — intermediate 600px → 1280px uses left bleed into desktop anchor */
  --hero-pad-bottom: clamp(12rem, calc(24.56rem - 12.56rem * var(--fluid)), 24.56rem);
  --wwm-sonny-w: clamp(23.5625rem, calc(23.5625rem + 32.6875rem * var(--fluid)), 56.25rem);
  --wwm-sonny-right: clamp(-10rem, calc(-10rem + 12rem * ((100vw - 61.875rem) / 58.125rem)), 2rem);
  --wwm-rain-deco-w: clamp(12.5rem, calc(12.5rem + 49rem * var(--fluid)), 61.5rem);
  --wwm-rain-deco-h: clamp(7.0625rem, calc(7.0625rem + 27.875rem * var(--fluid)), 34.9375rem);
  --wwm-rain-deco-left: clamp(-2.375rem, calc(0rem - 2.375rem * var(--fluid)), 0rem);
  --wwm-rain-deco-bottom: clamp(-0.96925rem, calc(0rem - 0.96925rem * var(--fluid)), 0rem);
  --wwm-heat-deco-w: clamp(12.5rem, calc(12.5rem + 25.875rem * var(--fluid)), 38.375rem);
  --wwm-heat-deco-h: clamp(10.375rem, calc(10.375rem + 21.5625rem * var(--fluid)), 31.9375rem);
  --wwm-heat-deco-right: clamp(0rem, calc(0rem + 2.75rem * var(--fluid)), 2.75rem);
  --wwm-heat-deco-bottom: clamp(0rem, calc(0rem + 0.20606rem * var(--fluid)), 0.20606rem);
  --wwm-wind-deco-w: clamp(13.9375rem, calc(13.9375rem + 38.46781rem * var(--fluid)), 52.40531rem);
  --wwm-wind-deco-h: clamp(7.25rem, calc(7.25rem + 20rem * var(--fluid)), 27.25rem);
  --wwm-wind-deco-left: clamp(-4.75rem, calc(-4.75rem + 2.45362rem * var(--fluid)), -2.29638rem);
  --wwm-wind-deco-bottom: clamp(-3.973rem, calc(-2.75rem - 1.223rem * var(--fluid)), -2.75rem);
  --stadiums-sonny-w: clamp(18.75rem, calc(18.75rem + 36.25rem * var(--fluid)), 55rem);
  --stadiums-sonny-right: clamp(-4rem, calc(-4rem + 14rem * ((100vw - 61.875rem) / 58.125rem)), 10rem);
  --quote-photo-w: clamp(18.125rem, calc(18.125rem + 22.75rem * var(--fluid)), 40.875rem);
  --quote-photo-h: clamp(15rem, calc(15rem + 25.125rem * var(--fluid)), 40.125rem);
  --app-phone-w: clamp(18.92044rem, calc(18.92044rem + 15.45456rem * var(--fluid)), 34.375rem);
  --app-phone-h: clamp(19.63525rem, calc(19.63525rem + 10.67725rem * var(--fluid)), 30.3125rem);
  --fox-phone-w: clamp(17.1875rem, calc(17.1875rem + 0rem * var(--fluid)), 17.1875rem);
  --fox-phone-h: clamp(15.15625rem, calc(15.15625rem + 0rem * var(--fluid)), 15.15625rem);
  --date-toggle-w: clamp(4.5rem, calc(4.5rem + 0.75rem * var(--fluid)), 5.25rem);
  --fmc-flag: clamp(3.5rem, calc(3.5rem + 0.5rem * var(--fluid)), 3.5rem);
}

/* Large layout — structural changes at 990px (fluid type/spacing still caps at 1920px; container: 1996px) */

/* ─── Foundation ─────────────────────────────── */
@font-face {
  font-family: "FWC26";
  src: url("fonts/FWC26-NormalBlack.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* FWC26 display headlines (single weight — do not use for 400–800) */
:is(
  .hero-blob-title,
  .btn-cta,
  #schedule .section-header .section-title,
  .active-date-label,
  .featured-matchups-label,
  .wwm-hero-title,
  .wwm-panel-title,
  .tab-pill--lg,
  .quote-text,
  .stadiums-hero-title,
  .stadiums-map-title,
  .app-promo-title
) {
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: var(--tracking-display);
  text-transform: uppercase;
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

:focus {
  outline: none;
}

:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 2px;
}

:is(.wwm-control-btn, #map-container):focus-visible {
  outline-color: var(--focus-ring-on-dark);
}

body {
  font-family: var(--font);
  background: #f3f3f3;
  color: var(--white);
  overflow-x: hidden;
  min-width: 320px;
}

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

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

::selection {
  background: var(--red);
  color: var(--white);
}
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: var(--red);
  border-radius: 3px;
}
/* ─── Global layout & typography ─────────────── */
.container {
  max-width: var(--container);
  margin-inline: auto;
  position: relative;
  z-index: 4;
}
.section-eyebrow {
  font-size: var(--type-12);
  font-weight: 800;
  line-height: normal;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.5rem;
}
.section-subtitle {
  font-size: var(--type-17);
  color: var(--white60);
  max-width: clamp(18rem, calc(18rem + 24.5rem * var(--fluid)), 42.5rem);
  line-height: var(--leading-relaxed);
}
.section-title {
  font-size: var(--type-44);
  font-weight: 800;
  line-height: var(--leading-tight);
  margin-bottom: clamp(0.75rem, calc(0.75rem + 0.25rem * var(--fluid)), 1rem);
}

/* Horizontal scroll container — pair with a component class for layout overrides */
.scroll-track {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scroll-padding-block: 0;
  scroll-padding-inline: var(--pad-gutter);
  scrollbar-width: none;

  &::-webkit-scrollbar {
    display: none;
  }
}

/*
 * Full-bleed tracks: extend to viewport from centered parent, then pad to match
 * in-column siblings (filter-tabs, active-date-label). Parent-relative breakout
 * avoids 100vw + calc(50% - 50vw) drift inside nested .content-wrap.
 */
:is(#schedule .date-toggles-row, #schedule .games-carousel, #schedule .featured-matchups-grid) {
  width: calc(100% + 2 * var(--bleed-breakout));
  max-width: 100vw;
  margin-inline: calc(-1 * var(--bleed-breakout));
}

.bleed-inset {
  scroll-padding-inline: var(--bleed-inset);
  padding-inline: var(--bleed-inset);
}

@media (max-width: 989px) {
  .bleed-inset-max-sm {
    scroll-padding-inline: var(--bleed-inset);
    padding-inline: var(--bleed-inset);
  }
}

@media (min-width: 990px) {
  .bleed-inset-min-lg {
    scroll-padding-inline: var(--bleed-inset);
    padding-inline: var(--bleed-inset);
  }

  .bleed-inset-flush-min-lg {
    scroll-padding-inline: var(--bleed-inset-flush);
    padding-inline: var(--bleed-inset-flush);
  }
}

.content-wrap {
  max-width: var(--content-max);
  margin-inline: auto;
}

/* Asymmetric white pill CTA — pair with a section class for layout overrides */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  color: var(--black);
  text-decoration: none;
  font-size: var(--type-16);
  letter-spacing: var(--tracking-body-em);
  padding: clamp(1rem, calc(1rem + 0.25rem * var(--fluid)), 1.25rem)
    clamp(1.25rem, calc(1.25rem + 0.25rem * var(--fluid)), 1.5rem);
  border-top-left-radius: var(--radius-cta);
  border-top-right-radius: var(--radius-cta);
  border-bottom-left-radius: var(--radius-cta);
  border-bottom-right-radius: 0;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;

  &:hover {
    transform: translateY(-2px);
  }
}

/* Toggle pill — pair with a size variant; use .active for selected state */
.tab-pill {
  flex-shrink: 0;
  border: none;
  background: var(--white);
  color: var(--black);
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition:
    background 0.2s,
    color 0.2s,
    transform 0.2s;

  &.active {
    background: var(--black);
    color: var(--white);
  }
}

.tab-pill--sm {
  padding: 0.75rem 1rem;
  border-radius: 100px;
  font-size: var(--type-13);
  font-weight: 800;

  &:hover:not(.active) {
    background: rgba(0, 0, 0, 0.06);
  }
}

.tab-pill--lg {
  padding: clamp(1rem, calc(1rem + 0.5rem * var(--fluid)), 1.5rem)
    clamp(1.5rem, calc(1.5rem + 1rem * var(--fluid)), 2.5rem);
  border-radius: clamp(1rem, calc(1rem + 0.5rem * var(--fluid)), 1.5rem);
  font-size: clamp(1.125rem, calc(1.125rem + 0.625rem * var(--fluid)), 1.75rem);
  font-weight: 900;

  &:hover:not(.active) {
    color: var(--white);
    background: var(--black);
    transform: translateY(-2px);
  }
}

/* ─── Ad units ───────────────────────────────── */
.ad-container {
  display: block;
  width: 100%;
  margin-inline: 0;

  @media (min-width: 990px) {
    margin-block: clamp(2rem, calc(2rem + 3rem * var(--fluid)), 5rem);
  }
}

.ad {
  width: 100%;
  max-width: 970px;
  margin-inline: auto;
  border: 1px solid #656565;
  border-radius: 4px;
  overflow: hidden;
  background: var(--black);
  position: relative;

  @media (min-width: 1024px) {
    width: 970px;
    height: 250px;
    aspect-ratio: auto;
  }

  a {
    display: block;
    text-decoration: none;
  }

  :is(img, picture img) {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 100%;
  }

  picture {
    display: block;
    width: 100%;
    height: 100%;
  }

  &-container {
    display: flex;
    justify-content: center;
    padding: 0;
    background: #f3f3f3;
  
    &.dark {
      background: var(--black);
    }
  }
}

/* ─── Hero ───────────────────────────────────── */
#hero {
  position: relative;
  background-color: #f3f3f3;
  padding-top: clamp(3.75rem, calc(3.75rem + 10.19rem * var(--fluid)), 13.94rem);
  padding-bottom: var(--hero-pad-bottom);
  z-index: 3;

  .hero-logo-bar a {
    display: inline-block;
    text-decoration: none;
  }

  .hero-logo-bar {
    position: absolute;
    top: clamp(1.5rem, calc(1.5rem + 2.25rem * var(--fluid)), 3.75rem);
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
  }
  .hero-logo-fw {
    display: block;
    height: var(--hero-logo-h);
    width: var(--hero-logo-w);
  }
  .hero-topo-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 125%;
    z-index: 2;
    pointer-events: none;
    object-fit: cover;
    object-position: center clamp(0%, calc(100% * var(--fluid)), 100%);
  }
  .hero-inner {
    width: 100%;
    position: relative;

    @media (min-width: 990px) {
      --hero-inner-max-w: 83.25rem;
      --hero-inner-center: max(0px, calc((100vw - var(--hero-inner-max-w)) / 2));
      --hero-inner-shift: clamp(
        0px,
        calc((100vw - 61.875rem) / 58.125rem * 12vw),
        min(12vw, max(0px, calc(var(--hero-inner-center) - var(--pad-gutter))))
      );
      max-width: 1332px;
      max-height: 998px;
      border-radius: 332px 332px 0 332px;
      margin-left: calc(var(--hero-inner-center) + var(--hero-inner-shift));
      margin-right: auto;
    }
  }
  .hero-blob {
    position: relative;
    z-index: 4;
  }
  .hero-blob-content {
    position: relative;
    border-radius: var(--radius-blob) var(--radius-blob) 0 var(--radius-blob);
    overflow: hidden;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    padding: var(--hero-blob-pad-y) var(--hero-blob-pad-x) var(--hero-blob-pad-bottom)
      clamp(1rem, calc(1rem + 9.875rem * var(--fluid)), 10.875rem);
    gap: clamp(0.75rem, calc(0.75rem + 0.25rem * var(--fluid)), 1rem);
    z-index: 4;

    &::after {
      content: "";
      position: absolute;
      inset: 0;
      background: var(--overlay-dark);
      z-index: 3;
      pointer-events: none;
    }
  }
  .hero-blob-title,
  .hero-blob-desc,
  .hero-blob-cta {
    position: relative;
    z-index: 5;
  }
  .hero-blob-title {
    color: var(--white);
    font-size: var(--type-40);
    font-weight: 900;
    line-height: var(--leading-40);
    letter-spacing: var(--tracking-display-lg);
    text-align: center;
    width: 100%;

    @media (min-width: 990px) {
      text-align: left;
    }
  }
  .hero-blob-desc {
    color: var(--white);
    font-size: var(--type-18);
    font-weight: 400;
    line-height: clamp(1.5, calc(1.5 + 0.05 * var(--fluid)), 1.55);
    letter-spacing: var(--tracking-body-em);
    text-align: center;
    width: 100%;

    @media (min-width: 990px) {
      text-align: left;
    }
  }
  .hero-blob-cta {
    align-self: flex-end;

    &:hover {
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    }
  }
  .hero-blob-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;

    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 30%;
    }
  }
  .hero-sonny {
    position: absolute;
    left: -5rem;
    bottom: -8rem;
    width: 15.01394rem;
    height: auto;
    max-width: 74.17125rem;
    z-index: 7;
    pointer-events: none;

    @media (min-width: 1280px) {
      top: 28.37rem;
      left: auto;
      right: 48.34rem;
      bottom: auto;
      width: var(--hero-sonny-w);
      height: var(--hero-sonny-h);
    }

    @media (min-width: 600px) and (max-width: 1279px) {
      top: calc(28.37rem + 2rem);
      left: -10rem;
      right: auto;
      bottom: auto;
      width: var(--hero-sonny-w);
      height: var(--hero-sonny-h);
    }

    img {
      width: 100%;
      height: auto;
      display: block;
      will-change: transform;
      transition: transform 0.15s ease-out;
    }
  }

}

/* ─── Schedule (#schedule) ─────────────────── */
#schedule {
  margin-top: clamp(-21.56rem, calc(-21.56rem + 9.56rem * var(--fluid)), -12rem);
  position: relative;
  z-index: 12;

  @media (min-width: 990px) {

    & + .ad-container {
      margin-top: 3rem;
    }
  }

  .section-inner {
    max-width: var(--content-max);
    margin-inline: auto;
    /* padding-inline: var(--pad-gutter); */
  }

  .schedule-header {
    padding-inline: var(--pad-gutter);
    margin-bottom: clamp(1.5rem, calc(1.5rem + 0.5rem * var(--fluid)), 2rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(0.75rem, calc(0.75rem + 0.25rem * var(--fluid)), 1rem);
    text-align: center;
    position: relative;
    z-index: 7;
    margin-top: clamp(0rem, calc(0rem + 16.75rem * var(--fluid)), 16.75rem);

    @media (min-width: 990px) {
      padding-inline: 0;
    }
  }
  .section-eyebrow {
    color: var(--white);
    font-size: clamp(0.75rem, calc(0.75rem + 0.25rem * var(--fluid)), 1rem);
    letter-spacing: var(--tracking-eyebrow-wide);
    margin-bottom: 0;
  }
  .section-title {
    font-size: var(--type-30);
    color: var(--white);
    line-height: var(--leading-30);
    letter-spacing: var(--tracking-nudge);
    margin-bottom: 0;
  }
  .section-subtitle {
    font-size: var(--type-18);
    line-height: clamp(1.5, calc(1.5 + 0.17 * var(--fluid)), 1.33);
    letter-spacing: var(--tracking-body-em);
    color: var(--white);
    max-width: clamp(18rem, calc(18rem + 24.5rem * var(--fluid)), 42.5rem);
  }
  .fox-one-promo {
    background: var(--black);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    text-align: center;
    position: relative;
    overflow: visible;
    border-top-left-radius: 6.25rem;
    border-top-right-radius: 6.25rem;
    border-bottom-left-radius: var(--radius);
    border-bottom-right-radius: var(--radius);
    padding: var(--pad-panel) var(--pad-gutter);
    margin-block: clamp(1.5rem, calc(1.5rem + 1.5rem * var(--fluid)), 3rem);
    margin-inline: 0;

    @media (min-width: 990px) {
      margin-inline: var(--pad-gutter);
      border-radius: 25px;
      --fox-one-promo-phone-w: clamp(
        11.25rem,
        calc(11.25rem + 2.8125rem * var(--fluid)),
        14.0625rem
      );
      --fox-one-promo-phone-h: clamp(
        11.6875rem,
        calc(11.6875rem + 2.90625rem * var(--fluid)),
        14.59375rem
      );
      flex-direction: row;
      align-items: flex-start;
      gap: 1rem;
      border-radius: 25px;
      border-top-left-radius: 25px;
      border-top-right-radius: 25px;
      border-bottom-left-radius: var(--radius);
      border-bottom-right-radius: var(--radius);
    }

    @media (min-width: 120rem) {
      --fox-one-promo-phone-w: 14.0625rem;
      --fox-one-promo-phone-h: 14.59375rem;
    }

    .fox-one-promo-copy {
      font-size: var(--type-18);
      font-weight: 400;
      line-height: clamp(1.5rem, calc(1.5rem + 0.25rem * var(--fluid)), 1.75rem);
      color: var(--white);
      letter-spacing: var(--tracking-body);
      text-align: center;

      @media (min-width: 990px) {
        text-align: left;
      }
    }
    .fox-one-promo-lockup {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 1rem;
      width: 100%;
    }
    .fox-one-promo-logo {
      width: 100%;
      display: block;

      img {
        width: 100%;
        height: auto;
        object-fit: contain;
      }
    }
    .fox-one-promo-phone {
      width: clamp(17.1875rem, calc(17.1875rem + 0rem * var(--fluid)), 17.1875rem);
      height: clamp(15.15625rem, calc(15.15625rem + 0rem * var(--fluid)), 15.15625rem);
      max-width: 100%;
      margin: 0 auto;

      @media (min-width: 990px) {
        position: absolute;
        bottom: -3rem;
        width: var(--fox-one-promo-phone-w);
        height: var(--fox-one-promo-phone-h);
        max-width: none;
        flex-shrink: 0;
      }

      @media (min-width: 120rem) {
        width: 14.0625rem;
        height: 14.59375rem;
      }

      a {
        display: block;
        text-decoration: none;
        height: 100%;
      }

      img {
        width: 100%;
        height: auto;
        object-fit: contain;
      }
    }
    .fox-one-promo-text {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      align-self: stretch;
      gap: 1rem;

      @media (min-width: 990px) {
        margin-left: calc(var(--fox-one-promo-phone-w) + 1rem);
      }
    }
    .fox-one-promo-phone img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      object-position: top center;
      display: block;
    }
    .fox-one-promo-copy strong {
      font-weight: 700;
    }
    .fox-one-promo-copy sup {
      font-size: 0.6em;
      vertical-align: super;
    }
  }
  .featured-matchups-section {
    padding-inline: var(--pad-gutter);
    margin-bottom: clamp(1.5rem, calc(1.5rem + 1.5rem * var(--fluid)), 3rem);
  }
  .featured-matchups-label {
    font-size: var(--type-24);
    font-weight: 900;
    letter-spacing: var(--tracking-display-lg);
    color: var(--black);
    margin-top: 0;
    margin-bottom: clamp(0.75rem, calc(0.75rem + 0.25rem * var(--fluid)), 1rem);
    text-align: center;

    @media (min-width: 990px) {
      text-align: left;
    }
  }
  .featured-matchups-grid {
    flex-wrap: nowrap;
    gap: 8px;
    padding-block: 6px 0;
  }
  .featured-matchup-card {
    backdrop-filter: var(--surface-blur);
    -webkit-backdrop-filter: var(--surface-blur);
    border: 2px solid var(--white10);
    border-top: none;
    border-radius: 0 0 var(--radius) var(--radius);
    overflow: hidden;
    transition: transform 0.2s;
    flex: 0 0 min(330px, 82vw);
    scroll-snap-align: start;
    background: linear-gradient(
      193.7deg,
      var(--blue-dark) 0%,
      var(--blue-mid) 100%
    );

    &:hover {
      transform: translateY(-3px);
    }

    &::before {
      content: "";
      display: block;
      height: 8px;
      flex-shrink: 0;
      overflow: hidden;
      background: url("https://assets.foxnews.com/images/fox-weather/fifa-world-cup/featured-stroke.png") no-repeat top center / 100% auto;
    }
  }
  .fmc-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;

    .fmc-team-code {
      letter-spacing: var(--tracking-body-em);
    }
  }
  .fmc-datetime {
    font-size: var(--type-13);
    font-weight: 800;
    text-transform: uppercase;
    color: var(--white);
    letter-spacing: var(--tracking-label);
    line-height: var(--leading-meta);
  }
  .fmc-divider {
    height: 1px;
    background: var(--white10);
    width: 100%;
  }
  .fmc-label {
    font-size: var(--type-13);
    font-weight: 800;
    letter-spacing: var(--tracking-label);
    text-transform: uppercase;
    color: var(--white);
    text-align: center;
    width: 100%;
    line-height: var(--leading-meta);
  }
  .fmc-meta {
    width: 100%;
    text-align: center;
  }
  .fmc-note {
    font-size: var(--type-13);
    color: var(--white);
    width: 100%;
    line-height: var(--leading-meta);
  }
  .fmc-team {
    flex: 1;
    background: var(--bg);
    border-radius: 16px 16px 0 16px;
    padding: 0.5rem 0.75rem 0.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    &.away {
      border-radius: 16px 16px 16px 0;
    }
  }
  .fmc-team-code {
    font-size: var(--type-24);
    font-weight: 800;
    color: var(--white);
    letter-spacing: var(--tracking-body-em);
  }
  .fmc-team-flag {
    width: clamp(3rem, calc(3rem + 0.5rem * var(--fluid)), 3.5rem);
    height: clamp(3rem, calc(3rem + 0.5rem * var(--fluid)), 3.5rem);
    object-fit: cover;
    border-radius: 4px;
  }
  .fmc-teams {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    width: 100%;
  }
  .fmc-venue {
    font-size: var(--type-12);
    color: var(--white60);
    margin-top: 0.25rem;
    line-height: var(--leading-meta);
  }
  .fmc-vs {
    font-size: 0.67rem;
    font-weight: 800;
    letter-spacing: var(--tracking-caps);
    text-transform: uppercase;
    color: var(--white60);
    flex-shrink: 0;
  }
  .all-matches-wrap {
    padding-inline: var(--pad-gutter);
    margin-top: 1.5rem;

    @media (min-width: 990px) {
      max-width: var(--content-max);
      margin-inline: auto;
    }
  }
  .filter-tabs {
    gap: 8px;
    padding-block: 6px;
  }
  .schedule-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
  }
  .schedule-legend {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: var(--surface-blur);
    -webkit-backdrop-filter: var(--surface-blur);
    border-radius: var(--radius);
    padding: 0.5rem 1rem;

    @media (min-width: 990px) {
      display: flex;
      flex-wrap: nowrap;
      gap: 1.125rem;
      grid-template-columns: unset;

      .legend-label,
      .legend-desc {
        font-size: var(--type-13);
      }
    }

    .legend-item {
      display: flex;
      align-items: stretch;
      gap: 0.5rem;
    }
    .legend-dot {
      width: 8px;
      flex-shrink: 0;
      border-radius: 4px;
      align-self: stretch;
    }
    .legend-text {
      display: flex;
      flex-direction: column;
      gap: 0;
    }
    .legend-label {
      font-size: var(--type-xs);
      font-weight: 800;
      text-transform: uppercase;
      color: var(--black);
      line-height: normal;
    }
    .legend-desc {
      font-size: var(--type-xs);
      font-weight: 600;
      color: #616161;
      line-height: normal;
      white-space: nowrap;
    }
  }

  .active-date-label {
    font-size: var(--type-24);
    font-weight: 900;
    line-height: var(--leading-30);
    letter-spacing: var(--tracking-display-lg);
    color: var(--black);
    margin-bottom: clamp(0.75rem, calc(0.75rem + 0.25rem * var(--fluid)), 1rem);
    gap: clamp(0.75rem, calc(0.75rem + 0.25rem * var(--fluid)), 1rem);

    @media (min-width: 990px) {
      line-height: normal;
    }

    &:not(.is-hidden) {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .date-game-count {
      flex-shrink: 0;
      font-size: var(--type-13);
      font-weight: 800;
      text-transform: uppercase;
      color: rgba(0, 0, 0, 0.5);
      letter-spacing: var(--tracking-label);
    }
  }
  .date-toggles-row {
    flex-wrap: nowrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding-block: 6px 4px;
    position: relative;
  }
  .date-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: var(--radius);
    border: 1px solid #f3f3f3;
    background: var(--white);
    cursor: pointer;
    transition:
      border-color 0.2s,
      box-shadow 0.15s,
      transform 0.15s;
    overflow: hidden;
    padding: 1px;
    text-align: center;
    flex: 0 0 var(--date-toggle-w);
    min-width: var(--date-toggle-w);

    &:hover:not(.active) {
      border-color: rgba(0, 0, 0, 0.2);
      transform: translateY(-1px);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }
    &.active {
      --bg: var(--blue);
      border: 1px solid var(--blue);
      box-shadow: 0 0 0 4px rgba(51, 100, 209, 0.2);
    }
  }
  .date-toggle-count {
    display: none;
  }
  .date-toggle-day {
    font-size: var(--type-36);
    font-weight: 800;
    color: var(--bg);
    line-height: 1;
    letter-spacing: var(--tracking-nudge);
    padding: 4px 0 0;
  }
  .date-toggle-dow {
    font-size: var(--type-12);
    font-weight: 800;
    letter-spacing: var(--tracking-tab);
    text-transform: uppercase;
    color: var(--gray-med);
    padding-bottom: 5px;
    line-height: 18px;

    @media (min-width: 990px) {
      font-size: 0.75rem;
    }
  }
  .date-toggle-month {
    width: 100%;
    background: var(--bg);
    font-size: var(--type-12);
    font-weight: 800;
    letter-spacing: var(--tracking-tab);
    text-transform: uppercase;
    color: var(--white);
    padding: 2px 0;
    line-height: 18px;
    border-radius: 10px 10px 0 0;

    @media (min-width: 990px) {
      font-size: 0.75rem;
    }
  }
  .games-carousel {
    display: none;
    gap: 8px;
    padding-block: 6px 24px;
    align-items: stretch;

    &.is-active {
      display: flex;
    }
  }
  .schedule-empty {
    color: var(--white60);
    padding: 2rem 0;
    font-size: 0.9rem;
  }
  .game-card {
    background: var(--white);
    border: 2px solid var(--bg);
    border-radius: var(--radius);
    overflow: hidden;
    transition:
      transform 0.2s,
      box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    scroll-snap-align: start;
    width: 258px;

    &:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    }
  }
  .game-card.is-live {
    border-color: var(--red);
    box-shadow: 0 0 0 4px rgba(246, 62, 78, 0.2);

    &:hover {
      box-shadow:
        0 0 0 4px rgba(246, 62, 78, 0.2),
        0 8px 24px rgba(0, 0, 0, 0.2);
    }
  }
  .game-card-footer {
    background: var(--bg);
    padding: 0.6rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  .game-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
  }
  .game-card-top {
    padding: 0.75rem 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  .game-badges {
    display: flex;
    gap: 0.4rem;
    align-items: center;
    flex-wrap: wrap;
  }
  .game-matchup {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .game-time {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: var(--tracking-tab);
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.5);
    &.live {
      color: var(--red);
    }
  }
  .game-venue {
    font-size: 0.67rem;
    color: #616161;
    margin: 0;
  }
  .badge {
    display: block;
    height: 16px;
    width: auto;
  }
  .badge-fox,
  .badge-fs1,
  .badge-fs2 {
    height: 16px;
    width: auto;
  }
  .rowi-badge {
    font-size: 0.67rem;
    font-weight: 800;
    letter-spacing: var(--tracking-label);
    text-transform: uppercase;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    flex-shrink: 0;
  }
  .rowi-calc {
    background: rgba(142, 142, 147, 0.2);
    color: var(--rowi-calc);
    border: 1px solid var(--rowi-calc);
  }
  .rowi-high {
    background: rgba(246, 62, 78, 0.2);
    color: var(--rowi-high);
    border: 1px solid var(--rowi-high);
  }
  .rowi-low {
    background: rgba(52, 199, 89, 0.2);
    color: var(--rowi-low);
    border: 1px solid var(--rowi-low);
  }
  .rowi-med {
    background: rgba(255, 159, 10, 0.2);
    color: var(--rowi-med);
    border: 1px solid var(--rowi-med);
  }
  .team-flag {
    width: 33px;
    height: 36px;
    flex-shrink: 0;
    object-fit: cover;
    background: transparent;
  }
  .team-name {
    color: var(--bg);
    font-size: clamp(0.92rem, calc(0.92rem + 0.08rem * var(--fluid)), 1rem);
    font-weight: 800;
    letter-spacing: var(--tracking-tight-em);
    flex: 1;
  }
  .team-row {
    display: flex;
    align-items: center;
    gap: 0.6rem;

    &.dimmed {
      opacity: 0.4;
    }
  }
  .team-score {
    color: var(--bg);
    font-size: clamp(0.92rem, calc(0.92rem + 0.08rem * var(--fluid)), 1rem);
    font-weight: 800;
    letter-spacing: var(--tracking-tight-em);
    flex-shrink: 0;
  }
  .weather-cond {
    font-size: 0.6rem;
    color: var(--white60);
  }
  .weather-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
  }
  .weather-temp {
    font-size: var(--type-12);
    font-weight: 800;
    color: var(--white);
    text-transform: uppercase;
  }
  #schedule-loading {
    padding: 4rem 0;
    color: #616161;
    font-size: 0.9rem;
    font-weight: 600;

    &:not(.is-hidden) {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.75rem;
    }
  }
  .spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-top-color: var(--bg);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
  }
}

/* ─── Why Weather (#why-weather) ───────────── */
#why-weather {
  overflow: hidden;
  background: #f5f4f0;

  @media (min-width: 990px) {
    padding-bottom: var(--section-pad);
  }

  svg text {
    font-family: var(--font);
  }
  .wwm-hero {
    position: relative;
    max-width: 1996px;
    margin-inline: auto;
    margin-bottom: 10rem;

    @media (min-width: 990px) {
      min-height: 50.375rem;
      margin-bottom: -4rem;
    }
  }
  .wwm-hero-blob {
    position: relative;
    z-index: 4;

    @media (min-width: 990px) {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      border-top-left-radius: 0;
      border-top-right-radius: 18.75rem;
      border-bottom-right-radius: 18.75rem;
      border-bottom-left-radius: 18.75rem;
      overflow: hidden;
      max-width: 83.25rem;
      max-height: 53.75rem;
    }

    &::after {
      content: "";
      position: absolute;
      inset: 0;
      background: transparent;
      pointer-events: none;
      z-index: 3;
    }
  }
  .wwm-hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;

    img {
      width: 100%;
      height: 180%;
      object-fit: cover;
      object-position: center 30%;

      @media (min-width: 990px) {
        height: 100%;
      }
    }
  }
  .wwm-hero-content {
    inset: 0;
    display: flex;
    gap: clamp(0.75rem, calc(0.75rem + 0.25rem * var(--fluid)), 1rem);
    padding: clamp(2.97944rem, calc(2.97944rem + 1.02056rem * var(--fluid)), 4rem)
      var(--pad-gutter)
      clamp(2.89556rem, calc(2.89556rem + 1.10444rem * var(--fluid)), 4rem)
      clamp(1rem, calc(1rem + 5rem * var(--fluid)), 6rem);
    margin-bottom: clamp(3rem, calc(3rem + 6.25rem * var(--fluid)), 9.25rem);
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 4;
    overflow: hidden;

    @media (min-width: 990px) {
      position: absolute;
      margin-bottom: 0;
      padding-right: clamp(1rem, calc(1rem + 17rem * var(--fluid)), 18rem);
    }

    &.section-header .section-eyebrow {
      color: var(--black);
      margin-bottom: 0;
      font-size: clamp(0.75rem, calc(0.75rem + 0.25rem * var(--fluid)), 1rem);
      letter-spacing: var(--tracking-eyebrow-wide);
    }
  }
  .wwm-hero-title {
    color: var(--black);
    font-size: var(--type-40);
    font-style: normal;
    font-weight: 900;
    line-height: var(--leading-40);
    letter-spacing: var(--tracking-display-lg);
    max-width: clamp(20rem, calc(20rem + 34rem * var(--fluid)), 54rem);
  }
  .wwm-hero-desc {
    color: var(--black);
    font-size: var(--type-18);
    font-weight: 400;
    line-height: clamp(1.5rem, calc(1.5rem + 0.05 * var(--fluid)), 1.55);
    letter-spacing: var(--tracking-body-em);
    max-width: clamp(20rem, calc(20rem + 34rem * var(--fluid)), 54rem);
  }
  .wwm-sonny {
    position: absolute;
    left: 50%;
    bottom: -22rem;
    transform: translateX(-50%);
    width: 23.5625rem;
    height: auto;
    z-index: 4;
    pointer-events: none;

    @media (min-width: 990px) {
      left: auto;
      right: var(--wwm-sonny-right);
      top: 5rem;
      bottom: auto;
      transform: none;
      width: min(var(--wwm-sonny-w), 70vw);
    }

    img {
      width: 100%;
      height: auto;
      display: block;
      filter: drop-shadow(-10px 10px 18px rgba(0, 0, 0, 0.3));
      will-change: transform;
      transition: transform 0.15s ease-out;
    }
  }
  .wwm-tabs {
    gap: clamp(0.5rem, calc(0.5rem + 0.5rem * var(--fluid)), 1rem);
    width: calc(100% + 2 * var(--bleed-align));
    max-width: 100vw;
    margin-inline: calc(-1 * var(--bleed-align));
    padding-block: 6px;
    margin-bottom: clamp(1.5rem, calc(1.5rem + 0.5rem * var(--fluid)), 2rem);

    @media (min-width: 990px) {
      width: 100%;
      max-width: var(--content-max);
      margin-inline: auto;
      padding-block: 6px 0;
      padding-inline: 4.25rem;
      scroll-padding-inline: 4.25rem;
      overflow-x: visible;

      .tab-pill {
        flex: 1 1 0;
        min-width: 0;
        text-align: center;
      }
    }
  }
  .wwm-panel {
    display: none;
  }
    
  .wwm-panel--active {
    display: block;
  }
  .wwm-panel-inner {
    position: relative;
    background: var(--black);
    padding: var(--pad-panel) var(--pad-gutter);
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, calc(1rem + 0.5rem * var(--fluid)), 1.5rem);
    border-radius: clamp(0rem, calc(0rem + 1.5rem * var(--fluid)), 1.5rem);
  }
  .wwm-panel-title {
    margin-top: 0;
    color: var(--white);
    font-size: var(--type-48);
    font-style: normal;
    font-weight: 900;
    line-height: var(--leading-30);
    letter-spacing: var(--tracking-display-em);

    @media (min-width: 990px) {
      line-height: 1;
    }
  }
  .wwm-panel-body {
    color: var(--white);
    font-size: var(--type-18);
    font-style: normal;
    font-weight: 400;
    line-height: clamp(1.5rem, calc(1.5rem + 0.05 * var(--fluid)), 1.55);
    letter-spacing: var(--tracking-body-em);
  }
  .wwm-panel-body-wrap {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  .wwm-graph-container {
    background: linear-gradient(180deg, rgba(0, 188, 255, 0.20) 0%, rgba(0, 166, 62, 0.20) 100%);
    border-radius: 14px;
    padding: var(--pad-panel) var(--pad-gutter);
    position: relative;
  }
  .wwm-graph-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
  .wwm-graph-title {
    font-family: var(--font);
    color: var(--white);
    font-size: 1.125rem;
    font-weight: 900;
    letter-spacing: -0.03125rem;
    margin-bottom: 0.3rem;
    text-transform: uppercase;

    @media (min-width: 990px) {
      font-size: 1.75rem;
      font-weight: 900;
      line-height: normal;
      letter-spacing: -0.03125rem;
      margin-bottom: 0;
    }
  }
  .wwm-graph-sub {
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 800;
    line-height: 1.125rem; /* 128.571% */
    letter-spacing: -0.01563rem;
  }
  .wwm-legend {
    display: flex;
    gap: clamp(1rem, calc(1rem + 0.5rem * var(--fluid)), 1.5rem);
    background: var(--white10);
    border-radius: var(--radius);
    padding: clamp(0.75rem, calc(0.75rem + 0.75rem * var(--fluid)), 1.5rem)
      clamp(1.125rem, calc(1.125rem + 0.875rem * var(--fluid)), 2rem);
    backdrop-filter: var(--surface-blur);
  }
  .wwm-legend-bar {
    width: 8px;
    border-radius: 4px;
    flex-shrink: 0;
  }
  .wwm-legend-desc {
    font-size: clamp(0.75rem, calc(0.75rem + 0.1rem * var(--fluid)), 0.85rem);
    color: var(--gray-med);
    line-height: clamp(1.1875rem, calc(1.1875rem + 0.3625rem * var(--fluid)), 1.55);
  }
  .wwm-legend-item {
    flex: 1;
    display: flex;
    gap: 0.5rem;
    align-items: stretch;
    min-width: 0;
  }
  .wwm-legend-label {
    color: var(--white);
    font-size: clamp(0.75rem, calc(0.75rem + 0.15rem * var(--fluid)), 0.9rem);
    line-height: clamp(1.1875rem, calc(1.1875rem + 0.1125rem * var(--fluid)), 1.3);
    font-weight: 800;
    letter-spacing: var(--tracking-label);
    margin-bottom: 0.3rem;
    text-transform: uppercase;
  }
  .wwm-legend-text {
    flex: 1;
    min-width: 0;
  }
  .wwm-control-btn {
    padding: 0.4rem 1rem;
    background: var(--white10);
    color: var(--white60);
    border: none;
    border-radius: 100px;
    font-size: var(--type-12);
    font-weight: 800;
    cursor: pointer;
    transition: all 0.2s;
    text-transform: uppercase;

    &:hover {
      color: var(--white);
    }
  }
  :is(
    .wwm-wind-controls .wwm-control-btn.active[data-wind="3"],
    .wwm-rain-controls .wwm-control-btn.active[data-rain="light"],
    .wwm-heat-controls .wwm-control-btn.active[data-heat="safe"]
  ) {
    background: var(--rowi-low);
    color: var(--black);
  }
  :is(
    .wwm-wind-controls .wwm-control-btn.active[data-wind="9"],
    .wwm-rain-controls .wwm-control-btn.active[data-rain="moderate"],
    .wwm-heat-controls .wwm-control-btn.active[data-heat="caution"]
  ) {
    background: var(--rowi-med);
    color: var(--black);
  }
  :is(
    .wwm-wind-controls .wwm-control-btn.active[data-wind="15"],
    .wwm-rain-controls .wwm-control-btn.active[data-rain="heavy"],
    .wwm-heat-controls .wwm-control-btn.active[data-heat="breaks"]
  ) {
    background: var(--rowi-high);
  }
  :is(
    .wwm-wind-controls .wwm-control-btn.active[data-wind="15"],
    .wwm-heat-controls .wwm-control-btn.active[data-heat="breaks"]
  ) {
    color: var(--black);
  }
  .wwm-rain-controls .wwm-control-btn.active[data-rain="heavy"] {
    color: var(--white);
  }
  #windPath.speed-3 {
    stroke: var(--rowi-low);
  }
  #windPath.speed-9 {
    stroke: var(--rowi-med);
  }
  #windPath.speed-15 {
    stroke: var(--rowi-high);
  }
  :is(
    #windForceLabel.speed-3,
    .wwm-wind-force.speed-3,
    #rainConditionLabel.rain-light,
    .wwm-rain-condition.rain-light,
    #heatConditionLabel.heat-safe,
    .wwm-heat-condition.heat-safe
  ) {
    color: var(--rowi-low);
  }
  :is(
    #windForceLabel.speed-9,
    .wwm-wind-force.speed-9,
    #rainConditionLabel.rain-moderate,
    .wwm-rain-condition.rain-moderate,
    #heatConditionLabel.heat-caution,
    .wwm-heat-condition.heat-caution
  ) {
    color: var(--rowi-med);
  }
  :is(
    #windForceLabel.speed-15,
    .wwm-wind-force.speed-15,
    #rainConditionLabel.rain-heavy,
    .wwm-rain-condition.rain-heavy,
    #heatConditionLabel.heat-breaks,
    .wwm-heat-condition.heat-breaks
  ) {
    color: var(--rowi-high);
  }
  .rain-drop {
    animation: rainDropFall var(--drop-dur, 1s) var(--drop-del, 0s) linear infinite;
  }
  .wwm-rain-condition {
    color: var(--rowi-low);
  }
  .wwm-rain-controls {
    display: flex;
    gap: 0.5rem;
  }
  .wwm-rain-svg-wrap {
    position: relative;
    z-index: 3;
    width: 100%;
  }
  .wwm-heat-condition {
    color: var(--rowi-low);
  }
  .wwm-heat-controls {
    display: flex;
    gap: 0.5rem;
  }
  .wwm-heat-svg-wrap {
    position: relative;
    z-index: 3;
    width: 100%;
    overflow: hidden;

    .gauge-arc-path {
      stroke-width: 50px;
    }
  }
  .wwm-factor-bg-img {
    position: absolute;
    pointer-events: none;

    picture {
      display: block;
      width: 100%;
      height: 100%;
      max-width: none;
    }

    img {
      display: block;
      width: 100%;
      height: 100%;
      max-width: none;
      object-fit: contain;
    }
  }
  .wwm-rain-bg-img,
  .wwm-heat-bg-img,
  .wwm-wind-bg-img {
    z-index: 4;
  }
  .wwm-rain-bg-img {
    width: var(--wwm-rain-deco-w);
    height: var(--wwm-rain-deco-h);
    left: var(--wwm-rain-deco-left);
    bottom: var(--wwm-rain-deco-bottom);
  }
  .wwm-heat-bg-img {
    width: var(--wwm-heat-deco-w);
    height: var(--wwm-heat-deco-h);
    right: var(--wwm-heat-deco-right);
    bottom: var(--wwm-heat-deco-bottom);
  }
  .wwm-wind-bg-img {
    width: var(--wwm-wind-deco-w);
    height: var(--wwm-wind-deco-h);
    left: var(--wwm-wind-deco-left);
    bottom: var(--wwm-wind-deco-bottom);
  }
  .wwm-wind-body-row {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    flex-direction: column;

    @media (min-width: 990px) {
      flex-direction: row;
      gap: 2rem;
    }

    .wwm-legend {
      width: 100%;
    }
    .wwm-panel-body-wrap {
      flex: 1;
      min-width: 0;

      @media (min-width: 990px) {
        flex-shrink: 0;
        flex-basis: 50%;
      }
    }
    .wwm-legend {
      flex-direction: column;
      flex-shrink: 0;
      gap: 1.5rem;

      @media (min-width: 990px) {
        flex-shrink: 1;
        width: auto;
        min-width: clamp(12rem, 19vw, 18.875rem);
      }
    }
  }
  .wwm-wind-controls {
    display: flex;
    gap: 0.5rem;
  }
  .wwm-wind-force {
    color: var(--rowi-low);
  }
  .wwm-wind-svg-wrap {
    position: relative;
    width: 100%;
  }
  #rainSvg {
    width: 100%;
    height: auto;
    display: block;
  }
  #heatSvg {
    width: 100%;
    height: auto;
    display: block;
  }
  #windSvg {
    width: 100%;
    height: auto;
    display: block;
  }
}

/* ─── Quote ──────────────────────────────────── */
#quote {
  padding: 0;

  .quote-attr {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  .quote-flag {
    width: 24px;
    height: 24px;
    object-fit: cover;
    border-radius: 2px;
  }
  .quote-inner {
    position: relative;
    z-index: 4;
    padding: 0;
    max-width: var(--quote-inner-max);

    @media (min-width: 990px) {
      max-width: 70%;
    }
  }
  .quote-name {
    font-size: var(--type-16);
    font-weight: 800;
    letter-spacing: var(--tracking-eyebrow-wide);
    text-transform: uppercase;
    color: var(--white);
    line-height: normal;
    margin-bottom: 0;

    @media (min-width: 990px) {
      line-height: normal;
    }
  }
  .quote-photo {
    display: block;
    position: relative;
    width: var(--quote-photo-w);
    height: auto;
    margin: 0 auto;
    order: 2;
    z-index: 3;
    pointer-events: none;

    @media (min-width: 990px) {
      position: absolute;
      right: clamp(-2rem, calc(-2rem + 4rem * var(--fluid)), 2rem);
      left: auto;
      top: auto;
      bottom: 0;
      margin: 0;
      order: unset;
      height: var(--quote-photo-h);
    }

    img {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      filter: drop-shadow(11px -15px 15px rgba(0, 0, 0, 0.25));
    }
  }
  .quote-section {
    position: relative;
    min-height: auto;
    background: var(--bg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    border-radius: 0;

    @media (min-width: 990px) {
      align-items: center;
      min-height: clamp(25rem, calc(25rem + 18.75rem * var(--fluid)), 43.75rem);
      border-radius: var(--quote-radius) 0 var(--quote-radius) var(--quote-radius);
    }

    .container {
      order: 1;
      padding: var(--quote-pad-block) var(--quote-pad-inline);

      @media (min-width: 990px) {
        order: unset;
        width: 100%;
        margin-inline: 0;
      }
    }
  }
  .quote-text-block {
    max-width: clamp(100%, calc(20rem + 34rem * var(--fluid)), 54rem);

    @media (min-width: 990px) {
      text-align: left;
    }
  }

  /* Scoped above Fox News page.rs.css `p { font-size: 14px }` */
  blockquote.quote-text {
    color: var(--white);
    font-size: var(--type-20);
    font-weight: 900;
    line-height: normal;
    letter-spacing: var(--tracking-display-lg);
    quotes: none;
    margin-bottom: clamp(0.75rem, calc(0.75rem + 2.25rem * var(--fluid)), 3rem);
    text-align: center;

    @media (min-width: 990px) {
      font-size: var(--type-48);
      line-height: var(--leading-48);
      text-align: left;
    }

    p {
      font-size: inherit;
      line-height: inherit;
      margin-bottom: 0;
    }
  }
  .quote-topo {
    position: absolute;
    inset: 0;
    background: url("https://assets.foxnews.com/images/fox-weather/fifa-world-cup/bg-usa-topo.svg") center / cover no-repeat;
    opacity: 1;
    pointer-events: none;
  }
}

/* ─── Stadiums & map ─────────────────────────── */
#stadiums {
  background: #f3f3f3;
  overflow: visible;
  padding-bottom: var(--section-pad);

  .section-inner {
    padding: var(--pad-panel) var(--pad-gutter);
    overflow: hidden;
    position: relative;
    border-radius: clamp(0rem, calc(0rem + 1.5rem * var(--fluid)), 1.5rem);
    max-width: var(--content-max);
    margin-inline: 0;
    margin-top: -2rem;
    width: 100%;
    z-index: 4;

    @media (min-width: 990px) {
      margin-top: 0;
      margin-inline: auto;
      width: clamp(
        calc(100% - 2rem),
        calc(100% - 2rem + (5rem - 2rem) * var(--fluid)),
        calc(100% - 5rem)
      );
    }

    &::before {
      content: "";
      position: absolute;
      inset: 0;
      background: url("https://assets.foxnews.com/images/fox-weather/fifa-world-cup/bg-usa-topo.svg") center / cover no-repeat;
      background-size: 200%;
      opacity: 1;
      pointer-events: none;
      z-index: 2;

      @media (min-width: 990px) {
        background-size: 100%;
      }
    }
  }

  .climate-badge {
    font-size: var(--type-11);
    font-weight: 800;
    line-height: 17px;
    letter-spacing: 0;
    text-transform: uppercase;
    padding: 4px 8px;
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.1);
    border: 1px solid var(--rowi-calc);
    color: var(--rowi-calc);
    flex-shrink: 0;
    white-space: nowrap;
  }
  .climate-hot {
    background: rgba(246, 62, 78, 0.2);
    border: 1px solid var(--red);
    color: var(--red);
  }
  .climate-humid {
    background: rgba(255, 159, 10, 0.2);
    border: 1px solid var(--rowi-med);
    color: var(--rowi-med);
  }
  .climate-mild {
    background: rgba(51, 100, 209, 0.2);
    border: 1px solid var(--blue);
    color: var(--blue);
  }
  .climate-rainy {
    background: rgba(52, 199, 89, 0.2);
    border: 1px solid var(--rowi-low);
    color: var(--rowi-low);
  }
  .leaflet-control-attribution {
    background: rgba(7, 13, 28, 0.7) !important;
    color: var(--white40) !important;
    font-size: 0.6rem !important;
    a {
      color: rgba(255, 255, 255, 0.5) !important;
    }
  }
  .leaflet-popup-close-button {
    color: rgba(255, 255, 255, 0.5) !important;
    &:hover {
      color: var(--white) !important;
    }
  }
  .leaflet-popup-content-wrapper {
    background: rgba(7, 13, 28, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    color: var(--white);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
    font-family: inherit;

    .stadium-popup {
      min-width: 190px;
      line-height: 1.5;
    }
    .stadium-popup__name {
      font-size: 0.88rem;
      display: block;
      margin-bottom: 2px;
    }
    .stadium-popup__location {
      color: rgba(255, 255, 255, 0.55);
      font-size: 0.73rem;
    }
    .stadium-popup__meta {
      margin-top: 0.5rem;
      display: flex;
      gap: 0.4rem;
      flex-wrap: wrap;
      align-items: center;
    }
    .stadium-popup__cap {
      font-size: 0.68rem;
      background: rgba(255, 255, 255, 0.08);
      padding: 2px 8px;
      border-radius: 20px;
    }
    .stadium-popup__climate {
      font-size: 0.68rem;
      padding: 2px 8px;
      border-radius: 20px;
      background: rgba(0, 0, 0, 0.1);
      color: var(--rowi-calc);

      &.climate-hot {
        background: rgba(246, 62, 78, 0.2);
        color: var(--red);
      }
      &.climate-humid {
        background: rgba(255, 159, 10, 0.2);
        color: var(--rowi-med);
      }
      &.climate-mild {
        background: rgba(51, 100, 209, 0.2);
        color: var(--blue);
      }
      &.climate-rainy {
        background: rgba(52, 199, 89, 0.2);
        color: var(--rowi-low);
      }
    }
  }
  .leaflet-popup-tip {
    background: rgba(7, 13, 28, 0.97);
  }
  .map-container {
    position: relative;
    height: clamp(20rem, calc(20rem + 10rem * var(--fluid)), 30rem);
    border-radius: var(--radius);
    overflow: hidden;
    margin: 0;
  }
  .stadium-capacity {
    font-size: var(--type-16);
    font-weight: 400;
    color: #616161;
    line-height: 22px;
    letter-spacing: var(--tracking-card);
  }
  .stadiums-grid {
    flex-wrap: nowrap;
    gap: 8px;
    width: 100%;
    padding-block: 10px 16px;
    padding-inline: var(--bleed-inset);
    scroll-padding-inline: var(--bleed-inset);

    @media (min-width: 990px) {
      margin-top: 2rem;
      padding-block: 10px 16px;
      /* Full-width parent — no breakout; gutters via bleed-inset for padding + scroll snap */
      padding-inline: var(--bleed-inset);
      scroll-padding-inline: var(--bleed-inset);
    }
  }
  .stadium-card {
    display: flex;
    flex-direction: column;
    flex: 0 0 240px;
    min-width: 240px;
    background: var(--white);
    border: 2px solid var(--bg);
    border-radius: var(--radius);
    overflow: hidden;
    transition:
      border-color 0.2s,
      box-shadow 0.2s,
      transform 0.2s;
    cursor: pointer;
    scroll-snap-align: start;
    flex: 0 0 258px;
    min-width: 258px;

    &:hover:not(.highlighted) {
      border-color: var(--blue);
      transform: translateY(-2px);
    }
    &.highlighted {
      border-color: var(--red);
      box-shadow: 0 0 0 4px rgba(246, 62, 78, 0.2);
      transform: translateY(-2px);
    }
    &:focus-visible {
      outline: 2px solid var(--blue);
      outline-offset: 2px;
    }
  }
  .stadium-card-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
  }
  .stadium-card-img {
    width: 100%;
    height: 145px;
    object-fit: cover;
    display: block;
    flex-shrink: 0;
  }
  .stadium-city {
    font-size: var(--type-16);
    font-weight: 400;
    color: var(--bg);
    line-height: 22px;
    letter-spacing: var(--tracking-card);
    margin-bottom: 0;
  }
  .stadium-meta {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 8px;
    margin-top: auto;
    padding-top: 8px;
  }
  .stadium-name {
    font-size: clamp(1.125rem, calc(1.125rem + 0.375rem * var(--fluid)), 1.125rem);
    font-weight: 800;
    color: var(--bg);
    line-height: 24px;
    letter-spacing: var(--tracking-card);
    margin-bottom: 0;
  }
  .stadium-pitch {
    font-size: var(--type-16);
    font-weight: 400;
    color: #616161;
    line-height: 22px;
    letter-spacing: var(--tracking-card);
    flex: 1;
  }
  .stadiums-header-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    position: relative;
    margin-bottom: 1rem;

    @media (min-width: 990px) {
      flex-direction: row;
      align-items: flex-start;
      gap: 1.5rem;
      margin-bottom: 1.5rem;
    }
  }
  .stadiums-hero {
    max-width: 1996px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    z-index: 3;

    @media (min-width: 990px) {
      min-height: 33.75rem;
      margin-bottom: -5rem;
    }
  }
  .stadiums-hero-blob {
    position: relative;

    @media (min-width: 990px) {
      border-top-right-radius: 20.75rem;
      border-bottom-right-radius: 20.75rem;
      border-bottom-left-radius: 20.75rem;
      overflow: hidden;
      max-width: 83.25rem;
      max-height: 53.75rem;
    }

    &::after {
      content: "";
      position: absolute;
      inset: 0;
      background: var(--overlay-dark);
      pointer-events: none;
      z-index: 3;
    }
  }
  .stadiums-hero-content {
    position: relative;
    inset: 0;
    display: flex;
    gap: clamp(0.75rem, calc(0.75rem + 0.25rem * var(--fluid)), 1rem);
    padding: clamp(3.01175rem, calc(3.01175rem + 10.52313rem * var(--fluid)), 13.53488rem)
      var(--pad-gutter)
      clamp(16.67581rem, calc(16.67581rem - 2.52318rem * var(--fluid)), 14.15263rem)
      clamp(1rem, calc(1rem + 9.5625rem * var(--fluid)), 10.5625rem);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    z-index: 4;
  }
  .stadiums-hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;

    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }
  }
  .stadiums-hero-eyebrow {
    color: var(--white);
    font-size: var(--type-16);
    font-weight: 800;
    letter-spacing: var(--tracking-eyebrow-wide);
    text-transform: uppercase;
    margin-bottom: clamp(0rem, calc(0rem + 0.75rem * var(--fluid)), 0.75rem);
  }
  .stadiums-hero-title {
    color: var(--white);
    font-size: var(--type-40);
    font-style: normal;
    font-weight: 900;
    line-height: var(--leading-40);
    letter-spacing: var(--tracking-display-lg);
    margin-bottom: clamp(0rem, calc(0rem + 1rem * var(--fluid)), 1rem);
  }
  .stadiums-hero-desc {
    font-size: var(--type-24);
    color: var(--white);
    line-height: 1.4;
    max-width: clamp(20rem, calc(20rem + 31.25rem * var(--fluid)), 51.25rem);
    text-align: left;
    letter-spacing: var(--tracking-body-em);
  }
  .stadiums-legend-row {
    display: flex;
    gap: 0.75rem 1.5rem;
    flex-wrap: wrap;
    align-items: flex-start;
    padding: 0.5rem;
    position: relative;

    &::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border-radius: 0.75rem;
      background: var(--white10);
      backdrop-filter: var(--surface-blur);
      z-index: 2;
    }

    .legend-item {
      flex-direction: row;
      align-items: flex-start;
      gap: 0.4rem;
    }
    .legend-dot {
      width: 8px;
      height: 26px;
      border-radius: 2px;
      flex-shrink: 0;
      margin-top: 2px;
    }
    .legend-desc {
      font-size: 0.62rem;
      color: var(--white60);
      line-height: 1.3;
    }
    .legend-label {
      font-size: 0.67rem;
      display: block;
    }
  }
  .stadiums-map-title {
    margin-top: 0;
    margin-bottom: 0;
    font-size: var(--type-24);
    color: var(--white);
    letter-spacing: var(--tracking-display-em);
    flex-shrink: 0;
    position: relative;
    z-index: 4;
  }
  .stadiums-sonny {
    position: absolute;
    z-index: 5;
    pointer-events: none;
    display: block;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    width: 18.75rem;
    bottom: -3rem;

    @media (min-width: 990px) {
      left: auto;
      right: var(--stadiums-sonny-right);
      transform: none;
      width: var(--stadiums-sonny-w);
      bottom: -2rem;
    }

    img {
      width: 100%;
      height: auto;
      display: block;
      filter: drop-shadow(-10px 10px 18px rgba(0, 0, 0, 0.3));
    }
  }
}

/* ─── App promo ──────────────────────────────── */
#app-promo {
  padding: var(--pad-panel) var(--pad-gutter);
  background: var(--black);

  @media (min-width: 990px) {
    padding-top: 6.25rem;
    padding-bottom: 0;
  }

  .app-promo-body {
    color: var(--white);
    font-size: var(--type-18);
    font-style: normal;
    font-weight: 400;
    line-height: clamp(1.5rem, calc(1.5rem + 0.1 * var(--fluid)), 1.4);
    letter-spacing: var(--tracking-body-em);

    strong {
      font-weight: 700;
    }
    sup {
      font-size: 0.6em;
      vertical-align: super;
    }
  }
  .app-promo-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 1rem;

    @media (min-width: 990px) {
      text-align: left;
    }

    @media (min-width: 120rem) {
      padding-bottom: 6.25rem;
    }
  }
  .app-promo-cta {
    margin-inline: auto;
    align-self: flex-start;

    @media (min-width: 990px) {
      margin: 0;
    }

    &:hover {
      box-shadow: 0 6px 24px rgba(255, 255, 255, 0.15);
    }
  }
  .app-promo-eyebrow {
    font-size: var(--type-16);
    font-weight: 800;
    letter-spacing: var(--tracking-eyebrow-wide);
    text-transform: uppercase;
    color: var(--red);
  }
  .app-promo-inner {
    display: flex;
    flex-direction: column;
    align-items: center;

    @media (min-width: 990px) {
      flex-direction: row;
      gap: 2rem;
    }

    @media (min-width: 120rem) {
      align-items: flex-end;
    }
  }
  .app-promo-phone {
    position: relative;
    width: var(--app-phone-w);
    flex-shrink: 0;
    overflow: hidden;
    margin-bottom: clamp(0px, calc(0px - 72px * var(--fluid)), -72px);

    @media (min-width: 990px) {
      align-self: flex-end;
    }

    @media (min-width: 120rem) {
      width: 34.375rem;
      height: 30.3125rem;
      margin-bottom: 0;
    }

    /* &::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      width: 100%;
      height: 130px;
      background: radial-gradient(
        ellipse at center,
        rgba(40, 40, 40, 0.9) 0%,
        transparent 70%
      );
      z-index: 2;
      pointer-events: none;
    } */

    img {
      width: 100%;
      height: auto;
      display: block;
      position: relative;
      z-index: 3;
    }
  }
  .app-promo-title {
    font-size: clamp(1.875rem, calc(1.875rem + 0.625rem * var(--fluid)), 2.5rem);
    font-style: normal;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.025em;
    color: var(--white);
  }
}

/* ─── Footer ─────────────────────────────────── */
.footer-copy {
  font-size: 0.72rem;
  color: var(--white60);
  text-align: center;
}

.footer-inner {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(0.75rem, calc(0.75rem + 0.5rem * var(--fluid)), 1.25rem);
  padding: 0 clamp(1.5rem, calc(1.5rem + 1rem * var(--fluid)), 2.5rem);
}

.footer-logo-fw {
  height: clamp(1.75rem, calc(2.625rem - 0.875rem * var(--fluid)), 2.625rem);
  width: clamp(9.8125rem, calc(14.76563rem - 4.95313rem * var(--fluid)), 14.76563rem);
}

.footer-logos a {
  display: inline-block;
  text-decoration: none;
}

.footer-logos {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.footer-wrap {
  background: var(--black);
}

footer {
  position: relative;
  background: var(--bg) url("https://assets.foxnews.com/images/fox-weather/fifa-world-cup/footer-bg.png") center / cover no-repeat;
  padding: clamp(2.5rem, calc(2.5rem + 1.5rem * var(--fluid)), 4rem) 0
    clamp(1.5rem, calc(1.5rem + 0.5rem * var(--fluid)), 2rem);
  overflow: hidden;
  border-top-left-radius: clamp(12rem, calc(12rem + 38rem * var(--fluid)), 1000px);
  border-top-right-radius: clamp(12rem, calc(12rem + 38rem * var(--fluid)), 1000px);
}

/* ─── Legend ─────────────────────────────────── */
.legend-dot {
  width: 8px;
  height: 26px;
  border-radius: 2px;
  flex-shrink: 0;
}

.legend-item {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.7rem;
  color: var(--white60);
  font-weight: 600;
}

.legend-label {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: var(--tracking-tab);
  color: var(--white);
}

/* ─── Scroll & hero animations (visible by default; no-JS & reduced-motion safe) ─ */
.hero-reveal,
.lazy-section,
.stagger-child {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: no-preference) {
  html.js .hero-reveal:not(.revealed) {
    opacity: 0;
    transform: translateY(18px);
    transition:
      opacity 0.75s ease,
      transform 0.75s ease;
  }

  html.js .hero-reveal.revealed {
    opacity: 1;
    transform: none;
  }

  html.js .lazy-section:not(.visible) {
    opacity: 0;
    transform: translateY(32px);
    transition:
      opacity 0.7s ease,
      transform 0.7s ease;
  }

  html.js .lazy-section.visible {
    opacity: 1;
    transform: translateY(0);
  }

  html.js .stagger-child:not(.visible) {
    opacity: 0;
    transform: translateY(24px);
    transition:
      opacity 0.5s ease,
      transform 0.5s ease;
  }

  html.js .stagger-child.visible {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .rain-drop {
    animation: none !important;
  }
}

@keyframes rainDropFall {
  0% {
    transform: translateY(0);
    opacity: 0.85;
  }
  85% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(var(--drop-dist, 260px));
    opacity: 0;
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ─── JS utilities (visibility, parallax) ─ */
.is-hidden {
  display: none;
}

.flag-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.is-broken {
  font-size: 1.2rem;
  background: transparent;
}

html.scroll-instant {
  scroll-behavior: auto;
}

.sonny-parallax {
  will-change: transform;
}

iframe[src*="ketch-proxy.html"] {
  position: absolute;
}