@font-face { font-family: "Teko GE"; src: url("assets/fonts/Teko-Bold.woff2") format("woff2"); font-weight: 700; }
@font-face { font-family: "Teko GE"; src: url("assets/fonts/Teko-SemiBold.woff2") format("woff2"); font-weight: 600; }
@font-face { font-family: "Rajdhani GE"; src: url("assets/fonts/Rajdhani-Regular.woff2") format("woff2"); font-weight: 400; }
@font-face { font-family: "Rajdhani GE"; src: url("assets/fonts/Rajdhani-Bold.woff2") format("woff2"); font-weight: 700; }

:root {
  --blue: #0057b8;
  --red: #dc3030;
  --ink: #1a1a1a;
  --black: #050607;
  --panel: #10151d;
  --panel-2: #161b22;
  --paper: #f4f0e6;
  --gold: #d6a84f;
  --line: rgba(255, 255, 255, 0.16);
  --soft: rgba(255, 255, 255, 0.72);
  --muted: rgba(255, 255, 255, 0.54);
  --white: #ffffff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  width: 100%;
  overflow-x: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 16% 10%, rgba(0, 87, 184, 0.22), transparent 26%),
    radial-gradient(circle at 88% 4%, rgba(220, 48, 48, 0.2), transparent 24%),
    linear-gradient(112deg, transparent 0 19%, rgba(0, 87, 184, 0.24) 19% 20%, transparent 20% 56%, rgba(220, 48, 48, 0.2) 56% 57%, transparent 57%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px),
    var(--ink);
  background-size: auto, 70px 70px, 70px 70px, auto;
  font-family: "Rajdhani GE", sans-serif;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.2;
  background-image:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 8px),
    linear-gradient(120deg, transparent 0 38%, rgba(0, 87, 184, 0.42) 38% 39%, transparent 39% 67%, rgba(220, 48, 48, 0.38) 67% 68%, transparent 68%);
  mix-blend-mode: screen;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { margin: 0; }
button, select { font: inherit; }
a:focus-visible, button:focus-visible, select:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
.site-shell { position: relative; overflow: hidden; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  padding: 18px clamp(18px, 4vw, 64px);
  border-bottom: 1px solid var(--line);
  background: rgba(26, 26, 26, 0.9);
  box-shadow: 0 18px 44px rgba(0,0,0,0.22);
  backdrop-filter: blur(18px);
}
.brand-mark img { width: 126px; }
.nav-links { display: flex; gap: clamp(14px, 3vw, 34px); color: var(--soft); font-size: 0.86rem; font-weight: 700; text-transform: uppercase; }
.nav-links a, .topbar-cta { transition: color 180ms ease, transform 180ms ease, border-color 180ms ease; }
.nav-links a:hover, .topbar-cta:hover { color: var(--white); transform: translateY(-1px); border-color: rgba(255,255,255,0.38); }
.topbar-cta { border: 1px solid var(--red); padding: 11px 16px 9px; font-family: "Teko GE", sans-serif; font-size: 1.1rem; text-transform: uppercase; background: linear-gradient(135deg, var(--red), #a91118); box-shadow: 0 12px 28px rgba(220, 48, 48, 0.26); }

.status-bar {
  position: sticky;
  top: 80px;
  z-index: 19;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
  background: rgba(5, 7, 11, 0.9);
  backdrop-filter: blur(16px);
}
.status-bar a {
  display: grid;
  gap: 3px;
  min-width: 0;
  padding: 10px clamp(10px, 2vw, 18px) 8px;
  border-right: 1px solid var(--line);
}
.status-bar a:last-child { border-right: 0; }
.status-bar span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}
.status-bar strong {
  overflow: hidden;
  color: #f7fbff;
  font-family: "Teko GE", sans-serif;
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  font-weight: 700;
  line-height: 0.9;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}
.status-bar a:hover { background: rgba(255,255,255,0.06); }

.hero {
  position: relative;
  min-height: min(calc(100vh - 126px), 660px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.55fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: stretch;
  padding: clamp(34px, 7vw, 96px) clamp(18px, 6vw, 92px) 56px;
}
.hero::before {
  content: "GE";
  position: absolute;
  left: clamp(18px, 5vw, 72px);
  top: 104px;
  color: rgba(255,255,255,0.035);
  font-family: "Teko GE", sans-serif;
  font-size: clamp(10rem, 28vw, 28rem);
  line-height: 0.72;
  pointer-events: none;
}
.hero-copy { position: relative; z-index: 1; align-self: center; min-width: 0; }
.eyebrow, .section-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 5px 10px 3px;
  border-left: 5px solid var(--red);
  background: rgba(0, 87, 184, 0.2);
  color: #e5efff;
  font-family: "Teko GE", sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
}
h1 {
  max-width: 980px;
  margin-top: 18px;
  font-family: "Teko GE", sans-serif;
  font-size: clamp(5.4rem, 12vw, 12rem);
  line-height: 0.76;
  text-transform: uppercase;
}
.campaign-line {
  max-width: 980px;
  margin-top: 14px;
  color: var(--paper);
  font-family: "Teko GE", sans-serif;
  font-size: clamp(2.25rem, 5vw, 5.7rem);
  line-height: 0.82;
  text-transform: uppercase;
}
h2 {
  margin-top: 12px;
  font-family: "Teko GE", sans-serif;
  font-size: clamp(3rem, 6vw, 6.7rem);
  line-height: 0.82;
  text-transform: uppercase;
}
.hero-lede { max-width: min(690px, 100%); margin-top: 28px; color: rgba(255, 255, 255, 0.84); font-size: clamp(1.18rem, 2vw, 1.65rem); line-height: 1.25; overflow-wrap: break-word; }
.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 680px;
  margin: 26px 0 0;
  padding: 0;
  border: 1px solid var(--line);
  background: var(--line);
  list-style: none;
}
.hero-proof li {
  min-height: 82px;
  padding: 14px 16px 12px;
  background: rgba(16, 21, 29, 0.86);
}
.hero-proof li:nth-child(2) { border-top: 4px solid var(--blue); }
.hero-proof li:nth-child(3) { border-top: 4px solid var(--red); }
.hero-proof span {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}
.hero-proof strong {
  display: block;
  margin-top: 7px;
  font-family: "Teko GE", sans-serif;
  font-size: clamp(1.6rem, 2.8vw, 2.45rem);
  line-height: 0.86;
  text-transform: uppercase;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 12px 18px 9px; border: 1px solid var(--line); font-family: "Teko GE", sans-serif; font-size: 1.25rem; text-transform: uppercase; cursor: pointer; transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { border-color: var(--red); background: linear-gradient(135deg, var(--red), #a91118); color: var(--white); box-shadow: 0 16px 34px rgba(220, 48, 48, 0.24); }
.button-ghost { background: rgba(255, 255, 255, 0.04); }
.button-ghost:hover { border-color: rgba(255,255,255,0.34); background: rgba(255,255,255,0.08); }

.hero-command {
  position: relative;
  display: grid;
  grid-template-rows: minmax(250px, 0.78fr) auto auto;
  min-height: 520px;
  border: 1px solid var(--line);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(0, 87, 184, 0.38) 0 18%, transparent 18% 54%, rgba(220, 48, 48, 0.3) 54% 64%, transparent 64%),
    repeating-linear-gradient(135deg, rgba(255,255,255,0.045) 0 1px, transparent 1px 15px),
    var(--panel);
  clip-path: polygon(8% 0, 100% 0, 100% 90%, 90% 100%, 0 100%, 0 10%);
}
.hero-photo {
  position: relative;
  min-height: 280px;
  margin: 0;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #050607;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  object-position: 54% center;
  opacity: 0.88;
}
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 6, 7, 0.02), rgba(5, 6, 7, 0.82)),
    linear-gradient(115deg, rgba(0, 87, 184, 0.18), transparent 48%, rgba(220, 48, 48, 0.22));
}
.hero-photo figcaption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 20px;
  z-index: 1;
  color: var(--paper);
  font-family: "Teko GE", sans-serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 0.86;
  text-transform: uppercase;
}
.hero-command::before {
  content: "";
  position: absolute;
  top: 30px;
  right: 30px;
  width: min(42%, 210px);
  aspect-ratio: 2.1 / 1;
  background: url("assets/images/ge-logo-primary.png") center / contain no-repeat;
  opacity: 0.16;
  pointer-events: none;
}
.hero-command::after {
  content: "";
  position: absolute;
  inset: auto -28px 34px auto;
  width: 180px;
  height: 16px;
  background: var(--red);
  transform: skewX(-28deg);
  opacity: 0.7;
}
.countdown-panel { display: flex; flex-direction: column; justify-content: flex-end; padding: clamp(26px, 4vw, 42px); }
.countdown-panel span, .proof-strip span, .run-grid span, .player-meta span, .player-role, .player-hero-stat span, .video-card span, .stat-cards span, .roadmap-card span {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}
.countdown-panel strong { display: block; margin-top: 16px; font-family: "Teko GE", sans-serif; font-size: clamp(3rem, 6vw, 5.4rem); line-height: 1; text-transform: uppercase; }
.countdown-panel p, .run-grid p, .watch-copy p, .section-copy p, .player-card p, .stat-cards p, .shop-copy p, .social-section p { margin-top: 12px; color: var(--soft); font-size: 1.04rem; line-height: 1.34; }
.proof-strip { display: grid; grid-template-columns: 1fr; border-top: 1px solid var(--line); }
.proof-strip article { padding: 20px 24px; border-top: 1px solid var(--line); background: rgba(5, 7, 11, 0.72); }
.proof-strip article:first-child { border-top: 0; }
.proof-strip strong { display: block; margin-top: 6px; font-family: "Teko GE", sans-serif; font-size: 1.65rem; line-height: 0.9; text-transform: uppercase; }
.proof-strip a { display: inline-block; margin-top: 12px; color: #dbeaff; font-weight: 700; text-transform: uppercase; }

.heritage-rail, .london-run, .command-section, .season-section, .watch-section, .map-lab, .team-section, .share-section, .stats-section, .story-section, .shop-section, .social-section { margin: 0 clamp(18px, 6vw, 92px); }
.heritage-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--line);
}
.heritage-rail article {
  min-height: 176px;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(0, 87, 184, 0.18), transparent 44%),
    var(--panel);
}
.heritage-rail article:nth-child(2) {
  background:
    linear-gradient(135deg, rgba(220, 48, 48, 0.16), transparent 44%),
    var(--panel);
}
.heritage-rail span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}
.heritage-rail strong {
  display: block;
  margin-top: 8px;
  font-family: "Teko GE", sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 0.86;
  text-transform: uppercase;
}
.heritage-rail p { margin-top: 12px; color: var(--soft); font-size: 1.02rem; line-height: 1.34; }

