:root {
  --font-title: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
  --font-body: "Urbanist", Arial, sans-serif;
  --ink: #0b0d0f;
  --coal: #111315;
  --paper: #f7f7f4;
  --white: #ffffff;
  --muted: #6b706f;
  --line: rgba(11, 13, 15, 0.16);
  --line-strong: rgba(11, 13, 15, 0.28);
  --red: #b83f29;
  --gold: #d8b15c;
  --green: #476a5a;
  --blue: #315b7d;
  --nav-height: 156px;
  --page-gutter: clamp(24px, 4vw, 120px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0;
  text-rendering: geometricPrecision;
  overflow-x: hidden;
}

body.is-locked {
  overflow: hidden;
}

img,
video {
  max-width: 100%;
}

a {
  color: inherit;
}

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

.splash-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--paper);
  opacity: 1;
  visibility: visible;
  transition: opacity 420ms ease, visibility 420ms ease;
}

.splash-screen.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.splash-screen__brand {
  --splash-brand-gap: clamp(16px, 1.4vw, 20px);
  --splash-lockup-width: clamp(235px, 25vw, 330px);
  --splash-mark-offset: clamp(124px, 13vw, 175px);
  position: relative;
  width: min(92vw, 500px);
  height: clamp(86px, 7.1vw, 121px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: var(--splash-brand-gap);
  transform: translateX(0);
  transition: transform 780ms cubic-bezier(0.2, 0.9, 0.2, 1);
}

.splash-screen.is-lockup .splash-screen__brand {
  transform: translateX(40px);
}

.splash-screen__mark {
  position: relative;
  flex: 0 0 auto;
  width: clamp(82px, 6.8vw, 116px);
  aspect-ratio: 329 / 342;
  background-image: linear-gradient(135deg, #d84a1f 0%, #b83f29 52%, #f08b32 100%);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-mask-image: url("../images/logo%20splash.webp");
  mask-image: url("../images/logo%20splash.webp");
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  filter: saturate(1.08) contrast(1.1);
  transform-origin: center bottom;
  transform: translateX(var(--splash-mark-offset)) scale(0.96);
  transition: transform 780ms cubic-bezier(0.2, 0.9, 0.2, 1), filter 500ms ease;
}

.splash-screen.is-shuffling .splash-screen__mark {
  transform: translateX(var(--splash-mark-offset)) scale(1.08);
}

.splash-screen.is-lockup .splash-screen__mark {
  transform: translateX(0) scale(1.08);
}

.splash-screen__lockup {
  position: relative;
  flex: 0 1 var(--splash-lockup-width);
  width: var(--splash-lockup-width);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transform: translateX(18px);
  transition: opacity 420ms ease 120ms, transform 640ms cubic-bezier(0.2, 0.9, 0.2, 1) 80ms;
}

.splash-screen.is-lockup .splash-screen__lockup {
  opacity: 1;
  transform: translateX(0);
}

.splash-screen__title {
  display: grid;
  grid-column: 1;
  gap: 0;
  margin: 0;
  min-width: 0;
}

.splash-screen__kicker,
.splash-screen__wordmark {
  display: block;
  white-space: nowrap;
}

.splash-screen__kicker {
  color: var(--red);
  font-family: var(--font-title);
  font-size: clamp(1.45rem, 1.75vw, 1.9rem);
  font-weight: 400;
  line-height: 0.9;
  text-transform: uppercase;
}

.splash-screen__wordmark {
  color: var(--ink);
  font-family: var(--font-title);
  font-size: clamp(1.45rem, 1.75vw, 1.9rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.9;
  text-transform: uppercase;
  transform: scaleX(1.025);
  transform-origin: left center;
}

.splash-screen__edition-row {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 0.1rem;
}

.splash-screen__edition-row::after {
  content: "";
  flex: 0 0 clamp(64px, 5.5vw, 82px);
  height: 22px;
  background-image: url("../images/pattern.webp");
  background-position: left center;
  background-repeat: repeat-x;
  background-size: auto 100%;
}

.splash-screen__edition {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 3px 8px;
  border: 1px solid var(--red);
  background: var(--red);
  color: var(--white);
  font-family: var(--font-body);
  font-size: clamp(0.72rem, 0.7vw, 0.86rem);
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.splash-screen__copy {
  position: absolute;
  left: 50%;
  bottom: clamp(18px, 3.2vh, 34px);
  width: min(84vw, 520px);
  transform: translateX(-50%);
  color: rgba(11, 13, 15, 0.58);
  font-family: var(--font-title);
  font-size: clamp(0.86rem, 1.1vw, 1.08rem);
  font-weight: 300;
  line-height: 1.28;
  letter-spacing: 0;
  text-align: center;
}

.splash-screen__copy p {
  margin: 0;
}

@media (max-width: 640px) {
  .splash-screen__brand {
    --splash-brand-gap: 12px;
    --splash-lockup-width: 235px;
    --splash-mark-offset: 124px;
    width: calc(100vw - 36px);
    height: 86px;
  }

  .splash-screen__kicker,
  .splash-screen__wordmark {
    font-size: 1.18rem;
  }

  .splash-screen__edition {
    min-height: 20px;
    padding: 3px 6px;
    font-size: 0.68rem;
  }

  .splash-screen__edition-row::after {
    flex-basis: 56px;
    height: 20px;
  }
}

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: transparent;
}

.site-nav__top {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(340px, 1.4fr) minmax(260px, 0.9fr) auto;
  align-items: center;
  min-height: 108px;
  max-height: 108px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(11, 13, 15, 0.12);
  box-shadow: 0 18px 42px rgba(3, 5, 8, 0.12);
  backdrop-filter: blur(18px);
  transition:
    min-height 560ms cubic-bezier(0.22, 1, 0.36, 1),
    max-height 560ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: min-height, max-height;
}

.site-nav__brand {
  min-height: 108px;
  display: flex;
  align-items: center;
  padding: 18px 34px;
  border-right: 1px solid var(--line);
  text-decoration: none;
}

.site-nav__brand-lockup {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  min-width: 0;
}

.site-nav__brand-mark {
  flex: 0 0 auto;
  width: 72px;
  aspect-ratio: 329 / 342;
  background: linear-gradient(135deg, #d84a1f 0%, #b83f29 52%, #f08b32 100%);
  -webkit-mask-image: url("../images/logo%20splash.webp");
  mask-image: url("../images/logo%20splash.webp");
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.site-nav__brand-copy {
  min-width: 0;
  display: grid;
  gap: 0;
}

.site-nav__brand-kicker,
.site-nav__brand-wordmark {
  display: block;
  font-family: var(--font-title);
  text-transform: uppercase;
  white-space: nowrap;
}

.site-nav__brand-kicker {
  color: var(--red);
  font-size: 1.18rem;
  font-weight: 400;
  line-height: 0.9;
}

.site-nav__brand-wordmark {
  color: var(--ink);
  font-size: 1.18rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.9;
  transform: scaleX(1.025);
  transform-origin: left center;
}

.site-nav__brand-edition-row {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 2px;
}

.site-nav__brand-edition-row::after {
  content: "";
  flex: 0 0 68px;
  height: 17px;
  background-image: url("../images/pattern.webp");
  background-position: left center;
  background-repeat: repeat-x;
  background-size: auto 100%;
}

.site-nav__brand-edition {
  display: inline-flex;
  align-items: center;
  min-height: 17px;
  padding: 2px 5px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-nav__event {
  min-height: 108px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 18px 34px;
  border-right: 1px solid var(--line);
}

.site-nav__event-date,
.site-nav__event-name {
  margin: 0;
}

.site-nav__event-date {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.1;
  text-transform: uppercase;
}

.site-nav__event-name {
  max-width: 54ch;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 500;
  line-height: 1.35;
}

.site-nav__actions {
  min-height: 108px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  padding: 18px 34px;
}

.site-nav__bar {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 12, 14, 0.94);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition:
    top 560ms cubic-bezier(0.22, 1, 0.36, 1),
    min-height 420ms cubic-bezier(0.22, 1, 0.36, 1),
    padding 420ms cubic-bezier(0.22, 1, 0.36, 1),
    background 320ms ease;
}

.site-nav__bar::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 14px;
  background-image: url("../images/pattern.webp");
  background-position: left center;
  background-repeat: no-repeat;
  background-size: auto 100%;
  opacity: 0;
  transform: scaleX(0.35);
  transform-origin: left center;
  transition: opacity 240ms ease, transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.site-nav__menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.site-nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav__link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transform: translateX(-50%);
  transition: width 180ms ease;
}

.site-nav__link:hover,
.site-nav__link:focus-visible {
  color: var(--white);
}

.site-nav__link:hover::after,
.site-nav__link:focus-visible::after {
  width: 100%;
}

.site-nav__bar-actions {
  display: none;
  align-items: center;
  gap: 10px;
}

.site-nav__toggle {
  display: none;
  width: 44px;
  height: 40px;
  margin: 0 20px 0 0;
  padding: 9px;
  border: 1px solid rgba(11, 13, 15, 0.22);
  border-radius: 0;
  background: transparent;
  cursor: pointer;
}

.site-nav__toggle-line {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-nav__toggle-line + .site-nav__toggle-line {
  margin-top: 7px;
}

.site-nav.is-compact .site-nav__top {
  min-height: 0;
  max-height: 0;
  overflow: hidden;
  pointer-events: none;
}

.site-nav.is-compact .site-nav__bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  min-height: 64px;
  justify-content: space-between;
  padding: 0 32px;
  background: rgba(5, 6, 7, 0.96);
  backdrop-filter: blur(18px);
}

.site-nav.is-compact .site-nav__bar::before {
  opacity: 1;
  transform: scaleX(1);
}

.site-nav.is-compact .site-nav__menu {
  gap: 24px;
}

.site-nav.is-compact .site-nav__bar-actions {
  display: flex;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  flex: 0 0 auto;
  min-height: 42px;
  padding: 11px 16px;
  border: 1px solid transparent;
  border-radius: 0;
  font-family: var(--font-title);
  font-size: 0.98rem;
  font-weight: 300;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button span {
  white-space: nowrap;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button svg {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  stroke-width: 1.6;
}

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

.button--dark:hover,
.button--dark:focus-visible {
  background: var(--ink);
}

.button--gold {
  background: var(--gold);
  color: var(--ink);
}

.button--gold:hover,
.button--gold:focus-visible {
  background: #c49d4e;
}

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

.button--outline-light {
  border-color: rgba(255, 255, 255, 0.64);
  color: var(--white);
}

.button--outline-light:hover,
.button--outline-light:focus-visible {
  background: var(--white);
  color: var(--ink);
}

.button--line {
  border-color: rgba(11, 13, 15, 0.26);
  color: var(--ink);
}

.button--line:hover,
.button--line:focus-visible {
  border-color: var(--ink);
}

.button--compact {
  min-height: 36px;
  padding: 9px 12px;
  font-size: 0.9rem;
}

.hero {
  position: relative;
  min-height: 100vh;
  height: 100vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  padding: 210px var(--page-gutter) 72px;
}

.hero__video,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__video {
  width: 100%;
  height: calc(100% + 56px);
  object-fit: cover;
  filter: saturate(0.98) grayscale(0.04);
  transform: translateY(56px);
}

.hero__shade {
  background: linear-gradient(
    90deg,
    rgba(2, 4, 7, 0.68) 0%,
    rgba(2, 4, 7, 0.48) 34%,
    rgba(2, 4, 7, 0.18) 66%,
    rgba(2, 4, 7, 0.06) 100%
  );
}

.hero__countdown {
  position: absolute;
  top: 196px;
  right: var(--page-gutter);
  z-index: 2;
  width: 210px;
  display: grid;
  gap: 14px;
  padding: 17px 20px;
  overflow: hidden;
  background: rgba(247, 247, 244, 0.94);
  color: var(--ink);
  border-top: 3px solid var(--red);
  box-shadow: 0 18px 42px rgba(3, 5, 8, 0.16);
  backdrop-filter: blur(14px);
}

.hero__countdown::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/countcard.webp");
  background-position: 72% 62%;
  background-repeat: no-repeat;
  background-size: 135% auto;
  filter: saturate(0.72) contrast(1.04);
  mix-blend-mode: multiply;
  opacity: 0.14;
  -webkit-mask-image: radial-gradient(
    ellipse 82% 86% at 70% 62%,
    #000 0%,
    #000 38%,
    rgba(0, 0, 0, 0.74) 58%,
    rgba(0, 0, 0, 0.2) 82%,
    transparent 100%
  );
  mask-image: radial-gradient(
    ellipse 82% 86% at 70% 62%,
    #000 0%,
    #000 38%,
    rgba(0, 0, 0, 0.74) 58%,
    rgba(0, 0, 0, 0.2) 82%,
    transparent 100%
  );
  pointer-events: none;
}

.hero__countdown > * {
  position: relative;
  z-index: 1;
}

.hero__countdown-toggle {
  display: none;
}

.hero__countdown-panel {
  display: grid;
  gap: 14px;
}

@keyframes countdown-icon-prompt {
  0%,
  68%,
  100% {
    transform: translateY(0) rotate(0);
  }

  74% {
    transform: translateY(-2px) rotate(-8deg);
  }

  80% {
    transform: translateY(0) rotate(7deg);
  }

  86% {
    transform: translateY(-1px) rotate(-4deg);
  }

  92% {
    transform: translateY(0) rotate(0);
  }
}

@keyframes floating-control-prompt {
  0%,
  68%,
  100% {
    scale: 1;
  }

  76% {
    scale: 1.07;
  }

  92% {
    scale: 1;
  }
}

.hero__countdown-main {
  display: flex;
  align-items: flex-end;
  gap: 13px;
}

.hero__countdown-value {
  font-family: var(--font-title);
  font-size: 3.7rem;
  font-weight: 300;
  line-height: 0.78;
}

.hero__countdown-label {
  color: var(--red);
  font-family: var(--font-title);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 0.88;
  text-transform: uppercase;
}

.hero__calendar-link {
  display: flex;
  align-items: center;
  gap: 7px;
  padding-top: 10px;
  color: var(--ink);
  border-top: 1px solid rgba(11, 13, 15, 0.18);
  font-family: var(--font-title);
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 180ms ease, border-color 180ms ease;
}

.hero__calendar-link:hover,
.hero__calendar-link:focus-visible {
  color: var(--red);
  border-color: var(--red);
}

.hero__calendar-link svg {
  flex: 0 0 auto;
  width: 15px;
  height: 15px;
  stroke-width: 1.7;
}

.hero__insight {
  position: absolute;
  top: 196px;
  right: var(--page-gutter);
  z-index: 3;
}

.hero__insight-trigger {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  background: rgba(11, 13, 15, 0.88);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-family: var(--font-title);
  font-size: 0.86rem;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  backdrop-filter: blur(12px);
}

.hero__insight-trigger svg {
  flex: 0 0 auto;
  width: 15px;
  height: 15px;
  stroke-width: 1.7;
}

.hero__insight-chevron {
  margin-left: 3px;
  transition: transform 180ms ease;
}

.hero__insight-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: min(420px, calc(100vw - (var(--page-gutter) * 2)));
  padding: 24px;
  background: rgba(247, 247, 244, 0.97);
  color: var(--ink);
  border-top: 3px solid var(--red);
  box-shadow: 0 24px 56px rgba(3, 5, 8, 0.24);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  backdrop-filter: blur(16px);
}

.hero__insight:hover .hero__insight-panel,
.hero__insight:focus-within .hero__insight-panel,
.hero__insight.is-open .hero__insight-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.hero__insight:hover .hero__insight-chevron,
.hero__insight:focus-within .hero__insight-chevron,
.hero__insight.is-open .hero__insight-chevron {
  transform: rotate(180deg);
}

.hero__insight-kicker {
  margin: 0 0 8px;
  color: var(--red);
  font-family: var(--font-title);
  font-size: 0.86rem;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.hero__insight-panel h2 {
  margin: 0;
  font-family: var(--font-title);
  font-size: 2rem;
  font-weight: 300;
  line-height: 1;
}

.hero__insight-panel p:not(.hero__insight-kicker) {
  margin: 15px 0 0;
  color: #474b4a;
  font-size: 0.92rem;
  line-height: 1.5;
}

.hero__insight-link {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 10px 13px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-title);
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 180ms ease, transform 180ms ease;
}

.hero__insight-link:hover,
.hero__insight-link:focus-visible {
  background: var(--ink);
  transform: translateY(-1px);
}

.hero__insight-link svg {
  width: 15px;
  height: 15px;
  stroke-width: 1.7;
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  min-width: 0;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-family: var(--font-title);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1;
  text-transform: uppercase;
}

.hero__title {
  margin: 0;
  max-width: none;
  font-family: var(--font-title);
  font-size: 4.8rem;
  font-weight: 300;
  line-height: 0.9;
  text-transform: uppercase;
  word-break: normal;
  overflow-wrap: normal;
}

.hero__line {
  margin: 26px 0 0;
  max-width: 780px;
  font-family: var(--font-title);
  font-size: 2.3rem;
  font-weight: 300;
  line-height: 1.04;
  overflow-wrap: break-word;
}

.hero__copy {
  max-width: 640px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.09rem;
  line-height: 1.5;
  overflow-wrap: break-word;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.26);
  border-bottom: 1px solid rgba(255, 255, 255, 0.26);
}

.hero__meta span {
  padding: 13px 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.24);
  font-family: var(--font-title);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1;
  text-transform: uppercase;
}

.hero__title span {
  display: block;
  white-space: nowrap;
}

.hero__meta span:first-child {
  padding-left: 0;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero__scroll {
  position: absolute;
  right: 36px;
  bottom: 26px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.88rem;
  text-decoration: none;
  text-transform: uppercase;
}

.hero__scroll svg {
  width: 18px;
  height: 18px;
}

.partners-section {
  padding: 104px var(--page-gutter) 0;
  background: var(--paper);
  scroll-margin-top: 88px;
}

.partners-section + .section--series-sponsors {
  padding-top: var(--series-sponsors-edge-gap);
}

.partners-section__inner {
  width: 100%;
  margin: 0;
}

.partners-section__head {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(320px, 0.5fr);
  gap: 52px;
  align-items: start;
  padding-bottom: 38px;
}

.partners-section__head .section__label {
  margin-bottom: 24px;
}

.partners-section__head h2 {
  margin: 0;
  font-family: var(--font-title);
  font-size: 4rem;
  font-weight: 300;
  line-height: 0.96;
}

.partners-section__head p {
  margin: 38px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid rgba(11, 13, 15, 0.12);
  border-left: 1px solid rgba(11, 13, 15, 0.12);
}

.partner-logo {
  min-height: 150px;
  margin: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  background: #f4f4f0;
  border-right: 1px solid rgba(11, 13, 15, 0.12);
  border-bottom: 1px solid rgba(11, 13, 15, 0.12);
}

.partner-logo img {
  display: block;
  width: min(100%, 320px);
  height: 100px;
  object-fit: contain;
  filter: saturate(0.9) grayscale(0.06);
  opacity: 0.96;
}

.section {
  padding: 116px var(--page-gutter);
  scroll-margin-top: 88px;
}

.section--intro {
  padding-top: 0;
}

.section__grid {
  display: grid;
  grid-template-columns: minmax(180px, 0.34fr) minmax(0, 1fr);
  gap: 52px;
  width: 100%;
  margin: 0;
}

.section__label {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: var(--muted);
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.1;
  text-transform: uppercase;
}

.section__label span:first-child {
  color: var(--red);
}

.section__main {
  min-width: 0;
}

.lead {
  margin: 0;
  max-width: 980px;
  font-family: var(--font-title);
  font-size: 3rem;
  font-weight: 300;
  line-height: 1.06;
}

.copy-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
  max-width: 920px;
  margin-top: 34px;
  color: var(--muted);
}

.copy-columns p {
  margin: 0;
}

@media (min-width: 1500px) {
  .section__grid {
    grid-template-columns: minmax(220px, 0.25fr) minmax(0, 1fr);
  }

  .lead {
    max-width: 1180px;
  }

  .copy-columns {
    max-width: 1120px;
  }
}

.section--proof {
  padding-top: 0;
}

.metric-strip {
  width: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.metric-strip article {
  min-height: 160px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 26px;
  border-right: 1px solid var(--line);
}

.metric-strip article:last-child {
  border-right: 0;
}

.metric-strip__number {
  font-family: var(--font-title);
  font-size: 4rem;
  font-weight: 300;
  line-height: 0.9;
}

.metric-strip__label {
  color: var(--muted);
  font-size: 0.96rem;
}

.image-statement-section {
  padding: 0 var(--page-gutter) 104px;
  background: var(--paper);
}

.image-statement {
  --strip-inset: clamp(16px, 1.8vw, 32px);
  --strip-gap: clamp(6px, 0.55vw, 10px);
  position: relative;
  height: clamp(270px, 22vw, 350px);
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(330px, 0.84fr) minmax(260px, 0.58fr);
  grid-template-rows: minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  overflow: visible;
  background: var(--paper);
  border: 0;
}

.image-statement::before {
  content: "";
  grid-column: 2 / -1;
  grid-row: 1 / 2;
  background: var(--red);
  z-index: 0;
}

.image-statement__primary,
.image-statement__secondary {
  background-size: cover;
  background-position: center;
}

.image-statement__primary {
  position: relative;
  z-index: 1;
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  background-image:
    radial-gradient(
      circle at 88% 76%,
      rgba(0, 0, 0, 0.32) 0%,
      rgba(0, 0, 0, 0.22) 28%,
      rgba(0, 0, 0, 0.08) 54%,
      rgba(0, 0, 0, 0) 78%
    ),
    linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.14) 100%),
    url("../images/offshore4.webp");
  background-position: 34% center;
  margin-right: var(--strip-gap);
  filter: saturate(0.82) grayscale(0.08);
}

.image-statement__rig {
  position: absolute;
  left: 29%;
  bottom: 0;
  z-index: 5;
  width: auto;
  height: clamp(390px, 35vw, 590px);
  max-width: none;
  pointer-events: none;
  transform: translateX(-50%);
  filter: drop-shadow(0 18px 28px rgba(11, 13, 15, 0.32));
}

.image-statement__metric {
  position: relative;
  z-index: 2;
  grid-column: 2 / 3;
  grid-row: 1 / 2;
  display: grid;
  align-content: center;
  height: 100%;
  min-width: 0;
  padding: clamp(1.25rem, 2vw, 1.9rem) clamp(1.4rem, 2.4vw, 2.3rem)
    clamp(1.25rem, 2vw, 1.9rem);
  color: var(--white);
}

.image-statement__stats {
  position: relative;
  z-index: 3;
  display: grid;
  justify-items: end;
  gap: clamp(1rem, 1.55vw, 1.55rem);
}

.image-statement__stat {
  max-width: 17.8rem;
  text-align: right;
}

.image-statement__stat span {
  display: block;
  font-family: var(--font-title);
  font-size: clamp(3.15rem, 4.6vw, 5.55rem);
  font-weight: 300;
  line-height: 0.82;
}

.image-statement__stat p {
  margin: 0.42rem 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(0.82rem, 0.4vw + 0.72rem, 0.98rem);
  font-weight: 500;
  line-height: 1.25;
}

.image-statement__secondary {
  position: relative;
  z-index: 1;
  grid-column: 3 / 4;
  grid-row: 1 / 2;
  align-self: stretch;
  justify-self: stretch;
  margin: var(--strip-inset) var(--strip-inset) var(--strip-inset) 0;
  height: auto;
  min-height: 0;
  width: auto;
  aspect-ratio: auto;
  background-image: url("../images/conference1.webp");
  background-position: center;
  box-shadow: 0 18px 42px rgba(11, 13, 15, 0.2);
}

.section__title {
  margin: 0;
  max-width: 880px;
  font-family: var(--font-title);
  font-size: 4rem;
  font-weight: 300;
  line-height: 0.98;
}

.section--themes {
  padding-top: 0;
  padding-bottom: 0;
}

.theme-grid {
  --theme-card-height: clamp(300px, 15.5vw, 340px);
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: var(--theme-card-height);
  margin-top: 46px;
  border-top: 1px solid var(--line-strong);
  border-left: 1px solid var(--line);
}

.theme-grid::before {
  content: "";
  position: absolute;
  top: calc(var(--theme-card-height) + (var(--theme-card-height) * 0.24));
  right: 100%;
  width: 100vw;
  height: calc(var(--theme-card-height) * 0.76);
  background: var(--coal);
  pointer-events: none;
}

.theme-grid::after {
  content: "";
  position: absolute;
  top: calc(var(--theme-card-height) + (var(--theme-card-height) * 0.68));
  left: 100%;
  width: 100vw;
  height: calc(var(--theme-card-height) * 0.32);
  background: var(--coal);
  pointer-events: none;
}

.theme-card {
  min-height: 0;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.48);
}

