:root {
  --ink: #071a2c;
  --ink-soft: #102c46;
  --paper: #f4efdf;
  --paper-bright: #fffaf0;
  --red: #d83232;
  --sky: #86c5e8;
  --gold: #e8bd65;
  --line: rgba(7, 26, 44, 0.2);
  --white-line: rgba(255, 250, 240, 0.2);
  --shadow: 0 24px 70px rgba(1, 12, 24, 0.2);
  --shell: min(1220px, calc(100% - 48px));
  --display: Impact, Haettenschweiler, "Arial Narrow Bold", "Arial Narrow", sans-serif;
  --body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

:focus-visible {
  outline: 3px solid var(--sky);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--paper-bright);
  background: var(--red);
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.section-shell {
  width: var(--shell);
  margin-inline: auto;
}

.eyebrow {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 0 0 18px;
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 30px;
  height: 3px;
  content: "";
  background: currentColor;
}

.eyebrow-light {
  color: var(--sky);
}

.site-header {
  position: relative;
  z-index: 100;
  height: 78px;
  color: var(--paper-bright);
  background: var(--ink);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.site-header.is-stuck {
  position: sticky;
  top: 0;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.header-inner {
  width: var(--shell);
  height: 100%;
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 36px;
  align-items: center;
}

.wordmark {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  min-height: 46px;
}

.wordmark-number {
  color: var(--paper-bright);
  font-family: var(--display);
  font-size: 2.75rem;
  font-style: italic;
  line-height: 0.8;
  letter-spacing: -0.04em;
}

.wordmark-copy {
  padding-left: 9px;
  color: var(--sky);
  border-left: 1px solid rgba(255, 255, 255, 0.28);
  font-size: 0.58rem;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.header-status {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-self: center;
  color: rgba(255, 250, 240, 0.68);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-status b {
  padding-left: 10px;
  color: var(--paper-bright);
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(216, 50, 50, 0.15);
}

.primary-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}

.primary-nav a {
  position: relative;
  padding-block: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--sky);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--paper-bright);
  background:
    linear-gradient(90deg, rgba(134, 197, 232, 0.06) 1px, transparent 1px) 0 0 / 80px 80px,
    linear-gradient(rgba(134, 197, 232, 0.06) 1px, transparent 1px) 0 0 / 80px 80px,
    var(--ink);
}

.hero::before {
  position: absolute;
  width: 48vw;
  height: 48vw;
  min-width: 560px;
  min-height: 560px;
  top: -20vw;
  left: -16vw;
  content: "";
  border: 1px solid rgba(134, 197, 232, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(134, 197, 232, 0.025), 0 0 0 180px rgba(134, 197, 232, 0.02);
}

.hero-grid {
  position: relative;
  z-index: 1;
  width: var(--shell);
  min-height: 720px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.72fr);
  gap: clamp(48px, 8vw, 112px);
  align-items: center;
  padding: 64px 0 76px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.edition-line {
  display: flex;
  justify-content: space-between;
  max-width: 560px;
  margin-bottom: 68px;
  padding-bottom: 10px;
  color: rgba(255, 250, 240, 0.54);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4.7rem, 8.3vw, 8.9rem);
  font-weight: 900;
  line-height: 0.78;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.hero h1::first-line {
  color: var(--paper-bright);
}

.hero-lead {
  max-width: 640px;
  margin: 34px 0 0;
  color: rgba(255, 250, 240, 0.72);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 36px;
}

.button {
  min-height: 52px;
  padding: 0 22px;
  display: inline-flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button-primary {
  color: white;
  background: var(--red);
  border-color: var(--red);
}

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

.button-primary:hover {
  background: #bb252b;
  border-color: #bb252b;
}

.button-secondary:hover {
  color: var(--ink);
  background: var(--paper-bright);
  border-color: var(--paper-bright);
}

.hero-facts {
  display: grid;
  grid-template-columns: 0.9fr 0.8fr 1.5fr;
  max-width: 700px;
  margin: 52px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-facts div {
  min-width: 0;
  padding: 18px 18px 18px 0;
}

.hero-facts div + div {
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-facts dt,
.hero-facts dd {
  margin: 0;
}

.hero-facts dt {
  margin-bottom: 3px;
  color: var(--sky);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-facts dd {
  overflow-wrap: anywhere;
  font-size: 0.93rem;
  font-weight: 700;
}

.cover {
  position: relative;
  width: min(100%, 450px);
  aspect-ratio: 4 / 5.2;
  justify-self: end;
  overflow: hidden;
  color: var(--paper-bright);
  background:
    linear-gradient(145deg, rgba(134, 197, 232, 0.16), transparent 42%),
    #09213a;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: var(--shadow);
  transform: rotate(2.2deg);
}

.cover::before {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: 18%;
  width: 7px;
  content: "";
  background: var(--red);
  opacity: 0.92;
}

.cover::after {
  position: absolute;
  z-index: 2;
  top: 7%;
  right: 7%;
  width: 55px;
  height: 55px;
  content: "";
  border-top: 2px solid var(--paper-bright);
  border-right: 2px solid var(--paper-bright);
}

.cover-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.06) brightness(0.62);
}

.cover-wash {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 26, 44, 0.3), rgba(7, 26, 44, 0.1) 40%, rgba(7, 26, 44, 0.95));
}

.cover-kicker {
  position: absolute;
  z-index: 3;
  top: 7%;
  left: 7%;
  margin: 0;
  color: var(--sky);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.cover-teams {
  position: absolute;
  z-index: 3;
  right: 7%;
  bottom: 25%;
  left: 7%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 14px;
  align-items: center;
}

.cover-team {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cover-team strong {
  margin-top: 10px;
  font-family: var(--display);
  font-size: 2.4rem;
  line-height: 0.85;
  letter-spacing: 0.01em;
}

.cover-team small {
  margin-top: 5px;
  color: rgba(255, 250, 240, 0.67);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cover-versus {
  font-family: Georgia, serif;
  font-size: 1.2rem;
  font-style: italic;
}

.crest {
  position: relative;
  width: 74px;
  height: 74px;
  overflow: hidden;
  background: var(--paper-bright);
  border: 3px solid var(--paper-bright);
  border-radius: 50%;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.28);
}

.crest-england::before,
.crest-england::after {
  position: absolute;
  content: "";
  background: var(--red);
}

.crest-england::before {
  top: 0;
  bottom: 0;
  left: 29px;
  width: 10px;
}

.crest-england::after {
  top: 29px;
  right: 0;
  left: 0;
  height: 10px;
}

.crest-argentina {
  background: linear-gradient(180deg, var(--sky) 0 33.33%, white 33.33% 66.66%, var(--sky) 66.66%);
}

.crest-argentina i {
  position: absolute;
  width: 17px;
  height: 17px;
  top: 25px;
  left: 25px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(232, 189, 101, 0.22);
}

.cover-footer {
  position: absolute;
  z-index: 3;
  right: 7%;
  bottom: 7%;
  left: 7%;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.38);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.cover-time {
  color: var(--paper-bright);
  font-family: var(--display);
  font-size: 2.7rem;
  line-height: 0.8;
  letter-spacing: 0;
}

.cover-issue {
  position: absolute;
  z-index: 3;
  top: 26%;
  left: -23px;
  color: rgba(255, 250, 240, 0.72);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transform: rotate(-90deg);
}

.hero-ribbon {
  position: relative;
  z-index: 3;
  min-height: 48px;
  padding: 10px max(24px, calc((100vw - 1220px) / 2));
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: var(--ink);
  background: var(--sky);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-ribbon span:last-child {
  text-align: right;
}

.hero-ribbon i {
  padding-inline: 38px;
  font-family: Georgia, serif;
  font-weight: 400;
  letter-spacing: 0.08em;
}

.broadcast {
  position: relative;
  overflow: hidden;
  padding: 92px 0 100px;
  color: var(--paper-bright);
  background: var(--ink-soft);
}

.broadcast::after {
  position: absolute;
  top: 10%;
  right: -180px;
  width: 430px;
  height: 430px;
  content: "";
  border: 80px solid rgba(134, 197, 232, 0.045);
  border-radius: 50%;
}

.broadcast .section-shell {
  position: relative;
  z-index: 1;
}

.section-heading {
  margin-bottom: 32px;
  display: flex;
  gap: 36px;
  align-items: flex-end;
  justify-content: space-between;
}

.section-heading h2,
.editorial-head h2,
.guide-intro h2,
.faq-heading h2,
.sources h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.8rem, 5.3vw, 5.4rem);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.on-air-label {
  min-width: 170px;
  padding: 8px 0 8px 18px;
  display: flex;
  gap: 14px;
  align-items: center;
  border-left: 1px solid rgba(255, 255, 255, 0.24);
}

.on-air-label > span {
  width: 10px;
  height: 10px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(216, 50, 50, 0.16);
}

.on-air-label div {
  display: flex;
  flex-direction: column;
}

.on-air-label small {
  color: var(--sky);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.on-air-label strong {
  font-size: 0.95rem;
}

.broadcast-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 30%, rgba(134, 197, 232, 0.12), transparent 40%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.022) 0 1px, transparent 1px 12px),
    #030f1d;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.broadcast-stage::before,
.broadcast-stage::after {
  position: absolute;
  z-index: 0;
  content: "";
  pointer-events: none;
}

.broadcast-stage::before {
  inset: 18px;
  border: 1px solid rgba(134, 197, 232, 0.13);
}

.broadcast-stage::after {
  top: 18px;
  left: 18px;
  width: 54px;
  height: 5px;
  background: var(--red);
}

.player-placeholder,
.dreams-player {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: grid;
  place-items: center;
  min-width: 0;
  min-height: 0;
}

.player-placeholder .loading,
.dreams-player:not(:has(iframe)):not(:has(video)) {
  color: rgba(255, 250, 240, 0.78);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-align: center;
}

.player-placeholder .loading {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.player-placeholder .loading::before {
  width: 66px;
  height: 66px;
  margin-bottom: 20px;
  content: "";
  border: 2px solid rgba(134, 197, 232, 0.25);
  border-top-color: var(--sky);
  border-radius: 50%;
  animation: spin 1.4s linear infinite;
}

.player-placeholder .loading span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 250, 240, 0.48);
  font-size: 0.7rem;
  font-weight: 500;
}

.dreams-player iframe,
.dreams-player video,
.video-wrapper > iframe,
.broadcast-stage > iframe {
  position: absolute !important;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  border: 0;
}

.video-wrapper {
  position: absolute;
  z-index: 2;
  inset: 0;
}

.broadcast-note {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 22px 0 0 28px;
  color: rgba(255, 250, 240, 0.58);
  border-left: 4px solid var(--sky);
  font-size: 0.83rem;
  line-height: 1.6;
}

.broadcast-note p {
  margin: 0;
}

.broadcast-note b {
  color: var(--paper-bright);
}

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

.editorial {
  padding: 118px 0 128px;
  background:
    linear-gradient(90deg, transparent calc(50% - 1px), rgba(7, 26, 44, 0.035) calc(50% - 1px), rgba(7, 26, 44, 0.035) 50%, transparent 50%),
    var(--paper);
}

.editorial-title-row {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.65fr);
  gap: 72px;
  align-items: end;
  padding-bottom: 54px;
  border-bottom: 1px solid var(--line);
}

.editorial-head h2 {
  max-width: 820px;
  font-size: clamp(3.4rem, 6.8vw, 6.8rem);
}

.editorial-deck {
  margin: 0;
  padding-top: 18px;
  color: rgba(7, 26, 44, 0.67);
  border-top: 5px solid var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  line-height: 1.65;
}

.article-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 760px);
  gap: clamp(50px, 8vw, 112px);
  justify-content: center;
  align-items: start;
  margin-top: 72px;
}