.fan-route {
  display: grid;
  grid-template-columns: 0.38fr 1fr;
  gap: 24px;
  margin: 0 clamp(18px, 6vw, 92px);
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}
.fan-route-copy p {
  margin-top: 12px;
  color: var(--soft);
  font-size: 1.04rem;
  line-height: 1.34;
}
.fan-route-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}
.fan-route-grid a {
  position: relative;
  min-height: 190px;
  padding: 18px;
  overflow: hidden;
  background:
    linear-gradient(150deg, rgba(0, 87, 184, 0.18), transparent 46%),
    rgba(16, 21, 29, 0.94);
  transition: transform 180ms ease, background 180ms ease;
}
.fan-route-grid a:nth-child(even) {
  background:
    linear-gradient(150deg, rgba(220, 48, 48, 0.16), transparent 46%),
    rgba(16, 21, 29, 0.94);
}
.fan-route-grid a:hover {
  z-index: 1;
  transform: translateY(-3px);
  background-color: #172030;
}
.fan-route-grid span {
  color: var(--gold);
  font-family: "Teko GE", sans-serif;
  font-size: 1.3rem;
  line-height: 0.9;
}
.fan-route-grid strong {
  display: block;
  margin-top: 18px;
  font-family: "Teko GE", sans-serif;
  font-size: clamp(1.7rem, 2.5vw, 2.55rem);
  line-height: 0.86;
  text-transform: uppercase;
}
.fan-route-grid p {
  margin-top: 10px;
  color: var(--soft);
  line-height: 1.28;
}
.london-run { display: grid; grid-template-columns: 0.55fr 1fr; gap: 34px; padding: 34px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.run-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); }
.run-grid article { padding: 24px; background: var(--panel); }
.run-grid strong, .stat-cards strong { display: block; margin-top: 8px; font-family: "Teko GE", sans-serif; font-size: clamp(1.8rem, 3vw, 2.5rem); line-height: 0.88; text-transform: uppercase; }

.command-section {
  display: grid;
  grid-template-columns: 0.4fr 1fr;
  gap: 30px;
  padding: clamp(56px, 8vw, 112px) 0 34px;
  border-bottom: 1px solid var(--line);
}
.command-copy { position: sticky; top: 114px; align-self: start; }
.command-copy p, .source-lock p, .next-match p, .season-lead p, .points-panel p, .share-section p, .story-grid p { margin-top: 12px; color: var(--soft); font-size: 1.04rem; line-height: 1.34; }
.command-deck {
  border: 1px solid var(--line);
  background:
    linear-gradient(150deg, rgba(0, 87, 184, 0.2), transparent 38%),
    linear-gradient(330deg, rgba(220, 48, 48, 0.16), transparent 40%),
    rgba(11, 17, 27, 0.78);
}
.ticker {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  overflow: hidden;
  padding: 14px;
  border-bottom: 1px solid var(--line);
}
.ticker span, .shop-notes span {
  flex: 0 0 auto;
  padding: 8px 10px 6px;
  border: 1px solid rgba(255,255,255,0.18);
  color: #eaf2ff;
  background: rgba(255,255,255,0.055);
  font-family: "Teko GE", sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
}
.command-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 1px; background: var(--line); }
.next-match, .source-lock { min-height: 260px; padding: 26px; background: rgba(5, 7, 11, 0.62); }
.next-match h3, .source-lock h3 {
  margin-top: 14px;
  font-family: "Teko GE", sans-serif;
  font-size: clamp(3rem, 5vw, 5.3rem);
  line-height: 0.78;
  text-transform: uppercase;
}
.next-match a, .source-lock a {
  display: inline-flex;
  margin-top: 20px;
  padding: 10px 12px 7px;
  border: 1px solid var(--red);
  font-family: "Teko GE", sans-serif;
  text-transform: uppercase;
  background: rgba(220, 48, 48, 0.14);
}
.match-results {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.match-results li {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.92rem;
}
.match-results .result-tag {
  font-family: "Teko GE", sans-serif;
  font-size: 1.2rem;
  line-height: 1;
  padding: 4px 8px 2px;
  text-transform: uppercase;
}
.match-results .result-win { background: rgba(38, 166, 91, 0.22); color: #57d98c; border: 1px solid rgba(87, 217, 140, 0.4); }
.match-results .result-loss { background: rgba(220, 48, 48, 0.18); color: #ff7a7a; border: 1px solid rgba(255, 122, 122, 0.4); }
.match-results strong { color: var(--white); }
.match-results em { font-style: normal; color: var(--muted); flex-basis: 100%; }
.match-results a, .next-match .match-results a {
  margin-top: 0;
  padding: 4px 8px 2px;
  font-size: 0.95rem;
  border: 1px solid var(--line);
  background: transparent;
}
.source-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border-top: 1px solid var(--line);
  background: var(--line);
}
.source-strip a {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  color: #eaf2ff;
  background: rgba(5, 7, 11, 0.72);
  font-family: "Teko GE", sans-serif;
  font-size: 1.06rem;
  line-height: 0.95;
  text-align: center;
  text-transform: uppercase;
}
.source-strip a:hover { background: rgba(255,255,255,0.08); }
.participants { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border-top: 1px solid var(--line); }
.participant-card { min-height: 132px; padding: 18px; background: rgba(11, 17, 27, 0.92); }
.participant-card.is-ge { background: linear-gradient(135deg, rgba(220, 48, 48, 0.32), rgba(0, 87, 184, 0.2)), rgba(11, 17, 27, 0.96); box-shadow: inset 0 0 0 1px rgba(214, 168, 79, 0.5); }
.participant-card span, .map-card span, .share-card span, .story-grid span { display: block; color: var(--muted); font-size: 0.78rem; font-weight: 700; text-transform: uppercase; }
.participant-card strong, .map-card strong, .share-card strong, .story-grid strong { display: block; margin-top: 8px; font-family: "Teko GE", sans-serif; font-size: clamp(1.6rem, 2.6vw, 2.3rem); line-height: 0.9; text-transform: uppercase; }
.participant-card p, .map-card p, .share-card p { margin-top: 8px; color: var(--soft); line-height: 1.28; }

.season-section {
  padding: clamp(50px, 8vw, 108px) 0 34px;
  border-bottom: 1px solid var(--line);
}
.season-lead { max-width: 1120px; }
.season-grid {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 0.42fr);
  gap: 16px;
  margin-top: 28px;
  align-items: stretch;
}
.roadmap-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}
.roadmap-track::before {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  top: 34px;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--blue));
  opacity: 0.54;
  z-index: 1;
}
.roadmap-card {
  position: relative;
  z-index: 2;
  min-height: 330px;
  padding: 24px;
  overflow: hidden;
  min-width: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), transparent 24%),
    linear-gradient(145deg, rgba(0, 87, 184, 0.18), transparent 42%),
    var(--panel);
  transition: transform 180ms ease, background 180ms ease;
}
.roadmap-card:nth-child(even) {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), transparent 24%),
    linear-gradient(145deg, rgba(220, 48, 48, 0.16), transparent 42%),
    var(--panel);
}
.roadmap-card::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  height: 6px;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--blue));
  opacity: 0.82;
}
.roadmap-card:hover { transform: translateY(-3px); background-color: #151c27; }
.roadmap-card strong {
  display: block;
  margin-top: 12px;
  font-family: "Teko GE", sans-serif;
  font-size: clamp(2.1rem, 3.8vw, 3.8rem);
  line-height: 0.94;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}
.roadmap-card b {
  display: inline-block;
  margin-top: 18px;
  padding: 6px 9px 4px;
  color: var(--ink);
  background: var(--gold);
  font-family: "Teko GE", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}
.roadmap-card p {
  margin-top: 14px;
  padding-bottom: 28px;
  color: var(--soft);
  line-height: 1.32;
}
.points-panel {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  padding: 22px;
  border: 1px solid var(--line);
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.045) 0 1px, transparent 1px 15px),
    linear-gradient(145deg, rgba(214, 168, 79, 0.16), transparent 42%),
    rgba(5, 7, 11, 0.78);
}
.points-panel h3 {
  margin-top: 14px;
  font-family: "Teko GE", sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  line-height: 0.78;
  text-transform: uppercase;
}
.points-list {
  display: grid;
  gap: 1px;
  margin-top: 22px;
  border: 1px solid var(--line);
  background: var(--line);
}
.points-row {
  display: grid;
  grid-template-columns: 42px 1fr 54px;
  gap: 12px;
  align-items: center;
  min-height: 56px;
  padding: 10px 12px;
  background: rgba(16, 21, 29, 0.92);
}
.points-row.is-ge { background: linear-gradient(90deg, rgba(220, 48, 48, 0.32), rgba(0, 87, 184, 0.22)), rgba(16, 21, 29, 0.96); box-shadow: inset 0 0 0 1px rgba(214, 168, 79, 0.45); }
.points-row span, .points-row b {
  font-family: "Teko GE", sans-serif;
  font-size: 1.35rem;
  line-height: 0.9;
  text-transform: uppercase;
}
.points-row strong {
  display: block;
  font-size: 1rem;
  line-height: 1;
}
.points-row small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.74rem;
  text-transform: uppercase;
}
.points-row b { justify-self: end; color: var(--gold); }
.points-links { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; padding-top: 18px; }
.points-links a {
  padding: 9px 10px 7px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.055);
  font-family: "Teko GE", sans-serif;
  text-transform: uppercase;
}

