@font-face {
  font-family: "Barlow";
  src: url("assets/fonts/barlow-300.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Barlow";
  src: url("assets/fonts/barlow-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Barlow";
  src: url("assets/fonts/barlow-500.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Barlow";
  src: url("assets/fonts/barlow-600.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Barlow Condensed";
  src: url("assets/fonts/barlow-condensed-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Barlow Condensed";
  src: url("assets/fonts/barlow-condensed-700.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Barlow Condensed";
  src: url("assets/fonts/barlow-condensed-900.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-white: #fff;
  --color-off-white: #F5F8FC;
  --color-navy: #04111f;
  --color-blue: #0d4ea6;
  --color-light-blue: #00C2FF;
  --color-white-muted: #ffffffb8;
  --color-steel: #7090b0;
  --color-blue-soft: #0d4ea614;
  --color-ink-03: #04111f05;
  --color-ink-09: #04111f0f;
  --font-body: "Barlow", Arial, sans-serif;
  --font-display: "Barlow Condensed", Impact, sans-serif;
  --container: 100%;
  --gutter: clamp(1.25rem, 4vw, 4rem);
  --section-y: clamp(2.25rem, 4vw, 4rem);
  --radius: 0.5rem;
  --tracking-label: 0.22em;
  --text-caption: 0.75rem;
  --text-small: 0.875rem;
  --text-md: 1rem;
  --text-body: 1.25rem;
  --text-body-large: 1.5rem;
  --text-button: 1rem;
  --text-hero: 5rem;
  --text-section-title: 3.75rem;
  --text-card-title: 2.25rem;
  --text-feature-title: 2.5rem;
  --text-programme-date: 4rem;
  --text-session-time: 1.4rem;
  --text-session-title: 1.35rem;
  --text-stat: 6rem;
  --text-footer-title: 4.5rem;
  --text-legal: 0.9rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 100%;
}

body {
  margin: 0;
  background: var(--color-white);
  color: var(--color-navy);
  font-family: var(--font-body);
  font-size: 0.75rem;
  line-height: 1.5;
}

.is-hydrating main,
.is-hydrating .site-footer {
  visibility: hidden;
}

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

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 0.5rem var(--gutter);
  border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.07);
  background: rgba(4, 17, 31, 0.88);
  color: var(--color-white);
  backdrop-filter: blur(0.75rem);
}

.brand img {
  width: 12rem;
  height: auto;
  transform: translateX(-2.25rem);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: clamp(1rem, 2vw, 2rem);
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-body);
  font-size: var(--text-small);
  font-weight: 600;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--color-white);
  cursor: pointer;
}

.menu-toggle .icon-bar {
  display: block;
  width: 0.125rem;
  height: 2.1875rem;
  margin: 0;
  background: currentColor;
  transform-origin: center;
  transition: transform 0.5s ease, opacity 0.3s ease;
}

.menu-toggle.is-open .icon-bar:first-child,
.menu-toggle[aria-expanded="true"] .icon-bar:first-child {
  transform: translateX(0.5rem) rotate(45deg);
}

.menu-toggle.is-open .icon-bar:nth-child(2),
.menu-toggle[aria-expanded="true"] .icon-bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open .icon-bar:nth-child(3),
.menu-toggle[aria-expanded="true"] .icon-bar:nth-child(3) {
  transform: translateX(-0.5rem) rotate(-45deg);
}

.visually-hidden {
  position: absolute;
  width: 0.0625rem;
  height: 0.0625rem;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.section {
  padding: var(--section-y) var(--gutter);
}

.section--dark {
  background: var(--color-navy);
  color: var(--color-white);
}

.section__inner {
  width: var(--container);
  margin: 0;
}

.hero {
  position: relative;
  min-height: 52rem;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 8rem;
}

.hero__media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 17, 31, 0.96) 0%, rgba(4, 17, 31, 0.84) 36%, rgba(4, 17, 31, 0.28) 100%),
    url("assets/hero.jpg") center / cover;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 4rem;
}

.hero__copy {
  width: min(100%, 34rem);
}

.hero__logo {
  width: 10rem;
  height: auto;
  flex: 0 0 auto;
}

.hero__date {
  font-size: var(--text-small);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: fit-content;
  margin: 0 auto 2.5rem;
  padding: 0.4375rem 1.125rem;
  border: 0.125rem solid rgba(0, 194, 255, 0.45);
  border-radius: var(--radius);
  background: rgba(0, 194, 255, 0.12);
  color: var(--color-light-blue);
  text-transform: uppercase;
}

.hero__date::before {
  content: "";
  width: 0.438rem;
  height: 0.438rem;
  border-radius: 999rem;
  background: var(--color-light-blue);
  flex: 0 0 auto;
}

.hero__title {
  max-width: 100%;
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.82;
  text-transform: uppercase;
}

.hero__title span {
  display: inline;
  word-break: break-word;
}

.hero__title .text-highlight {
  color: var(--color-light-blue);
}

.hero__body {
  max-width: 100%;
  margin: 2rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: var(--text-body-large);
  font-weight: 300;
  line-height: 1.45;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-top: 2.25rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.875rem 1.35rem;
  border: 0.0625rem solid currentColor;
  border-radius: 0.375rem;
  font-family: var(--font-display);
  font-size: var(--text-button);
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.button--primary {
  border-color: var(--color-blue);
  background: var(--color-light-blue);
  color: var(--color-navy);
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--color-white);
}

.error-page {
  background: var(--color-navy);
}

.error-hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 8rem;
}