.theme-card span {
  display: inline-block;
  color: var(--red);
  font-family: var(--font-title);
  font-size: 0.96rem;
  font-weight: 300;
  line-height: 1;
  text-transform: uppercase;
}

.theme-card h3 {
  margin: 48px 0 16px;
  font-family: var(--font-title);
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.02;
}

.theme-card p {
  margin: 0;
  color: var(--muted);
}

.audience-list {
  counter-reset: audience;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: clamp(46px, 5vw, 72px);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.section--attend {
  background-color: var(--coal);
  background-image:
    linear-gradient(180deg, rgba(17, 19, 21, 0) 0%, rgba(17, 19, 21, 0.36) 54%, rgba(17, 19, 21, 0.92) 100%),
    linear-gradient(90deg, rgba(17, 19, 21, 0.74) 0%, rgba(17, 19, 21, 0.88) 46%, rgba(17, 19, 21, 0.78) 100%),
    url("../images/offshore1.webp");
  background-repeat: no-repeat;
  background-position: center, center, center bottom;
  background-size: 100% 100%, 100% 100%, auto 96%;
  color: var(--white);
}

.section--attend .section__label {
  color: rgba(255, 255, 255, 0.56);
}

.section--attend .section__title {
  color: var(--white);
}

.audience-list span {
  counter-increment: audience;
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  min-height: 86px;
  align-items: center;
  padding: 20px 22px 20px 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: transparent;
  color: rgba(255, 255, 255, 0.84);
  font-family: var(--font-title);
  font-size: clamp(1.18rem, 0.68vw + 0.82rem, 1.55rem);
  font-weight: 300;
  line-height: 1.05;
}

.audience-list span::before {
  content: counter(audience, decimal-leading-zero);
  color: var(--red);
  font-family: var(--font-title);
  font-size: 0.84rem;
  font-weight: 300;
  line-height: 1;
}

.section--attend .audience-list span:nth-child(4n) {
  padding-right: 0;
}

.section--event-speakers {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
}

.section--event-speakers::before {
  display: none;
}

.event-speakers__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 1440px);
  margin-inline: auto;
}