.watch-section { padding: clamp(54px, 8vw, 110px) 0 34px; display: grid; grid-template-columns: 0.46fr 1fr; gap: 24px; align-items: start; }
.watch-copy { position: sticky; top: 114px; }
.video-theater { min-height: 420px; border: 1px solid var(--line); background: #000; }
.video-theater iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; }
.video-rail { grid-column: 2; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.video-card { padding: 0; border: 1px solid var(--line); background: var(--panel); color: var(--white); text-align: left; cursor: pointer; overflow: hidden; }
.video-card img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; opacity: 0.82; transition: transform 220ms ease, opacity 220ms ease; }
.video-card div { padding: 14px; }
.video-card strong { display: block; margin-top: 6px; font-family: "Teko GE", sans-serif; font-size: 1.35rem; line-height: 1; overflow-wrap: anywhere; text-transform: uppercase; }
.video-card:hover img, .video-card.is-active img { transform: scale(1.035); opacity: 1; }
.video-card.is-active { border-color: var(--red); box-shadow: 0 14px 30px rgba(220, 48, 48, 0.18); }

.map-lab {
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  gap: 30px;
  padding: clamp(44px, 7vw, 90px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.map-board { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.map-card {
  position: relative;
  min-height: 310px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, transparent, rgba(0,0,0,0.34)),
    repeating-linear-gradient(135deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 12px),
    var(--panel);
}
.map-card::after {
  content: attr(data-score);
  position: absolute;
  right: -6px;
  bottom: -18px;
  color: rgba(255,255,255,0.08);
  font-family: "Teko GE", sans-serif;
  font-size: 7rem;
  line-height: 0.8;
}
.map-card strong { color: var(--paper); }
.map-card b { display: inline-block; margin-top: 18px; padding: 6px 9px 4px; color: var(--ink); background: var(--gold); font-family: "Teko GE", sans-serif; font-weight: 700; text-transform: uppercase; }

.campaign-moments {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: repeat(2, minmax(230px, 1fr));
  gap: 12px;
  padding: clamp(46px, 7vw, 94px) 0 34px;
  border-bottom: 1px solid var(--line);
}
.moment-card {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
}
.moment-card-large { grid-row: span 2; min-height: 520px; }
.moment-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease, opacity 260ms ease;
}
.moment-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 28%, rgba(5, 6, 7, 0.88)),
    linear-gradient(135deg, rgba(0, 87, 184, 0.18), transparent 44%, rgba(220, 48, 48, 0.2));
}
.moment-card div {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  z-index: 1;
}
.moment-card span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}
.moment-card strong {
  display: block;
  max-width: 680px;
  margin-top: 8px;
  color: var(--paper);
  font-family: "Teko GE", sans-serif;
  font-size: clamp(2.2rem, 4.8vw, 5.6rem);
  line-height: 0.8;
  text-transform: uppercase;
}
.moment-card:not(.moment-card-large) strong { font-size: clamp(1.9rem, 3vw, 3rem); }
.moment-card:hover img { transform: scale(1.035); opacity: 0.92; }

.team-section { display: grid; grid-template-columns: 0.42fr 1fr; gap: 30px; padding: clamp(58px, 9vw, 124px) 0; align-items: start; }
.section-copy { position: sticky; top: 114px; }
.roster-grid { display: grid; grid-template-columns: repeat(3, minmax(220px, 1fr)); gap: 12px; }
.player-card { min-height: 600px; display: flex; flex-direction: column; border: 1px solid var(--line); background: linear-gradient(180deg, rgba(255,255,255,0.06), transparent 22%), var(--panel); overflow: hidden; transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease; }
.player-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.32); box-shadow: 0 22px 52px rgba(0,0,0,0.28); }
.player-visual { position: relative; min-height: 232px; display: grid; grid-template-columns: minmax(0, 0.92fr) minmax(132px, 0.78fr); align-items: stretch; overflow: hidden; background: linear-gradient(135deg, rgba(0, 87, 184, 0.28), transparent 44%), linear-gradient(315deg, rgba(220, 48, 48, 0.24), transparent 42%), #0a0e15; }
.player-photo-copy { position: relative; z-index: 1; display: flex; flex-direction: column; justify-content: flex-end; gap: 8px; padding: 18px; }
.player-photo-copy span { display: block; color: rgba(234, 242, 255, 0.74); font-size: 0.78rem; font-weight: 700; text-transform: uppercase; }
.player-portrait { position: relative; display: grid; place-items: end center; min-width: 0; }
.player-portrait img { width: min(108%, 250px); max-width: none; image-rendering: auto; filter: drop-shadow(0 24px 28px rgba(0,0,0,0.46)); }
.player-card:nth-child(even) .player-visual { background: linear-gradient(135deg, rgba(220, 48, 48, 0.22), transparent 42%), linear-gradient(315deg, rgba(0, 87, 184, 0.34), transparent 44%), #0a0e15; }
.player-body { padding: 18px; display: flex; flex-direction: column; flex: 1; }
.player-body h3 { margin-top: 8px; font-family: "Teko GE", sans-serif; font-size: clamp(2.7rem, 4vw, 4.2rem); line-height: 0.8; text-transform: uppercase; }
.player-meta { display: grid; gap: 10px; margin-top: 14px; }
.player-role { display: inline-block; width: fit-content; margin-top: 14px; padding: 6px 8px 4px; border-left: 3px solid var(--gold); background: rgba(255, 210, 77, 0.1); color: var(--gold); }
.player-hero-stat { margin-top: 6px; padding: 12px; border: 1px solid rgba(255, 210, 77, 0.34); background: linear-gradient(135deg, rgba(255, 210, 77, 0.16), rgba(0, 87, 184, 0.1)); }
.player-hero-stat strong { display: block; font-family: "Teko GE", sans-serif; font-size: clamp(2.4rem, 3vw, 3.6rem); line-height: 0.82; color: var(--paper); text-transform: uppercase; }
.player-hero-stat span { display: block; margin-top: 8px; color: var(--gold); }
.player-accolades { display: grid; gap: 8px; margin: 14px 0 0; padding: 0; list-style: none; }
.player-accolades li { position: relative; padding-left: 18px; color: var(--soft); font-size: 0.98rem; line-height: 1.24; }
.player-accolades li::before { content: ""; position: absolute; left: 0; top: 0.48em; width: 7px; height: 7px; background: var(--red); transform: rotate(45deg); }
.player-agents { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.player-agents b { padding: 5px 8px 3px; border: 1px solid var(--line); color: #eaf2ff; font-family: "Teko GE", sans-serif; font-size: 1rem; font-weight: 600; text-transform: uppercase; background: rgba(255,255,255,0.04); }
.player-links { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; padding-top: 18px; }
.player-links a { padding: 8px 10px 6px; border: 1px solid var(--line); font-family: "Teko GE", sans-serif; font-size: 1rem; text-transform: uppercase; }

.share-section {
  display: grid;
  grid-template-columns: 0.44fr 1fr;
  gap: 30px;
  padding: 34px 0 clamp(54px, 8vw, 96px);
  border-bottom: 1px solid var(--line);
}
.share-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.share-card {
  display: flex;
  flex-direction: column;
  min-height: 250px;
  padding: 20px;
  border: 1px solid var(--line);
  background: linear-gradient(150deg, rgba(220, 48, 48, 0.16), transparent 42%), var(--panel);
}
.share-card button {
  margin-top: auto;
  min-height: 42px;
  border: 1px solid rgba(255,255,255,0.22);
  color: var(--white);
  background: rgba(255,255,255,0.06);
  font-family: "Teko GE", sans-serif;
  font-size: 1.05rem;
  text-transform: uppercase;
  cursor: pointer;
}
.share-card.is-copied { border-color: var(--gold); box-shadow: inset 0 0 0 1px rgba(214, 168, 79, 0.4); }

.stats-section { padding: 34px 0 clamp(58px, 8vw, 104px); border-top: 1px solid var(--line); }
.stats-lead { max-width: 960px; }
.stat-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 12px; margin-top: 28px; }
.stat-cards a { min-height: 238px; padding: 24px; border: 1px solid var(--line); background: linear-gradient(145deg, rgba(0, 87, 184, 0.18), transparent 48%), var(--panel); transition: transform 180ms ease, border-color 180ms ease; }
.stat-cards a:hover { transform: translateY(-3px); border-color: rgba(255,255,255,0.34); }

.story-section { padding: 34px 0 clamp(54px, 8vw, 100px); border-top: 1px solid var(--line); }
.story-lead { max-width: 1000px; }
.story-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 26px; }
.story-grid article { min-height: 260px; padding: 24px; border: 1px solid var(--line); background: rgba(11, 17, 27, 0.84); }
.story-photo-row {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 12px;
  margin-top: 12px;
}
.story-photo-row img {
  width: 100%;
  min-height: 320px;
  max-height: 460px;
  object-fit: cover;
  border: 1px solid var(--line);
  background: var(--panel);
}

.shop-section { display: grid; grid-template-columns: 1.02fr 0.8fr; gap: 34px; align-items: center; padding: clamp(54px, 8vw, 112px) 0; border-top: 1px solid var(--line); }
.shop-gallery { display: grid; grid-template-columns: 1fr 0.48fr; gap: 12px; }
.shop-gallery img { width: 100%; height: 100%; min-height: 260px; object-fit: cover; border: 1px solid var(--line); background: var(--panel-2); }
.shop-gallery > div { display: grid; gap: 12px; }
.shop-main { min-height: 540px; }
.shop-notes { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.purchase-widget { display: flex; gap: 10px; align-items: end; flex-wrap: wrap; margin-top: 24px; }
.purchase-widget label { display: block; width: 100%; color: var(--muted); font-weight: 700; text-transform: uppercase; }
.purchase-widget select { min-width: 150px; min-height: 48px; padding: 10px 44px 10px 12px; border: 1px solid var(--line); border-radius: 0; color: var(--white); background: var(--panel); }
.shop-copy .button-ghost { margin-top: 12px; }

.social-section { display: grid; grid-template-columns: minmax(0, 0.44fr) minmax(0, 1fr); gap: 30px; padding: 34px 0 clamp(54px, 8vw, 100px); border-top: 1px solid var(--line); }
.social-section > *,
.social-grid,
.social-grid article {
  min-width: 0;
}
.social-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.social-grid article {
  min-height: 260px;
  padding: 22px;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(0, 87, 184, 0.18), transparent 48%),
    var(--panel);
}
.social-grid article:nth-child(2) {
  background:
    linear-gradient(135deg, rgba(220, 48, 48, 0.16), transparent 48%),
    var(--panel);
}
.social-grid span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}
.social-grid strong {
  display: block;
  margin-top: 8px;
  font-family: "Teko GE", sans-serif;
  font-size: clamp(1.9rem, 3vw, 2.75rem);
  line-height: 0.94;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.social-links a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 8px 10px 6px;
  border: 1px solid var(--line);
  color: #eaf2ff;
  background: rgba(255,255,255,0.045);
  font-family: "Teko GE", sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
}
.social-links a:hover { border-color: rgba(255,255,255,0.34); background: rgba(255,255,255,0.08); }

.footer { display: flex; flex-wrap: wrap; gap: 22px; align-items: center; justify-content: space-between; padding: 34px clamp(18px, 6vw, 92px); color: var(--soft); border-top: 1px solid var(--line); }
.footer img { width: 118px; }
.footer nav { display: flex; gap: 18px; font-weight: 700; text-transform: uppercase; }

.js [data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity 540ms ease, transform 540ms ease; }
.js [data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    animation-delay: 0ms !important;
    transition-duration: 0.01ms !important;
  }
  .js [data-reveal] { opacity: 1; transform: none; }
}

