@font-face {
  font-family: "Oswald";
  src: url("./assets/fonts/oswald-bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --green: #37ff3b;
  --green-dark: #0bbf25;
  --orange: #ff7a1a;
  --orange-soft: #ffb36a;
  --cream: #fff0d8;
  --white: #ffffff;
  --graphite: #101114;
  --graphite-soft: #1b1d22;
  --muted: #6f737d;
  --line: rgba(16, 17, 20, 0.12);
  --shadow: 0 22px 70px rgba(16, 17, 20, 0.18);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1160px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--graphite);
  background:
    radial-gradient(circle at 10% 0%, rgba(55, 255, 59, 0.24), transparent 34rem),
    radial-gradient(circle at 90% 18%, rgba(255, 122, 26, 0.2), transparent 30rem),
    #fff9ef;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(16, 17, 20, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 17, 20, 0.035) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent 78%);
  z-index: -1;
}

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

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

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

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  padding: 12px 16px;
  border-radius: 999px;
  color: var(--graphite);
  background: var(--green);
  font-weight: 900;
  transform: translateY(-140%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 11px 16px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(55, 255, 59, 0.16), transparent 34%),
    linear-gradient(270deg, rgba(255, 122, 26, 0.14), transparent 32%),
    var(--graphite);
  box-shadow: 0 10px 34px rgba(16, 17, 20, 0.16);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.brand img {
  margin: 0;
  width: clamp(108px, 24vw, 144px);
  height: clamp(36px, 8vw, 47px);
  object-fit: contain;
}

.brand-divider {
  margin: 0;
  width: 1px;
  height: clamp(30px, 7vw, 40px);
  flex: 0 0 1px;
  background: var(--white);
}

.brand-title {
  margin: 0;
  color: var(--white);
  font-size: clamp(0.86rem, 3.4vw, 1.05rem);
  font-weight: 850;
  line-height: 1;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.header-cta {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border-radius: 999px;
  color: var(--graphite);
  background: var(--orange);
  font-size: 0.92rem;
  font-weight: 950;
  letter-spacing: -0.01em;
  box-shadow: 0 12px 32px rgba(255, 122, 26, 0.34);
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  display: grid;
  align-items: end;
  isolation: isolate;
  color: var(--white);
  background: var(--graphite);
  overflow: hidden;
}

.hero__visual,
.hero__visual img,
.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__visual {
  z-index: -3;
}

.hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.015);
}

.hero__overlay {
  z-index: -2;
  background:
    radial-gradient(ellipse at 22% 72%, rgba(16, 17, 20, 0.38) 0%, rgba(16, 17, 20, 0.2) 34%, transparent 62%),
    linear-gradient(180deg, transparent 0%, rgba(16, 17, 20, 0.16) 100%);
}

.hero__decor {
  position: absolute;
  z-index: -1;
  width: 92px;
  height: 92px;
  border-radius: 18px;
  opacity: 0.82;
  transform: rotate(10deg);
}

.hero__decor--one {
  right: 22px;
  bottom: 140px;
  background: var(--green);
  box-shadow: 0 0 60px rgba(55, 255, 59, 0.34);
}

.hero__decor--two {
  left: -32px;
  top: 34%;
  width: 68px;
  height: 68px;
  background: var(--orange);
  box-shadow: 0 0 60px rgba(255, 122, 26, 0.34);
}

.hero__content {
  max-width: 1120px;
  padding-block: 74px 64px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--graphite);
  background: var(--green);
  font-size: 0.78rem;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.hero__title,
.section-copy h2,
.final-cta h2,
.programme-card h3,
.legal-header h1,
.legal-content h2 {
  margin: 0;
  font-family: "Oswald", Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.title-line {
  display: block;
}

.title-line--accent {
  color: var(--orange);
}

.no-break {
  white-space: nowrap;
}

.hero__title {
  max-width: 1120px;
  font-size: clamp(1.9rem, 9.4vw, 3.35rem);
  line-height: 1.12;
  text-shadow: 0 6px 22px rgba(0, 0, 0, 0.36), 0 1px 2px rgba(0, 0, 0, 0.42);
}

.hero__text {
  max-width: 640px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  line-height: 1.55;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.42);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  margin-top: 28px;
  padding: 17px 24px;
  border: 0;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 950;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button:focus-visible,
.header-cta:focus-visible,
.operator-card:focus-within,
.site-footer a:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 4px;
}