.error-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 42rem;
}

.error-hero__code {
  margin: 0 0 1rem;
  color: var(--color-light-blue);
  font-family: var(--font-display);
  font-size: clamp(5rem, 15vw, 12rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.78;
}

.topic-ticker {
  overflow: hidden;
  background: var(--color-light-blue);
  color: var(--color-navy);
}

.topic-ticker__track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 0.5rem;
  padding: 1rem 0;
  font-family: var(--font-display);
  font-size: var(--text-small);
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  animation: ticker 36s linear infinite;
  will-change: transform;
}

.topic-ticker__item {
  white-space: nowrap;
}

.topic-ticker__separator {
  color: inherit;
  display: inline-flex;
  align-items: center;
  line-height: 1;
  transform: translateY(-0.3em);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(18rem, 1fr);
  gap: clamp(2rem, 6vw, 7rem);
  align-items: start;
}

.eyebrow {
  color: var(--color-blue);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 1.875rem;
  height: 0.063rem;
  background: currentColor;
}

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

.section-title {
  max-width: 50rem;
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--text-section-title);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.9;
  text-transform: uppercase;
}

.section-title span {
  display: inline;
}

.moment__title span {
  display: block;
}

.text-highlight {
  color: var(--color-blue);
}

.moment__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.moment__video {
  display: block;
  width: 100%;
  background: var(--color-navy);
  border-radius: var(--radius);
  border: 0;
}

.section-lede {
  margin: 1.25rem 0 0;
  color: var(--color-steel);
  font-size: var(--text-body);
}

.copy-stack {
  display: grid;
  gap: 1rem;
  color: var(--color-navy);
  font-size: var(--text-body);
}

.copy-stack p {
  margin: 0;
}

.copy-stack strong {
  font-weight: 600;
}

.section-heading {
  margin-bottom: clamp(2rem, 5vw, 4rem);
  gap: 0.5rem;
}

.topics .section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 1fr);
  align-items: end;
}

.topics .section-heading .eyebrow {
  grid-column: 1 / -1;
}

.topics .section-title {
  color: var(--color-navy);
}

.topics .section-title .text-highlight {
  color: var(--color-blue);
}

.topics .section-lede {
  color: var(--color-navy);
  margin: 0;
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(16rem, 32rem);
  gap: 2rem;
  align-items: end;
}

.topic-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr;
  grid-template-rows: repeat(2, 17rem);
  gap: 1rem;
  max-height: 35rem;
}

.topic-card {
  position: relative;
  min-height: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--color-navy);
  color: var(--color-white);
}

.topic-card img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  opacity: 0.88;
  transition: opacity 180ms ease, transform 180ms ease;
}

.topic-card:first-child {
  grid-row: span 2;
}

.topic-card:first-child,
.topic-card:first-child img {
  min-height: 0;
}

.topic-card::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(4, 17, 31, 0.72);
  content: "";
  opacity: 0;
  transition: opacity 180ms ease;
}

.topic-card__content {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0;
  color: var(--color-white);
  transition: gap 180ms ease, transform 180ms ease;
}

.topic-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
}

.topic-card__content p {
  max-width: 22rem;
  margin: 0;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.15;
  opacity: 0;
  transform: translateY(0.5rem);
  transition: opacity 180ms ease, transform 180ms ease;
}

