@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

@font-face {
  font-family: "Space Mono";
  src: url("../fonts/space-mono.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}

:root {
  --navy-950: #031225;
  --navy-900: #061a34;
  --navy-800: #0a274b;
  --navy-700: #133861;
  --steel: #8fa8c3;
  --ice: #d8e5f1;
  --paper: #f5f7f9;
  --white: #ffffff;
  --ink: #07192e;
  --line-light: rgba(255, 255, 255, 0.2);
  --line-dark: rgba(7, 25, 46, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--white);
  background: var(--navy-950);
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

body.pyf-standalone {
  min-width: 320px;
}

.pyf-site {
  position: relative;
  width: 100vw;
  max-width: none !important;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  color: var(--white);
  background: var(--navy-950);
  font-family: "Manrope", sans-serif;
}

body.pyf-standalone .pyf-site {
  width: 100%;
  margin-right: 0;
  margin-left: 0;
  overflow: hidden;
}

body.admin-bar.pyf-standalone .site-header {
  top: 32px;
}

body::selection {
  color: var(--navy-950);
  background: var(--ice);
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: -100px;
  left: 18px;
  padding: 12px 16px;
  color: var(--navy-950);
  background: var(--white);
}

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

.site-header {
  position: absolute;
  z-index: 30;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 94px;
  padding: 14px clamp(20px, 4vw, 72px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  border-bottom: 1px solid var(--line-light);
  background: linear-gradient(180deg, rgba(3, 18, 37, 0.82), rgba(3, 18, 37, 0.12));
  backdrop-filter: blur(8px);
}

.header-brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  justify-self: start;
}

.header-brand > img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.header-brand span b,
.header-brand span small {
  display: block;
}

.header-brand span b {
  font-size: 13px;
  line-height: 1;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.header-brand span small {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.55);
  font-family: "Space Mono", monospace;
  font-size: 6px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 44px);
}

.site-header nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.68);
  font-family: "Space Mono", monospace;
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-header nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 1px;
  background: var(--white);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-header nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-live {
  min-height: 44px;
  padding: 11px 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-self: end;
  color: var(--navy-950);
  background: var(--white);
  border-radius: 4px;
  font-family: "Space Mono", monospace;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.header-live i,
.match-schedule-head b i {
  width: 7px;
  height: 7px;
  background: #2e8d5a;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(46, 141, 90, 0.18);
}

.header-live:hover {
  color: var(--white);
  background: var(--navy-700);
  transform: translateY(-2px);
}

.hero {
  position: relative;
  min-height: 1060px;
  padding: 156px clamp(20px, 6vw, 104px) 190px;
  display: flex;
  align-items: center;
  background: var(--navy-950);
  overflow: hidden;
}

.hero-photo,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-photo {
  left: 43%;
  background-image: url("../images/story-tunnel.png");
  background-size: cover;
  background-position: center 62%;
}

.hero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, var(--navy-950) 0%, rgba(3, 18, 37, 0.98) 34%, rgba(3, 18, 37, 0.62) 62%, rgba(3, 18, 37, 0.12) 100%),
    linear-gradient(180deg, rgba(3, 18, 37, 0.35), transparent 55%, var(--navy-950));
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(820px, 58%);
}

.hero-logo {
  width: 142px;
  height: 142px;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(3, 18, 37, 0.32));
}

.hero-kicker,
.section-kicker {
  margin: 34px 0 0;
  color: var(--steel);
  font-family: "Space Mono", monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero-kicker span {
  margin-right: 12px;
  padding: 7px 10px;
  color: var(--navy-950);
  background: var(--white);
  border-radius: 2px;
}

.hero h1 {
  max-width: 930px;
  margin: 28px 0 0;
  font-size: clamp(73px, 8.4vw, 132px);
  font-weight: 800;
  line-height: 0.8;
  letter-spacing: -0.075em;
  text-transform: uppercase;
}

.hero h1 em {
  color: var(--ice);
  font-style: normal;
  font-weight: 300;
}

.hero-lead {
  max-width: 560px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: clamp(15px, 1.3vw, 19px);
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
}

.button {
  min-height: 54px;
  padding: 14px 18px 14px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  border-radius: 4px;
  font-family: "Space Mono", monospace;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.2);
}

.button-light {
  color: var(--navy-950);
  background: var(--white);
}

.text-link {
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  font-family: "Space Mono", monospace;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-side-note {
  position: absolute;
  z-index: 4;
  top: 50%;
  right: clamp(20px, 4vw, 72px);
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.5);
  transform: translateY(-30%);
}