.match-card {
  position: sticky;
  top: 108px;
  padding: 24px;
  color: var(--paper-bright);
  background: var(--ink);
  box-shadow: 14px 14px 0 var(--sky);
}

.match-card::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  content: "";
  border-top: 34px solid var(--red);
  border-left: 34px solid transparent;
}

.match-card-label {
  margin: 0 0 24px;
  color: var(--sky);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.match-card time {
  display: flex;
  gap: 12px;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.match-card time b {
  font-family: var(--display);
  font-size: 4.2rem;
  line-height: 0.8;
}

.match-card time span {
  color: rgba(255, 250, 240, 0.58);
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.match-card-scoreline {
  margin-block: 20px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 7px;
  align-items: center;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}

.match-card-scoreline i {
  padding: 5px 7px;
  color: var(--ink);
  background: var(--paper-bright);
  font-size: 0.65rem;
  font-style: normal;
}

.match-card dl {
  margin: 0;
}

.match-card dl div {
  padding: 9px 0;
  display: flex;
  gap: 14px;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.68rem;
}

.match-card dt {
  color: rgba(255, 250, 240, 0.48);
}

.match-card dd {
  margin: 0;
  font-weight: 700;
  text-align: right;
}

.match-card > a {
  min-height: 44px;
  margin-top: 20px;
  padding: 10px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  background: var(--red);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.match-article > section {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 26px;
  padding: 0 0 58px;
}

.match-article > section + section {
  padding-top: 12px;
}

.article-number {
  padding-top: 9px;
  color: var(--red);
  border-top: 3px solid var(--red);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.match-article h3,
.guide-list h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2rem, 3.4vw, 3.3rem);
  line-height: 0.95;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}

.match-article h3 {
  margin-bottom: 24px;
}

.match-article p {
  margin: 0 0 20px;
  color: rgba(7, 26, 44, 0.78);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  line-height: 1.78;
}

.match-article p:first-of-type::first-letter {
  float: left;
  margin: 10px 8px 0 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: 4rem;
  line-height: 0.6;
}

.pull-quote {
  position: relative;
  margin: 2px 0 62px 74px;
  padding: 34px 38px;
  color: var(--paper-bright);
  background: var(--ink-soft);
  border-left: 8px solid var(--sky);
}

.pull-quote::after {
  position: absolute;
  right: 18px;
  bottom: -34px;
  color: var(--sky);
  content: "66";
  font-family: var(--display);
  font-size: 5.4rem;
  line-height: 1;
  opacity: 0.24;
}

.pull-quote span {
  color: var(--sky);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pull-quote p {
  margin: 10px 0 0;
  color: inherit;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.55;
}

.viewer-guide {
  position: relative;
  overflow: hidden;
  padding: 108px 0;
  color: var(--paper-bright);
  background: var(--red);
}

.viewer-guide::before {
  position: absolute;
  top: -290px;
  left: -230px;
  width: 600px;
  height: 600px;
  content: "";
  border: 90px solid rgba(255, 255, 255, 0.045);
  border-radius: 50%;
}

.guide-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(60px, 10vw, 140px);
  align-items: start;
}

.guide-intro {
  position: sticky;
  top: 110px;
}

.guide-intro .eyebrow-light {
  color: var(--ink);
}

.guide-intro h2 {
  max-width: 480px;
}

.guide-intro > p:last-child {
  max-width: 440px;
  margin: 28px 0 0;
  color: rgba(255, 250, 240, 0.75);
}

.guide-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: none;
}

.guide-list li {
  padding: 28px 0;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.guide-list li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.guide-list li > span {
  padding-top: 4px;
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 900;
}

.guide-list h3 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.guide-list p {
  max-width: 560px;
  margin: 10px 0 0;
  color: rgba(255, 250, 240, 0.72);
  font-size: 0.9rem;
}

.faq {
  padding: 116px 0 130px;
  background: var(--paper-bright);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(60px, 9vw, 130px);
  align-items: start;
}

.faq-heading {
  position: sticky;
  top: 110px;
}

.faq-heading p:last-child {
  max-width: 400px;
  margin: 26px 0 0;
  color: rgba(7, 26, 44, 0.62);
}

.faq-list details {
  border-top: 1px solid var(--line);
}

.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  min-height: 86px;
  padding: 22px 0;
  display: grid;
  grid-template-columns: 1fr 32px;
  gap: 22px;
  align-items: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.4;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary span {
  position: relative;
  width: 32px;
  height: 32px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.faq-list summary span::before,
.faq-list summary span::after {
  position: absolute;
  top: 15px;
  left: 9px;
  width: 12px;
  height: 1px;
  content: "";
  background: var(--ink);
  transition: transform 180ms ease;
}

.faq-list summary span::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary span {
  color: white;
  background: var(--red);
  border-color: var(--red);
}

.faq-list details[open] summary span::before,
.faq-list details[open] summary span::after {
  background: white;
}

.faq-list details[open] summary span::after {
  transform: rotate(0);
}

.faq-list details p {
  max-width: 680px;
  margin: -4px 54px 26px 0;
  color: rgba(7, 26, 44, 0.65);
  font-size: 0.95rem;
}

.sources {
  padding: 82px 0;
  color: var(--paper-bright);
  background: var(--ink);
}

.sources-inner {
  min-width: 0;
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 36px 90px;
  align-items: end;
}

.sources h2 {
  font-size: clamp(2.8rem, 4.6vw, 4.8rem);
}

.sources-note {
  max-width: 560px;
  margin: 0;
  justify-self: end;
  color: rgba(255, 250, 240, 0.6);
  font-size: 0.9rem;
}

.source-links {
  min-width: 0;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--white-line);
  border-left: 1px solid var(--white-line);
}

.source-links a {
  position: relative;
  min-height: 132px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-right: 1px solid var(--white-line);
  border-bottom: 1px solid var(--white-line);
  transition: color 180ms ease, background 180ms ease;
}

.source-links a:hover {
  color: var(--ink);
  background: var(--sky);
}

.source-links span {
  margin-bottom: 5px;
  color: var(--sky);
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.source-links a:hover span {
  color: var(--ink-soft);
}

.source-links b {
  font-size: 0.88rem;
}

.source-links i {
  position: absolute;
  top: 17px;
  right: 17px;
  font-style: normal;
}

.site-footer {
  padding: 36px 0;
  color: rgba(255, 250, 240, 0.58);
  background: #030f1d;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  align-items: center;
}

.footer-inner > div {
  display: flex;
  gap: 14px;
  align-items: center;
}

.footer-mark {
  color: var(--paper-bright);
  font-family: var(--display);
  font-size: 3.1rem;
  font-style: italic;
  line-height: 1;
}

.footer-inner p {
  margin: 0;
  font-size: 0.68rem;
  line-height: 1.45;
}

.footer-inner b {
  color: var(--paper-bright);
}

.footer-inner > a {
  padding-bottom: 5px;
  color: var(--paper-bright);
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-inner > a span {
  margin-left: 9px;
}

.copyright {
  justify-self: end;
  text-align: right;
}

@media (max-width: 1050px) {
  .header-status {
    display: none;
  }

  .header-inner {
    grid-template-columns: auto 1fr;
  }

  .primary-nav {
    justify-self: end;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.68fr);
    gap: 48px;
  }

  .hero h1 {
    font-size: clamp(4.4rem, 8.6vw, 7.5rem);
  }

  .edition-line {
    margin-bottom: 45px;
  }

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

@media (max-width: 900px) {
  :root {
    --shell: min(calc(100% - 40px), 720px);
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: minmax(0, 1fr);
    gap: 62px;
    padding-top: 58px;
  }

  .hero h1 {
    max-width: 720px;
    font-size: clamp(5rem, 14vw, 7.2rem);
  }

  .hero-lead {
    max-width: 620px;
  }

  .cover {
    width: min(83vw, 500px);
    justify-self: center;
    transform: rotate(1.4deg);
  }

  .editorial-title-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .editorial-deck {
    max-width: 620px;
  }

  .article-layout {
    grid-template-columns: 1fr;
  }

  .match-card {
    position: relative;
    top: auto;
    width: min(100%, 520px);
    justify-self: center;
  }

  .guide-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .guide-intro,
  .faq-heading {
    position: relative;
    top: auto;
  }

  .guide-intro h2,
  .faq-heading h2 {
    max-width: 680px;
  }

  .sources-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .sources-note {
    justify-self: start;
  }

  .footer-inner {
    grid-template-columns: 1fr auto;
  }

  .copyright {
    grid-column: 1 / -1;
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 640px) {
  :root {
    --shell: calc(100% - 28px);
  }

  html {
    scroll-padding-top: 72px;
  }

  .site-header {
    height: 68px;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
    gap: 16px;
  }

  .wordmark-number {
    font-size: 2.35rem;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .primary-nav {
    position: fixed;
    z-index: 99;
    top: 68px;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 38px 24px;
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    justify-content: flex-start;
    color: var(--paper-bright);
    background: var(--ink);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
  }

  .primary-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .primary-nav a {
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    font-family: var(--display);
    font-size: 2.5rem;
    line-height: 1;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 48px;
    padding: 38px 0 56px;
  }

  .edition-line {
    margin-bottom: 38px;
    font-size: 0.55rem;
  }

  .hero .eyebrow {
    max-width: 290px;
    margin-bottom: 14px;
    line-height: 1.4;
  }

  .hero h1 {
    font-size: clamp(3.85rem, 18.4vw, 5.3rem);
    line-height: 0.8;
  }

  .hero-lead {
    margin-top: 27px;
    font-size: 0.98rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
    min-height: 54px;
  }

  .hero-facts {
    grid-template-columns: 1fr 1fr;
    margin-top: 38px;
  }

  .hero-facts div:last-child {
    grid-column: 1 / -1;
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 0;
  }

  .cover {
    width: calc(100% - 16px);
  }

  .cover::before {
    width: 5px;
  }

  .cover-teams {
    gap: 8px;
  }

  .crest {
    width: 60px;
    height: 60px;
  }

  .crest-england::before {
    left: 23px;
    width: 9px;
  }

  .crest-england::after {
    top: 23px;
    height: 9px;
  }

  .crest-argentina i {
    top: 19px;
    left: 19px;
  }

  .cover-team strong {
    font-size: 1.9rem;
  }

  .cover-time {
    font-size: 2.2rem;
  }

  .hero-ribbon {
    grid-template-columns: 1fr 1fr;
    padding-inline: 14px;
    font-size: 0.55rem;
  }

  .hero-ribbon i {
    display: none;
  }

  .broadcast {
    padding: 70px 0 76px;
  }

  .section-heading {
    display: block;
  }

  .section-heading h2,
  .editorial-head h2,
  .guide-intro h2,
  .faq-heading h2,
  .sources h2 {
    font-size: clamp(2.65rem, 13.2vw, 4rem);
  }

  .on-air-label {
    margin-top: 24px;
  }

  .broadcast-stage {
    width: calc(100% + 28px);
    margin-left: -14px;
    border-right: 0;
    border-left: 0;
  }

  .broadcast-stage::before {
    inset: 8px;
  }

  .broadcast-stage::after {
    top: 8px;
    left: 8px;
    width: 36px;
    height: 3px;
  }

  .player-placeholder .loading {
    padding-inline: 18px;
    font-size: 0.72rem;
  }

  .player-placeholder .loading::before {
    width: 46px;
    height: 46px;
    margin-bottom: 12px;
  }

  .broadcast-note {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-left: 16px;
    font-size: 0.76rem;
  }

  .editorial {
    padding: 84px 0 88px;
  }

  .editorial-title-row {
    padding-bottom: 38px;
  }

  .editorial-deck {
    font-size: 1rem;
  }

  .article-layout {
    gap: 58px;
    margin-top: 52px;
  }

  .match-card {
    width: calc(100% - 14px);
    margin-left: -7px;
    box-shadow: 8px 8px 0 var(--sky);
  }

  .match-article > section {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 15px;
    padding-bottom: 46px;
  }

  .match-article h3,
  .guide-list h3 {
    font-size: clamp(1.8rem, 9.7vw, 2.6rem);
  }

  .match-article p {
    font-size: 1rem;
    line-height: 1.72;
  }

  .pull-quote {
    margin: 0 0 54px;
    padding: 26px 24px;
  }

  .pull-quote p {
    font-size: 1.14rem;
  }

  .viewer-guide,
  .faq {
    padding: 82px 0 90px;
  }

  .guide-grid,
  .faq-grid {
    gap: 44px;
  }

  .guide-list li {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px;
  }

  .faq-list summary {
    min-height: 76px;
    grid-template-columns: 1fr 30px;
    gap: 12px;
    font-size: 1rem;
  }

  .faq-list details p {
    margin-right: 0;
  }

  .sources {
    padding: 72px 0;
  }

  .source-links {
    grid-template-columns: minmax(0, 1fr);
  }

  .source-links a {
    width: 100%;
    min-width: 0;
    min-height: 105px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .copyright {
    grid-column: auto;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
