@font-face {
  font-family: Barlow;
  src: url("/assets/heading.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: Inter;
  src: url("/assets/body.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: Inter;
  src: url("/assets/body-bold.woff2") format("woff2");
  font-weight: 600 900;
  font-display: swap;
}
:root {
  --green: #bff800;
  --bg: #050505;
  --panel: #111;
  --text: #f8f8f4;
  --muted: #b3b4ad;
  --line: #2a2b27;
  --max: 1320px;
  --gutter: clamp(20px, 4.6vw, 76px);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 30px;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}
a {
  color: inherit;
  text-underline-offset: 5px;
}
button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}
a:hover {
  color: var(--green);
}
:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 5px;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  font-family: Barlow, "Arial Narrow", Impact, sans-serif;
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.02em;
}
h1,
h2 {
  text-transform: uppercase;
}
h1 {
  font-size: clamp(52px, 7.5vw, 110px);
}
h2 {
  font-size: clamp(40px, 4.8vw, 72px);
  margin-bottom: 26px;
}
h3 {
  font-size: 30px;
  line-height: 1.08;
}
em {
  font-style: normal;
  color: var(--green);
}
p {
  color: var(--muted);
}
.wrap {
  max-width: calc(var(--max) + 2 * var(--gutter));
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  margin-inline: auto;
}
.section {
  padding-top: 90px;
  padding-bottom: 30px;
}
.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.7;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: 23px;
}
.lede {
  font-size: 19px;
  line-height: 1.75;
  max-width: 660px;
}
.small {
  font-size: 13px;
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 15px;
  z-index: 100;
  padding: 12px;
  background: var(--green);
  color: #000;
}
.skip-link:focus {
  top: 10px;
}
.topline {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px var(--gutter);
  border-bottom: 1px solid var(--line);
  font-size: 10px;
  letter-spacing: 0.13em;
  color: var(--muted);
}
.topline a {
  text-decoration: none;
}
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 20px var(--gutter);
  position: relative;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  white-space: nowrap;
}
.brand img {
  width: 55px;
  height: 55px;
  object-fit: contain;
}
.brand > span {
  font-family: Barlow, sans-serif;
  font-size: 25px;
  line-height: 1;
}
.brand small {
  display: block;
  font:
    9px Inter,
    sans-serif;
  letter-spacing: 0.13em;
  margin-top: 6px;
}
.desktop-nav {
  display: flex;
  gap: 23px;
  align-items: center;
  font-size: 14px;
}
.desktop-nav a {
  text-decoration: none;
}
.desktop-nav details {
  position: relative;
}
.desktop-nav summary {
  list-style: none;
  cursor: pointer;
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 9px;
}
.desktop-nav summary:after {
  content: "⌄";
  color: var(--green);
}
.dropdown {
  position: absolute;
  top: 100%;
  left: -20px;
  min-width: 260px;
  padding: 14px;
  background: #151613;
  border: 1px solid var(--line);
  box-shadow: 0 20px 50px #0009;
}
.dropdown a {
  display: block;
  padding: 9px 10px;
}
.dropdown a:hover {
  background: #252621;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 15px 24px;
  background: var(--green);
  border: 1px solid var(--green);
  color: #101500;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  text-decoration: none;
  line-height: 1.35;
  transition:
    background 0.15s,
    color 0.15s;
}
.button:hover {
  color: #000;
  background: #d0ff39;
}
.button.secondary {
  background: transparent;
  border-color: #63665a;
  color: var(--text);
}
.button.secondary:hover {
  border-color: var(--green);
  color: var(--green);
}
.site-header > .button {
  font-size: 11px;
  min-height: 45px;
  padding: 12px 18px;
}
.button-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.mobile-menu {
  display: none;
}
.hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  position: relative;
  padding-top: 35px;
  gap: 0 24px;
}
.hero-copy {
  position: relative;
  padding: 44px 0 20px;
  z-index: 2;
}
.hero h1 {
  font-size: clamp(76px, 9.7vw, 152px);
  line-height: 0.85;
  letter-spacing: -0.025em;
  margin-bottom: 32px;
}
.hero-copy > p:not(.eyebrow) {
  max-width: 420px;
  font-size: 16px;
  line-height: 1.75;
}
.status-dot {
  display: inline-block;
  background: var(--green);
  width: 6px;
  height: 6px;
  margin-right: 8px;
  border-radius: 50%;
}
.hero .button-row {
  margin-top: 30px;
}
.hero-caption {
  display: flex;
  gap: 35px;
  margin-top: 37px;
  font-size: 9px;
  color: #b5b7ad;
  letter-spacing: 0.08em;
  line-height: 1.8;
}
.hero-caption span + span {
  border-left: 1px solid var(--line);
  padding-left: 30px;
}
.hero-visual {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  perspective: 1100px;
  background: #151815;
  clip-path: polygon(10% 0, 100% 0, 100% 90%, 88% 100%, 0 100%, 0 10%);
}
.hero-visual > img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center 46%;
  filter: saturate(0.7);
  transform-origin: 50% 100%;
  animation: hero-player-rise 1.15s cubic-bezier(0.16, 1, 0.3, 1) both;
  will-change: transform, opacity, filter;
  position: relative;
  z-index: 1;
}
.hero-visual > img.hero-player {
  filter: saturate(0.82) contrast(1.04);
}
.hero-visual > img.hero-player::selection {
  background: transparent;
}
@keyframes hero-player-rise {
  from {
    opacity: 0;
    filter: saturate(0.4) blur(10px);
    transform: translate3d(0, 18%, 0) rotateX(12deg) rotateZ(-1.5deg)
      scale(0.92);
  }
  65% {
    opacity: 1;
    transform: translate3d(0, -2%, 0) rotateX(-2deg) rotateZ(0.3deg) scale(1.02);
  }
  to {
    opacity: 1;
    filter: saturate(0.82) contrast(1.04);
    transform: translate3d(0, 0, 0) rotateX(0) rotateZ(0) scale(1);
  }
}
.hero-visual:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, #050505b0, transparent 35%);
  z-index: 2;
}
.hero-visual:before {
  content: "";
  position: absolute;
  inset: 8% 10% 5%;
  background: radial-gradient(circle at 50% 45%, #bff80035, transparent 58%);
  filter: blur(28px);
  transform: translateZ(-1px);
  z-index: 0;
}
.photo-label {
  position: absolute;
  bottom: 28px;
  left: 28px;
  font-size: 10px;
  letter-spacing: 0.12em;
  z-index: 3;
}
.vertical-label {
  position: absolute;
  top: 35px;
  right: 14px;
  writing-mode: vertical-rl;
  font-size: 9px;
  letter-spacing: 0.16em;
  z-index: 3;
}
.hero-bottom {
  grid-column: 1/-1;
  display: flex;
  justify-content: space-between;
  margin-top: 35px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  font-size: 10px;
  letter-spacing: 0.13em;
  color: var(--muted);
}
.hero-bottom a {
  text-decoration: none;
  color: var(--green);
}
.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: end;
  margin-bottom: 28px;
}
.section-heading > p {
  max-width: 345px;
  font-size: 15px;
  margin-bottom: 30px;
}
.pathways {
  border-top: 1px solid var(--line);
}
.pathway {
  display: flex;
  align-items: center;
  gap: 35px;
  border-bottom: 1px solid var(--line);
  padding: 26px 10px;
  text-decoration: none;
  transition:
    background 0.18s,
    padding 0.18s;
}
.pathway:hover {
  background: #12150a;
  padding-left: 22px;
}
.index {
  color: var(--green);
  font-size: 13px;
  align-self: flex-start;
  padding-top: 4px;
}
.pathway small {
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.pathway h3 {
  font-size: 42px;
  margin: 6px 0 4px;
  text-transform: uppercase;
}
.pathway p {
  font-size: 13px;
  margin-bottom: 0;
}
.arrow {
  margin-left: auto;
  font-size: 30px;
  color: var(--green);
}
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8%;
  padding-top: 100px;
  padding-bottom: 60px;
}
.editorial-photo {
  min-height: 620px;
}
.editorial-photo img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  filter: saturate(0.7);
}
.principles > div {
  padding: 19px 0 12px 42px;
  border-top: 1px solid var(--line);
  position: relative;
}
.principles span {
  position: absolute;
  left: 0;
  color: var(--green);
  font-size: 11px;
}
.principles h3 {
  font-size: 27px;
  margin-bottom: 8px;
}
.principles p {
  font-size: 14px;
}
.text-link {
  display: inline-block;
  color: var(--green);
  font-size: 13px;
  font-weight: 600;
  margin: 15px 20px 5px 0;
}
.timetable {
  border-top: 1px solid var(--line);
}
.timetable > div {
  display: grid;
  grid-template-columns: 1fr 1.7fr 1fr;
  gap: 30px;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.timetable h3 {
  margin: 0;
}
.timetable h3 a {
  text-decoration: none;
}
.timetable p {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 0 0 8px;
  font-size: 13px;
}
.timetable strong {
  color: var(--text);
  white-space: nowrap;
}
.timetable > div > a {
  text-align: right;
  font-size: 12px;
  color: var(--green);
}
.trust-section {
  margin-top: 90px;
  border-block: 1px solid var(--line);
  background:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent calc(25% - 1px),
      #bff8000c 25%
    ),
    #0d100a;
}
.trust-inner {
  padding-block: 70px;
  text-align: center;
}
.trust-inner > p:not(.eyebrow) {
  max-width: 600px;
  margin: 0 auto 30px;
}
.trust-inner .button-row {
  justify-content: center;
}
.one-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8%;
  padding-bottom: 60px;
}
.faq-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8%;
  border-top: 1px solid var(--line);
}
.faqs details {
  border-top: 1px solid var(--line);
  padding: 20px 0;
}
.faqs details:last-child {
  border-bottom: 1px solid var(--line);
}
summary {
  cursor: pointer;
}
.faqs summary {
  font-size: 15px;
  font-weight: 600;
}
.faqs p {
  font-size: 14px;
  margin-top: 18px;
}
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}
.article-grid article {
  padding: 25px 0;
  border-top: 1px solid var(--line);
}
.article-grid h3,
.article-grid h2 {
  font-size: 32px;
  line-height: 1.13;
  text-transform: none;
}
.article-grid h3 a,
.article-grid h2 a {
  text-decoration: none;
}
.article-grid p {
  font-size: 14px;
}
.article-grid img {
  aspect-ratio: 16/10;
  object-fit: cover;
  width: 100%;
  margin-bottom: 22px;
}
.final-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding-block: 90px;
  margin-top: 65px;
  border-top: 1px solid var(--line);
}
.final-cta p:not(.eyebrow) {
  max-width: 530px;
}
.cta-stack {
  min-width: 265px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
}
.cta-stack > a:last-child {
  font-size: 12px;
  color: var(--muted);
  margin-top: 6px;
}
footer {
  background: #0e0f0c;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr 1.3fr;
  gap: 30px;
  padding-top: 65px;
  padding-bottom: 45px;
}
.footer-grid h2 {
  font:
    600 12px Inter,
    sans-serif;
  text-transform: none;
  margin-bottom: 22px;
}
.footer-grid > div > a {
  display: block;
  font-size: 11px;
  text-decoration: none;
  color: var(--muted);
  padding-block: 5px;
  overflow-wrap: anywhere;
}
.footer-grid p {
  font-size: 11px;
}
.footer-brand strong {
  font-family: Barlow, sans-serif;
  font-size: 35px;
  line-height: 1;
}
.footer-brand strong span {
  display: block;
  font:
    9px Inter,
    sans-serif;
  letter-spacing: 0.16em;
  margin: 8px 0 20px;
}
.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 10px;
}
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-block: 20px;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  font-size: 9px;
  color: #9c9e94;
}
.mobile-trial {
  display: none;
}
.page-intro {
  padding-block: 50px 45px;
}
.back-link {
  font-size: 11px;
  color: var(--muted);
  display: inline-block;
  margin-bottom: 35px;
}
.page-intro h1 {
  max-width: 1100px;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 1.02;
}
.page-intro .eyebrow {
  margin-bottom: 16px;
}
.programme-hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 45px;
}
.programme-hero > div {
  max-height: 650px;
  overflow: hidden;
}
.programme-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.programme-hero aside {
  background: var(--panel);
  padding: 35px;
}
.programme-hero aside > .button {
  display: flex;
  margin-top: 14px;
}
.programme-hero h2 {
  font-size: 45px;
}
.programme-hero dl > div {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  border-top: 1px solid var(--line);
  padding: 14px 0;
  font-size: 13px;
}
.programme-hero dd {
  white-space: nowrap;
  margin: 0;
}
.programme-hero aside > p {
  font-size: 14px;
}
.focus-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-bottom: 65px;
}
.focus-grid > div {
  border-top: 1px solid var(--line);
  padding-top: 22px;
}
.focus-grid span {
  color: var(--green);
  font-size: 12px;
}
.focus-grid h3 {
  font-size: 28px;
  margin-top: 20px;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.product-card {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 28px;
  display: flex;
  flex-direction: column;
}
.product-card h3 {
  font-size: 30px;
}
.product-card ul {
  list-style: none;
  margin: 0 0 25px;
  padding: 0;
  font-size: 12px;
  color: var(--muted);
}
.product-card li {
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.product-card .button {
  margin-top: auto;
}
.price {
  font-family: Barlow, sans-serif;
  font-size: 52px;
  line-height: 1;
  color: var(--text);
}
.price small {
  font:
    12px Inter,
    sans-serif;
  color: var(--muted);
}
.prose {
  font-size: 16px;
  line-height: 1.85;
  overflow-wrap: anywhere;
}
.prose > h2 {
  font-size: 36px;
  line-height: 1.15;
  margin-top: 40px;
}
.prose > h3 {
  font-size: 26px;
  line-height: 1.3;
  margin-top: 30px;
}
.prose li {
  color: var(--muted);
  margin-bottom: 9px;
}
.prose p {
  margin-bottom: 22px;
}
.prose a {
  color: var(--green);
}
.prose img {
  height: auto;
  max-width: 100%;
}
.prose table {
  display: block;
  max-width: 100%;
  overflow: auto;
  border-collapse: collapse;
}
.prose th,
.prose td {
  padding: 12px;
  border: 1px solid var(--line);
  text-align: left;
}
.prose strong {
  color: var(--text);
}
.faq-section {
  max-width: 920px;
}
.faq-section details {
  border-top: 1px solid var(--line);
  padding: 18px 0;
}
.faq-section details:last-child {
  border-bottom: 1px solid var(--line);
}
.faq-section summary {
  color: var(--text);
  cursor: pointer;
  font-family: var(--heading);
  font-size: 20px;
  font-weight: 700;
  list-style-position: outside;
}
.faq-section details p {
  margin: 14px 0 0;
  max-width: 720px;
}
.match-app {
  --match-ink: #080808;
  --match-paper: #f3f4ef;
  --match-green: #bff800;
  background: var(--match-paper);
  color: var(--match-ink);
}
.match-hero {
  background: var(--match-ink);
  color: #fff;
  padding: 90px 0 80px;
}
.match-hero-grid {
  display: grid;
  gap: 44px;
  grid-template-columns: minmax(0, 1.5fr) minmax(260px, 0.7fr);
  align-items: end;
}
.match-hero h1,
.match-bottom h2 {
  color: #fff;
  font-size: clamp(52px, 8vw, 105px);
  line-height: 0.88;
  margin: 18px 0 26px;
  text-transform: uppercase;
}
.match-hero h1 em,
.match-bottom h2 em {
  color: var(--match-green);
  font-style: normal;
}
.match-hero .lede {
  color: #b9b9b5;
  max-width: 610px;
}
.match-hero-note {
  border-left: 1px solid #363636;
  padding: 10px 0 10px 28px;
}
.match-hero-note span,
.match-hero-note strong {
  display: block;
  text-transform: uppercase;
}
.match-hero-note span {
  color: var(--match-green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
}
.match-hero-note strong {
  font-size: 22px;
  margin: 10px 0;
}
.match-hero-note p {
  color: #a2a29e;
  font-size: 14px;
  line-height: 1.7;
}
.match-choose {
  background: var(--match-ink);
  color: #fff;
  padding: 40px 0 88px;
}
.match-intro {
  display: flex;
  justify-content: space-between;
  gap: 34px;
  align-items: end;
  padding-bottom: 25px;
}
.match-intro h2 {
  font-size: clamp(40px, 6vw, 74px);
  line-height: 0.95;
  margin: 10px 0 0;
  text-transform: uppercase;
}
.match-intro > p {
  color: #a9aaa3;
  max-width: 460px;
  line-height: 1.7;
}
.match-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.match-team-card {
  appearance: none;
  border: 1px solid #30332d;
  background: #191a18;
  color: #fff;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  min-height: 270px;
  padding: 22px;
  text-align: left;
  transition:
    background 0.2s,
    transform 0.2s,
    border-color 0.2s;
}
.match-team-card:hover,
.match-team-card:focus-visible {
  background: var(--match-green);
  border-color: var(--match-green);
  transform: translateY(-4px);
}
.match-team-card.is-coming {
  background: #242620;
  cursor: pointer;
}
.match-team-mark {
  align-items: center;
  background: var(--match-ink);
  color: var(--match-green);
  display: flex;
  font-size: 28px;
  font-weight: 900;
  height: 54px;
  justify-content: center;
  width: 54px;
}
.match-team-card span:nth-child(2) {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.match-team-card small,
.match-team-card b {
  color: #a9aaa3;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.match-team-card strong {
  font-size: 28px;
  line-height: 1;
  text-transform: uppercase;
}
.match-team-card em {
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  margin-top: auto;
  text-transform: uppercase;
}
.match-live {
  background: var(--match-ink);
  color: #fff;
  padding: 74px 0 90px;
}
.match-live-heading {
  align-items: end;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.match-live-heading h2 {
  font-size: clamp(40px, 6vw, 72px);
  line-height: 0.95;
  margin: 12px 0 28px;
  text-transform: uppercase;
}
.match-team-meta,
.match-season {
  color: var(--match-green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}
.match-team-nav {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 0 0 28px;
}
.match-team-nav .btbmc-team-btn {
  background: #171717;
  border: 1px solid #343434;
  color: #a9aaa3;
  cursor: pointer;
  min-width: 130px;
  padding: 15px 18px;
  text-transform: uppercase;
  font-weight: 800;
}
.match-team-nav .btbmc-team-btn.active {
  background: var(--match-green);
  border-color: var(--match-green);
  color: #000;
}
.match-team-nav .btbmc-team-btn.disabled {
  opacity: 0.6;
}
.match-team-nav .btbmc-team-btn small {
  display: block;
  font-size: 9px;
  margin-top: 4px;
}
.match-tabs {
  border-bottom: 1px solid #333;
  display: flex;
  gap: 4px;
  margin-bottom: 30px;
}
.match-tab {
  background: transparent;
  border: 0;
  border-bottom: 2px solid transparent;
  color: #777;
  cursor: pointer;
  padding: 14px 18px;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 800;
}
.match-tab.active {
  border-color: var(--match-green);
  color: #fff;
}
.match-panel {
  display: none;
}
.match-panel.active {
  display: block;
}
.match-feed-head {
  align-items: center;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}
.match-feed-head h3 {
  font-size: 25px;
  margin: 0;
  text-transform: uppercase;
}
.match-feed-head span {
  color: #7b7d76;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.match-status {
  border: 1px solid #333;
  color: #969892;
  padding: 26px;
}
.match-info {
  border-top: 1px solid #333;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 44px;
  padding-top: 22px;
}
.match-info span,
.match-info strong {
  display: block;
  text-transform: uppercase;
}
.match-info span {
  color: #777;
  font-size: 10px;
  letter-spacing: 1px;
}
.match-info strong {
  font-size: 14px;
  margin-top: 8px;
}
.match-bottom {
  background: var(--match-ink);
  color: #fff;
  padding-bottom: 90px;
  padding-top: 90px;
}
.match-bottom h2 {
  color: #fff;
  font-size: clamp(48px, 7vw, 90px);
}
.match-bottom p:not(.eyebrow) {
  color: #a9aaa3;
  max-width: 450px;
  line-height: 1.7;
}
.match-feed-frame {
  border: 0;
  height: 1px;
  opacity: 0.01;
  pointer-events: none;
  position: absolute;
  width: 1px;
}
.prose dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.prose dd {
  margin: 0;
}
.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) minmax(230px, 1fr);
  gap: 70px;
}
.article-aside {
  align-self: start;
  background: var(--panel);
  padding: 30px;
  position: sticky;
  top: 30px;
}
.article-aside h2 {
  font-size: 40px;
}
.article-aside p {
  font-size: 14px;
}
.article-aside .button {
  font-size: 11px;
  padding-inline: 14px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.contact-grid > div,
.action-panel {
  background: var(--panel);
  padding: 40px;
}
.contact-grid h2 {
  font-size: 40px;
}
.contact-grid h3 {
  margin-top: 35px;
}
.contact-link {
  display: block;
  font-size: clamp(16px, 2vw, 26px);
  margin-top: 24px;
  overflow-wrap: anywhere;
}
.action-panel {
  max-width: 850px;
}
.action-panel .button {
  margin: 10px 8px 0 0;
}
@media (min-width: 1600px) {
  .site-header,
  .topline {
    padding-inline: max(var(--gutter), calc((100vw - var(--max)) / 2));
  }
}
@media (min-width: 2000px) {
  :root {
    --max: 2200px;
    --gutter: clamp(76px, 4vw, 140px);
  }
  body {
    font-size: 18px;
  }
  h1 {
    font-size: clamp(96px, 5vw, 150px);
  }
  h2 {
    font-size: clamp(64px, 3.5vw, 92px);
  }
  .section {
    padding-top: 120px;
  }
  .hero-visual {
    min-height: 720px;
  }
  .match-hero {
    padding-block: 140px 120px;
  }
  .match-live,
  .match-bottom {
    padding-block: 120px;
  }
}
@media (max-width: 1100px) {
  .desktop-nav {
    gap: 14px;
    font-size: 12px;
  }
  .site-header {
    gap: 15px;
  }
  .brand > span {
    font-size: 21px;
  }
  .hero-visual {
    min-height: 540px;
  }
  .hero h1 {
    font-size: 11vw;
  }
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-brand {
    grid-column: 1/-1;
  }
  .article-layout {
    gap: 35px;
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 850px) {
  .desktop-nav,
  .site-header > .button {
    display: none;
  }
  .mobile-menu {
    display: block;
  }
  .mobile-menu > summary {
    display: flex;
    align-items: center;
    gap: 18px;
    min-height: 44px;
    list-style: none;
    font-size: 14px;
  }
  .mobile-menu > nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #11120e;
    padding: 18px var(--gutter) 28px;
    max-height: 75vh;
    overflow-y: auto;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 30px 40px #000a;
  }
  .mobile-menu nav a {
    display: block;
    padding: 11px 0;
    font-size: 15px;
    text-decoration: none;
    border-bottom: 1px solid var(--line);
  }
  .mobile-menu nav summary {
    padding: 14px 0;
  }
  .hero {
    padding-top: 25px;
  }
  .hero-copy {
    padding-top: 22px;
  }
  .hero h1 {
    font-size: 12vw;
  }
  .hero-visual {
    min-height: 500px;
  }
  .hero-caption {
    gap: 14px;
  }
  .hero-caption span + span {
    padding-left: 14px;
  }
  .hero-copy > p:not(.eyebrow) {
    font-size: 14px;
  }
  .hero .eyebrow {
    font-size: 9px;
  }
  .hero .button-row {
    flex-direction: column;
    align-items: start;
  }
  .hero .button {
    min-width: 210px;
  }
  .section-heading {
    align-items: start;
  }
  .section-heading > p {
    max-width: 260px;
  }
  .split-section {
    gap: 35px;
  }
  .editorial-photo {
    min-height: 500px;
  }
  .focus-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .programme-hero {
    gap: 24px;
  }
  .programme-hero aside {
    padding: 25px;
  }
  .programme-hero dl > div {
    flex-direction: column;
    gap: 4px;
  }
  .article-grid {
    gap: 20px;
  }
  .article-layout {
    grid-template-columns: 1fr;
  }
  .article-aside {
    position: static;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .final-cta {
    align-items: start;
  }
  .cta-stack {
    min-width: 220px;
  }
}
@media (max-width: 600px) {
  .topline {
    font-size: 8px;
    letter-spacing: 0.08em;
    padding-block: 7px;
  }
  .site-header {
    padding-block: 13px;
  }
  .brand img {
    width: 45px;
    height: 45px;
  }
  .brand > span {
    font-size: 23px;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .hero-copy {
    padding: 17px 0 24px;
  }
  .hero h1 {
    font-size: clamp(80px, 22vw, 130px);
    line-height: 0.84;
    margin-bottom: 25px;
  }
  .hero .eyebrow {
    font-size: 9px;
    margin-bottom: 25px;
  }
  .hero-copy > p:not(.eyebrow) {
    font-size: 15px;
    max-width: 350px;
  }
  .hero .button-row {
    flex-direction: row;
    gap: 9px;
    margin-top: 23px;
  }
  .hero .button {
    min-width: 0;
    font-size: 10px;
    padding: 14px 16px;
  }
  .hero-caption {
    margin-top: 23px;
    font-size: 8px;
    gap: 25px;
  }
  .hero-caption span + span {
    padding-left: 25px;
  }
  .hero-visual {
    min-height: 0;
    height: 420px;
    clip-path: polygon(8% 0, 100% 0, 100% 92%, 92% 100%, 0 100%, 0 8%);
  }
  .hero-visual > img {
    object-position: center 58%;
  }
  .hero-bottom {
    font-size: 8px;
    gap: 12px;
    margin-top: 20px;
    padding-block: 17px;
  }
  .hero-bottom > span {
    max-width: 125px;
  }
  .hero-bottom > a {
    align-self: center;
  }
  .section {
    padding-top: 65px;
    padding-bottom: 10px;
  }
  .section-heading {
    display: block;
    margin-bottom: 20px;
  }
  .section-heading > p {
    max-width: 100%;
    font-size: 14px;
  }
  .eyebrow {
    font-size: 10px;
    margin-bottom: 18px;
  }
  h2 {
    font-size: 44px;
  }
  .pathway {
    gap: 20px;
    padding: 23px 0;
  }
  .pathway h3 {
    font-size: 36px;
  }
  .pathway small {
    font-size: 9px;
  }
  .pathway p {
    font-size: 12px;
  }
  .split-section {
    grid-template-columns: 1fr;
    padding-top: 65px;
    padding-bottom: 0;
    gap: 36px;
  }
  .editorial-photo {
    min-height: 0;
    height: 340px;
  }
  .lede {
    font-size: 17px;
  }
  .timetable > div {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 25px 0;
  }
  .timetable h3 {
    font-size: 29px;
  }
  .timetable > div > a {
    text-align: left;
  }
  .timetable p {
    font-size: 13px;
  }
  .trust-section {
    margin-top: 65px;
  }
  .trust-inner {
    padding-block: 50px;
  }
  .trust-inner .button {
    font-size: 11px;
    width: 100%;
  }
  .one-block,
  .faq-section {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .one-block {
    padding-bottom: 45px;
  }
  .one-block .button {
    width: 100%;
    font-size: 12px;
  }
  .faq-section {
    padding-top: 45px;
  }
  .article-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .article-grid h2,
  .article-grid h3 {
    font-size: 32px;
  }
  .final-cta {
    flex-direction: column;
    gap: 20px;
    padding-block: 55px;
    margin-top: 50px;
  }
  .cta-stack {
    width: 100%;
  }
  .footer-grid {
    gap: 30px 22px;
    padding-top: 45px;
  }
  .footer-grid > div:last-child {
    grid-column: 1/-1;
  }
  .footer-grid > div > a {
    font-size: 12px;
    padding-block: 8px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    padding-bottom: 95px;
  }
  .mobile-trial {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 15;
    padding: 9px 16px calc(9px + env(safe-area-inset-bottom));
    background: #080a06ef;
    border-top: 1px solid #323a18;
    backdrop-filter: blur(10px);
  }
  .mobile-trial .button {
    width: 100%;
    min-height: 45px;
    font-size: 12px;
  }
  .page-intro {
    padding-block: 30px;
  }
  .page-intro h1 {
    font-size: 49px;
  }
  .back-link {
    margin-bottom: 25px;
  }
  .programme-hero {
    grid-template-columns: 1fr;
  }
  .programme-hero > div {
    max-height: 360px;
  }
  .programme-hero aside {
    padding: 25px;
  }
  .programme-hero dl > div {
    flex-direction: row;
    font-size: 12px;
  }
  .focus-grid {
    gap: 20px;
    margin-bottom: 35px;
  }
  .focus-grid h3 {
    font-size: 25px;
  }
  .product-grid {
    grid-template-columns: 1fr;
  }
  .product-card {
    padding: 26px;
  }
  .article-layout {
    gap: 35px;
  }
  .prose {
    font-size: 15px;
  }
  .prose > h2 {
    font-size: 32px;
  }
  .prose > h3 {
    font-size: 25px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .contact-grid > div,
  .action-panel {
    padding: 25px;
  }
  .action-panel {
    margin-inline: var(--gutter);
  }
  .contact-link {
    font-size: 16px;
  }
  .button {
    max-width: 100%;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition: none !important;
    animation: none !important;
  }
}

@media (max-width: 800px) {
  .match-hero {
    padding: 62px 0 56px;
  }
  .match-hero-grid,
  .match-intro {
    display: block;
  }
  .match-hero-note {
    border-left: 0;
    border-top: 1px solid #363636;
    margin-top: 42px;
    padding: 22px 0 0;
  }
  .match-intro > p {
    margin-top: 18px;
  }
  .match-team-grid {
    grid-template-columns: repeat(2, 1fr);
    padding-bottom: 60px;
  }
  .match-team-card {
    min-height: 220px;
    padding: 17px;
  }
  .match-team-card strong {
    font-size: 22px;
  }
  .match-live {
    padding: 56px 0 64px;
  }
  .match-live-heading {
    align-items: start;
    display: block;
  }
  .match-season {
    display: block;
    margin-bottom: 22px;
  }
  .match-info {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .match-team-grid {
    gap: 8px;
  }
  .match-team-card {
    min-height: 195px;
  }
  .match-team-card strong {
    font-size: 19px;
  }
  .match-team-card b {
    font-size: 9px;
  }
}