.event-speakers__group {
  min-width: 0;
}

.event-speakers__group + .event-speakers__group {
  margin-top: 0;
  padding-top: clamp(40px, 4vw, 60px);
  border-top: 1px solid var(--line);
}

.event-speakers__head {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(320px, 0.48fr);
  gap: 52px;
  align-items: start;
}

.event-speakers__head .section__label {
  margin-bottom: 24px;
  color: var(--muted);
}

.event-speakers__head .section__label span:first-child {
  color: var(--gold);
}

.event-speakers__head .section__title {
  max-width: 820px;
  color: var(--ink);
}

.event-speakers__head > p {
  max-width: 520px;
  margin: 38px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}

.event-speakers__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 304px));
  justify-content: space-between;
  gap: clamp(20px, 2vw, 34px);
  margin-top: 54px;
}

.event-speakers__loading {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 300;
  text-transform: uppercase;
}

/* Technical committee and event speaker profile cards */
.event-speaker-card {
  --speaker-card-red: #c5160e;
  --speaker-card-red-deep: #611109;
  --speaker-card-gold: #e7b24b;
  --speaker-card-surface: #fff;
  --speaker-card-ink: #170d0a;
  --speaker-card-ease: cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-rows: auto auto;
  min-width: 0;
  width: 100%;
  max-width: 304px;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: var(--speaker-card-surface);
  transform: translateY(0);
  transition:
    border-color 400ms var(--speaker-card-ease),
    transform 400ms var(--speaker-card-ease);
}

.event-speaker-card::after {
  content: "";
  position: absolute;
  z-index: 1;
  pointer-events: none;
  right: 22px;
  bottom: 18px;
  left: 22px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(231, 178, 75, 0.7), rgba(197, 22, 14, 0.78), transparent);
}

.event-speaker-card:hover,
.event-speaker-card:focus-within {
  transform: translateY(-5px);
}