@media (max-width: 1180px) {
  .topbar { padding-inline: clamp(18px, 3vw, 42px); }
  .nav-links { gap: clamp(10px, 1.8vw, 22px); font-size: 0.78rem; }
  .fan-route { grid-template-columns: 1fr; }
  .fan-route-grid { grid-template-columns: repeat(5, minmax(150px, 1fr)); overflow-x: auto; scrollbar-width: thin; }
  .roster-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .player-card { min-height: 580px; }
}
@media (max-width: 760px) {
  .nav-links { display: none; }
  .status-bar {
    top: 68px;
    grid-auto-flow: column;
    grid-auto-columns: minmax(138px, 1fr);
    grid-template-columns: none;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .status-bar::-webkit-scrollbar { display: none; }
  .status-bar a { border-right: 1px solid var(--line); border-bottom: 0; }
  .status-bar a:nth-child(2n) { border-right: 1px solid var(--line); }
  .status-bar a:nth-child(-n + 2) { border-bottom: 0; }
  .status-bar strong { font-size: 1.05rem; }
  .hero, .heritage-rail, .fan-route, .london-run, .command-section, .season-grid, .watch-section, .map-lab, .campaign-moments, .team-section, .share-section, .shop-section, .social-section, .story-photo-row { grid-template-columns: 1fr; }
  .hero { display: block; min-height: auto; max-width: 100vw; overflow: hidden; }
  .hero-command { min-height: 420px; }
  .moment-card-large { grid-row: auto; min-height: 360px; }
  .section-copy, .watch-copy, .command-copy { position: static; }
  .run-grid, .command-grid, .source-strip, .roadmap-track, .participants, .stat-cards, .video-rail, .map-board, .share-grid, .story-grid, .social-grid { grid-template-columns: 1fr; }
  .video-rail { grid-column: auto; }
}
@media (max-width: 640px) {
  .topbar { min-height: 68px; }
  .brand-mark img { width: 98px; }
  .topbar-cta { display: none; }
  .hero { padding-inline: 30px; }
  .hero > *, .hero-proof, .hero-actions { width: 100%; max-width: 100%; min-width: 0; }
  h1 { font-size: clamp(4.2rem, 21vw, 6.7rem); }
  .campaign-line { font-size: clamp(2.25rem, 11vw, 3.5rem); }
  h2 { font-size: clamp(2.8rem, 15vw, 4.6rem); }
  .hero-lede { font-size: 1.08rem; line-height: 1.28; }
  .hero-proof { grid-template-columns: 1fr; }
  .hero-proof li { min-height: auto; }
  .hero-actions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .hero-actions .button { min-width: 0; padding-inline: 10px; font-size: 1.02rem; white-space: nowrap; }
  .hero-command { clip-path: none; }
  .roster-grid, .shop-gallery { grid-template-columns: 1fr; }
  .shop-main { min-height: 340px; }
  .purchase-widget .button { width: 100%; }
}

/* Editorial polish pass: calmer, Apple-like hierarchy with GE color used as accents. */
body {
  color: #111318;
  background:
    linear-gradient(180deg, #fbfaf7 0%, #f2efe8 48%, #e9edf4 100%);
}
body::before { display: none; }
.site-shell { overflow: clip; }
.topbar {
  min-height: 70px;
  border-bottom: 1px solid rgba(17, 19, 24, 0.08);
  background: rgba(251, 250, 247, 0.82);
  box-shadow: none;
}
.brand-mark img { width: 118px; }
.nav-links { color: rgba(17, 19, 24, 0.58); letter-spacing: 0; }
.nav-links a:hover, .topbar-cta:hover { color: #111318; }
.topbar-cta {
  border: 0;
  border-radius: 999px;
  background: #111318;
  color: #ffffff;
  box-shadow: none;
}
.status-bar {
  top: 92px;
  width: min(980px, calc(100% - 36px));
  margin: 12px auto 0;
  overflow: hidden;
  border: 1px solid rgba(17, 19, 24, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 70px rgba(17, 19, 24, 0.08);
}
.status-bar a {
  min-height: 52px;
  padding: 12px 18px 10px;
  border-right: 1px solid rgba(17, 19, 24, 0.08);
}
.status-bar span { color: rgba(17, 19, 24, 0.5); font-size: 0.68rem; line-height: 1.05; }
.status-bar strong { color: #111318; font-size: clamp(0.98rem, 1.35vw, 1.18rem); line-height: 1.02; }
.status-bar a:hover { background: rgba(0, 87, 184, 0.06); }
.hero {
  min-height: auto;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.72fr);
  align-items: center;
  padding-top: clamp(52px, 6vw, 86px);
  padding-bottom: clamp(58px, 7vw, 96px);
}
.hero::before {
  left: auto;
  right: clamp(12px, 4vw, 72px);
  top: clamp(58px, 9vw, 120px);
  color: rgba(0, 87, 184, 0.055);
  font-size: clamp(12rem, 31vw, 30rem);
}
.eyebrow, .section-kicker {
  min-height: auto;
  padding: 0;
  border-left: 0;
  background: transparent;
  color: var(--blue);
  font-family: "Rajdhani GE", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0;
}
h1 {
  max-width: 760px;
  color: #111318;
  font-size: clamp(4.4rem, 8.8vw, 8.6rem);
  line-height: 1;
}
.campaign-line {
  max-width: 820px;
  color: #26303d;
  font-size: clamp(2rem, 3.7vw, 3.9rem);
  line-height: 0.96;
}
.hero-lede {
  max-width: 700px;
  color: rgba(17, 19, 24, 0.68);
  font-size: clamp(1.14rem, 1.55vw, 1.42rem);
  line-height: 1.36;
}
.button {
  min-height: 50px;
  border-radius: 999px;
  font-size: 1.14rem;
}
.button-primary {
  border-color: #111318;
  background: #111318;
  box-shadow: 0 16px 34px rgba(17, 19, 24, 0.16);
}
.button-ghost {
  border-color: rgba(17, 19, 24, 0.14);
  color: #111318;
  background: rgba(255, 255, 255, 0.52);
}
.button-ghost:hover { background: rgba(255, 255, 255, 0.9); }
.hero-proof {
  max-width: 620px;
  gap: 18px;
  border: 0;
  background: transparent;
}
.hero-proof li {
  min-height: auto;
  padding: 0;
  background: transparent;
}
.hero-proof li:nth-child(2), .hero-proof li:nth-child(3) { border-top: 0; }
.hero-proof span { color: rgba(17, 19, 24, 0.46); }
.hero-proof strong {
  color: #111318;
  font-size: clamp(1.35rem, 2vw, 2rem);
}
.hero-command {
  min-height: 560px;
  grid-template-rows: 1fr auto;
  border: 0;
  border-radius: 34px;
  background: #111318;
  box-shadow: 0 36px 100px rgba(17, 19, 24, 0.22);
  clip-path: none;
}
.hero-photo { min-height: 360px; border-bottom: 0; }
.hero-photo img { min-height: 360px; opacity: 0.95; }
.hero-command::before, .hero-command::after, .proof-strip { display: none; }
.hero-photo figcaption {
  color: #ffffff;
  font-size: clamp(2.2rem, 4vw, 4.2rem);
}
.countdown-panel {
  padding: 26px 30px 32px;
  background: #111318;
}
.countdown-panel span, .countdown-panel p { color: rgba(255,255,255,0.62); }
.countdown-panel strong { color: #ffffff; font-size: clamp(3rem, 5vw, 4.8rem); }
.season-snapshot {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(17, 19, 24, 0.08);
  border-radius: 28px;
  background: rgba(17, 19, 24, 0.08);
  box-shadow: 0 24px 80px rgba(17, 19, 24, 0.07);
}
.season-snapshot a {
  min-height: 138px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.72);
}
.season-snapshot span {
  color: rgba(17, 19, 24, 0.48);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
}
.season-snapshot strong {
  display: block;
  margin-top: 10px;
  color: #111318;
  font-family: "Teko GE", sans-serif;
  font-size: clamp(1.9rem, 3vw, 2.9rem);
  line-height: 0.9;
  text-transform: uppercase;
}
.heritage-rail, .fan-route { display: none; }
.london-run, .command-section, .season-section, .watch-section, .map-lab, .team-section, .share-section, .stats-section, .story-section, .shop-section, .social-section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}
h2 {
  max-width: 760px;
  color: #111318;
  font-size: clamp(2.85rem, 5.4vw, 5.4rem);
  letter-spacing: 0;
}
.london-run, .command-section, .season-section, .watch-section, .map-lab, .team-section, .share-section, .stats-section, .story-section, .shop-section, .social-section {
  border-color: rgba(17, 19, 24, 0.08);
}
.section-copy p, .command-copy p, .source-lock p, .next-match p, .season-lead p, .points-panel p, .watch-copy p, .share-section p, .story-grid p, .countdown-panel p, .run-grid p, .roadmap-card p, .map-card p, .share-card p, .participant-card p, .player-card p, .stat-cards p, .shop-copy p, .social-section p {
  color: rgba(17, 19, 24, 0.62);
}
.countdown-panel span, .proof-strip span, .run-grid span, .player-meta span, .video-card span, .stat-cards span, .roadmap-card span, .participant-card span, .map-card span, .share-card span, .story-grid span {
  color: rgba(17, 19, 24, 0.5);
}
.run-grid, .command-deck, .roadmap-track, .points-list, .participants, .map-board, .share-grid, .story-grid, .social-grid, .stat-cards {
  background: transparent;
}
.run-grid article, .participant-card, .roadmap-card, .points-panel, .map-card, .share-card, .story-grid article, .social-grid article, .stat-cards a, .next-match, .source-lock {
  border: 1px solid rgba(17, 19, 24, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: none;
}
.run-grid article, .roadmap-card, .map-card, .share-card, .story-grid article, .stat-cards a {
  background: rgba(255, 255, 255, 0.74);
}
.roadmap-card::after {
  opacity: 0.44;
}
.roadmap-card:hover {
  background-color: rgba(255, 255, 255, 0.9);
}
.roadmap-card b {
  border-radius: 999px;
  color: #ffffff;
  background: #111318;
}
.social-grid article {
  background: rgba(255, 255, 255, 0.72);
}
.social-grid article:nth-child(2) {
  background: #111318;
}
.social-grid span {
  color: rgba(17, 19, 24, 0.46);
}
.social-grid strong {
  color: #111318;
}
.social-links a {
  border-color: rgba(17, 19, 24, 0.12);
  color: #111318;
  background: rgba(255, 255, 255, 0.74);
}
.social-grid article:nth-child(2) span {
  color: rgba(255, 255, 255, 0.56);
}
.social-grid article:nth-child(2) strong {
  color: #ffffff;
}
.social-grid article:nth-child(2) .social-links a {
  border-color: rgba(255, 255, 255, 0.24);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}
.command-deck {
  border: 0;
  background: transparent;
}
.ticker {
  border: 0;
  padding: 0 0 14px;
}
.ticker span, .shop-notes span {
  border-color: rgba(17, 19, 24, 0.1);
  border-radius: 999px;
  color: #111318;
  background: rgba(255,255,255,0.72);
}
.next-match h3, .source-lock h3, .points-panel h3, .roadmap-card strong, .run-grid strong, .stat-cards strong, .participant-card strong, .map-card strong, .share-card strong, .story-grid strong, .social-grid strong {
  color: #111318;
}
.source-strip {
  gap: 10px;
  margin-top: 12px;
  border: 0;
  background: transparent;
}
.source-strip a {
  min-height: 46px;
  border: 1px solid rgba(17, 19, 24, 0.1);
  border-radius: 999px;
  color: #111318;
  background: rgba(255,255,255,0.66);
}
.watch-section {
  grid-template-columns: minmax(0, 0.38fr) minmax(0, 1fr);
}
.video-theater {
  overflow: hidden;
  border: 0;
  border-radius: 30px;
  background: #111318;
  box-shadow: 0 32px 90px rgba(17, 19, 24, 0.18);
}
.video-rail {
  grid-column: 2;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 14px;
}
.video-card {
  border-color: rgba(17, 19, 24, 0.08);
  border-radius: 20px;
  color: #111318;
  background: rgba(255,255,255,0.68);
}
.video-card span { color: rgba(17, 19, 24, 0.48); }
.video-card.is-active {
  border-color: rgba(0, 87, 184, 0.3);
  box-shadow: 0 18px 44px rgba(0, 87, 184, 0.1);
}
.short-rail {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 14px;
}
.short-card {
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  min-height: 132px;
  overflow: hidden;
  border: 1px solid rgba(17, 19, 24, 0.08);
  border-radius: 22px;
  background: rgba(255,255,255,0.72);
}
.short-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.short-card div { padding: 18px; }
.short-card span {
  color: var(--blue);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
}
.short-card strong {
  display: block;
  margin-top: 8px;
  color: #111318;
  font-family: "Teko GE", sans-serif;
  font-size: 1.75rem;
  line-height: 0.9;
  text-transform: uppercase;
}
.short-card p {
  margin-top: 8px;
  color: rgba(17, 19, 24, 0.58);
  line-height: 1.22;
}
.player-card, .shop-gallery img, .story-photo-row img, .moment-card {
  border-color: rgba(17, 19, 24, 0.08);
  border-radius: 28px;
}
.player-card {
  background: rgba(255,255,255,0.7);
}
.player-body h3, .player-hero-stat strong, .player-accolades li, .player-links a, .player-agents b, .player-meta span { color: #111318; }
.player-photo-copy > span { color: rgba(255,255,255,0.78); text-shadow: 0 1px 8px rgba(0,0,0,0.24); }
.player-role, .player-hero-stat span { color: var(--blue); }
.player-hero-stat {
  border-color: rgba(0, 87, 184, 0.16);
  border-radius: 18px;
  background: rgba(255,255,255,0.82);
  box-shadow: 0 18px 40px rgba(0,0,0,0.16);
}
.player-agents b, .player-links a {
  border-color: rgba(17, 19, 24, 0.1);
  border-radius: 999px;
  background: rgba(255,255,255,0.64);
}
.shop-section {
  grid-template-columns: 0.9fr 0.8fr;
}
.shop-gallery img { border-radius: 30px; }
.purchase-widget select {
  border-color: rgba(17, 19, 24, 0.12);
  border-radius: 999px;
  color: #111318;
  background: rgba(255,255,255,0.78);
}
.footer {
  color: rgba(17, 19, 24, 0.58);
  border-top-color: rgba(17, 19, 24, 0.08);
}
.footer img { content: url("assets/images/ge-logo-primary.png"); }

@media (max-width: 960px) {
  .hero, .watch-section, .shop-section {
    grid-template-columns: 1fr;
  }
  .hero-command { min-height: auto; }
  .season-grid,
  .social-section {
    grid-template-columns: 1fr;
  }
  .roadmap-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .social-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .video-rail, .short-rail { grid-column: auto; }
  .season-snapshot { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .short-rail { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .topbar { min-height: 64px; }
  .status-bar {
    top: 96px;
    width: calc(100% - 24px);
    margin-top: 10px;
    border-radius: 18px;
    grid-auto-flow: row;
    grid-auto-columns: initial;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow-x: hidden;
  }
  .status-bar a {
    min-width: 0;
    min-height: 50px;
    padding: 11px 12px 9px;
    border-right-color: rgba(17, 19, 24, 0.08);
    border-bottom: 1px solid rgba(17, 19, 24, 0.08);
  }
  .status-bar a:nth-child(2n) { border-right: 0; }
  .status-bar a:nth-child(n + 3) { border-bottom: 0; }
  .status-bar span,
  .status-bar strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .hero {
    width: 100%;
    padding: 84px 24px 54px;
    overflow: hidden;
  }
  h1 {
    max-width: 100%;
    font-size: clamp(3.15rem, 13.6vw, 4.25rem);
    line-height: 1;
  }
  .campaign-line {
    max-width: 100%;
    font-size: clamp(1.72rem, 7.9vw, 2.55rem);
    line-height: 1;
  }
  .hero-lede {
    max-width: 100%;
  }
  .hero-actions {
    grid-template-columns: 1fr;
  }
  .hero-actions .button {
    width: 100%;
    justify-content: center;
  }
  .hero-proof {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .hero-proof strong { font-size: 1.3rem; }
  .hero-command { border-radius: 26px; }
  .hero-photo, .hero-photo img { min-height: 340px; }
  .roadmap-track,
  .social-grid {
    grid-template-columns: 1fr;
  }
  .season-snapshot { grid-template-columns: 1fr; border-radius: 24px; }
  .season-snapshot a { min-height: auto; padding: 20px; }
  .video-theater, .video-theater iframe { min-height: 260px; }
  .short-card { grid-template-columns: 0.46fr 1fr; }
}

/* Full visual pass: one coherent editorial GE system. */
:root {
  --page: #f7f5ef;
  --page-2: #eceff5;
  --text: #101217;
  --text-soft: rgba(16, 18, 23, 0.66);
  --text-faint: rgba(16, 18, 23, 0.44);
  --surface: rgba(255, 255, 255, 0.78);
  --surface-solid: #ffffff;
  --stroke: rgba(16, 18, 23, 0.1);
  --shadow-soft: 0 24px 80px rgba(16, 18, 23, 0.08);
  --shadow-card: 0 18px 50px rgba(16, 18, 23, 0.1);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --wrap: min(1180px, calc(100% - 40px));
}

html { background: var(--page); }
body {
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.78), rgba(255,255,255,0) 360px),
    radial-gradient(circle at 14% 8%, rgba(0, 87, 184, 0.12), transparent 34%),
    radial-gradient(circle at 90% 10%, rgba(220, 48, 48, 0.1), transparent 30%),
    linear-gradient(180deg, var(--page) 0%, #f8f7f3 48%, var(--page-2) 100%);
}
.site-shell { overflow: clip; }

.topbar {
  min-height: 72px;
  padding: 16px clamp(20px, 4vw, 56px);
  border-bottom: 1px solid rgba(16, 18, 23, 0.07);
  background: rgba(247, 245, 239, 0.86);
  box-shadow: none;
}
.brand-mark img { width: 112px; }
.nav-links {
  gap: 24px;
  color: var(--text-faint);
  font-size: 0.76rem;
}
.topbar-cta {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border: 0;
  border-radius: 999px;
  background: var(--text);
  color: #fff;
  font-size: 1rem;
  box-shadow: none;
}

.status-bar {
  position: static;
  width: min(940px, calc(100% - 40px));
  margin: 12px auto 0;
  border: 1px solid var(--stroke);
  border-radius: 999px;
  background: rgba(255,255,255,0.82);
  box-shadow: 0 16px 55px rgba(16, 18, 23, 0.08);
  backdrop-filter: blur(20px);
}
.status-bar a {
  min-height: 50px;
  padding: 11px 18px 9px;
  border-right: 1px solid rgba(16, 18, 23, 0.08);
}
.status-bar span { color: var(--text-faint); font-size: 0.68rem; }
.status-bar strong { color: var(--text); font-size: clamp(0.95rem, 1.25vw, 1.14rem); line-height: 1.03; }

.hero {
  width: var(--wrap);
  min-height: auto;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.72fr);
  gap: clamp(28px, 5vw, 64px);
  margin: 0 auto;
  padding: clamp(76px, 8vw, 116px) 0 clamp(54px, 7vw, 88px);
}
.hero::before {
  right: -4vw;
  top: 82px;
  left: auto;
  color: rgba(0, 87, 184, 0.045);
  font-size: clamp(12rem, 28vw, 28rem);
}
.eyebrow,
.section-kicker {
  color: var(--blue);
  font-size: 0.76rem;
  letter-spacing: 0;
}
h1 {
  max-width: 780px;
  color: var(--text);
  font-size: clamp(4.4rem, 8.5vw, 8.35rem);
  line-height: 0.94;
}
.campaign-line {
  max-width: 760px;
  color: #243041;
  font-size: clamp(1.9rem, 3.6vw, 3.65rem);
  line-height: 1;
}
.hero-lede {
  max-width: 660px;
  color: var(--text-soft);
  font-size: clamp(1.06rem, 1.42vw, 1.28rem);
  line-height: 1.42;
}
.button {
  min-height: 48px;
  border-radius: 999px;
  font-size: 1.05rem;
}
.button-primary {
  border-color: var(--text);
  background: var(--text);
  box-shadow: 0 14px 30px rgba(16, 18, 23, 0.14);
}
.button-ghost {
  border-color: var(--stroke);
  color: var(--text);
  background: rgba(255,255,255,0.58);
}
.hero-proof {
  max-width: 620px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  border: 0;
  background: transparent;
}
.hero-proof li {
  min-height: 92px;
  padding: 16px;
  border: 1px solid var(--stroke);
  border-radius: 18px;
  background: rgba(255,255,255,0.62);
}
.hero-proof span { color: var(--text-faint); }
.hero-proof strong { color: var(--text); font-size: clamp(1.25rem, 1.8vw, 1.8rem); line-height: 1; }

.hero-command {
  min-height: 560px;
  grid-template-rows: 1fr auto;
  border: 0;
  border-radius: var(--radius-xl);
  background: #111318;
  box-shadow: 0 34px 90px rgba(16, 18, 23, 0.22);
  clip-path: none;
}
.hero-photo { min-height: 376px; border: 0; }
.hero-photo img { min-height: 376px; opacity: 0.94; }
.hero-photo::after { background: linear-gradient(180deg, transparent 22%, rgba(17,19,24,0.88)); }
.hero-photo figcaption { color: #fff; font-size: clamp(2rem, 3.7vw, 4rem); }
.countdown-panel { padding: 26px 30px 32px; background: #111318; }
.countdown-panel strong { color: #fff; font-size: clamp(2.8rem, 4.8vw, 4.4rem); }
.countdown-panel span,
.countdown-panel p { color: rgba(255,255,255,0.62); }

.season-snapshot,
.london-run,
.command-section,
.season-section,
.watch-section,
.map-lab,
.campaign-moments,
.team-section,
.share-section,
.stats-section,
.story-section,
.shop-section,
.social-section {
  width: var(--wrap);
  margin-inline: auto;
}
.season-snapshot {
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  background: rgba(16, 18, 23, 0.08);
  box-shadow: var(--shadow-soft);
}
.season-snapshot a { background: rgba(255,255,255,0.76); }
.season-snapshot strong { color: var(--text); font-size: clamp(1.65rem, 2.4vw, 2.45rem); }

h2 {
  max-width: 760px;
  color: var(--text);
  font-size: clamp(2.75rem, 4.8vw, 4.95rem);
  line-height: 0.9;
}
.section-copy p,
.command-copy p,
.source-lock p,
.next-match p,
.season-lead p,
.points-panel p,
.watch-copy p,
.share-section p,
.story-grid p,
.run-grid p,
.roadmap-card p,
.map-card p,
.share-card p,
.participant-card p,
.player-card p,
.stat-cards p,
.shop-copy p,
.social-section p,
.short-card p {
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.38;
}
.run-grid article,
.participant-card,
.roadmap-card,
.points-panel,
.map-card,
.share-card,
.story-grid article,
.social-grid article,
.stat-cards a,
.next-match,
.source-lock,
.short-card,
.video-card {
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: none;
}
.run-grid,
.command-grid,
.participants,
.roadmap-track,
.map-board,
.share-grid,
.story-grid,
.social-grid,
.stat-cards {
  gap: 14px;
  background: transparent;
}
.run-grid strong,
.participant-card strong,
.roadmap-card strong,
.map-card strong,
.share-card strong,
.story-grid strong,
.stat-cards strong,
.social-grid strong,
.next-match h3,
.source-lock h3,
.points-panel h3 {
  color: var(--text);
}

.command-section,
.watch-section,
.map-lab,
.team-section,
.share-section,
.shop-section,
.social-section {
  grid-template-columns: minmax(0, 0.36fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 44px);
}
.command-copy,
.watch-copy,
.section-copy { top: 132px; }
.command-deck { border: 0; background: transparent; }
.command-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.next-match,
.source-lock { min-height: 250px; }
.next-match h3,
.source-lock h3 { font-size: clamp(2.7rem, 4.4vw, 4.8rem); }
.source-strip { gap: 10px; }
.source-strip a,
.ticker span,
.points-links a,
.shop-notes span {
  border: 1px solid var(--stroke);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255,255,255,0.66);
}
.participants { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.participant-card { min-height: 130px; }
.participant-card.is-ge {
  background: linear-gradient(135deg, rgba(0,87,184,0.1), rgba(220,48,48,0.1)), #fff;
  box-shadow: inset 0 0 0 1px rgba(0,87,184,0.16);
}

.season-grid { grid-template-columns: minmax(0, 1fr) minmax(300px, 0.38fr); }
.roadmap-track { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.roadmap-track::before { display: none; }
.roadmap-card { min-height: 300px; }
.roadmap-card::after { left: 24px; right: 24px; height: 4px; border-radius: 999px; opacity: 0.5; }
.roadmap-card b,
.map-card b {
  border-radius: 999px;
  color: #fff;
  background: var(--text);
}
.points-row { background: rgba(255,255,255,0.7); }
.points-row strong,
.points-row span { color: var(--text); }
.points-row small { color: var(--text-faint); }

.video-theater {
  min-height: 430px;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
}
.video-theater iframe { min-height: 430px; }
.video-rail,
.short-rail {
  grid-column: 2;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.video-card { color: var(--text); overflow: hidden; }
.video-card span,
.short-card span { color: var(--blue); }
.short-card { grid-template-columns: 0.42fr 1fr; overflow: hidden; }
.short-card strong { color: var(--text); }

.campaign-moments {
  gap: 14px;
  grid-template-columns: 1.15fr 0.85fr;
}
.moment-card {
  border: 0;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
}
.moment-card::after { background: linear-gradient(180deg, transparent 36%, rgba(16,18,23,0.86)); }

.team-section {
  grid-template-columns: minmax(0, 0.3fr) minmax(0, 1fr);
  padding-top: clamp(64px, 8vw, 112px);
}
.roster-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.player-card {
  min-height: 0;
  border: 1px solid var(--stroke);
  border-radius: var(--radius-xl);
  background: var(--surface-solid);
  box-shadow: 0 18px 56px rgba(16,18,23,0.08);
  overflow: hidden;
}
.player-card:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 87, 184, 0.22);
  box-shadow: 0 22px 70px rgba(16,18,23,0.12);
}
.player-visual {
  min-height: 230px;
  grid-template-columns: minmax(0, 1fr) minmax(128px, 0.6fr);
  background:
    radial-gradient(circle at 78% 22%, rgba(255,255,255,0.14), transparent 32%),
    linear-gradient(135deg, #0f1724, #111318 54%, #18233a);
}
.player-card:nth-child(even) .player-visual {
  background:
    radial-gradient(circle at 78% 22%, rgba(255,255,255,0.14), transparent 32%),
    linear-gradient(135deg, #191318, #111318 52%, #172743);
}
.player-photo-copy { padding: 20px; }
.player-photo-copy > span {
  color: rgba(255,255,255,0.72);
  text-shadow: none;
}
.player-hero-stat {
  width: min(100%, 210px);
  margin-top: 8px;
  padding: 14px 16px 12px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 18px;
  background: rgba(255,255,255,0.1);
  box-shadow: none;
  backdrop-filter: blur(10px);
}
.player-hero-stat strong {
  color: #fff;
  font-size: clamp(2.35rem, 4vw, 3.35rem);
}
.player-hero-stat span { color: rgba(255,255,255,0.68); }
.player-portrait { align-items: end; }
.player-portrait img {
  width: min(118%, 260px);
  margin-right: -10px;
}
.player-body {
  padding: 22px;
}
.player-role {
  margin: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(0, 87, 184, 0.08);
  color: var(--blue);
}
.player-body h3 {
  margin-top: 14px;
  color: var(--text);
  font-size: clamp(2.8rem, 4.4vw, 4rem);
}
.player-accolades { gap: 7px; margin-top: 16px; }
.player-accolades li {
  color: var(--text-soft);
  font-size: 0.96rem;
}
.player-accolades li::before { background: var(--blue); }
.player-agents b,
.player-links a {
  border-color: var(--stroke);
  border-radius: 999px;
  color: var(--text);
  background: rgba(16,18,23,0.035);
}

.share-card button,
.purchase-widget select {
  border-color: var(--stroke);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255,255,255,0.76);
}
.shop-gallery img,
.story-photo-row img {
  border: 0;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
}
.social-grid article:nth-child(2) {
  background: var(--text);
}
.social-grid article:nth-child(2) strong { color: #fff; }

@media (max-width: 1040px) {
  .hero,
  .command-section,
  .watch-section,
  .map-lab,
  .team-section,
  .share-section,
  .shop-section,
  .social-section,
  .season-grid {
    grid-template-columns: 1fr;
  }
  .section-copy,
  .command-copy,
  .watch-copy { position: static; }
  .video-rail,
  .short-rail { grid-column: auto; }
  .roadmap-track { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  :root { --wrap: min(100% - 24px, 1180px); }
  .topbar { min-height: 64px; padding-inline: 18px; }
  .brand-mark img { width: 94px; }
  .status-bar {
    width: var(--wrap);
    margin-top: 8px;
    grid-auto-flow: row;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-radius: 20px;
    overflow: hidden;
  }
  .status-bar a {
    min-width: 0;
    min-height: 48px;
    padding: 10px 12px 8px;
    border-bottom: 1px solid rgba(16,18,23,0.08);
  }
  .status-bar a:nth-child(2n) { border-right: 0; }
  .status-bar a:nth-child(n + 3) { border-bottom: 0; }
  .status-bar strong { font-size: 0.98rem; }
  .hero {
    display: grid;
    padding-top: 42px;
    padding-bottom: 44px;
  }
  h1 { font-size: clamp(3.1rem, 13vw, 4.1rem); }
  .campaign-line { font-size: clamp(1.7rem, 7.4vw, 2.45rem); }
  .hero-proof,
  .season-snapshot,
  .run-grid,
  .command-grid,
  .participants,
  .roadmap-track,
  .map-board,
  .campaign-moments,
  .roster-grid,
  .share-grid,
  .story-grid,
  .stat-cards,
  .social-grid,
  .video-rail,
  .short-rail {
    grid-template-columns: 1fr;
  }
  .hero-actions { grid-template-columns: 1fr; }
  .hero-command,
  .moment-card,
  .player-card,
  .video-theater,
  .shop-gallery img,
  .story-photo-row img { border-radius: 24px; }
  .hero-photo,
  .hero-photo img { min-height: 310px; }
  .countdown-panel { padding: 22px; }
  .player-visual {
    min-height: 218px;
    grid-template-columns: minmax(0, 1fr) minmax(112px, 0.56fr);
  }
  .player-photo-copy { padding: 18px; }
  .player-body { padding: 20px; }
  .player-portrait img {
    width: min(114%, 210px);
    margin-right: 0;
  }
  .short-card { grid-template-columns: 0.44fr 1fr; }
  .video-theater,
  .video-theater iframe { min-height: 250px; }
}

@media (max-width: 420px) {
  .status-bar strong { font-size: 0.9rem; }
  h1 { font-size: 3.2rem; }
  h2 { font-size: 2.75rem; }
  .player-visual { grid-template-columns: minmax(0, 1fr) 116px; }
  .player-hero-stat { width: 178px; }
  .player-hero-stat strong { font-size: 2.25rem; }
  .player-portrait img { width: min(108%, 198px); }
}

/* Reliability: content must never depend on scroll-reveal timing. */
.js [data-reveal],
.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
  transition: none;
}

/* Feedback pass: first-screen clarity + progressive fan paths. */
:root {
  --radius-xl: 8px;
  --radius-lg: 8px;
  --radius-md: 8px;
  --wrap: min(1240px, calc(100% - 48px));
}

body {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0) 42vh),
    linear-gradient(180deg, #f8f6f0 0%, #f1efe8 48%, #e9edf4 100%);
}

.topbar {
  position: sticky;
  top: 0;
  min-height: 70px;
  background: rgba(248, 246, 240, 0.9);
}

.status-bar {
  display: none;
}

.hero {
  min-height: calc(100svh - 70px);
  grid-template-columns: minmax(0, 0.62fr) minmax(0, 0.9fr);
  gap: clamp(32px, 5vw, 68px);
  align-items: center;
  padding: clamp(38px, 5vw, 64px) 0 clamp(26px, 4vw, 44px);
}

.hero::before {
  content: "LONDON";
  right: -2vw;
  top: 50%;
  color: rgba(16, 18, 23, 0.035);
  font-size: clamp(7rem, 18vw, 18rem);
  transform: translateY(-52%);
}

.hero-copy {
  align-self: center;
}

.eyebrow {
  color: var(--red);
  font-size: 0.82rem;
}

h1 {
  max-width: 560px;
  margin-top: 16px;
  font-size: clamp(3.85rem, 6.1vw, 6.4rem);
  line-height: 0.9;
  text-wrap: balance;
}

#heroDays {
  color: var(--blue);
}

.campaign-line {
  max-width: 620px;
  margin-top: 18px;
  color: #1c2635;
  font-size: clamp(1.8rem, 3vw, 3.1rem);
  line-height: 0.96;
}

.hero-lede {
  max-width: 540px;
  margin-top: 18px;
  color: rgba(16, 18, 23, 0.7);
  font-size: clamp(1.04rem, 1.28vw, 1.18rem);
  line-height: 1.42;
}

.hero-actions {
  margin-top: 24px;
}

.button {
  border-radius: 8px;
}

.hero-proof {
  max-width: 560px;
  margin-top: 28px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--stroke);
  border-radius: 8px;
  background: var(--stroke);
}

.hero-proof li {
  min-height: 94px;
  padding: 16px;
  border: 0;
  border-radius: 0;
  background: rgba(255,255,255,0.76);
}

.hero-proof strong {
  font-size: clamp(1.25rem, 1.55vw, 1.58rem);
}

.hero-command {
  position: relative;
  display: block;
  min-height: min(72svh, 650px);
  overflow: hidden;
  border-radius: 8px;
  background: #111318;
  box-shadow: 0 28px 80px rgba(16, 18, 23, 0.18);
}

.hero-photo {
  height: 100%;
  min-height: min(72svh, 650px);
}

.hero-photo img {
  height: 100%;
  min-height: min(72svh, 650px);
  object-position: center;
}

.hero-photo::after {
  background:
    linear-gradient(180deg, rgba(16,18,23,0.04) 0%, rgba(16,18,23,0.18) 44%, rgba(16,18,23,0.82) 100%),
    linear-gradient(90deg, rgba(0,87,184,0.2), transparent 42%, rgba(220,48,48,0.18));
}

.hero-photo figcaption {
  right: auto;
  /* Keeps a guaranteed ~16px gap ahead of the absolutely-positioned
     .countdown-panel (300px wide + 20px offset) at every hero-command
     width instead of a fixed 360px that can run underneath it on
     narrower desktop widths (verified colliding around 1100px). */
  max-width: min(360px, calc(100% - 360px));
  font-size: clamp(1.65rem, 2.35vw, 2.55rem);
  line-height: 0.9;
}

.countdown-panel {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: min(300px, calc(100% - 40px));
  padding: 18px 20px 20px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 8px;
  background: rgba(17, 19, 24, 0.84);
  backdrop-filter: blur(18px);
}

.countdown-panel strong {
  margin-top: 8px;
  font-size: clamp(2.3rem, 3.4vw, 3.7rem);
}

.countdown-panel p {
  margin-top: 8px;
  color: rgba(255,255,255,0.66);
  font-size: 0.92rem;
}

.season-snapshot {
  margin-top: 0;
  border-radius: 8px;
  box-shadow: none;
}

.season-snapshot a {
  min-height: 112px;
  padding: 20px;
}

.season-snapshot strong {
  font-size: clamp(1.45rem, 2vw, 2rem);
}

.london-run,
.command-section,
.season-section,
.watch-section,
.map-lab,
.team-section,
.share-section,
.stats-section,
.story-section,
.shop-section,
.social-section {
  padding-top: clamp(52px, 7vw, 92px);
  padding-bottom: clamp(46px, 6vw, 78px);
}

h2 {
  font-size: clamp(2.5rem, 4.1vw, 4.2rem);
  line-height: 0.92;
  text-wrap: balance;
}

.section-copy p,
.command-copy p,
.watch-copy p,
.season-lead p,
.stats-lead p,
.shop-copy p,
.social-section p {
  max-width: 620px;
}

.run-grid article,
.participant-card,
.roadmap-card,
.points-panel,
.map-card,
.share-card,
.story-grid article,
.social-grid article,
.stat-cards a,
.next-match,
.source-lock,
.short-card,
.video-card,
.player-card,
.moment-card,
.video-theater,
.shop-gallery img,
.story-photo-row img {
  border-radius: 8px;
}

.roadmap-card,
.share-card,
.story-grid article,
.stat-cards a {
  min-height: auto;
}

.roadmap-card p,
.share-card p,
.stat-cards p,
.story-grid p,
.run-grid p,
.map-card p {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 1040px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero-command,
  .hero-photo,
  .hero-photo img {
    min-height: 520px;
  }
}

@media (max-width: 760px) {
  :root { --wrap: min(100% - 28px, 1240px); }

  .topbar {
    min-height: 58px;
    padding-block: 12px;
  }

  .brand-mark img { width: 86px; }

  .nav-links {
    display: none;
  }

  .hero {
    padding-top: 22px;
    padding-bottom: 30px;
    gap: 22px;
  }

  h1 {
    font-size: clamp(2.52rem, 11.3vw, 3.25rem);
    line-height: 0.92;
  }

  .campaign-line {
    margin-top: 12px;
    font-size: clamp(1.28rem, 6.2vw, 1.72rem);
  }

  .hero-lede {
    margin-top: 14px;
    font-size: 1rem;
  }

  .hero-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 18px;
  }

  .hero-actions .button {
    min-height: 46px;
    padding-inline: 8px;
    font-size: 0.98rem;
    white-space: nowrap;
  }

  .hero-proof {
    display: none;
  }

  .hero-command,
  .hero-photo,
  .hero-photo img {
    min-height: 320px;
  }

  .hero-photo figcaption {
    left: 18px;
    right: 18px;
    bottom: 112px;
    font-size: clamp(1.45rem, 7vw, 2.1rem);
  }

  .countdown-panel {
    left: 14px;
    right: 14px;
    bottom: 14px;
    width: auto;
    padding: 14px 16px 16px;
  }

  .countdown-panel strong {
    font-size: 2.25rem;
  }

  .countdown-panel p {
    display: none;
  }

  .season-snapshot {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  h1 { font-size: 3rem; }
  .hero-command,
  .hero-photo,
  .hero-photo img { min-height: 400px; }
}

/* Readability pass: roadmap is now tap-to-open, not an exposed info wall. */
.season-grid {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.38fr);
  align-items: start;
}

.roadmap-track {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.roadmap-card,
.roadmap-card:nth-child(even),
.roadmap-card:hover {
  display: block;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  color: var(--text);
  background: rgba(255, 255, 255, 0.88);
  transform: none;
}

.roadmap-card::after {
  left: 20px;
  right: 20px;
  bottom: 18px;
  height: 3px;
  opacity: 0.76;
}

.roadmap-card summary {
  min-height: 178px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
  padding: 22px 22px 28px;
  cursor: pointer;
  list-style: none;
}

.roadmap-card summary::-webkit-details-marker { display: none; }

.roadmap-card summary::after {
  content: "Open";
  width: fit-content;
  padding: 7px 10px 5px;
  border: 1px solid rgba(16, 18, 23, 0.12);
  border-radius: 8px;
  color: var(--text);
  background: rgba(16, 18, 23, 0.04);
  font-family: "Teko GE", sans-serif;
  font-size: 1rem;
  line-height: 1;
  text-transform: uppercase;
}

.roadmap-card[open] summary::after { content: "Close"; }

.roadmap-card span {
  color: rgba(16, 18, 23, 0.54);
}

.roadmap-card strong {
  margin-top: 0;
  max-width: 100%;
  color: var(--text);
  font-size: clamp(2.25rem, 3.1vw, 3.25rem);
  line-height: 0.9;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: manual;
}

.roadmap-card b {
  width: fit-content;
  margin-top: 0;
  color: #ffffff;
  background: var(--text);
}

.roadmap-card-detail {
  padding: 0 22px 28px;
}

.roadmap-card-detail p {
  display: block;
  margin: 0;
  padding: 0;
  color: rgba(16, 18, 23, 0.68);
  line-height: 1.38;
  overflow: visible;
}

.roadmap-card-detail a {
  display: inline-flex;
  width: fit-content;
  margin-top: 14px;
  padding: 9px 12px 7px;
  border: 1px solid rgba(0, 87, 184, 0.2);
  border-radius: 8px;
  color: var(--blue);
  background: rgba(0, 87, 184, 0.06);
  font-family: "Teko GE", sans-serif;
  font-size: 1.05rem;
  line-height: 1;
  text-transform: uppercase;
}

.points-row.is-ge {
  background: linear-gradient(90deg, #7e2630, #102c50);
}

.points-row.is-ge span,
.points-row.is-ge strong,
.points-row.is-ge small {
  color: #ffffff;
}

.points-row.is-ge b {
  color: #ffd24d;
}

@media (max-width: 1040px) {
  .season-grid,
  .roadmap-track {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .roadmap-card summary {
    min-height: auto;
  }

  .roadmap-card strong {
    font-size: clamp(2rem, 10vw, 2.85rem);
  }
}

/* Motion/depth pass: ambient background bloom + cascading card reveals. */
.ambient-depth {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}
.ambient-depth span {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.6;
  will-change: transform;
}
.ambient-depth span:nth-child(1) {
  top: -12%;
  left: -8%;
  width: min(46vw, 620px);
  height: min(46vw, 620px);
  background: radial-gradient(circle, rgba(0, 87, 184, 0.16), transparent 70%);
  animation: driftA 26s ease-in-out infinite;
}
.ambient-depth span:nth-child(2) {
  top: 30%;
  right: -10%;
  width: min(38vw, 520px);
  height: min(38vw, 520px);
  background: radial-gradient(circle, rgba(220, 48, 48, 0.12), transparent 70%);
  animation: driftB 32s ease-in-out infinite;
}
.ambient-depth span:nth-child(3) {
  bottom: -14%;
  left: 22%;
  width: min(34vw, 460px);
  height: min(34vw, 460px);
  background: radial-gradient(circle, rgba(214, 168, 79, 0.14), transparent 70%);
  animation: driftA 38s ease-in-out infinite reverse;
}
@keyframes driftA {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(3vw, 4vh) scale(1.08); }
}
@keyframes driftB {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-4vw, -3vh) scale(1.05); }
}

@keyframes card-rise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
.js [data-reveal] .run-grid > *,
.js [data-reveal] .story-grid > *,
.js [data-reveal] .stat-cards > *,
.js [data-reveal] .roadmap-track > *,
.js [data-reveal] .points-list > *,
.js [data-reveal] .map-board > *,
.js [data-reveal] .share-grid > *,
.js [data-reveal] .participants > *,
.js [data-reveal] .command-grid > *,
.js [data-reveal] .social-grid > *,
.js .campaign-moments > *,
.js #rosterGrid > *,
.js #videoRail > *,
.js #shortRail > * {
  opacity: 0;
  transform: translateY(14px);
}
.js [data-reveal].is-visible .run-grid > *,
.js [data-reveal].is-visible .story-grid > *,
.js [data-reveal].is-visible .stat-cards > *,
.js [data-reveal].is-visible .roadmap-track > *,
.js [data-reveal].is-visible .points-list > *,
.js [data-reveal].is-visible .map-board > *,
.js [data-reveal].is-visible .share-grid > *,
.js [data-reveal].is-visible .participants > *,
.js [data-reveal].is-visible .command-grid > *,
.js [data-reveal].is-visible .social-grid > *,
.js .campaign-moments.is-visible > *,
.js #rosterGrid.is-visible > *,
.js #videoRail.is-visible > *,
.js #shortRail.is-visible > * {
  animation: card-rise 560ms cubic-bezier(0.16, 1, 0.3, 1) both;
}
.run-grid > *:nth-child(2), .story-grid > *:nth-child(2), .stat-cards > *:nth-child(2), .roadmap-track > *:nth-child(2), .points-list > *:nth-child(2), .map-board > *:nth-child(2), .share-grid > *:nth-child(2), .participants > *:nth-child(2), .command-grid > *:nth-child(2), .social-grid > *:nth-child(2), .campaign-moments > *:nth-child(2), #rosterGrid > *:nth-child(2), #videoRail > *:nth-child(2), #shortRail > *:nth-child(2) { animation-delay: 55ms; }
.run-grid > *:nth-child(3), .story-grid > *:nth-child(3), .stat-cards > *:nth-child(3), .roadmap-track > *:nth-child(3), .points-list > *:nth-child(3), .map-board > *:nth-child(3), .share-grid > *:nth-child(3), .participants > *:nth-child(3), .social-grid > *:nth-child(3), .campaign-moments > *:nth-child(3), #rosterGrid > *:nth-child(3), #videoRail > *:nth-child(3), #shortRail > *:nth-child(3) { animation-delay: 110ms; }
.stat-cards > *:nth-child(4), .roadmap-track > *:nth-child(4), .points-list > *:nth-child(4), .participants > *:nth-child(4), #rosterGrid > *:nth-child(4), #videoRail > *:nth-child(4) { animation-delay: 165ms; }
.stat-cards > *:nth-child(5), .points-list > *:nth-child(5), .participants > *:nth-child(5), #rosterGrid > *:nth-child(5), #videoRail > *:nth-child(5) { animation-delay: 220ms; }
.points-list > *:nth-child(6), .participants > *:nth-child(6), #videoRail > *:nth-child(6) { animation-delay: 275ms; }
.participants > *:nth-child(7) { animation-delay: 330ms; }
.participants > *:nth-child(8) { animation-delay: 385ms; }

/* Subtle premium hover lift, matching the existing .player-card treatment.
   .roadmap-card is intentionally excluded — a later editorial pass already
   resets it to transform: none and this respects that decision. */
.run-grid article,
.map-card,
.share-card,
.story-grid article,
.social-grid article,
.stat-cards a,
.next-match,
.source-lock,
.short-card,
.video-card,
.participant-card {
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}
.run-grid article:hover,
.map-card:hover,
.share-card:hover,
.story-grid article:hover,
.social-grid article:hover,
.stat-cards a:hover,
.next-match:hover,
.source-lock:hover,
.short-card:hover,
.video-card:hover,
.participant-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 87, 184, 0.22);
  box-shadow: 0 18px 46px rgba(16, 18, 23, 0.1);
}

@media (max-width: 640px) {
  .ambient-depth span { filter: blur(40px); opacity: 0.4; }
}