.hero-side-note span,
.hero-side-note strong,
.hero-side-note small {
  display: block;
}

.hero-side-note span,
.hero-side-note small {
  color: rgba(255, 255, 255, 0.65);
  font-family: "Space Mono", monospace;
  font-size: 7px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-side-note strong {
  margin: 7px 0;
  font-size: clamp(22px, 2vw, 31px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.countdown {
  position: absolute;
  z-index: 5;
  right: clamp(20px, 4vw, 72px);
  bottom: 34px;
  left: clamp(20px, 4vw, 72px);
  min-height: 128px;
  padding: 0 26px;
  display: grid;
  grid-template-columns: 0.7fr 1.25fr 0.55fr;
  align-items: stretch;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(5, 26, 52, 0.72);
  backdrop-filter: blur(16px);
}

.countdown-head,
.countdown > p {
  padding: 25px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.countdown-head span,
.countdown > p {
  font-family: "Space Mono", monospace;
  font-size: 7px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.countdown-head strong {
  margin-top: 5px;
  font-size: clamp(16px, 1.8vw, 25px);
  line-height: 1;
}

.countdown-values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-right: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.countdown-values div {
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.countdown-values div + div {
  border-left: 1px solid var(--line-light);
}

.countdown-values strong {
  font-size: clamp(35px, 4vw, 62px);
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.countdown-values span {
  margin-top: 7px;
  color: var(--steel);
  font-family: "Space Mono", monospace;
  font-size: 7px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.countdown > p {
  margin: 0;
  padding-left: 28px;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.8;
}

.program-section,
.team-section,
.partners-section {
  color: var(--ink);
  background: var(--paper);
}

.program-section,
.format-section,
.team-section,
.match-section,
.instagram-section,
.partners-section,
.listen-section {
  position: relative;
  padding: clamp(88px, 10vw, 154px) clamp(20px, 6vw, 104px);
}

.section-marker {
  width: min(1370px, 100%);
  margin: 0 auto 64px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Space Mono", monospace;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.section-marker span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.marker-light {
  position: relative;
  z-index: 3;
  color: var(--white);
}

.program-grid {
  width: min(1370px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.58fr);
  align-items: center;
  gap: clamp(65px, 10vw, 155px);
}

.program-copy h2,
.format-heading h2,
.team-heading h2,
.match-content h2,
.instagram-heading h2,
.listen-content h2 {
  margin: 0;
  font-size: clamp(60px, 7.8vw, 118px);
  font-weight: 800;
  line-height: 0.82;
  letter-spacing: -0.075em;
  text-transform: uppercase;
}

.program-copy .section-kicker {
  margin: 0 0 28px;
  color: var(--navy-700);
}

.program-text {
  max-width: 750px;
  margin-top: 45px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
}

.program-text p {
  margin: 0;
  color: #566474;
  font-size: 14px;
}

.program-text strong {
  color: var(--ink);
}

.program-copy blockquote {
  margin: 48px 0 0;
  padding: 24px 0 24px 24px;
  color: var(--navy-700);
  border-left: 3px solid var(--navy-700);
  font-size: clamp(21px, 2.2vw, 32px);
  font-weight: 300;
}

.program-image {
  position: relative;
  height: 720px;
  margin: 0;
  background: var(--navy-900);
  overflow: hidden;
  box-shadow: 22px 24px 0 var(--ice);
}

.program-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.48);
  transform-origin: 50% 100%;
}

.program-image figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(3, 18, 37, 0.72);
  backdrop-filter: blur(10px);
}

.program-image figcaption span {
  font-family: "Space Mono", monospace;
  font-size: 7px;
  text-transform: uppercase;
}

.program-facts {
  width: min(1370px, 100%);
  margin: 90px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.program-facts article {
  min-height: 155px;
  padding: 23px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.program-facts article + article {
  border-left: 1px solid var(--line-dark);
}

.program-facts span,
.program-facts small {
  color: #687687;
  font-family: "Space Mono", monospace;
  font-size: 7px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.program-facts strong {
  font-size: clamp(27px, 3vw, 44px);
  line-height: 1;
  letter-spacing: -0.045em;
}

.format-section {
  min-height: 940px;
  color: var(--white);
  background: var(--navy-900);
  overflow: hidden;
}

.format-backdrop {
  position: absolute;
  inset: 0 0 0 45%;
  background-image: url("../images/story-fans.png");
  background-size: cover;
  background-position: center 65%;
  opacity: 0.38;
}

.format-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--navy-900), rgba(6, 26, 52, 0.25)), linear-gradient(0deg, var(--navy-900), transparent 65%);
}

.format-heading {
  position: relative;
  z-index: 2;
  width: min(1370px, 100%);
  margin: 0 auto 68px;
}

.format-heading p {
  margin: 0 0 23px;
  color: var(--steel);
  font-size: 14px;
}

.format-grid {
  position: relative;
  z-index: 2;
  width: min(1370px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(320px, 0.7fr) minmax(0, 1.3fr);
  border: 1px solid var(--line-light);
  background: rgba(3, 18, 37, 0.64);
  backdrop-filter: blur(14px);
}

.format-tabs {
  display: grid;
}

.format-tabs button {
  min-height: 88px;
  padding: 18px 22px;
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 13px;
  color: rgba(255, 255, 255, 0.58);
  background: transparent;
  border: 0;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  text-align: left;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease;
}

.format-tabs button:last-child {
  border-bottom: 0;
}

.format-tabs button span,
.format-tabs button i {
  font-family: "Space Mono", monospace;
  font-size: 8px;
  font-style: normal;
}

.format-tabs button strong {
  font-size: clamp(16px, 1.7vw, 23px);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.format-tabs button.active,
.format-tabs button:hover {
  color: var(--navy-950);
  background: var(--white);
}

.format-tabs button:focus-visible {
  outline: 3px solid var(--ice);
  outline-offset: -5px;
}

.format-panel {
  position: relative;
  min-height: 352px;
  padding: clamp(35px, 5vw, 74px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.format-panel > span {
  color: var(--steel);
  font-family: "Space Mono", monospace;
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.format-panel h3 {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 12px 0 17px;
  font-size: clamp(42px, 5vw, 78px);
  line-height: 0.9;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.format-panel p {
  position: relative;
  z-index: 2;
  max-width: 550px;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.format-panel > b {
  position: absolute;
  top: -0.18em;
  right: -0.04em;
  color: rgba(255, 255, 255, 0.06);
  font-size: clamp(170px, 23vw, 350px);
  line-height: 1;
  letter-spacing: -0.12em;
}

.team-section {
  overflow: hidden;
}

.team-heading {
  width: min(1370px, 100%);
  margin: 0 auto 70px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 60px;
}

.team-heading p {
  max-width: 430px;
  margin: 0;
  color: #667587;
}

.team-leads {
  width: min(1370px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.team-leads article {
  position: relative;
  min-height: 390px;
  padding: clamp(30px, 4vw, 54px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--white);
  background: var(--navy-900);
  overflow: hidden;
}

.team-leads article:last-child {
  background: var(--navy-700);
}

.team-leads article > span {
  position: relative;
  z-index: 2;
  color: var(--steel);
  font-family: "Space Mono", monospace;
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.team-leads article > b {
  position: absolute;
  top: -0.25em;
  right: -0.04em;
  color: rgba(255, 255, 255, 0.07);
  font-size: clamp(170px, 20vw, 320px);
  line-height: 1;
}

.team-leads h3 {
  position: relative;
  z-index: 2;
  max-width: 650px;
  margin: 13px 0 18px;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.9;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.team-leads p {
  position: relative;
  z-index: 2;
  max-width: 420px;
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}

.squad-grid {
  width: min(1370px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-bottom: 1px solid var(--line-dark);
}

.squad-grid article {
  min-height: 245px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line-dark);
}

.squad-grid article:last-child {
  border-right: 0;
}

.squad-grid span,
.squad-grid small {
  font-family: "Space Mono", monospace;
  font-size: 7px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.squad-grid small {
  margin-top: 6px;
  color: #6c7989;
}

.squad-grid h3 {
  margin: auto 0 0;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 0.95;
  letter-spacing: -0.045em;
}

.match-section {
  min-height: 980px;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 0.95fr);
  align-items: center;
  gap: clamp(70px, 11vw, 170px);
  color: var(--white);
  background: var(--navy-950);
  overflow: hidden;
}

.match-backdrop {
  position: absolute;
  inset: 0;
  background-image: url("../images/story-stadium.png");
  background-size: cover;
  background-position: center 66%;
  opacity: 0.72;
}

.match-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 18, 37, 0.98), rgba(3, 18, 37, 0.5) 58%, rgba(3, 18, 37, 0.82)), linear-gradient(0deg, var(--navy-950), transparent 65%);
}

.match-content,
.match-schedule {
  position: relative;
  z-index: 2;
}

.match-content .section-marker {
  margin: 0 0 48px;
}

.match-content h2 {
  font-size: clamp(59px, 7vw, 108px);
}

.match-content > p {
  max-width: 610px;
  margin: 36px 0 0;
  color: rgba(255, 255, 255, 0.67);
}

.match-content strong {
  color: var(--white);
}

.match-schedule {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 20px 22px 0 rgba(143, 168, 195, 0.52);
  backdrop-filter: blur(12px);
}

.match-schedule-head,
.match-schedule-bottom {
  padding: 20px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-family: "Space Mono", monospace;
  font-size: 7px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.match-schedule-head {
  border-bottom: 1px solid var(--line-dark);
}

.match-schedule-head b {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #236c48;
}

.match-schedule article {
  min-height: 142px;
  padding: 22px 26px;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  border-bottom: 1px solid var(--line-dark);
  transition: background 180ms ease;
}

.match-schedule article:hover {
  background: var(--ice);
}

.match-round {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--line-dark);
}

.match-round span,
.match-fixture > span {
  color: #667587;
  font-family: "Space Mono", monospace;
  font-size: 7px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.match-round strong {
  font-size: 30px;
  font-weight: 800;
  color: var(--navy-700);
  line-height: 1;
}

.match-fixture strong {
  margin-top: 13px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: clamp(16px, 1.55vw, 23px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.match-fixture strong em {
  font-style: normal;
}

.match-fixture strong b {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--navy-900);
  border-radius: 50%;
  font-family: "Space Mono", monospace;
  font-size: 7px;
}

.match-schedule time {
  min-width: 92px;
  padding-left: 22px;
  color: var(--navy-900);
  border-left: 1px solid var(--line-dark);
  font-size: clamp(27px, 3vw, 42px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.065em;
}

.match-schedule time small {
  margin-left: 3px;
  color: #667587;
  font-family: "Space Mono", monospace;
  font-size: 8px;
  letter-spacing: 0;
}

.match-schedule-bottom {
  color: #6a7787;
}

.instagram-section {
  color: var(--white);
  background: var(--navy-800);
  overflow: hidden;
}

.instagram-heading {
  width: min(1370px, 100%);
  margin: 0 auto 72px;
  display: grid;
  grid-template-columns: 1fr 0.55fr;
  align-items: end;
  gap: 80px;
}

.instagram-heading > div:first-child > p {
  margin: 0 0 22px;
  color: var(--steel);
  font-family: "Space Mono", monospace;
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.instagram-heading > div:last-child > p {
  max-width: 450px;
  margin: 0 0 27px;
  color: rgba(255, 255, 255, 0.62);
}

.instagram-profile-card {
  width: min(760px, 100%);
  margin: 0 auto;
  padding: clamp(25px, 4vw, 44px);
  color: var(--ink);
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 30px 70px rgba(3, 18, 37, 0.28);
}

.instagram-profile-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
}

.instagram-profile-head img {
  width: 78px;
  height: 78px;
  object-fit: contain;
}

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

.instagram-profile-head strong {
  font-size: clamp(18px, 2.3vw, 28px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.instagram-profile-head span {
  margin-top: 7px;
  color: #697789;
  font-family: "Space Mono", monospace;
  font-size: 7px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.instagram-profile-head > a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--navy-900);
  border-radius: 50%;
  font-size: 20px;
}

.instagram-profile-stats {
  margin: 30px 0;
  padding: 24px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.instagram-profile-stats > div {
  padding: 0 16px;
  text-align: center;
}

.instagram-profile-stats > div + div {
  border-left: 1px solid var(--line-dark);
}

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

.instagram-profile-stats strong {
  font-size: clamp(22px, 3vw, 36px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.instagram-profile-stats span {
  margin-top: 8px;
  color: #718092;
  font-family: "Space Mono", monospace;
  font-size: 7px;
  text-transform: uppercase;
}

.instagram-profile-card > p {
  max-width: 600px;
  margin: 0;
  color: #596879;
}

.story-gallery {
  width: min(1470px, calc(100% + 80px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 13px;
}

.story-gallery figure {
  position: relative;
  height: 650px;
  margin: 0;
  overflow: hidden;
  box-shadow: 0 25px 55px rgba(3, 18, 37, 0.28);
}

.story-gallery figure:nth-child(even) {
  transform: translateY(38px);
}

.story-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.story-gallery figure:hover img {
  transform: scale(1.035);
}

.story-gallery figcaption {
  position: absolute;
  right: 13px;
  bottom: 13px;
  left: 13px;
  padding: 13px 15px;
  display: flex;
  justify-content: space-between;
  gap: 15px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(3, 18, 37, 0.72);
  backdrop-filter: blur(10px);
  font-family: "Space Mono", monospace;
  font-size: 7px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.partners-section {
  padding-top: 78px;
  padding-bottom: 100px;
}

.partner-grid {
  width: min(1370px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.partner-grid > a {
  position: relative;
  min-height: 145px;
  padding: 35px;
  display: grid;
  place-items: center;
  transition: color 180ms ease, background 180ms ease;
}

.partner-grid > a + a {
  border-left: 1px solid var(--line-dark);
}

.partner-grid > a > b {
  position: absolute;
  top: 18px;
  right: 18px;
  color: var(--navy-700);
  font-size: 18px;
  transition: transform 180ms ease;
}

.partner-grid > a:hover {
  background: var(--ice);
}

.partner-grid > a:hover > b {
  transform: translate(4px, -4px);
}

.partner-grid span {
  color: var(--navy-900);
  font-size: clamp(23px, 2.8vw, 40px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.055em;
}

.listen-section {
  min-height: 780px;
  display: grid;
  grid-template-columns: 1fr minmax(380px, 0.75fr);
  align-items: center;
  gap: clamp(70px, 11vw, 170px);
  background: var(--navy-950);
  overflow: hidden;
}

.listen-photo,
.listen-shade {
  position: absolute;
  inset: 0;
}

.listen-photo {
  background-image: url("../images/story-tunnel.png");
  background-size: cover;
  background-position: center 68%;
  opacity: 0.7;
}

.listen-shade {
  background: linear-gradient(90deg, rgba(3, 18, 37, 0.96), rgba(3, 18, 37, 0.64) 56%, rgba(3, 18, 37, 0.9)), linear-gradient(0deg, var(--navy-950), transparent 70%);
}

.listen-content,
.listen-links {
  position: relative;
  z-index: 2;
}

.listen-content > span {
  color: var(--steel);
  font-family: "Space Mono", monospace;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.listen-content h2 {
  margin-top: 28px;
}

.listen-content p {
  max-width: 550px;
  margin: 27px 0 0;
  color: rgba(255, 255, 255, 0.65);
}

.listen-links {
  display: grid;
  background: rgba(3, 18, 37, 0.62);
  backdrop-filter: blur(12px);
}

.listen-links a {
  position: relative;
  min-height: 185px;
  padding: 30px 64px 30px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid var(--line-light);
}

.listen-links a + a {
  border-top: 0;
}

.listen-links a > span {
  color: var(--steel);
  font-family: "Space Mono", monospace;
  font-size: 7px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.listen-links a > strong {
  margin-top: 8px;
  font-size: clamp(28px, 3.7vw, 49px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.listen-links a > p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
}

.listen-links a > b {
  position: absolute;
  right: 26px;
  top: 50%;
  font-size: 26px;
  transform: translateY(-50%);
  transition: transform 180ms ease;
}

.listen-links a:hover > b {
  transform: translate(7px, -50%);
}

.collaborate-section {
  padding: clamp(58px, 8vw, 112px) clamp(20px, 6vw, 104px);
  color: var(--white);
  background: var(--paper);
}

.collaborate-card {
  position: relative;
  width: min(1370px, 100%);
  min-height: 620px;
  margin: 0 auto;
  padding: clamp(42px, 6vw, 84px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.9fr);
  align-content: space-between;
  gap: 70px;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 12%, rgba(143, 168, 195, 0.34), transparent 31%),
    linear-gradient(135deg, var(--navy-700), var(--navy-950) 72%);
  box-shadow: 0 36px 90px rgba(3, 18, 37, 0.22);
}

.collaborate-card::after {
  content: "";
  position: absolute;
  right: -115px;
  bottom: -210px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 54px rgba(255, 255, 255, 0.025), 0 0 0 108px rgba(255, 255, 255, 0.02);
  pointer-events: none;
}

.collaborate-card .section-marker {
  grid-column: 1 / -1;
  align-self: start;
  margin-bottom: 0;
}

.collaborate-copy {
  align-self: end;
}

.collaborate-copy p {
  max-width: 450px;
  margin: 0 0 26px;
  color: var(--steel);
  font-family: "Space Mono", monospace;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.collaborate-copy h2 {
  margin: 0;
  font-size: clamp(56px, 7vw, 110px);
  font-weight: 300;
  line-height: 0.82;
  letter-spacing: -0.075em;
}

.collaborate-email {
  position: relative;
  z-index: 1;
  min-width: 0;
  padding: 30px 70px 30px 30px;
  align-self: end;
  border-top: 1px solid rgba(255, 255, 255, 0.44);
  border-bottom: 1px solid rgba(255, 255, 255, 0.44);
  transition: background 180ms ease, padding-left 180ms ease;
}

.collaborate-email span,
.collaborate-email strong {
  display: block;
}

.collaborate-email span {
  margin-bottom: 13px;
  color: var(--steel);
  font-family: "Space Mono", monospace;
  font-size: 8px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.collaborate-email strong {
  font-size: clamp(23px, 3.2vw, 49px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.055em;
  overflow-wrap: anywhere;
}

.collaborate-email b {
  position: absolute;
  right: 28px;
  top: 50%;
  font-size: 28px;
  transform: translateY(-50%);
}

.collaborate-email:hover {
  padding-left: 40px;
  background: rgba(255, 255, 255, 0.07);
}

footer {
  padding: 72px clamp(20px, 6vw, 104px) 32px;
  background: var(--navy-950);
}

.footer-top {
  width: min(1370px, 100%);
  margin: 0 auto;
  padding-bottom: 60px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
}

.footer-top > img {
  width: 170px;
  height: 170px;
  object-fit: contain;
}

.footer-top > div {
  text-align: right;
}

.footer-top p {
  margin: 0 0 18px;
  color: var(--ice);
  font-size: clamp(22px, 2.8vw, 38px);
  font-weight: 300;
}

.footer-top a {
  padding-bottom: 5px;
  color: rgba(255, 255, 255, 0.65);
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
  font-family: "Space Mono", monospace;
  font-size: 8px;
}

.footer-bottom {
  width: min(1370px, 100%);
  margin: 0 auto;
  padding-top: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-top: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.43);
  font-family: "Space Mono", monospace;
  font-size: 7px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-bottom a:hover,
.footer-bottom strong {
  color: var(--white);
}

/* Prevent WordPress themes and visual editors from replacing the campaign palette. */
.pyf-site .site-header,
.pyf-site .hero,
.pyf-site .format-section,
.pyf-site .match-section,
.pyf-site .instagram-section,
.pyf-site .listen-section,
.pyf-site .collaborate-card,
.pyf-site footer {
  color: var(--white) !important;
}

.pyf-site .hero h1,
.pyf-site .format-section h2,
.pyf-site .format-section h3,
.pyf-site .match-content h2,
.pyf-site .instagram-heading h2,
.pyf-site .listen-content h2,
.pyf-site .collaborate-copy h2,
.pyf-site .listen-links strong,
.pyf-site .collaborate-email strong,
.pyf-site .header-brand b {
  color: var(--white) !important;
}

.pyf-site .hero-lead,
.pyf-site .format-heading p,
.pyf-site .format-panel p,
.pyf-site .match-content > p,
.pyf-site .instagram-heading > div > p,
.pyf-site .listen-content p,
.pyf-site .listen-links p,
.pyf-site .collaborate-copy p,
.pyf-site .footer-top p {
  color: rgba(255, 255, 255, 0.7) !important;
}

.pyf-site .site-header nav a,
.pyf-site .header-brand small,
.pyf-site .hero-side-note span,
.pyf-site .hero-side-note small,
.pyf-site .countdown > p,
.pyf-site .listen-content > span,
.pyf-site .listen-links a > span,
.pyf-site .collaborate-email span,
.pyf-site .footer-top a,
.pyf-site .footer-bottom {
  color: var(--ice) !important;
}

.pyf-site .program-section,
.pyf-site .team-section,
.pyf-site .partners-section,
.pyf-site .match-schedule,
.pyf-site .instagram-profile-card {
  color: var(--ink) !important;
}

.pyf-site .program-section h2,
.pyf-site .program-section h3,
.pyf-site .program-section strong,
.pyf-site .team-section h2,
.pyf-site .team-section h3,
.pyf-site .partners-section span,
.pyf-site .match-schedule strong,
.pyf-site .instagram-profile-card strong,
.pyf-site .instagram-profile-card p,
.pyf-site .instagram-profile-card span {
  color: var(--ink) !important;
}

.pyf-site .program-text p,
.pyf-site .team-heading p,
.pyf-site .squad-grid small,
.pyf-site .instagram-profile-card > p {
  color: #596879 !important;
}

.pyf-site .program-image figcaption,
.pyf-site .program-image figcaption strong,
.pyf-site .program-image figcaption span,
.pyf-site .team-leads h3 {
  color: var(--white) !important;
}

.pyf-site .team-leads article > span {
  color: var(--steel) !important;
}

.pyf-site .team-leads p {
  color: rgba(255, 255, 255, 0.68) !important;
}

.pyf-site .team-leads article > b {
  color: rgba(255, 255, 255, 0.07) !important;
}

.pyf-site .button-light,
.pyf-site .header-live,
.pyf-site .hero-kicker span,
.pyf-site .format-tabs button.active,
.pyf-site .format-tabs button:hover {
  color: var(--navy-950) !important;
}

.pyf-site .format-tabs button:not(.active) {
  color: rgba(255, 255, 255, 0.72) !important;
}

.pyf-site .format-panel > b {
  color: rgba(255, 255, 255, 0.06) !important;
}

.pyf-site .match-schedule-head b {
  color: #236c48 !important;
}

@media (max-width: 1100px) {
  .hero-content {
    width: 66%;
  }

  .hero h1 {
    font-size: clamp(72px, 10.8vw, 112px);
  }

  .program-grid {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.6fr);
    gap: 70px;
  }

  .program-image {
    height: 640px;
  }

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

  .squad-grid article:nth-child(3) {
    border-right: 0;
  }

  .squad-grid article:nth-child(n + 4) {
    border-top: 1px solid var(--line-dark);
  }

  .match-section,
  .listen-section {
    gap: 75px;
  }

  .story-gallery figure {
    height: 570px;
  }
}

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-header nav {
    display: none;
  }

  .hero {
    min-height: 1180px;
    padding-top: 138px;
    align-items: flex-start;
  }

  .hero-photo {
    left: 0;
    opacity: 0.82;
  }

  .hero-shade {
    background: linear-gradient(180deg, rgba(3, 18, 37, 0.98) 4%, rgba(3, 18, 37, 0.78) 50%, rgba(3, 18, 37, 0.38) 75%, var(--navy-950));
  }

  .hero-content {
    width: 100%;
  }

  .hero h1 {
    max-width: 690px;
    font-size: clamp(69px, 15vw, 112px);
  }

  .hero-side-note {
    top: 65%;
  }

  .countdown {
    grid-template-columns: 0.7fr 1.3fr;
  }

  .countdown > p {
    display: none;
  }

  .program-grid,
  .match-section,
  .listen-section {
    grid-template-columns: 1fr;
  }

  .program-grid {
    gap: 80px;
  }

  .program-image {
    width: min(520px, calc(100% - 25px));
    height: 700px;
    margin: 0 auto;
  }

  .format-backdrop {
    left: 20%;
  }

  .format-grid {
    grid-template-columns: 1fr;
  }

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

  .format-tabs button {
    border-right: 1px solid var(--line-light);
  }

  .format-tabs button:nth-child(even) {
    border-right: 0;
  }

  .format-tabs button:nth-child(n + 3) {
    border-bottom: 0;
  }

  .team-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .team-leads {
    grid-template-columns: 1fr;
  }

  .match-section {
    gap: 80px;
  }

  .match-schedule {
    width: min(720px, calc(100% - 20px));
    margin: 0 auto;
  }

  .instagram-heading {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .story-gallery {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .story-gallery figure,
  .story-gallery figure:nth-child(even) {
    height: 650px;
    transform: none;
  }

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

  .partner-grid > a:nth-child(n + 3) {
    border-top: 1px solid var(--line-dark);
  }

  .partner-grid > a:nth-child(odd) {
    border-left: 0;
  }

  .listen-links {
    max-width: 650px;
  }

  .collaborate-card {
    min-height: 700px;
    grid-template-columns: 1fr;
    gap: 55px;
  }
}

@media (max-width: 782px) {
  body.admin-bar.pyf-standalone .site-header {
    top: 46px;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 76px;
    padding: 9px 16px;
  }

  .header-brand {
    gap: 8px;
  }

  .header-brand > img {
    width: 49px;
    height: 49px;
  }

  .header-brand span b {
    font-size: 9px;
  }

  .header-brand span small {
    font-size: 5px;
  }

  .header-live {
    min-height: 38px;
    padding: 9px 11px;
    font-size: 6px;
  }

  .hero {
    min-height: 1010px;
    padding: 112px 18px 178px;
  }

  .hero-logo {
    width: 104px;
    height: 104px;
  }

  .hero-kicker {
    margin-top: 24px;
    font-size: 7px;
  }

  .hero h1 {
    margin-top: 25px;
    font-size: clamp(52px, 17vw, 75px);
  }

  .hero-lead {
    font-size: 14px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-side-note {
    top: auto;
    right: 18px;
    bottom: 196px;
    transform: none;
  }

  .countdown {
    right: 0;
    bottom: 0;
    left: 0;
    min-height: 150px;
    padding: 0;
    grid-template-columns: 1fr;
    border-right: 0;
    border-left: 0;
  }

  .countdown-head {
    min-height: 48px;
    padding: 8px 16px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .countdown-head strong {
    font-size: 15px;
  }

  .countdown-values {
    border: 0;
    border-top: 1px solid var(--line-light);
  }

  .countdown-values div {
    padding: 13px 6px;
  }

  .countdown-values strong {
    font-size: 34px;
  }

  .program-section,
  .format-section,
  .team-section,
  .match-section,
  .instagram-section,
  .partners-section,
  .listen-section,
  .collaborate-section {
    padding-right: 18px;
    padding-left: 18px;
  }

  .section-marker {
    margin-bottom: 47px;
  }

  .program-copy h2,
  .format-heading h2,
  .team-heading h2,
  .match-content h2,
  .instagram-heading h2,
  .listen-content h2 {
    font-size: clamp(49px, 15vw, 68px);
  }

  .program-text {
    grid-template-columns: 1fr;
  }

  .program-image {
    width: calc(100% - 14px);
    height: 575px;
    box-shadow: 13px 14px 0 var(--ice);
  }

  .program-facts {
    grid-template-columns: 1fr;
  }

  .program-facts article {
    min-height: 126px;
  }

  .program-facts article + article {
    border-top: 1px solid var(--line-dark);
    border-left: 0;
  }

  .format-tabs {
    grid-template-columns: 1fr;
  }

  .format-tabs button,
  .format-tabs button:nth-child(n) {
    min-height: 74px;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .format-tabs button:last-child {
    border-bottom: 0;
  }

  .format-panel {
    min-height: 340px;
    padding: 28px 22px;
  }

  .format-panel h3 {
    font-size: 42px;
  }

  .team-leads article {
    min-height: 350px;
    padding: 28px 22px;
  }

  .team-leads h3 {
    font-size: 44px;
  }

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

  .squad-grid article,
  .squad-grid article:nth-child(n) {
    min-height: 190px;
    border-top: 1px solid var(--line-dark);
    border-right: 1px solid var(--line-dark);
  }

  .squad-grid article:nth-child(even) {
    border-right: 0;
  }

  .squad-grid article:last-child {
    grid-column: 1 / -1;
    border-right: 0;
  }

  .match-schedule {
    width: calc(100% - 10px);
    box-shadow: 10px 11px 0 rgba(143, 168, 195, 0.52);
  }

  .match-schedule-head,
  .match-schedule-bottom {
    padding: 17px 16px;
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .match-schedule article {
    min-height: 168px;
    padding: 18px 16px;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 14px;
  }

  .match-fixture strong {
    flex-wrap: wrap;
    gap: 8px;
    font-size: 17px;
  }

  .match-fixture strong b {
    width: 28px;
    height: 28px;
  }

  .match-schedule time {
    min-width: 0;
    padding-left: 0;
    grid-column: 2;
    border-left: 0;
    font-size: 30px;
  }

  .story-gallery {
    grid-template-columns: 1fr;
  }

  .story-gallery figure,
  .story-gallery figure:nth-child(even) {
    height: auto;
    aspect-ratio: 9 / 16;
  }

  .partner-grid {
    grid-template-columns: 1fr;
  }

  .partner-grid > a,
  .partner-grid > a:nth-child(n) {
    min-height: 112px;
    border-top: 1px solid var(--line-dark);
    border-left: 0;
  }

  .partner-grid > a:first-child {
    border-top: 0;
  }

  .collaborate-card {
    min-height: 620px;
    padding: 32px 22px;
    gap: 44px;
  }

  .collaborate-card .section-marker {
    margin-bottom: 0;
  }

  .collaborate-copy h2 {
    font-size: clamp(49px, 15vw, 68px);
  }

  .collaborate-email {
    padding: 24px 48px 24px 16px;
  }

  .collaborate-email strong {
    font-size: clamp(20px, 6.1vw, 29px);
  }

  .collaborate-email b {
    right: 16px;
  }

  .footer-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-top > img {
    width: 132px;
    height: 132px;
  }

  .footer-top > div {
    text-align: left;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
}