.event-speaker-card__visual {
  position: relative;
  isolation: isolate;
  width: 100%;
  aspect-ratio: 1 / 0.9;
  overflow: hidden;
  background-color: #4b0a06;
  background-image:
    radial-gradient(circle at 36% 72%, rgba(210, 79, 20, 0.48), transparent 30%),
    linear-gradient(180deg, #6b120b 0%, #390705 100%);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.event-speaker-card__image {
  position: absolute;
  top: auto;
  bottom: 0;
  left: 50%;
  z-index: 4;
  display: block;
  width: 116%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  object-position: center bottom;
  filter: contrast(1.04) saturate(0.96);
  transform: translateX(-50%) scale(1);
  transition:
    filter 400ms var(--speaker-card-ease),
    transform 400ms var(--speaker-card-ease);
}

.event-speaker-card.needs-image-blend .event-speaker-card__image {
  mix-blend-mode: normal;
  filter: contrast(1.04) saturate(0.96);
}

.event-speaker-card__content {
  position: relative;
  z-index: 2;
  box-sizing: border-box;
  display: grid;
  grid-template-rows: minmax(68px, auto) minmax(136px, auto);
  justify-items: center;
  width: 100%;
  min-height: 210px;
  padding: 0;
  background: var(--speaker-card-surface);
  box-shadow: none;
  color: var(--speaker-card-ink);
  text-align: center;
}

.event-speaker-card__name,
.event-speaker-card__details,
.event-speaker-card__designation,
.event-speaker-card__company {
  margin: 0;
}

.event-speaker-card__name {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  min-height: 68px;
  padding: 13px 18px 12px;
  color: var(--white);
  background: #000;
  font-family: var(--font-title);
  font-size: clamp(1.05rem, 0.24vw + 0.98rem, 1.24rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.06;
  text-transform: uppercase;
  text-wrap: balance;
  overflow-wrap: break-word;
}

.event-speaker-card__details {
  display: grid;
  grid-template-rows: minmax(42px, max-content) minmax(18px, max-content) 56px;
  justify-items: center;
  align-items: center;
  row-gap: 7px;
  width: 100%;
  padding: 13px 9% 18px;
}

.event-speaker-card__designation {
  max-width: 100%;
  margin-top: 0;
  color: var(--speaker-card-red);
  font-family: var(--font-title);
  font-size: clamp(0.82rem, 0.12vw + 0.78rem, 0.95rem);
  font-weight: 700;
  line-height: 1.12;
  min-height: 42px;
  text-transform: uppercase;
  text-wrap: balance;
  overflow-wrap: break-word;
}

.event-speaker-card__company {
  max-width: 100%;
  margin-top: 0;
  color: rgba(23, 13, 10, 0.82);
  font-size: clamp(0.78rem, 0.1vw + 0.73rem, 0.88rem);
  font-weight: 700;
  line-height: 1.1;
  min-height: 18px;
  text-wrap: balance;
  overflow-wrap: break-word;
}

.event-speaker-card__logo {
  display: block;
  width: 150px;
  height: 56px;
  margin-top: 0;
  object-fit: contain;
  object-position: center;
}

@media (max-width: 1180px) {
  .event-speakers__head {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .event-speakers__head > p {
    max-width: 620px;
    margin-top: 0;
  }

  .event-speakers__grid {
    grid-template-columns: repeat(2, minmax(240px, 304px));
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .event-speakers__group + .event-speakers__group {
    margin-top: 0;
    padding-top: 36px;
  }

  .event-speakers__grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 36px;
  }

  .event-speaker-card {
    width: min(100%, 304px);
    justify-self: center;
  }

}

.section--speakers {
  overflow: hidden;
  padding-bottom: 0;
  background: var(--paper);
}

.section--event-speakers + .section--speakers {
  padding-top: 0;
}

.speakers-head {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(320px, 0.5fr);
  gap: 52px;
  align-items: start;
  padding-bottom: 38px;
}

.speakers-head .section__label {
  margin-bottom: 24px;
}

.speakers-head .section__title {
  max-width: 780px;
}

.speakers-head p {
  max-width: 520px;
  margin: 38px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}

.speaker-marquee {
  --speaker-gap: clamp(14px, 1.15vw, 22px);
  margin: 48px calc(var(--page-gutter) * -1) 0;
  padding: 0 0 2px;
  overflow: hidden;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line);
  background: #f2f2ee;
}

.speaker-marquee__track {
  display: flex;
  width: max-content;
  gap: var(--speaker-gap);
  padding: clamp(18px, 2.2vw, 34px) var(--page-gutter);
  will-change: transform;
}

.speaker-marquee.is-loaded .speaker-marquee__track {
  animation: speaker-marquee var(--speaker-marquee-duration, 88s) linear infinite;
}

.speaker-marquee:hover .speaker-marquee__track {
  animation-play-state: paused;
}

.speaker-marquee__loading {
  margin: 0;
  color: var(--muted);
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 300;
  text-transform: uppercase;
}

.speaker-card {
  flex: 0 0 clamp(224px, 15.8vw, 292px);
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: clamp(374px, 24.2vw, 462px);
  border: 1px solid rgba(11, 13, 15, 0.16);
  background: var(--paper);
}

.speaker-card__media {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 1 / 1.08;
  background: #e8e7e1;
}

.speaker-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.88) contrast(1.04);
}

.speaker-card__nameplate {
  position: absolute;
  right: 16px;
  bottom: 0;
  left: 0;
  min-height: 58px;
  display: grid;
  align-content: end;
  padding: 12px 15px 11px;
  background: rgba(184, 63, 41, 0.94);
  color: var(--white);
}

.speaker-card__name {
  margin: 0;
  font-family: var(--font-title);
  font-size: clamp(0.98rem, 0.32vw + 0.86rem, 1.22rem);
  font-weight: 300;
  line-height: 1.02;
}

.speaker-card__body {
  display: grid;
  align-content: start;
  gap: 9px;
  padding: 15px 16px 17px;
  background: var(--coal);
  color: rgba(255, 255, 255, 0.88);
}

.speaker-card__role,
.speaker-card__company {
  margin: 0;
}

.speaker-card__role {
  font-size: 0.86rem;
  font-weight: 500;
  line-height: 1.32;
}

.speaker-card__company {
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
}

@keyframes speaker-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.section--sponsor {
  background: var(--paper);
  padding-bottom: 56px;
}

.sponsor-mosaic {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 0.48fr) minmax(300px, 0.5fr);
  grid-template-rows: minmax(210px, 0.58fr) minmax(190px, 0.42fr);
  min-height: clamp(440px, 38vw, 640px);
  margin-top: 42px;
  border: 1px solid var(--line-strong);
}

@media (min-width: 1181px) {
  .sponsor-mosaic {
    height: clamp(440px, 32vw, 560px);
    min-height: 0;
    grid-template-rows: 52% 48%;
  }
}

.sponsor-mosaic__panel {
  min-width: 0;
  padding: clamp(28px, 3.2vw, 54px);
}

.sponsor-mosaic__panel--message {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  display: grid;
  align-content: space-between;
  background: var(--red);
  color: var(--white);
}

.sponsor-mosaic__panel--message h3 {
  max-width: 15ch;
  margin: 0;
  font-family: var(--font-title);
  font-size: clamp(2.9rem, 4.5vw, 5.85rem);
  font-weight: 300;
  line-height: 0.94;
}

.sponsor-mosaic__panel--message p {
  max-width: 34rem;
  margin: 32px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 0.36vw + 0.92rem, 1.18rem);
  line-height: 1.45;
}

.sponsor-mosaic__image {
  grid-column: 2 / 3;
  grid-row: 1 / 3;
  min-height: 100%;
  background-image: url("../images/sponsor.webp");
  background-size: cover;
  background-position: center;
  filter: saturate(0.78) grayscale(0.18);
}

.sponsor-mosaic__panel--brand {
  grid-column: 3 / 4;
  grid-row: 1 / 2;
  display: grid;
  align-content: space-between;
  background: var(--coal);
  color: var(--white);
}

.sponsor-brand-lockup {
  justify-self: end;
  display: grid;
  place-items: center;
}

.sponsor-brand-lockup__mark {
  width: clamp(78px, 6vw, 104px);
  aspect-ratio: 329 / 342;
  background: rgba(247, 247, 244, 0.9);
  -webkit-mask-image: url("../images/logo%20splash.webp");
  mask-image: url("../images/logo%20splash.webp");
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.sponsor-brand-lockup__hashtag {
  justify-self: start;
  color: rgba(247, 247, 244, 0.58);
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1;
  text-transform: uppercase;
}

.sponsor-mosaic__panel--action {
  grid-column: 3 / 4;
  grid-row: 2 / 3;
  display: grid;
  align-content: space-between;
  background: var(--gold);
  color: var(--ink);
}

.sponsor-mosaic__panel--action p {
  max-width: 18rem;
  margin: 0;
  font-family: var(--font-title);
  font-size: clamp(1.85rem, 1.45vw + 1rem, 2.85rem);
  font-weight: 300;
  line-height: 1;
}

.sponsor-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.sponsor-mosaic__panel--action .button--line {
  border-color: rgba(11, 13, 15, 0.28);
}

.sponsor-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.55fr) minmax(0, 0.45fr);
  margin-top: 34px;
  border-top: 1px solid var(--line-strong);
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.48);
}

.sponsor-detail__copy {
  padding: clamp(28px, 3vw, 44px);
  border-right: 1px solid var(--line);
}

.sponsor-detail__copy p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
}

.sponsor-detail__points {
  display: grid;
}

.sponsor-detail__points span {
  display: flex;
  align-items: center;
  min-height: 72px;
  padding: 18px clamp(24px, 3vw, 40px);
  border-bottom: 1px solid var(--line);
  color: #23282b;
  font-family: var(--font-title);
  font-size: clamp(1.2rem, 0.8vw + 0.9rem, 1.65rem);
  font-weight: 300;
  line-height: 1.1;
}

.sponsor-detail__points span:last-child {
  border-bottom: 0;
}

.section--series-sponsors {
  --series-sponsors-edge-gap: 104px;
  overflow: hidden;
  padding-top: var(--series-sponsors-edge-gap);
  padding-bottom: var(--series-sponsors-edge-gap);
  background: var(--paper);
}

.series-sponsors-head {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(320px, 0.5fr);
  gap: 52px;
  align-items: start;
  padding-bottom: 38px;
}

.series-sponsors-head .section__label {
  margin-bottom: 24px;
}

.series-sponsors-head .section__title {
  max-width: 780px;
}

.series-sponsors-head p {
  max-width: 520px;
  margin: 38px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}

.series-sponsor-marquee {
  --series-sponsor-gap: clamp(12px, 1vw, 18px);
  margin: 4px calc(var(--page-gutter) * -1) 0;
  padding: 0 0 2px;
  overflow: hidden;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line);
  background: #f2f2ee;
}

.series-sponsor-marquee__lane {
  display: flex;
  width: max-content;
  gap: var(--series-sponsor-gap);
  padding: clamp(16px, 1.7vw, 26px) var(--page-gutter);
  will-change: transform;
}

.series-sponsor-marquee.is-loaded .series-sponsor-marquee__lane {
  animation: series-sponsor-marquee var(--series-sponsor-duration, 78s) linear infinite;
}

.series-sponsor-marquee:hover .series-sponsor-marquee__lane {
  animation-play-state: paused;
}

.series-sponsor-marquee__loading {
  margin: 0;
  color: var(--muted);
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 300;
  text-transform: uppercase;
}

.series-sponsor-card {
  flex: 0 0 clamp(184px, 13.8vw, 258px);
  min-height: clamp(108px, 7.8vw, 142px);
  display: grid;
  place-items: center;
  border: 1px solid rgba(11, 13, 15, 0.14);
  background: #ffffff;
  text-decoration: none;
}

.series-sponsor-card__logo {
  display: grid;
  place-items: center;
  min-height: clamp(108px, 7.8vw, 142px);
  width: 100%;
  padding: clamp(16px, 1.45vw, 24px);
}