.button--primary {
  color: var(--graphite);
  background: var(--orange);
  box-shadow: 0 18px 46px rgba(255, 122, 26, 0.38);
}

.button--primary:hover {
  background: var(--orange-soft);
}

.button--dark {
  color: var(--white);
  background: var(--graphite);
  box-shadow: 0 18px 46px rgba(16, 17, 20, 0.24);
}

@media (max-width: 639px) {
  .hero {
    display: grid;
    grid-template-rows: minmax(540px, calc(100svh - var(--header-height) - 210px)) auto;
    align-items: stretch;
    min-height: calc(100svh - var(--header-height));
    color: var(--graphite);
    background: var(--green);
    overflow: hidden;
  }

  .hero__visual,
  .hero__visual img {
    position: relative;
    inset: auto;
    grid-column: 1;
    grid-row: 1;
  }

  .hero__visual {
    z-index: 0;
    min-height: 540px;
    overflow: hidden;
  }

  .hero__visual::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
      linear-gradient(180deg, rgba(16, 17, 20, 0.04) 0%, transparent 34%),
      linear-gradient(180deg, transparent 54%, rgba(16, 17, 20, 0.62) 100%);
    pointer-events: none;
  }

  .hero__visual img {
    position: absolute;
    inset: 0;
    object-fit: cover;
    object-position: center top;
    transform: none;
  }

  .hero__overlay {
    display: none;
  }

  .hero__decor {
    display: none;
  }

  .hero__content {
    display: contents;
    width: auto;
    padding: 0;
    text-align: left;
  }

  .hero .eyebrow {
    display: none;
  }

  .hero__title {
    z-index: 2;
    grid-column: 1;
    grid-row: 1;
    align-self: end;
    width: min(100% - 40px, 560px);
    margin: 0 20px clamp(28px, 5.8svh, 48px);
    color: var(--white);
    font-size: clamp(2.05rem, 10.4vw, 2.95rem);
    line-height: 1.12;
    text-shadow: 0 7px 24px rgba(0, 0, 0, 0.56), 0 2px 4px rgba(0, 0, 0, 0.45);
  }

  .hero__text {
    z-index: 2;
    grid-column: 1;
    grid-row: 2;
    max-width: none;
    margin: 0;
    padding: 22px 22px 24px;
    color: rgba(16, 17, 20, 0.9);
    background: var(--green);
    font-size: clamp(1rem, 4.15vw, 1.14rem);
    line-height: 1.45;
    text-shadow: none;
  }

  .hero .button {
    z-index: 3;
    grid-column: 1;
    grid-row: 1;
    align-self: start;
    justify-self: end;
    margin-top: clamp(14px, 2.6svh, 24px);
    margin-right: 18px;
  }
}

.section {
  padding-block: 72px;
}

.intro {
  background: linear-gradient(135deg, rgba(255, 122, 26, 0.12), rgba(55, 255, 59, 0.08));
}

.intro__grid {
  display: grid;
  gap: 28px;
}

.section-copy {
  max-width: 780px;
}

.section-copy--center {
  margin-inline: auto;
  text-align: center;
}

.section-copy--center .section-kicker {
  margin-inline: auto;
}

.section-copy h2,
.final-cta h2 {
  font-size: clamp(2rem, 8.4vw, 5.8rem);
  line-height: 1.12;
  color: var(--graphite);
}

.section-copy p:not(.section-kicker),
.intro__text,
.operators__note,
.programme-card p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.62;
}

.intro__text {
  margin: 0;
  max-width: 680px;
  align-self: end;
  font-size: clamp(1.05rem, 2.4vw, 1.3rem);
}

.operators {
  position: relative;
  background:
    radial-gradient(circle at 50% 0%, rgba(55, 255, 59, 0.2), transparent 28rem),
    var(--white);
}

.operator-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 30px;
}