.topic-card:hover img,
.topic-card:focus-within img {
  opacity: 1;
  transform: scale(1.02);
}

.topic-card:hover::after,
.topic-card:focus-within::after {
  opacity: 1;
}

.topic-card:hover .topic-card__content,
.topic-card:focus-within .topic-card__content {
  gap: 1rem;
  transform: translateY(-0.75rem);
}

.topic-card:hover .topic-card__content p,
.topic-card:focus-within .topic-card__content p {
  opacity: 1;
  transform: translateY(0);
}

.why-join {
  background: var(--color-navy);
  color: var(--color-white);
}

.why-join .section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 1fr);
  gap: 2rem;
  align-items: end;
  max-width: none;
}

.why-join .eyebrow {
  color: var(--color-light-blue);
}

.why-join__title {
  max-width: 24rem;
  color: var(--color-white);
}

.why-join__title span {
  display: inline;
}

.why-join__title span:first-child {
  display: block;
}

.why-join__title .text-highlight {
  color: var(--color-light-blue);
}

.why-join .section-lede {
  margin: 0;
  color: var(--color-steel);
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 4rem;
  border-top: 0.0625rem solid rgba(255, 255, 255, 0.08);
  border-left: 0.0625rem solid rgba(255, 255, 255, 0.08);
}

.reason {
  min-height: 18.5rem;
  padding: 2rem;
  border-right: 0.0625rem solid rgba(255, 255, 255, 0.08);
  border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.08);
  background: rgba(13, 78, 166, 0.12);
}

.reason__number,
.speaker-card__meta {
  display: block;
  margin-bottom: 1.25rem;
  color: var(--color-blue);
  font-family: var(--font-display);
  font-size: var(--text-body);
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.reason__number {
  color: var(--color-light-blue);
  font-size: 3.75rem;
  letter-spacing: 0;
}

.reason h3,
.speaker-card h3 {
  margin: 0 0 1rem 0;
  font-family: var(--font-body);
  font-size: var(--text-body-large);
  font-weight: 600;
  line-height: 0.95;
  text-transform: uppercase;
}

.reason h3 {
  color: var(--color-white);
  font-size: 1.5rem;
  line-height: 1.05;
}

.reason p,
.speaker-card p {
  margin: 1rem 0 0;
  color: var(--color-steel);
}

.reason p {
  color: var(--color-steel);
  font-size: 1.125rem;
  line-height: 1.55;
}

.speakers--current {
  background: var(--color-white);
}

.speakers--current .section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.4fr) minmax(18rem, 0.6fr);
  align-items: end;
}

.speakers--current .section-heading .eyebrow {
  grid-column: 1 / -1;
}

.speakers--current .section-title {
  color: var(--color-navy);
}

.speakers--current .section-title .text-highlight {
  color: var(--color-blue);
}

.speakers--current .section-lede {
  margin: 0;
  color: var(--color-navy);
}

.speakers--current .speaker-card__panel {
  grid-template-rows: clamp(320px, 24vw, 420px) 1fr;
}

.speakers--current .speaker-card__media img {
  object-position: center 24%;
}

#speakers-2025 {
  background: var(--color-white);
}

#speakers-2025 .section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.4fr) minmax(18rem, 0.6fr);
  align-items: end;
}

#speakers-2025 .section-heading .eyebrow {
  grid-column: 1 / -1;
}

#speakers-2025 .section-title {
  color: var(--color-navy);
  text-transform: uppercase;
}

#speakers-2025 .section-title span:first-child {
  display: block;
}

#speakers-2025 .section-title .text-highlight {
  color: var(--color-blue);
}

#speakers-2025 .section-lede {
  margin: 0;
  color: var(--color-navy);
}

#speakers-2025 .speaker-groups {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

#speakers-2025 .speaker-card__panel {
  grid-template-rows: clamp(320px, 24vw, 420px) auto;
}

#speakers-2025 .speaker-card__media img {
  object-position: center 24%;
}

#speakers-2025 .speaker-card--media-large .speaker-card__media img {
  object-position: center top;
}

.speaker-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.speaker-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 0;
}

.speaker-card__group {
  margin: 0 0 1rem;
  border: 0;
  font-family: var(--font-body);
  font-size: 1.625rem;
  font-weight: 600;
  line-height: 1.1;
  text-transform: uppercase;
}