.series-sponsor-card__logo img {
  display: block;
  width: auto;
  max-width: min(100%, 154px);
  max-height: 58px;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: saturate(0.92) grayscale(0.06);
}

@keyframes series-sponsor-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.section--register {
  padding-top: 84px;
  padding-bottom: 96px;
  background: var(--paper);
  color: var(--ink);
}

.register-block {
  width: 100%;
  margin: 0;
  text-align: center;
}

.register-block h2 {
  margin: 0;
  font-family: var(--font-title);
  font-size: 5.3rem;
  font-weight: 300;
  line-height: 0.95;
}

.register-block p:not(.eyebrow) {
  max-width: 620px;
  margin: 24px auto 0;
  color: var(--muted);
}

.register-block__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
}

.organizer-band {
  position: relative;
  display: grid;
  grid-template-columns: minmax(520px, 1.12fr) minmax(390px, 0.88fr);
  align-items: center;
  gap: clamp(42px, 5vw, 86px);
  padding: 30px var(--page-gutter);
  overflow: hidden;
  background: var(--paper);
}

.organizer-band__label {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
  color: var(--muted);
  font-family: var(--font-title);
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1;
  text-transform: uppercase;
}

.organizer-band__label span:first-child {
  color: #253a9f;
}

.organizer-mosaic {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 9px;
  width: 100%;
  max-width: 620px;
  aspect-ratio: 4 / 2.4;
  padding: 10px;
  background: #171717;
}

.organizer-mosaic__tile {
  min-width: 0;
  overflow: hidden;
  background: #d9d7d0;
}

.organizer-mosaic__tile img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.organizer-mosaic__tile--photo img {
  filter: grayscale(0.9) saturate(0.42) contrast(1.06);
}

.organizer-mosaic__tile--h2-a img,
.organizer-mosaic__tile--h4-a img,
.organizer-mosaic__tile--h5-a img {
  filter: grayscale(0.25) saturate(0.82) contrast(1.04);
}

.organizer-mosaic__tile--red {
  grid-column: 1;
  grid-row: 1;
  background: var(--red);
}

.organizer-mosaic__tile--gold {
  grid-column: 4;
  grid-row: 3;
  background: var(--gold);
}

.organizer-mosaic__tile--logo {
  grid-column: 1 / 3;
  grid-row: 3;
  display: block;
  background: #141516;
  text-decoration: none;
  transition: filter 180ms ease, transform 180ms ease;
}

.organizer-mosaic__tile--logo img {
  object-fit: contain;
}

.organizer-mosaic__tile--logo:hover,
.organizer-mosaic__tile--logo:focus-visible {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.organizer-mosaic__tile--stats {
  grid-column: 3 / 5;
  grid-row: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  align-items: stretch;
  padding: clamp(12px, 1.4vw, 20px);
  background: #141516;
  color: var(--white);
}

.organizer-mosaic__stat {
  min-width: 0;
  display: grid;
  align-content: center;
  gap: 6px;
}

.organizer-mosaic__stat + .organizer-mosaic__stat {
  padding-left: clamp(12px, 1.4vw, 20px);
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.organizer-mosaic__stat strong {
  color: var(--gold);
  font-family: var(--font-title);
  font-size: clamp(2rem, 3vw, 3.15rem);
  font-weight: 300;
  line-height: 0.8;
  white-space: nowrap;
}

.organizer-mosaic__stat span {
  max-width: 11ch;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-title);
  font-size: clamp(0.66rem, 0.72vw, 0.82rem);
  font-weight: 300;
  line-height: 1.08;
  text-transform: uppercase;
}

.organizer-mosaic__tile--h1-a img {
  object-position: 52% 30%;
}

.organizer-mosaic__tile--h1-a {
  grid-column: 3;
  grid-row: 2;
}

.organizer-mosaic__tile--h2-a img {
  object-position: center 38%;
}

.organizer-mosaic__tile--h3 img {
  object-position: center 42%;
}

.organizer-mosaic__tile--h4-a img {
  object-position: center 48%;
}

.organizer-mosaic__tile--h5-a img {
  object-position: center 46%;
}

.organizer-mosaic__tile--csr7 img {
  object-position: center 38%;
}

.organizer-mosaic__tile--csr7 {
  grid-column: 4;
  grid-row: 2;
}

.organizer-band__content {
  max-width: 590px;
}

.organizer-band__kicker {
  margin: 0 0 8px;
  color: #253a9f;
  font-family: var(--font-title);
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.organizer-band__content h2 {
  margin: 0;
  font-family: var(--font-title);
  font-size: clamp(2rem, 2.25vw, 2.75rem);
  font-weight: 300;
  line-height: 0.98;
}

.organizer-band__content > p:not(.organizer-band__kicker) {
  max-width: 60ch;
  margin: 12px 0 0;
  color: #555b60;
  font-size: 0.96rem;
  line-height: 1.5;
}

.organizer-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.organizer-band__link {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: #253a9f;
  color: var(--white);
  font-family: var(--font-title);
  font-size: 0.82rem;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 180ms ease, transform 180ms ease;
}

.organizer-band__link:hover,
.organizer-band__link:focus-visible {
  background: var(--ink);
  transform: translateY(-1px);
}

.organizer-band__link--secondary {
  border: 1px solid #253a9f;
  background: transparent;
  color: #253a9f;
}

.organizer-band__link--secondary:hover,
.organizer-band__link--secondary:focus-visible {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.organizer-band__link svg {
  width: 15px;
  height: 15px;
  stroke-width: 1.7;
}

.page-float-actions {
  position: relative;
  z-index: 90;
}

.page-float-action {
  position: fixed;
  bottom: 24px;
  z-index: 90;
  isolation: isolate;
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  color: var(--white);
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(11, 13, 15, 0.24);
  transition:
    opacity 180ms ease,
    transform 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease,
    visibility 0s linear;
}

.page-float-action::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: inherit;
  opacity: 0.5;
  pointer-events: none;
  transform-origin: center;
  animation: page-float-circle-prompt 2.8s ease-in-out infinite;
}

.page-float-action--left {
  left: 24px;
  background: var(--red);
}

.page-float-action--right {
  right: 24px;
  background: var(--gold);
  color: var(--ink);
}

.page-float-action svg {
  width: 26px;
  height: 26px;
  stroke-width: 1.8;
  transform-origin: center;
  animation: page-float-icon-prompt 2.8s ease-in-out infinite;
}

.page-float-action--right svg {
  animation-delay: 350ms;
}

.page-float-action--right::before {
  animation-delay: 350ms;
}

@keyframes page-float-icon-prompt {
  0%,
  72%,
  100% {
    transform: translateY(0) scale(1);
  }

  80% {
    transform: translateY(-2px) scale(1.09);
  }

  88% {
    transform: translateY(0) scale(1.02);
  }

  94% {
    transform: translateY(-1px) scale(1.06);
  }
}

@keyframes page-float-circle-prompt {
  0%,
  72%,
  100% {
    opacity: 0.5;
    transform: translateY(0) scale(1);
  }

  80% {
    opacity: 0.22;
    transform: translateY(-2px) scale(1.09);
  }

  88% {
    opacity: 0.42;
    transform: translateY(0) scale(1.02);
  }

  94% {
    opacity: 0.3;
    transform: translateY(-1px) scale(1.06);
  }
}

.page-float-action:hover,
.page-float-action:focus-visible {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 16px 34px rgba(11, 13, 15, 0.3);
}

.page-float-action:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.page-float-actions.is-hidden .page-float-action {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px) scale(0.92);
  transition:
    opacity 180ms ease,
    transform 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease,
    visibility 0s linear 220ms;
}

.page-float-action__label {
  position: absolute;
  top: 50%;
  width: max-content;
  max-width: min(230px, calc(100vw - 100px));
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(11, 13, 15, 0.96);
  color: var(--white);
  font-family: var(--font-title);
  font-size: 0.92rem;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  box-shadow: 0 10px 28px rgba(11, 13, 15, 0.22);
  transition: opacity 180ms ease, transform 220ms ease, visibility 0s linear 220ms;
}

.page-float-action--left .page-float-action__label {
  left: calc(100% + 10px);
  transform: translate(-8px, -50%);
}

.page-float-action--right .page-float-action__label {
  right: calc(100% + 10px);
  transform: translate(8px, -50%);
}

.page-float-action:hover .page-float-action__label,
.page-float-action:focus-visible .page-float-action__label {
  opacity: 1;
  visibility: visible;
  transform: translate(0, -50%);
  transition-delay: 0s;
}

@media (max-width: 640px) {
  .page-float-action {
    bottom: 14px;
    width: 52px;
    height: 52px;
  }

  .page-float-action--left {
    left: 14px;
  }

  .page-float-action--right {
    right: 14px;
  }

  .page-float-action svg {
    width: 23px;
    height: 23px;
  }
}

.footer {
  --footer-marquee-overlap: 33px;
  --footer-marquee-bottom: 0px;
  position: relative;
  overflow: hidden;
  padding: 0;
  background: #111315;
}

.footer__visual {
  position: relative;
  height: clamp(390px, 58vw, 735px);
  max-height: 78vh;
  min-height: 390px;
  overflow: hidden;
  isolation: isolate;
}

.footer__layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  filter: saturate(0.9) brightness(0.8) contrast(1.3) grayscale(0);
  object-fit: cover;
  object-position: center 68%;
  pointer-events: none;
  user-select: none;
}

@media (min-width: 1500px) and (max-width: 1799px) {
  .footer__layer {
    object-position: center 80%;
  }
}

@media (min-width: 1800px) {
  .footer__visual {
    height: min(66vh, 640px);
    max-height: 640px;
  }

  .footer__layer {
    object-position: center 80%;
  }

}

.footer__layer--base {
  z-index: 1;
}

.footer__marquee {
  position: absolute;
  right: 0;
  bottom: clamp(-4px, 0.7vw, 22px);
  left: 0;
  z-index: 2;
  overflow: hidden;
  padding-top: 0.08em;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 66%, rgba(0, 0, 0, 0.42) 82%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 0%, #000 66%, rgba(0, 0, 0, 0.42) 82%, transparent 100%);
  pointer-events: none;
}

@media (min-width: 1181px) {
  .footer__marquee {
    bottom: var(--footer-marquee-bottom);
    transform: translateY(var(--footer-marquee-overlap));
  }
}