.operator-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(112px, 1fr) auto;
  align-items: center;
  gap: 18px;
  min-height: 112px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 240, 216, 0.68)),
    var(--white);
  box-shadow: 0 16px 46px rgba(16, 17, 20, 0.08);
  overflow: hidden;
}

.operator-card::after {
  content: "";
  position: absolute;
  right: -22px;
  top: -22px;
  width: 74px;
  height: 74px;
  border-radius: 16px;
  background: var(--green);
  opacity: 0.22;
  transform: rotate(14deg);
}

.operator-card img {
  width: 152px;
  max-height: 64px;
  object-fit: contain;
  object-position: left center;
}

.operator-card__meta {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: end;
  gap: 4px;
  text-align: right;
}

.operator-card__meta span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.operator-card__meta strong {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 6px 14px;
  border-radius: 999px;
  color: var(--graphite);
  background: var(--green);
  font-size: clamp(1.55rem, 7vw, 2.3rem);
  font-weight: 1000;
  line-height: 1;
  letter-spacing: -0.05em;
  box-shadow: 0 12px 26px rgba(55, 255, 59, 0.32);
}

.operators__note {
  margin: 26px auto 0;
  max-width: 720px;
  text-align: center;
  font-weight: 750;
}

.programmes {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 6%, rgba(55, 255, 59, 0.26), transparent 24rem),
    radial-gradient(circle at 92% 90%, rgba(255, 122, 26, 0.24), transparent 28rem),
    linear-gradient(145deg, #171a1f 0%, #111318 54%, #1c1714 100%);
  color: var(--white);
}

.programmes::before,
.programmes::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.programmes::before {
  left: -54px;
  top: 110px;
  width: 140px;
  height: 140px;
  border-radius: 26px;
  background: var(--green);
  opacity: 0.13;
  transform: rotate(14deg);
  box-shadow: 0 0 70px rgba(55, 255, 59, 0.32);
}

.programmes::after {
  right: -42px;
  bottom: 80px;
  width: 180px;
  height: 180px;
  border-radius: 34px;
  background: var(--orange);
  opacity: 0.14;
  transform: rotate(-12deg);
  box-shadow: 0 0 80px rgba(255, 122, 26, 0.3);
}

.programmes .container {
  position: relative;
  z-index: 1;
}

.programmes .section-copy h2 {
  color: var(--white);
}

.programmes .section-copy p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.72);
}

.programme-grid {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.programme-card {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.045));
  overflow: hidden;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.22);
}

.programme-card__image {
  aspect-ratio: 16 / 9;
  background:
    linear-gradient(145deg, rgba(16, 17, 20, 0.62), rgba(27, 29, 34, 0.92)),
    var(--graphite-soft);
  overflow: hidden;
}

.programme-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1);
  transition: transform 700ms ease;
}

.programme-card:hover .programme-card__image img {
  transform: scale(1.03);
}

.programme-card__body {
  padding: 22px;
}

.programme-card h3 {
  margin-bottom: 12px;
  font-size: clamp(1.25rem, 5vw, 1.85rem);
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.programme-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.final-cta {
  position: relative;
  min-height: clamp(520px, 62vw, 780px);
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
  background: var(--graphite);
}

.final-cta__visual,
.final-cta__visual img,
.final-cta__overlay {
  position: absolute;
  inset: 0;
}

.final-cta__visual {
  z-index: -3;
}

.final-cta__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.final-cta__overlay {
  z-index: -2;
  background:
    radial-gradient(ellipse at 23% 70%, rgba(16, 17, 20, 0.38), rgba(16, 17, 20, 0.18) 34%, transparent 62%),
    linear-gradient(180deg, transparent 48%, rgba(16, 17, 20, 0.18) 100%);
}

.final-cta__content {
  max-width: 860px;
  padding-block: 72px;
}

.final-cta h2 {
  max-width: 840px;
  color: var(--white);
  font-size: clamp(2.45rem, 8vw, 5.9rem);
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.42), 0 1px 2px rgba(0, 0, 0, 0.46);
}

.final-cta .section-kicker {
  color: var(--graphite);
  background: var(--green);
}

.site-footer {
  padding-block: 24px;
  color: rgba(255, 255, 255, 0.72);
  background: var(--graphite);
}