.speaker-card__panel {
  display: grid;
  grid-template-rows: minmax(320px, auto) 1fr;
  border: 0.0625rem solid rgba(4, 17, 31, 0.12);
  border-radius: var(--radius);
  background: var(--color-white);
  overflow: hidden;
}

.speaker-card__media {
  position: relative;
  overflow: hidden;
  background: var(--color-navy);
}

.speaker-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 280ms ease, transform 360ms ease;
  will-change: opacity, transform;
}

.speaker-card__media img.is-active {
  opacity: 1;
  transform: scale(1);
}

.speaker-card__content {
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
}

.speaker-card__content.is-transitioning h4,
.speaker-card__content.is-transitioning p,
.speaker-card__content.is-transitioning .speaker-card__tag {
  animation: speakerTextIn 260ms ease both;
}

.speaker-card__content.is-transitioning p {
  animation-delay: 40ms;
}

.speaker-card__content.is-transitioning .speaker-card__tag {
  animation-delay: 80ms;
}

.speaker-card__content h4 {
  margin: 0;
  color: var(--color-navy);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
}

.speaker-card__content p {
  margin: 0.5rem 0 0;
  color: var(--color-steel);
  font-size: 0.875rem;
  line-height: 1.4;
}

.speaker-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1rem;
}

.speaker-card--tagless .speaker-card__footer {
  justify-content: flex-end;
}