@media (min-width: 641px) and (max-width: 1180px) {
  .footer__marquee {
    bottom: 88px;
  }
}

.footer__marquee-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: footer-marquee 23s linear infinite;
}

.footer__marquee span {
  flex: 0 0 auto;
  padding-right: 0.18em;
  color: rgba(255, 255, 255, 0.98);
  font-family: var(--font-title);
  font-size: clamp(7.2rem, 18vw, 22rem);
  font-weight: 700;
  line-height: 0.9;
  text-transform: uppercase;
  white-space: nowrap;
}

@media (min-width: 1181px) {
  .footer__marquee span {
    font-size: clamp(7.2rem, 17vw, 21rem);
  }
}

.footer__layer--rig {
  z-index: 3;
}

.footer__layer--sea {
  z-index: 4;
}

@keyframes footer-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.footer__content {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: grid;
  grid-template-columns: minmax(280px, 0.68fr) minmax(520px, 1fr);
  grid-template-rows: 1fr auto;
  align-items: start;
  gap: clamp(26px, 4vw, 70px);
  padding: clamp(28px, 4.5vw, 74px) clamp(24px, 5vw, 86px) clamp(16px, 2vw, 28px);
  color: rgba(255, 255, 255, 0.88);
  pointer-events: none;
}

.footer__intro,
.footer__enquiries,
.footer__legal {
  pointer-events: auto;
}

.footer__eyebrow {
  margin: 0 0 12px;
  font-family: var(--font-title);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.footer__intro {
  max-width: 540px;
}

.footer__intro h2 {
  max-width: 36rem;
  margin: 0;
  font-family: var(--font-title);
  font-size: clamp(1.1rem, 0.62vw + 0.94rem, 1.5rem);
  font-weight: 300;
  line-height: 1.08;
}

.footer__intro p:not(.footer__eyebrow) {
  max-width: 36rem;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(0.86rem, 0.22vw + 0.8rem, 1rem);
  font-weight: 600;
  line-height: 1.35;
}

.footer__quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: clamp(16px, 2vw, 28px);
}

.footer__quick-links a {
  color: rgba(255, 255, 255, 0.76);
  font-family: var(--font-title);
  font-size: 0.86rem;
  font-weight: 300;
  line-height: 1;
  text-decoration-color: rgba(255, 255, 255, 0.24);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  text-transform: uppercase;
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

.footer__quick-links a:hover,
.footer__quick-links a:focus-visible,
.footer__contact a:hover,
.footer__contact a:focus-visible {
  color: var(--red);
  text-decoration-color: var(--red);
}

.footer__enquiries {
  justify-self: end;
  width: min(100%, 940px);
}

.footer__contact-list {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.25fr) minmax(0, 0.9fr);
  gap: clamp(18px, 2.4vw, 42px);
}

.footer__contact {
  min-width: 0;
}

.footer__contact--wide {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(14px, 2vw, 30px);
}

.footer__contact--wide h3 {
  grid-column: 1 / -1;
}

.footer__contact h3 {
  margin: 0 0 12px;
  font-family: var(--font-title);
  font-size: clamp(1.12rem, 0.8vw + 0.9rem, 1.65rem);
  font-weight: 300;
  line-height: 1;
}

.footer__contact p {
  display: grid;
  gap: 2px;
  margin: 0 0 9px;
}

.footer__contact strong {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.18;
  text-transform: uppercase;
}

.footer__contact span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.2;
}

.footer__contact a {
  display: block;
  overflow-wrap: anywhere;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.28;
  text-decoration: none;
}

.footer__legal {
  grid-column: 1 / -1;
  align-self: end;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  transform: translateY(8px);
}

.footer__copyright,
.footer__event-line {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.3;
  text-shadow: 0 2px 16px rgba(17, 19, 21, 0.42);
}

.footer__event-line {
  font-family: var(--font-title);
  letter-spacing: 0.08em;
  text-align: right;
  text-transform: uppercase;
}

.reveal {
  opacity: 1;
  transform: none;
}

@media (max-width: 1180px) {
  .footer__content {
    grid-template-columns: 1fr;
    align-content: start;
  }

  .footer__intro {
    width: 100%;
    min-width: 0;
    max-width: 760px;
  }

  .footer__intro h2 {
    max-width: none;
    width: 100%;
    font-size: clamp(1.12rem, 0.8vw + 0.9rem, 1.65rem);
    line-height: 1;
    white-space: normal;
    text-wrap: wrap;
    transform: none;
  }

  .footer__enquiries {
    justify-self: start;
    width: 100%;
  }

  .site-nav__top {
    grid-template-columns: minmax(280px, 0.72fr) minmax(230px, 1fr) auto;
  }

  .site-nav__actions {
    gap: 8px;
    padding-inline: 22px;
  }

  .site-nav__actions .button {
    min-height: 38px;
    padding-inline: 12px;
  }

  .site-nav__actions .button span {
    max-width: none;
    white-space: nowrap;
    text-align: center;
    line-height: 1;
  }

  .site-nav__toggle {
    display: none;
  }

  .hero__title {
    font-size: 4.2rem;
  }

  .lead {
    font-size: 2.55rem;
  }

  .section__title {
    font-size: 3.5rem;
  }
}

@media (min-width: 961px) {
  .site-nav__top {
    padding-inline: var(--page-gutter);
  }

  .site-nav__brand {
    padding-left: 0;
  }

  .site-nav__actions {
    padding-right: 0;
  }

  .site-nav__bar {
    position: fixed;
    top: 108px;
    left: 0;
    right: 0;
    padding-inline: 32px;
  }

  .site-nav__menu {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition:
      left 560ms cubic-bezier(0.22, 1, 0.36, 1),
      transform 560ms cubic-bezier(0.22, 1, 0.36, 1),
      gap 420ms ease;
  }

  .site-nav__bar-actions {
    position: absolute;
    top: 50%;
    right: 32px;
    display: flex;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(16px, -50%);
    transition:
      opacity 220ms ease,
      transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0s linear 420ms;
  }

  .site-nav.is-compact .site-nav__bar {
    top: 0;
  }

  .site-nav.is-compact .site-nav__menu {
    left: 32px;
    transform: translateX(0);
  }

  .site-nav.is-compact .site-nav__bar-actions {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(0, -50%);
    transition-delay: 160ms, 80ms, 0s;
  }
}