.site-footer__inner {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.site-footer p {
  margin: 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
}

.site-footer a,
.site-footer button {
  color: rgba(255, 255, 255, 0.76);
  background: transparent;
  border: 0;
  padding: 0;
  font: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  cursor: pointer;
}

.site-footer a:hover,
.site-footer button:hover {
  color: var(--white);
}

.site-footer button:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 4px;
}

.legal-page {
  padding-block: 54px 86px;
}

.legal-container {
  width: min(100% - 32px, 900px);
  margin-inline: auto;
}

.legal-back {
  display: inline-flex;
  margin-bottom: 30px;
  color: var(--graphite);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.legal-back:focus-visible {
  outline: 3px solid var(--graphite);
  outline-offset: 5px;
}

.legal-header {
  padding-bottom: 36px;
}

.legal-header h1 {
  color: var(--graphite);
  font-size: clamp(2.75rem, 10vw, 5.6rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.legal-subtitle {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2.8vw, 1.35rem);
  font-weight: 850;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.legal-meta {
  margin-top: 24px;
  padding: 14px 18px;
  border-left: 6px solid var(--green);
  color: var(--graphite);
  background: rgba(255, 255, 255, 0.72);
  font-weight: 800;
  line-height: 1.5;
}

.legal-meta span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.legal-content {
  color: var(--graphite);
  font-size: clamp(1rem, 2.2vw, 1.08rem);
  line-height: 1.72;
}

.legal-content section {
  padding-block: 30px;
  border-top: 1px solid var(--line);
}

.legal-content h2 {
  margin-bottom: 18px;
  color: var(--graphite);
  font-size: clamp(1.35rem, 4.5vw, 2rem);
  line-height: 1.12;
  letter-spacing: -0.025em;
  text-transform: none;
}

.legal-content p {
  margin: 0 0 16px;
}

.legal-content ol {
  margin: 0;
  padding-left: 1.55rem;
}

.legal-content li {
  padding-left: 0.25rem;
}

.legal-content li + li {
  margin-top: 10px;
}

.legal-content ol ol {
  margin-top: 10px;
}

.legal-sublist > li::marker {
  content: counter(list-item) ") ";
}

.legal-content a {
  color: var(--graphite);
  font-weight: 750;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.legal-content a:focus-visible {
  outline: 3px solid var(--graphite);
  outline-offset: 4px;
}

.contact-panel {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 46px rgba(16, 17, 20, 0.08);
}

.contact-panel + .contact-panel {
  margin-top: 24px;
}

.contact-details {
  margin: 22px 0 0;
  font-style: normal;
}

.contact-details p {
  margin-bottom: 10px;
}

.contact-label {
  margin-top: 20px;
  color: var(--graphite);
  font-weight: 900;
}

.animate-on-scroll {
  opacity: 1;
  transform: none;
  transition: opacity 620ms ease, transform 620ms ease;
}

.js-scroll-animations .animate-on-scroll {
  opacity: 0;
  transform: translateY(28px);
}

.js-scroll-animations .animate-on-scroll.is-in-view {
  opacity: 1;
  transform: translateY(0);
}

.js-scroll-animations .operator-card.animate-on-scroll {
  transform: translateY(24px) scale(0.98);
}

.js-scroll-animations .operator-card.animate-on-scroll.is-in-view {
  transform: translateY(0) scale(1);
}

.js-scroll-animations .operator-card.animate-on-scroll.is-in-view strong {
  animation: epg-pop 520ms ease both;
}

@keyframes epg-pop {
  0% {
    transform: scale(0.88);
  }
  65% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

@media (max-width: 520px) {
  .section-copy h2 .no-break {
    white-space: normal;
  }

  .final-cta {
    min-height: 640px;
  }

  .final-cta__visual img {
    object-position: center top;
  }
}

@media (max-width: 639px) {
  .final-cta {
    display: grid;
    grid-template-rows: minmax(540px, calc(100svh - var(--header-height) - 210px)) auto;
    align-items: stretch;
    min-height: calc(100svh - var(--header-height));
    color: var(--graphite);
    background: var(--green);
    overflow: hidden;
  }

  .final-cta__visual,
  .final-cta__visual img {
    position: relative;
    inset: auto;
    grid-column: 1;
    grid-row: 1;
  }

  .final-cta__visual {
    z-index: 0;
    min-height: 540px;
    overflow: hidden;
  }

  .final-cta__visual::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
      linear-gradient(180deg, rgba(16, 17, 20, 0.04) 0%, transparent 34%),
      linear-gradient(180deg, transparent 56%, rgba(16, 17, 20, 0.28) 100%);
    pointer-events: none;
  }

  .final-cta__visual img {
    position: absolute;
    inset: 0;
    object-fit: cover;
    object-position: center top;
  }

  .final-cta__overlay {
    display: none;
  }

  .final-cta__content {
    display: contents;
    width: auto;
    max-width: none;
    padding: 0;
  }

  .final-cta .section-kicker {
    display: none;
  }

  .final-cta h2 {
    z-index: 2;
    grid-column: 1;
    grid-row: 2;
    max-width: none;
    margin: 0;
    padding: 22px 22px 24px;
    color: var(--graphite);
    background: var(--green);
    font-size: clamp(2.15rem, 10.8vw, 3.15rem);
    line-height: 1.12;
    text-shadow: none;
  }

  .final-cta .button {
    z-index: 3;
    grid-column: 1;
    grid-row: 1;
    align-self: end;
    justify-self: start;
    margin: 0 0 clamp(14px, 3svh, 28px) 22px;
  }
}

@media (min-width: 640px) {
  .container {
    width: min(100% - 48px, var(--container));
  }

  .header-cta {
    display: inline-flex;
  }

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

  .site-footer__inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .site-footer nav {
    justify-content: flex-end;
  }
}

@media (min-width: 860px) {
  .site-header {
    padding-inline: 28px;
  }

  .hero {
    min-height: calc(100svh - var(--header-height));
  }

  .hero__content {
    padding-bottom: 84px;
  }

  .hero__title {
    font-size: clamp(4.35rem, 6.9vw, 6.25rem);
    line-height: 1.12;
    letter-spacing: -0.032em;
  }

  .hero__text {
    font-size: 1.18rem;
  }

  .intro__grid {
    grid-template-columns: 0.92fr 1fr;
    align-items: end;
  }

  .operators .section-copy {
    max-width: 1060px;
  }

  .operators .section-copy h2 {
    font-size: clamp(3.6rem, 6.3vw, 5.4rem);
    letter-spacing: -0.032em;
  }

  .operator-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 34px;
  }

  .operator-card {
    grid-template-columns: 1fr;
    align-items: stretch;
    min-height: 190px;
    padding: 22px;
  }

  .operator-card img {
    width: 172px;
    max-height: 70px;
  }

  .operator-card__meta {
    align-self: end;
    grid-template-columns: 1fr auto;
    align-items: end;
    justify-items: start;
    text-align: left;
  }

  .operator-card__meta strong {
    justify-self: end;
  }

  .programmes .section-copy {
    max-width: 760px;
  }

  .programmes .section-copy h2 {
    font-size: clamp(4rem, 7.2vw, 6rem);
  }

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

  .programme-card h3 {
    font-size: clamp(1.3rem, 1.72vw, 1.62rem);
  }

  .final-cta__content {
    padding-block: 86px;
  }

}

@media (min-width: 1120px) {
  .section {
    padding-block: 96px;
  }

  .hero__content {
    width: min(100% - 56px, 1080px);
    margin-left: 28px;
    margin-right: auto;
  }

  .final-cta__content {
    width: min(100% - 56px, 1080px);
    max-width: 1080px;
    margin-left: 28px;
    margin-right: auto;
  }

  .final-cta h2 {
    max-width: 1080px;
    font-size: clamp(3.75rem, 5.55vw, 4.35rem);
    line-height: 1.12;
  }

  .operator-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

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

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

  .animate-on-scroll,
  .operator-card.animate-on-scroll,
  .js-scroll-animations .animate-on-scroll,
  .js-scroll-animations .operator-card.animate-on-scroll {
    opacity: 1;
    transform: none;
  }

  .hero__visual img,
  .programme-card__image img,
  .programme-card:hover .programme-card__image img,
  .final-cta__visual img {
    transform: none;
  }
}