.speaker-card__tag {
  display: inline-flex;
  align-items: center;
  min-height: 1.6rem;
  padding: 0.35rem 0.75rem;
  border-radius: 0.25rem;
  background: rgba(13, 78, 166, 0.08);
  color: var(--color-blue);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.speaker-card__controls {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 7rem;
  padding: 0.65rem 1rem;
  border-radius: 0.375rem;
  background: var(--color-blue);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
}

.speaker-card__controls span {
  min-width: 2.5rem;
  text-align: center;
}

.speaker-card__controls button,
.speaker-card__dots button {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.speaker-card__dots {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  padding: 1rem 0 0;
}

.speaker-card__dots button {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999rem;
  background: rgba(4, 17, 31, 0.25);
}

.speaker-card__dots button.is-active {
  background: var(--color-blue);
}

@keyframes speakerTextIn {
  from {
    opacity: 0;
    transform: translateY(0.35rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.programme {
  background: var(--color-off-white);
  color: var(--color-navy);
}

.programme .eyebrow {
  color: var(--color-blue);
}

.programme .section-title {
  color: var(--color-navy);
}

.programme .section-title .text-highlight {
  color: var(--color-blue);
}

.programme .section-title span:first-child {
  display: block;
}

.programme-days {
  margin-top: 2.5rem;
}

.programme-layout {
  display: grid;
  grid-template-columns: 18rem minmax(0, 1fr);
  gap: 3rem;
  align-items: start;
}

.programme-tabs {
  display: grid;
  gap: 0.5rem;
}

.programme-tab {
  display: grid;
  gap: 0.2rem;
  width: 100%;
  padding: 1.1rem 1.5rem;
  border: 0;
  border-radius: 0.25rem;
  background: transparent;
  color: var(--color-navy);
  font-family: var(--font-body);
  text-align: left;
  cursor: pointer;
}

.programme-tab.is-active {
  background: var(--color-navy);
  color: var(--color-white);
}

.programme-tab span {
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.programme-tab small {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.programme-agenda-frame {
  width: 100%;
}

.programme-agenda {
  border: 0.0625rem solid rgba(4, 17, 31, 0.08);
  background: transparent;
}

.programme-agenda__heading {
  padding: 1.35rem 1.75rem;
  border-bottom: 0.0625rem solid rgba(4, 17, 31, 0.08);
  color: var(--color-navy);
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
}

.session {
  display: grid;
  grid-template-columns: 6rem minmax(0, 1fr);
  gap: 1.25rem;
  align-items: center;
  min-height: 4rem;
  padding: 0.95rem 1.75rem;
  border-bottom: 0.0625rem solid rgba(4, 17, 31, 0.08);
}

.session:last-child {
  border-bottom: 0;
}

.session--no-time {
  grid-template-columns: minmax(0, 1fr);
}

.session--no-time .session__time {
  display: none;
}

.session__time {
  color: var(--color-steel);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
}

.session h3 {
  margin: 0;
  color: var(--color-navy);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.25;
}

.session p {
  margin: 0.25rem 0 0;
  color: var(--color-steel);
  font-size: 0.8125rem;
  line-height: 1.25;
}

.previous-event {
  padding-top: calc(var(--section-y) / 2);
  padding-bottom: calc(var(--section-y) / 2);
  background: var(--color-blue);
  color: var(--color-white);
}

.previous-event__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.45fr) minmax(24rem, 0.55fr);
  gap: 4rem;
  align-items: center;
}

.previous-event__title {
  color: var(--color-white);
}

.previous-event__title .text-highlight {
  color: var(--color-light-blue);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border: 0.0625rem solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  overflow: hidden;
}

.stat {
  min-height: 9.5rem;
  padding: 1.75rem;
  border-right: 0.0625rem solid rgba(255, 255, 255, 0.16);
}

.stat:last-child {
  border-right: 0;
}

.stat__value {
  color: var(--color-light-blue);
  font-family: var(--font-display);
  font-size: var(--text-section-title);
  font-weight: 700;
  line-height: 0.85;
}

.stat__label {
  max-width: 12rem;
  margin-top: 0.75rem;
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: var(--text-small);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.final-cta {
  padding-top: 7.5rem;
  padding-bottom: 7.5rem;
  text-align: center;
}

.final-cta__inner {
  display: grid;
  gap: 1.25rem;
  justify-items: center;
}

.final-cta .eyebrow {
  margin: 0;
  color: var(--color-light-blue);
}

.final-cta .eyebrow::before {
  display: none;
}

.final-cta .section-title {
  margin: 0;
  max-width: 42rem;
  color: var(--color-white);
  font-size: var(--text-footer-title);
}

.final-cta .section-title .text-highlight {
  color: var(--color-light-blue);
}

.final-cta .section-lede {
  max-width: 24rem;
  margin: 0;
  color: var(--color-steel);
  font-size: var(--text-md);
}

.final-cta__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 8.25rem;
  min-height: 4.5rem;
  transition: transform 180ms ease, background 180ms ease;
}

.site-footer {
  padding: 0;
  background: #020B14;
  color: var(--color-white);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(15rem, 1.3fr) repeat(2, minmax(9rem, 1fr));
  gap: clamp(2rem, 7vw, 7.5rem);
  padding-left: clamp(4rem, 9vw, 8.5rem);
  padding-right: clamp(4rem, 9vw, 8.5rem);
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.footer-brand h2 {
  max-width: 13rem;
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
}

.footer-brand h2::after {
  content: "2026";
  display: block;
  margin-top: 0.8rem;
  color: var(--color-light-blue);
}

.footer-brand p {
  max-width: 16rem;
  margin: 1.2rem 0 0;
  line-height: 1.55;
}

.footer-brand p,
.footer-legal,
.footer-column a {
  color: var(--color-steel);
}

.footer-links {
  display: contents;
}

.footer-column {
  display: grid;
  align-content: start;
}

.footer-column h3 {
  margin: 0 0 1.35rem;
  font-family: var(--font-display);
  font-size: var(--text-button);
  font-weight: 700;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
}

.footer-column h3::after {
  content: "";
  display: block;
  width: 2rem;
  height: 0.063rem;
  margin-top: 0.35rem;
  background: var(--color-light-blue);
}

.footer-column ul {
  display: grid;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-column a {
  font-size: var(--text-small);
}

.footer-social-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: -0.5rem;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
}

.footer-social-link svg {
  width: 0.56rem;
  height: 1.25rem;
}

.footer-social-link img {
  width: 1.125rem;
  height: 1.125rem;
}

.footer-legal {
  background: rgba(255, 255, 255, 0.035);
  font-size: var(--text-legal);
}

.footer-legal__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-left: clamp(4rem, 9vw, 8.5rem);
  padding-right: clamp(4rem, 9vw, 8.5rem);
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
}

.footer-legal__copyright {
  margin: 0;
}

.footer-legal__links {
  display: inline-flex;
  align-items: center;
  align-self: stretch;
  cursor: pointer;
  white-space: nowrap;
}

.footer-legal__links a {
  display: inline-flex;
  align-items: center;
  margin-top: -1.2rem;
  margin-bottom: -1.2rem;
  padding: 1.2rem 0.35rem;
  color: inherit;
  cursor: pointer;
  line-height: 1;
}

.footer-legal__links a + a::before {
  content: "|";
  padding-right: 0.7rem;
  cursor: pointer;
  pointer-events: none;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(var(--ticker-shift, -25%));
  }
}

@media (prefers-reduced-motion: reduce) {

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

@media (max-width: 72rem) {
  .hero__logo {
    display: none;
  }
}

@media (max-width: 58rem) {
  .site-header {
    align-items: flex-start;
  }

  .site-nav {
    display: none;
  }

  .hero {
    min-height: 46rem;
  }

  .hero__inner {
    gap: 2rem;
  }

  .hero__copy {
    width: min(100%, 30rem);
  }

  .hero__logo {
    width: 8rem;
  }

  .split,
  .section-heading--split,
  .speaker-card {
    grid-template-columns: 1fr;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .topic-grid,
  .reason-grid,
  .stat-grid {
    grid-template-columns: 1fr 1fr;
  }

  .topic-grid {
    grid-template-rows: none;
    max-height: none;
  }

  .topics .section-heading {
    grid-template-columns: 1fr;
  }

  .why-join .section-heading {
    grid-template-columns: 1fr;
  }

  .speakers--current .section-heading {
    grid-template-columns: 1fr;
  }

  #speakers-2025 .section-heading {
    grid-template-columns: 1fr;
  }

  #speakers-2025 .speaker-groups {
    grid-template-columns: 1fr 1fr;
  }

  .previous-event__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .programme-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

  .topic-card:first-child {
    grid-row: auto;
  }

  .topic-card,
  .topic-card img,
  .topic-card:first-child,
  .topic-card:first-child img {
    min-height: 24rem;
  }

  .session--no-time .session__time {
    display: block;
    visibility: hidden;
  }
}

@media (max-width: 58rem) {
  .site-header {
    padding-right: 1rem;
  }

  .menu-toggle {
    display: flex;
    order: 2;
  }

  .site-nav {
    position: fixed;
    top: 4.026rem;
    right: 0;
    bottom: auto;
    z-index: 19;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: flex-start;
    width: 25vw;
    height: calc(100dvh - 4.026rem);
    min-height: calc(100vh - 4.026rem);
    padding: 2rem 2.4rem;
    gap: 1.125rem;
    background: var(--color-navy);
    box-shadow: 0 1.375rem 2.5rem rgba(0, 0, 0, 0.25);
    color: rgba(255, 255, 255, 0.85);
    overflow-y: auto;
    pointer-events: none;
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    transition:
      transform 360ms ease,
      opacity 240ms ease,
      visibility 0s linear 360ms;
  }

  .site-nav.is-open {
    pointer-events: auto;
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    transition:
      transform 360ms ease,
      opacity 240ms ease,
      visibility 0s linear 0s;
  }
}

@media (max-width: 38rem) {
  :root {
    --section-y: 1.875rem;
    --text-caption: 0.85rem;
    --text-hero: 3.35rem;
    --text-section-title: 3.25rem;
    --text-body: 1.1rem;
    --text-body-large: 1.2rem;
    --text-card-title: 2rem;
    --text-feature-title: 2rem;
    --text-programme-date: 2.6rem;
    --text-stat: 4rem;
  }

  .hero {
    min-height: 42rem;
  }

  .hero__inner {
    display: block;
  }

  .hero__copy {
    width: 100%;
  }

  .hero__logo {
    display: none;
  }

  .hero__title {
    line-height: 0.88;
  }

  .hero__date {
    letter-spacing: 0.18em;
    gap: 0.75rem;
    max-width: 100%;
    padding: 1rem;
  }

  .site-nav {
    width: 100vw;
  }

  .topic-grid,
  .reason-grid,
  .stat-grid,
  #speakers-2025 .speaker-groups,
  .speaker-groups,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-grid,
  .footer-legal__inner {
    padding-left: 1rem;
    padding-right: 1rem;
    flex-direction: column;
  }

  .topic-card,
  .topic-card img {
    min-height: 18rem;
  }

  .stat {
    border-right: 0;
    border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.16);
  }

  .stat:last-child {
    border-bottom: 0;
  }

  .programme-tabs {
    grid-template-columns: 1fr;
  }

  .session,
  .session--no-time {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    padding: 1rem;
  }

  .session--no-time .session__time {
    display: none;
  }

  .reason {
    min-height: auto;
  }
}