@media (max-width: 960px) {
  :root {
    --page-gutter: 24px;
  }

  .footer__visual {
    height: 760px;
    max-height: none;
  }

  .footer__content {
    padding: 30px 24px 22px;
  }

  .footer__contact-list {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .footer__contact--wide {
    grid-template-columns: 1fr;
    row-gap: 14px;
  }

  .footer__legal {
    display: grid;
  }

  .footer__event-line {
    text-align: left;
  }

  .site-nav__top {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 86px;
    max-height: 86px;
  }

  .site-nav__brand {
    flex: 0 1 auto;
    min-height: 86px;
    padding: 14px 84px 14px var(--page-gutter);
    border-right: 0;
  }

  .site-nav__brand-lockup {
    gap: 8px;
  }

  .site-nav__brand-mark {
    width: 58px;
  }

  .site-nav__brand-kicker {
    font-size: 0.96rem;
  }

  .site-nav__brand-wordmark {
    font-size: 0.96rem;
  }

  .site-nav__brand-edition {
    min-height: 15px;
    padding: 2px 4px;
    font-size: 0.52rem;
  }

  .site-nav__brand-edition-row::after {
    flex-basis: 50px;
    height: 15px;
  }

  .site-nav__event,
  .site-nav__actions {
    display: none;
  }

  .site-nav__toggle {
    display: grid;
    align-content: center;
    background: rgba(255, 255, 255, 0.88);
    border-color: rgba(11, 13, 15, 0.32);
  }

  .site-nav__top > .site-nav__toggle {
    position: absolute;
    top: 50%;
    right: var(--page-gutter);
    z-index: 2;
    margin: 0;
    transform: translateY(-50%);
  }

  .site-nav__bar-toggle {
    display: none;
  }

  .site-nav__toggle-line {
    background: var(--ink);
  }

  .site-nav__bar {
    position: fixed;
    top: 86px;
    left: 0;
    right: 0;
    min-height: 0;
    display: block;
  }

  .site-nav__menu {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    opacity: 0;
    transition: max-height 220ms ease, opacity 180ms ease, padding 180ms ease;
  }

  .site-nav__link {
    width: 100%;
    min-height: 44px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .site-nav.is-open .site-nav__menu {
    max-height: 360px;
    padding-top: 8px;
    padding-bottom: 14px;
    opacity: 1;
  }

  .site-nav.is-open .site-nav__toggle-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .site-nav.is-open .site-nav__toggle-line:nth-child(2) {
    opacity: 0;
  }

  .site-nav.is-open .site-nav__toggle-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .site-nav.is-compact .site-nav__bar {
    min-height: 58px;
    display: flex;
    align-items: center;
    padding: 8px 12px;
  }

  .site-nav.is-compact .site-nav__bar::before {
    display: none;
  }

  .site-nav.is-compact .site-nav__bar-actions {
    display: flex;
    flex: 1 1 auto;
    min-width: 0;
  }

  .site-nav.is-compact .button--compact {
    flex: 1 1 0;
    min-width: 0;
    padding-inline: 8px;
  }

  .site-nav.is-compact .site-nav__bar-toggle {
    display: grid;
    flex: 0 0 42px;
    margin: 0;
    background: transparent;
    border-color: transparent;
  }

  .site-nav.is-compact .site-nav__bar-toggle .site-nav__toggle-line {
    background: var(--white);
  }

  .site-nav.is-compact .site-nav__menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(5, 6, 7, 0.98);
  }

  .hero {
    min-height: 100vh;
    height: 100vh;
    padding: 150px 24px 60px;
  }

  .hero__countdown {
    top: 100px;
    right: var(--page-gutter);
    width: 174px;
    gap: 10px;
    padding: 12px 14px;
  }

  .hero__countdown-panel {
    gap: 10px;
  }

  .hero__countdown-main {
    gap: 9px;
  }

  .hero__countdown-value {
    font-size: 2.7rem;
  }

  .hero__countdown-label {
    font-size: 0.78rem;
  }

  .hero__calendar-link {
    gap: 5px;
    padding-top: 8px;
    font-size: 0.68rem;
  }

  .hero__calendar-link svg {
    width: 13px;
    height: 13px;
  }

  .hero__insight {
    top: 100px;
    right: var(--page-gutter);
  }

  .hero__insight-trigger {
    min-height: 36px;
    gap: 6px;
    padding: 8px 10px;
    font-size: 0.72rem;
  }

  .hero__insight-trigger svg {
    width: 13px;
    height: 13px;
  }

  .hero__insight-panel {
    width: calc(100vw - (var(--page-gutter) * 2));
    max-height: calc(100vh - 264px);
    padding: 18px;
    overflow-y: auto;
  }

  .hero__insight-panel h2 {
    font-size: 1.65rem;
  }

  .hero__insight-panel p:not(.hero__insight-kicker) {
    margin-top: 12px;
    font-size: 0.84rem;
    line-height: 1.42;
  }

  .hero__title {
    font-size: 3.4rem;
  }

  .hero__line {
    font-size: 1.9rem;
  }

  .section {
    padding: 82px 24px;
  }

  .section--series-sponsors {
    --series-sponsors-edge-gap: 82px;
  }

  .organizer-band {
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
    gap: 30px;
    padding: 34px 24px;
  }

  .partners-section {
    padding: 72px 24px 0;
  }

  .partners-section__head {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-bottom: 30px;
  }

  .partners-section__head h2 {
    font-size: 2.7rem;
  }

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

  .section__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .lead,
  .section__title {
    font-size: 2.7rem;
  }

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

  .metric-strip {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
  }

  .image-statement-section {
    padding: 0 24px 82px;
  }

  .image-statement {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    height: auto;
  }

  .image-statement::before {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
  }

  .image-statement__primary {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    min-height: 250px;
  }

  .image-statement__metric {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    min-height: 250px;
    padding: 28px;
  }

  .image-statement__rig {
    display: none;
  }

  .image-statement__stat span {
    font-size: 3.65rem;
  }

  .image-statement__secondary {
    grid-column: 1 / -1;
    grid-row: 2 / 3;
    width: auto;
    min-height: 220px;
    margin: 20px;
    aspect-ratio: 2.2;
  }

  .metric-strip article:nth-child(2) {
    border-right: 0;
  }

  .metric-strip article:nth-child(1),
  .metric-strip article:nth-child(2) {
    border-bottom: 1px solid var(--line);
  }

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

  .theme-grid::before,
  .theme-grid::after {
    display: none;
  }

  .theme-card {
    min-height: 320px;
  }

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

  .section--attend .audience-list span:nth-child(4n) {
    padding-right: 22px;
  }

  .section--attend .audience-list span:nth-child(2n) {
    padding-right: 0;
  }

  .speakers-head {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .section--speakers {
    padding-bottom: 0;
  }

  .speakers-head p {
    margin-top: 0;
    max-width: 620px;
  }

  .speaker-card {
    flex-basis: clamp(218px, 28vw, 272px);
  }

  .sponsor-mosaic {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.78fr);
    grid-template-rows: minmax(320px, auto) minmax(220px, auto);
  }

  .sponsor-mosaic__panel--message {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
  }

  .sponsor-mosaic__image {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    min-height: 320px;
  }

  .sponsor-mosaic__panel--brand,
  .sponsor-mosaic__panel--action {
    grid-column: 2 / 3;
    grid-row: auto;
  }

  .sponsor-detail {
    grid-template-columns: 1fr;
  }

  .sponsor-detail__copy {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .series-sponsors-head {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .series-sponsors-head p {
    margin-top: 0;
    max-width: 620px;
  }

  .series-sponsor-card {
    flex-basis: clamp(184px, 25vw, 238px);
  }
}

@media (max-width: 640px) {
  :root {
    --page-gutter: 18px;
  }

  body {
    font-size: 15px;
  }

  .button {
    width: 100%;
  }

  .site-nav.is-compact .button--compact {
    width: auto;
  }

  .site-nav.is-compact .button--compact svg {
    display: none;
  }

  .js-enabled .hero__countdown {
    position: absolute;
    top: var(--hero-countdown-mobile-top, calc(100% - 142px));
    right: 18px;
    bottom: auto;
    z-index: 3;
    width: 56px;
    height: 56px;
    padding: 0;
    overflow: visible;
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
    transform: none;
  }

  .js-enabled .hero__countdown::before {
    display: none;
  }

  .js-enabled .hero__countdown:hover,
  .js-enabled .hero__countdown:focus-within,
  .js-enabled .hero__countdown.is-open {
    z-index: 4;
  }

  .js-enabled .hero__countdown::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 56px;
    width: 174px;
    height: 12px;
  }

  .js-enabled .hero__countdown-toggle {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: var(--gold);
    color: var(--ink);
    box-shadow: 0 12px 30px rgba(3, 5, 8, 0.32);
    cursor: pointer;
    transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
    animation: floating-control-prompt 2.8s ease-in-out infinite;
  }

  .js-enabled .hero__countdown-toggle:hover,
  .js-enabled .hero__countdown-toggle:focus-visible,
  .js-enabled .hero__countdown:hover .hero__countdown-toggle,
  .js-enabled .hero__countdown:focus-within .hero__countdown-toggle,
  .js-enabled .hero__countdown.is-open .hero__countdown-toggle {
    background: #c49d4e;
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(3, 5, 8, 0.38);
  }

  .js-enabled .hero__countdown-toggle:focus-visible {
    outline: 2px solid var(--white);
    outline-offset: 3px;
  }

  .js-enabled .hero__countdown-toggle svg {
    width: 30px;
    height: 30px;
    stroke-width: 1.8;
    transform-origin: center;
    animation: countdown-icon-prompt 2.8s ease-in-out infinite;
  }

  .js-enabled .hero__countdown:hover .hero__countdown-toggle svg,
  .js-enabled .hero__countdown:focus-within .hero__countdown-toggle svg,
  .js-enabled .hero__countdown.is-open .hero__countdown-toggle svg {
    animation-play-state: paused;
  }

  .js-enabled .hero__countdown:hover .hero__countdown-toggle,
  .js-enabled .hero__countdown:focus-within .hero__countdown-toggle,
  .js-enabled .hero__countdown.is-open .hero__countdown-toggle {
    animation-play-state: paused;
  }

  .js-enabled .hero__countdown-panel {
    position: absolute;
    right: 0;
    bottom: 68px;
    width: 174px;
    padding: 12px 14px;
    background: rgba(247, 247, 244, 0.96);
    color: var(--ink);
    border-top: 3px solid var(--red);
    box-shadow: 0 18px 42px rgba(3, 5, 8, 0.24);
    backdrop-filter: blur(14px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
  }

  .js-enabled .hero__countdown:hover .hero__countdown-panel,
  .js-enabled .hero__countdown:focus-within .hero__countdown-panel,
  .js-enabled .hero__countdown.is-open .hero__countdown-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero {
    min-height: 100vh;
    height: 100vh;
    padding: 132px 18px 54px;
  }

  .hero__content {
    width: calc(100vw - 36px);
    max-width: calc(100vw - 36px);
  }

  .site-nav__top > .site-nav__toggle {
    background: var(--ink);
    border-color: var(--ink);
  }

  .site-nav__top > .site-nav__toggle .site-nav__toggle-line {
    background: var(--white);
  }

  .hero__title {
    max-width: 100%;
    font-size: 1.8rem;
    word-break: normal;
    overflow-wrap: normal;
  }

  .hero__line {
    max-width: 17rem;
    font-size: 1.45rem;
    line-height: 1.08;
  }

  .hero__copy {
    max-width: 18.6rem;
    font-size: 1rem;
  }

  .hero__meta {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero__meta span {
    padding: 11px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .hero__meta span:last-child {
    border-bottom: 0;
  }

  .hero__actions,
  .sponsor-actions,
  .register-block__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero__scroll {
    display: none;
  }

  .hero__insight-trigger {
    width: 56px;
    height: 56px;
    min-height: 56px;
    justify-content: center;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(11, 13, 15, 0.94);
    box-shadow: 0 12px 30px rgba(3, 5, 8, 0.32);
    transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
    animation: floating-control-prompt 2.8s ease-in-out infinite;
  }

  .hero__insight-trigger:hover,
  .hero__insight-trigger:focus-visible,
  .hero__insight.is-open .hero__insight-trigger {
    background: var(--red);
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(3, 5, 8, 0.38);
  }

  .hero__insight-trigger:focus-visible {
    outline: 2px solid var(--white);
    outline-offset: 3px;
  }

  .hero__insight {
    top: var(--hero-insight-mobile-top, calc(100% - 114px));
    right: 18px;
    bottom: auto;
    transform: translateY(-50%);
  }

  .hero__insight::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 100%;
    width: min(420px, calc(100vw - 36px));
    height: 10px;
  }

  .hero__insight-panel {
    top: auto;
    bottom: calc(100% + 10px);
    transform: translateY(8px);
  }

  .hero__insight-trigger span,
  .hero__insight-chevron {
    display: none;
  }

  .hero__insight-trigger svg {
    width: 28px;
    height: 28px;
    stroke-width: 1.8;
    transform-origin: center;
    animation: countdown-icon-prompt 2.8s ease-in-out infinite;
  }

  .hero__insight:hover .hero__insight-trigger svg,
  .hero__insight:focus-within .hero__insight-trigger svg,
  .hero__insight.is-open .hero__insight-trigger svg {
    animation-play-state: paused;
  }

  .hero__insight:hover .hero__insight-trigger,
  .hero__insight:focus-within .hero__insight-trigger,
  .hero__insight.is-open .hero__insight-trigger {
    animation-play-state: paused;
  }

  .section {
    padding: 68px 18px;
  }

  .section--proof {
    padding-top: 0;
    padding-bottom: 42px;
  }

  .organizer-band {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 32px 18px 36px;
  }

  .organizer-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(6, minmax(0, 1fr));
    aspect-ratio: 5 / 12;
  }

  .organizer-mosaic__tile--red {
    grid-column: 1;
    grid-row: 1;
  }

  .organizer-mosaic__tile--h2-a {
    grid-column: 2;
    grid-row: 1;
  }

  .organizer-mosaic__tile--stats {
    grid-column: 1 / 3;
    grid-row: 4;
  }

  .organizer-mosaic__tile--h3 {
    grid-column: 1;
    grid-row: 2;
  }

  .organizer-mosaic__tile--h4-a {
    grid-column: 2;
    grid-row: 2;
  }

  .organizer-mosaic__tile--h1-a {
    grid-column: 1;
    grid-row: 5;
  }

  .organizer-mosaic__tile--csr7 {
    grid-column: 2;
    grid-row: 5;
  }

  .organizer-mosaic__tile--logo {
    grid-column: 1 / 3;
    grid-row: 3;
  }

  .organizer-mosaic__tile--h5-a {
    grid-column: 1;
    grid-row: 6;
  }

  .organizer-mosaic__tile--gold {
    grid-column: 2;
    grid-row: 6;
  }

  .organizer-band__content h2 {
    font-size: 2rem;
  }

  .organizer-band__link {
    width: 100%;
    justify-content: center;
  }

  .organizer-band__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .partners-section {
    padding: 58px 18px 0;
  }

  .partners-section__head h2 {
    font-size: 2.2rem;
  }

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

  .partner-logo {
    min-height: 132px;
    padding: 16px;
  }

  .partner-logo img {
    width: min(100%, 180px);
    height: 76px;
  }

  .section__label {
    font-size: 0.96rem;
  }

  .lead,
  .section__title {
    font-size: 2.2rem;
  }

  .section--speakers {
    padding-bottom: 0;
  }

  .metric-strip {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .image-statement-section {
    padding: 0 18px 68px;
  }

  .section--series-sponsors {
    --series-sponsors-edge-gap: 68px;
  }

  .image-statement {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(220px, 62vw) auto auto;
    height: auto;
    overflow: hidden;
    background: var(--red);
  }

  .image-statement::before {
    display: none;
  }

  .image-statement__primary {
    grid-column: 1 / -1;
    grid-row: 1 / 2;
    min-height: 220px;
    margin-right: 0;
    background-position: 36% center;
  }

  .image-statement__metric {
    grid-column: 1 / -1;
    grid-row: 2 / 3;
    z-index: 2;
    min-height: 0;
    padding: 28px 22px 26px;
    background: var(--red);
  }

  .image-statement__rig {
    top: 0;
    bottom: auto;
    left: 54%;
    z-index: 1;
    display: block;
    width: 88%;
    height: auto;
    max-width: none;
    transform: translateX(-50%);
  }

  .image-statement__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    justify-items: stretch;
    gap: 14px;
  }

  .image-statement__stat {
    min-width: 0;
    max-width: none;
    text-align: left;
  }

  .image-statement__stat + .image-statement__stat {
    padding-left: 14px;
    border-left: 1px solid rgba(255, 255, 255, 0.28);
  }

  .image-statement__stat span {
    font-size: 3.1rem;
  }

  .image-statement__stat p {
    margin-top: 0.55rem;
    font-size: 0.78rem;
    line-height: 1.34;
    overflow-wrap: anywhere;
  }

  .image-statement__secondary {
    grid-column: 1 / -1;
    grid-row: 3 / 4;
    width: auto;
    min-height: 0;
    margin: 0 16px 16px;
    aspect-ratio: 16 / 10;
    background-position: center 42%;
  }

  .metric-strip article {
    min-height: 118px;
    padding: 18px 16px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .metric-strip article:nth-child(odd) {
    border-right: 1px solid var(--line);
  }

  .metric-strip article:nth-child(n + 3) {
    border-bottom: 0;
  }

  .metric-strip__number {
    font-size: 3.1rem;
  }

  .metric-strip__label {
    font-size: 0.82rem;
    line-height: 1.3;
  }

  .theme-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .theme-card {
    min-height: 220px;
    padding: 24px;
  }

  .theme-card h3 {
    font-size: 1.72rem;
  }

  .audience-list {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

  .audience-list span,
  .section--attend .audience-list span:nth-child(2n),
  .section--attend .audience-list span:nth-child(4n) {
    min-height: 68px;
    padding-right: 0;
  }

  .speaker-marquee {
    margin: 36px -18px 0;
  }

  .speaker-marquee__track {
    padding: 16px 18px;
  }

  .series-sponsor-marquee {
    margin: 4px -18px 0;
  }

  .series-sponsor-marquee__lane {
    padding: 14px 18px;
  }

  .series-sponsor-card {
    flex-basis: min(66vw, 220px);
    min-height: 108px;
  }

  .series-sponsor-card__logo {
    min-height: 108px;
    padding: 16px;
  }

  .series-sponsor-card__logo img {
    max-width: min(100%, 138px);
    max-height: 52px;
  }

  .speaker-card {
    flex-basis: min(74vw, 260px);
    min-height: 366px;
  }

  .speaker-card__nameplate {
    right: 14px;
    min-height: 58px;
    padding: 12px 14px 11px;
  }

  .speaker-card__body {
    padding: 14px 14px 16px;
  }

  .sponsor-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .sponsor-mosaic__panel--message,
  .sponsor-mosaic__image,
  .sponsor-mosaic__panel--brand,
  .sponsor-mosaic__panel--action {
    grid-column: auto;
    grid-row: auto;
  }

  .sponsor-mosaic__panel {
    min-height: 220px;
    padding: 24px;
  }

  .sponsor-mosaic__panel--message h3 {
    max-width: 9ch;
    font-size: 3.45rem;
  }

  .sponsor-mosaic__image {
    min-height: 280px;
  }

  .sponsor-mosaic__panel--action {
    min-height: 160px;
    align-content: center;
    justify-items: center;
    text-align: center;
  }

  .sponsor-mosaic__panel--action p {
    font-size: 1.9rem;
  }

  .sponsor-detail {
    grid-template-columns: 1fr;
  }

  .sponsor-detail__copy,
  .sponsor-detail__points span {
    padding: 24px;
  }

  .register-block h2 {
    font-size: 3.25rem;
  }

  .footer__layer {
    object-position: 74% 68%;
  }

  .footer__marquee {
    bottom: 100px;
  }

  .footer__rights {
    display: block;
  }

  .footer__quick-links {
    display: none;
  }

  .footer__content {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .footer__legal {
    width: 100%;
    margin-top: auto;
  }

  .footer__contact-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 16px;
    row-gap: 20px;
  }

  .footer__contact:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
  }

  .footer__contact--wide {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-content: start;
    row-gap: 12px;
  }

  .footer__contact--wide h3 {
    margin-bottom: 0;
  }

  .footer__contact:nth-child(3) {
    grid-column: 1;
    grid-row: 2;
  }

}

@media (min-width: 641px) and (max-width: 1180px) {
  .sponsor-mosaic__panel--action {
    display: none;
  }

  .footer__content {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 1fr auto;
    align-content: stretch;
    gap: 28px;
  }

  .footer__enquiries {
    justify-self: stretch;
    padding-left: 24px;
  }
}

@media (min-width: 1500px) {
  .organizer-band__content {
    margin-left: -72px;
  }
}

@media (min-width: 641px) and (max-width: 960px) {
  .organizer-band {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .organizer-mosaic {
    grid-column: 1;
    grid-row: 1;
    justify-self: center;
  }

  .organizer-band__content {
    grid-column: 1;
    grid-row: 2;
    justify-self: center;
    width: min(100%, 590px);
  }

  .site-nav__top > .site-nav__toggle {
    background: var(--ink);
    border-color: var(--ink);
  }

  .site-nav__top > .site-nav__toggle .site-nav__toggle-line {
    background: var(--white);
  }

  .partners-section {
    padding-bottom: 0;
  }

  .hero__content .eyebrow {
    font-size: 1.45rem;
  }

  .hero__content .hero__title {
    font-size: 4.8rem;
  }

  .hero__content .hero__line {
    font-size: 2.7rem;
  }

  .hero__content .hero__copy {
    font-size: 1.45rem;
  }

  .hero__content .hero__meta span {
    font-size: 1.36rem;
  }

  .hero__content .button {
    font-size: 1.28rem;
  }

  .section--intro {
    padding-bottom: 0;
  }

  .metric-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top-color: rgba(11, 13, 15, 0.42);
  }

  .metric-strip article {
    min-height: clamp(132px, 18vw, 154px);
    padding: clamp(22px, 3vw, 28px);
  }

  .metric-strip__number {
    font-size: clamp(3.35rem, 6vw, 4rem);
  }

  .metric-strip__label {
    font-size: clamp(0.86rem, 1.5vw, 0.96rem);
    line-height: 1.3;
  }

  .image-statement {
    grid-template-columns: 1fr;
    grid-template-rows: clamp(360px, 52vw, 460px) auto auto;
    height: auto;
    overflow: visible;
    background: var(--red);
  }

  .image-statement::before {
    display: none;
  }

  .image-statement__primary {
    grid-column: 1 / -1;
    grid-row: 1 / 2;
    min-height: 0;
    margin-right: 0;
    background-position: 36% center;
  }

  .image-statement__metric {
    grid-column: 1 / -1;
    grid-row: 2 / 3;
    z-index: 2;
    min-height: 0;
    padding: clamp(30px, 4vw, 40px) clamp(26px, 4vw, 38px);
    background: var(--red);
  }

  .image-statement__rig {
    top: -128px;
    bottom: auto;
    left: 54%;
    z-index: 1;
    display: block;
    width: 94%;
    height: auto;
    max-width: none;
    transform: translateX(-50%);
  }

  .image-statement__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    justify-items: stretch;
    gap: 24px;
  }

  .image-statement__stat {
    min-width: 0;
    max-width: none;
    text-align: left;
  }

  .image-statement__stat + .image-statement__stat {
    padding-left: 24px;
    border-left: 1px solid rgba(255, 255, 255, 0.28);
  }

  .image-statement__stat span {
    font-size: clamp(3.4rem, 6vw, 4.4rem);
  }

  .image-statement__stat p {
    margin-top: 0.55rem;
    font-size: 0.9rem;
    line-height: 1.34;
  }

  .image-statement__secondary {
    grid-column: 1 / -1;
    grid-row: 3 / 4;
    width: auto;
    min-height: 0;
    margin: 0 clamp(20px, 3vw, 28px) clamp(20px, 3vw, 28px);
    aspect-ratio: 16 / 10;
    background-position: center 42%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
