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

:root {
  --blue: #004b87;
  --royal: #1d4289;
  --violet: #24125f;
  --slate: #768692;
  --ink: #10113d;
  --deep: #090b2c;
  --paper: #f5f7fa;
  --white: #ffffff;
  --line: rgba(16, 17, 61, 0.16);
  --container: min(1200px, calc(100vw - 64px));
  --oswald: "Oswald", "Arial Narrow", Arial, sans-serif;
  --arial: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--arial);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--white);
  transform: translateY(-160%);
}

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

.container {
  width: var(--container);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(9, 11, 44, 0.96);
  box-shadow: 0 12px 40px rgba(9, 11, 44, 0.22);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--white);
  text-decoration: none;
  white-space: nowrap;
}

.brand-logo {
  display: block;
  width: 136px;
  height: auto;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2.1vw, 32px);
  margin-left: auto;
}

.main-nav a,
.header-cta {
  font-family: var(--oswald);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.025em;
  text-decoration: none;
}

.main-nav a {
  color: rgba(255, 255, 255, 0.78);
  transition: color 140ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--white);
}

.header-cta {
  padding: 10px 15px;
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.menu-button,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: 860px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 77% 42%, rgba(29, 66, 137, 0.8), transparent 28%),
    radial-gradient(circle at 17% 78%, rgba(0, 75, 135, 0.36), transparent 33%),
    linear-gradient(135deg, #080a2b 0%, #131349 48%, #23115e 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(9, 11, 44, 0.2), transparent 60%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.23;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to right, black, transparent 68%);
}

.contours {
  position: absolute;
  fill: none;
  stroke: rgba(124, 200, 232, 0.3);
  stroke-width: 1.15;
}

.contours-left {
  width: min(52vw, 700px);
  left: -110px;
  bottom: -120px;
}

.contours-right {
  width: min(54vw, 760px);
  right: -140px;
  top: 40px;
  transform: rotate(12deg);
}

.hero-layout {
  position: relative;
  z-index: 2;
  min-height: 710px;
  padding-top: 150px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 60px;
}

.eyebrow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-bottom: 48px;
  color: rgba(255, 255, 255, 0.84);
  font-family: var(--oswald);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.eyebrow span:first-child {
  color: var(--white);
}

.hero-type {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--oswald);
  font-size: clamp(16px, 1.5vw, 21px);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.hero-wordmark-heading {
  margin: 0;
}

.hero-wordmark {
  display: block;
  width: min(100%, 720px);
  height: auto;
}

.hero-thesis {
  margin: 28px 0 0;
  max-width: 600px;
  font-family: var(--oswald);
  font-size: clamp(25px, 3.1vw, 42px);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 42px;
}

.button {
  min-height: 50px;
  padding: 14px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border: 1px solid transparent;
  border-radius: 0;
  font-family: var(--oswald);
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: color 150ms ease, background 150ms ease, border-color 150ms ease, transform 150ms ease;
}

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

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

.button-light:hover,
.button-light:focus-visible {
  background: #c4ecff;
}

.button-outline {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
}

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

.button-primary {
  color: var(--white);
  background: var(--royal);
}

.hero-datum {
  position: relative;
  width: min(37vw, 490px);
  aspect-ratio: 1;
  justify-self: end;
}

.datum-core {
  position: absolute;
  inset: 18%;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.38);
  color: var(--white);
  background:
    repeating-linear-gradient(165deg, transparent 0 18px, rgba(255, 255, 255, 0.07) 19px 20px),
    radial-gradient(circle at 36% 31%, #447daf 0 4%, transparent 4.5%),
    linear-gradient(145deg, rgba(0, 75, 135, 0.97), rgba(36, 18, 95, 0.76));
  box-shadow:
    0 0 0 20px rgba(255, 255, 255, 0.025),
    0 0 90px rgba(91, 188, 229, 0.2);
}

.datum-core::after {
  content: "";
  position: absolute;
  width: 150%;
  height: 36%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: rotate(-18deg);
}

.datum-core strong {
  font-family: var(--arial);
  font-size: clamp(80px, 9vw, 132px);
  line-height: 0.9;
  letter-spacing: -0.09em;
}

.datum-label,
.datum-caption,
.datum-word {
  font-family: var(--oswald);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.datum-label {
  font-size: 14px;
}

.datum-caption {
  margin-top: 12px;
  font-size: 11px;
  opacity: 0.72;
}

.datum-orbit,
.datum-axis {
  position: absolute;
  pointer-events: none;
}

.datum-orbit {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.orbit-one {
  inset: 4%;
}

.orbit-two {
  inset: 0 20%;
  transform: rotate(42deg);
}

.datum-axis {
  background: rgba(255, 255, 255, 0.18);
}

.axis-x {
  top: 50%;
  left: -5%;
  width: 110%;
  height: 1px;
}

.axis-y {
  top: -5%;
  left: 50%;
  width: 1px;
  height: 110%;
}

.datum-word {
  position: absolute;
  font-size: 11px;
  color: #a7d9ef;
}

.word-one {
  top: 4%;
  left: 52%;
}

.word-two {
  right: -4%;
  bottom: 27%;
  transform: rotate(90deg);
}

.word-three {
  bottom: 3%;
  left: 10%;
}

.hero-metrics {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-metrics div {
  min-height: 112px;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-metrics div:first-child {
  padding-left: 0;
}

.hero-metrics div:last-child {
  border-right: 0;
}

.hero-metrics strong {
  font-family: var(--arial);
  font-size: 36px;
  line-height: 1;
}

.hero-metrics span {
  max-width: 118px;
  color: rgba(255, 255, 255, 0.68);
  font-family: var(--oswald);
  font-size: 14px;
  line-height: 1.2;
  text-transform: uppercase;
}

.section {
  padding: 120px 0;
}

.section-index,
.card-kicker,
.status-label {
  margin: 0 0 22px;
  color: var(--royal);
  font-family: var(--oswald);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.section-index-light {
  color: #98d7f4;
}

h2,
h3,
p {
  overflow-wrap: break-word;
}

h2 {
  margin: 0;
  font-family: var(--oswald);
  font-size: clamp(44px, 5.2vw, 76px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.split-heading {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 10%;
  align-items: start;
}

.intro {
  background: var(--white);
}

.intro-copy {
  padding-top: 40px;
  border-top: 1px solid var(--line);
}

.intro-copy p {
  max-width: 720px;
  margin: 0;
  color: #465060;
  font-size: 17px;
}

.intro-copy .lead {
  margin-bottom: 26px;
  color: var(--ink);
  font-family: var(--oswald);
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 300;
  line-height: 1.3;
}

.directions {
  background: var(--paper);
}

.section-bar {
  margin-bottom: 58px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 48px;
}

.section-note {
  max-width: 390px;
  margin: 0 0 4px;
  color: #5b6675;
  font-size: 16px;
}

.direction-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(16, 17, 61, 0.14);
  border: 1px solid rgba(16, 17, 61, 0.14);
}

.direction-card {
  min-height: 430px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--white);
}

.direction-primary {
  background: var(--blue);
}

.direction-blue {
  background: var(--royal);
}

.direction-violet {
  background: var(--violet);
}

.card-number {
  align-self: flex-end;
  color: rgba(255, 255, 255, 0.48);
  font-family: var(--arial);
  font-size: 34px;
  font-weight: 700;
}

.card-kicker {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.65);
}

.direction-card h3 {
  margin: 0 0 20px;
  font-family: var(--oswald);
  font-size: clamp(36px, 3.6vw, 54px);
  font-weight: 400;
  line-height: 1;
}

.direction-card p:last-child {
  max-width: 330px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.program {
  color: var(--white);
  background: var(--deep);
}

.program-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 9%;
  align-items: start;
}

.program-heading > p:last-child {
  max-width: 430px;
  margin: 32px 0 0;
  color: rgba(255, 255, 255, 0.58);
}

.program-board {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.program-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.program-tabs button {
  padding: 20px 0;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.42);
  background: transparent;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  font-family: var(--oswald);
  cursor: pointer;
  text-align: left;
}

.program-tabs button:last-child {
  padding-left: 24px;
  border-right: 0;
}

.program-tabs button[aria-selected="true"] {
  color: var(--white);
}

.program-tabs span {
  font-size: 22px;
}

.program-tabs small {
  padding-right: 24px;
  font-family: var(--arial);
  font-size: 12px;
}

.program-panel {
  min-height: 340px;
  padding: 58px 0 18px;
}

.program-panel .status-label {
  display: inline-block;
  padding: 8px 11px;
  color: var(--ink);
  background: #98d7f4;
}

.program-panel h3 {
  margin: 22px 0 18px;
  font-family: var(--oswald);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 400;
}

.program-panel p:not(.status-label) {
  max-width: 560px;
  margin: 0 0 38px;
  color: rgba(255, 255, 255, 0.65);
}

.program-panel a {
  color: var(--white);
  font-family: var(--oswald);
  text-underline-offset: 6px;
}

.partners {
  background: var(--white);
}

.partners-layout {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 10%;
  align-items: end;
}

.partners-status {
  padding: 34px 0 6px;
  border-top: 1px solid var(--line);
}

.partners-status > p:not(.status-label) {
  margin: 0 0 30px;
  color: #5b6675;
}

.status-label-dark {
  color: var(--royal);
}

.text-link {
  padding: 0 0 6px;
  color: var(--ink);
  background: none;
  border: 0;
  border-bottom: 1px solid currentColor;
  font-family: var(--oswald);
  font-size: 18px;
  cursor: pointer;
}

.registration {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    var(--violet);
  background-size: 80px 100%;
}

.registration-inner {
  display: grid;
  grid-template-columns: 0.32fr 1fr 0.75fr;
  gap: 5%;
  align-items: start;
}

.registration-copy p {
  max-width: 580px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.registration-copy a {
  color: var(--white);
  text-underline-offset: 4px;
}

.button-disabled {
  opacity: 0.62;
  cursor: not-allowed;
  pointer-events: none;
}

.registration-actions {
  padding-top: 6px;
  display: grid;
  gap: 12px;
}

.button-wide {
  width: 100%;
}

.archive {
  background: var(--paper);
}

.archive-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 18px;
}

.archive-card {
  min-height: 410px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.archive-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(16, 17, 61, 0.12);
}

.archive-topline,
.archive-caption {
  font-family: var(--oswald);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.archive-topline {
  display: flex;
  justify-content: space-between;
}

.archive-2025 {
  color: var(--white);
  background:
    radial-gradient(circle at 70% 70%, rgba(50, 130, 175, 0.52), transparent 34%),
    var(--deep);
}

.archive-2025 img {
  width: min(78%, 520px);
  height: auto;
  object-fit: contain;
  object-position: left center;
}

.archive-2024 {
  color: var(--ink);
  background: #dbe9f0;
}

.archive-2024 strong {
  font-family: var(--oswald);
  font-size: clamp(54px, 7vw, 90px);
  font-weight: 500;
  line-height: 0.8;
  letter-spacing: -0.06em;
}

.archive-2024 strong span {
  color: var(--royal);
  font-family: var(--arial);
}

.contacts {
  color: var(--white);
  background: var(--blue);
}

.contacts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1px;
  margin-top: 48px;
  background: rgba(255, 255, 255, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.contacts-heading,
.contact-card {
  min-height: 340px;
  padding: 34px;
  background: var(--blue);
}

.contacts-heading {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contacts-heading h2 {
  font-size: clamp(42px, 4vw, 60px);
}

.contacts-heading p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
}

.contact-card {
  display: flex;
  flex-direction: column;
}

.contact-card > p {
  margin: 0 0 42px;
  color: #b6e5fa;
  font-family: var(--oswald);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-card h3 {
  margin: 0 0 auto;
  font-family: var(--oswald);
  font-size: clamp(27px, 2.4vw, 36px);
  font-weight: 400;
  line-height: 1.12;
}

.contact-card a {
  margin-top: 12px;
  color: var(--white);
  font-size: 14px;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.site-footer {
  color: var(--white);
  background: var(--deep);
}

.footer-inner {
  min-height: 145px;
  display: grid;
  grid-template-columns: 0.9fr 1fr 0.8fr 1.4fr auto;
  gap: 32px;
  align-items: center;
}

.footer-inner p,
.footer-inner > a:not(.brand) {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
}

.footer-inner > a:not(.brand) {
  text-underline-offset: 4px;
}

.footer-legal {
  display: grid;
  gap: 6px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  text-underline-offset: 4px;
}

.content-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 32px;
  color: var(--ink);
  background: var(--white);
}

.program .content-empty {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.partner-placeholder {
  display: grid;
  width: 100%;
  min-height: 120px;
  place-items: center;
  color: var(--royal);
  background: #eef3f8;
  font-family: var(--oswald);
  font-size: 40px;
  font-weight: 600;
}

.info-dialog {
  width: min(600px, calc(100vw - 32px));
  padding: 0;
  color: var(--ink);
  background: var(--white);
  border: 0;
  box-shadow: 0 30px 100px rgba(9, 11, 44, 0.42);
}

.info-dialog::backdrop {
  background: rgba(9, 11, 44, 0.72);
  backdrop-filter: blur(4px);
}

.dialog-inner {
  position: relative;
  padding: 52px;
}

.dialog-inner h2 {
  max-width: 450px;
  font-size: clamp(38px, 6vw, 58px);
}

.dialog-inner > p:not(.section-index) {
  margin: 26px 0 34px;
  color: #5b6675;
}

.dialog-close {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 38px;
  height: 38px;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid #7cd3fa;
  outline-offset: 3px;
}

[hidden] {
  display: none !important;
}

@media (max-width: 1080px) {
  :root {
    --container: min(100% - 40px, 960px);
  }

  .main-nav {
    display: none;
  }

  .header-cta {
    margin-left: auto;
  }

  .menu-button {
    width: 42px;
    height: 42px;
    padding: 11px 9px;
    display: grid;
    align-content: center;
    gap: 7px;
    color: var(--white);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.35);
    cursor: pointer;
  }

  .menu-button span {
    width: 100%;
    height: 1px;
    display: block;
    background: currentColor;
    transition: transform 160ms ease;
  }

  .menu-button[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .mobile-nav {
    position: fixed;
    inset: 78px 0 auto;
    padding: 26px max(20px, calc((100vw - 960px) / 2));
    display: none;
    flex-direction: column;
    background: var(--deep);
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 24px 50px rgba(9, 11, 44, 0.28);
  }

  .mobile-nav.is-open {
    display: flex;
  }

  .mobile-nav a {
    padding: 13px 0;
    font-family: var(--oswald);
    font-size: 22px;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .mobile-nav .mobile-cta {
    margin-top: 14px;
    padding: 15px 18px;
    color: var(--ink);
    background: var(--white);
    border: 0;
  }

  .hero-layout {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 24px;
  }

  .hero-datum {
    width: min(42vw, 430px);
  }

  .registration-inner {
    grid-template-columns: 0.3fr 1fr;
  }

  .registration-actions {
    grid-column: 2;
    width: min(100%, 480px);
  }

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

  .contacts-heading {
    grid-column: 1 / -1;
    min-height: 250px;
  }
}

@media (max-width: 760px) {
  :root {
    --container: calc(100% - 32px);
  }

  html {
    scroll-padding-top: 72px;
  }

  .header-inner {
    min-height: 70px;
  }

  .header-cta {
    display: none;
  }

  .mobile-nav {
    inset: 70px 0 auto;
    max-height: calc(100svh - 70px);
    overflow-y: auto;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    background-size: 52px 52px;
  }

  .contours-left {
    width: 110vw;
  }

  .contours-right {
    width: 120vw;
    top: 160px;
    right: -66vw;
  }

  .hero-layout {
    min-height: auto;
    padding: 126px 0 32px;
    grid-template-columns: 1fr;
    align-content: start;
  }

  .eyebrow {
    margin-bottom: 68px;
  }

  .hero-wordmark {
    width: min(100%, 620px);
  }

  .hero-datum {
    position: absolute;
    z-index: -1;
    width: 330px;
    right: -150px;
    top: 370px;
    opacity: 0.48;
  }

  .hero-thesis {
    font-size: 29px;
  }

  .hero-actions {
    margin-top: 34px;
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .hero-metrics div {
    min-height: 82px;
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .hero-metrics div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 82px 0;
  }

  h2 {
    font-size: clamp(42px, 13vw, 60px);
  }

  .split-heading,
  .program-layout,
  .partners-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .intro-copy {
    padding-top: 28px;
  }

  .section-bar {
    margin-bottom: 38px;
    display: grid;
    gap: 24px;
  }

  .direction-grid,
  .archive-grid {
    grid-template-columns: 1fr;
  }

  .direction-card {
    min-height: 340px;
    padding: 24px;
  }

  .program-board {
    margin-top: 4px;
  }

  .program-tabs button {
    padding: 16px 0;
    display: grid;
    gap: 4px;
  }

  .program-tabs button:last-child {
    padding-left: 16px;
  }

  .program-tabs small {
    padding: 0;
  }

  .program-panel {
    min-height: 310px;
    padding-top: 42px;
  }

  .registration-inner {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .registration-actions {
    grid-column: auto;
    width: 100%;
    margin-top: 20px;
  }

  .archive-card {
    min-height: 330px;
    padding: 22px;
  }

  .archive-2025 img {
    width: 94%;
  }

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

  .contacts-heading {
    grid-column: auto;
    min-height: 270px;
  }

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

  .footer-inner {
    padding: 46px 0;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .dialog-inner {
    padding: 44px 24px 28px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Landing-page editorial system */
.mgri-mark {
  width: 174px;
  height: 50px;
  padding: 0;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  text-decoration: none;
}

.mgri-mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.main-nav {
  gap: clamp(14px, 1.55vw, 25px);
}

.section-title {
  margin: 0 0 clamp(54px, 6vw, 88px);
  color: var(--ink);
  font-family: var(--oswald);
  font-size: clamp(76px, 11.2vw, 158px);
  font-weight: 600;
  line-height: 0.82;
  letter-spacing: -0.055em;
  text-align: center;
  text-transform: uppercase;
}

.section-title-light {
  color: var(--white);
}

.section-intro-center,
.moments-intro {
  max-width: 700px;
  margin: -38px auto 54px;
  color: #526171;
  font-size: 18px;
  text-align: center;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 10%;
  align-items: start;
}

.about-statement,
.program-heading h3,
.partners-layout h3,
.registration-copy h3,
.contacts-heading h3 {
  margin: 0;
  font-family: var(--oswald);
  font-weight: 400;
  letter-spacing: -0.04em;
}

.about-statement {
  max-width: 520px;
  color: var(--royal);
  font-size: clamp(42px, 5.2vw, 72px);
  line-height: 1;
}

.intro-copy {
  padding-top: 12px;
}

.forum-moments {
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(0, 75, 135, 0.96), rgba(36, 18, 95, 0.98)),
    var(--deep);
}

.moments-intro {
  color: rgba(255, 255, 255, 0.7);
}

.moments-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 250px 250px;
  gap: 12px;
}

.moment {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: var(--deep);
}

.moment::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9, 11, 44, 0.72), transparent 46%);
  pointer-events: none;
}

.moment img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.04);
  transition: transform 420ms ease, filter 420ms ease;
}

.moment:hover img {
  transform: scale(1.025);
  filter: saturate(1.04) contrast(1.04);
}

.moment figcaption {
  position: absolute;
  z-index: 2;
  left: 22px;
  bottom: 18px;
  font-family: var(--oswald);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.moment-wide {
  grid-column: 1 / 8;
  grid-row: 1 / 3;
}

.moment-tall {
  grid-column: 8 / 11;
  grid-row: 1 / 3;
}

.moment-small {
  grid-column: 11 / 13;
  grid-row: 1;
}

.moments-accent {
  grid-column: 11 / 13;
  grid-row: 2;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--ink);
  background: #8edcff;
}

.moments-accent strong {
  font-family: var(--arial);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 0.82;
  letter-spacing: -0.07em;
}

.moments-accent span {
  font-family: var(--oswald);
  font-size: 13px;
  line-height: 1.15;
  letter-spacing: 0.08em;
}

.directions {
  position: relative;
  overflow: hidden;
  background: #c7ecfb;
}

.directions::before {
  content: "";
  position: absolute;
  width: 34vw;
  height: 34vw;
  right: -18vw;
  top: 8%;
  border: 80px solid rgba(36, 18, 95, 0.08);
  border-radius: 50%;
}

.directions .container {
  position: relative;
}

.directions .section-intro-center {
  color: #334d62;
}

.direction-grid {
  margin-top: 64px;
  gap: 12px;
  background: transparent;
  border: 0;
}

.direction-card {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.direction-card:hover {
  z-index: 2;
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(16, 17, 61, 0.22);
}

.direction-card::before {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  right: -120px;
  top: -120px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  box-shadow: 0 0 0 38px rgba(255, 255, 255, 0.045);
}

.card-number {
  position: relative;
  font-size: 56px;
  line-height: 1;
}

.program {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    var(--royal);
  background-size: 80px 100%;
}

.program::after {
  content: "";
  position: absolute;
  width: 410px;
  height: 410px;
  left: -250px;
  bottom: -250px;
  border: 80px solid rgba(142, 220, 255, 0.17);
  border-radius: 50%;
}

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

.program-layout {
  margin-top: 10px;
}

.program-heading h3 {
  font-size: clamp(42px, 5vw, 68px);
  line-height: 0.98;
}

.program-board {
  background: rgba(9, 11, 44, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.program-tabs,
.program-panel {
  padding-inline: 28px;
}

.partners {
  background:
    linear-gradient(90deg, transparent 0 52%, rgba(29, 66, 137, 0.035) 52% 100%),
    var(--paper);
}

.partners-layout {
  grid-template-columns: 1fr 0.72fr;
  margin-bottom: 88px;
}

.partners-layout h3 {
  max-width: 650px;
  color: var(--royal);
  font-size: clamp(44px, 5.5vw, 76px);
  line-height: 0.98;
}

.partner-history {
  padding-top: 42px;
  border-top: 2px solid var(--ink);
}

.partner-history-heading {
  margin-bottom: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
}

.partner-history-heading h3 {
  margin: 0;
  font-family: var(--oswald);
  font-size: clamp(31px, 3vw, 44px);
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.partner-history-heading p {
  max-width: 560px;
  margin: 0;
  color: #5b6675;
}

.partner-logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.partner-logo-grid img {
  width: 100%;
  height: auto;
  display: block;
  background: var(--white);
}

.registration {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.055) 25%, transparent 25%) 0 0 / 48px 48px,
    var(--violet);
}

.registration::before {
  content: "";
  position: absolute;
  width: 22vw;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 75, 135, 0.38);
  clip-path: polygon(0 0, 100% 0, 38% 100%, 0 100%);
}

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

.registration-inner {
  grid-template-columns: 1fr 0.72fr;
  gap: 10%;
}

.registration-copy h3 {
  font-size: clamp(46px, 6vw, 82px);
  line-height: 0.98;
}

.archive {
  background: #bdeaff;
}

.archive .section-intro-center {
  color: #334d62;
}

.archive-card {
  min-height: 440px;
}

.contacts .section-title {
  margin-bottom: 64px;
}

.contacts-heading h3 {
  font-size: clamp(42px, 4vw, 60px);
  line-height: 1;
}

.dialog-kicker {
  margin: 0 0 22px !important;
  color: var(--royal) !important;
  font-family: var(--oswald);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

@media (max-width: 1080px) {
  .mgri-mark {
    margin-right: auto;
  }

  .partner-logo-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .moments-grid {
    grid-template-rows: 230px 230px;
  }

  .moment-wide {
    grid-column: 1 / 9;
  }

  .moment-tall {
    grid-column: 9 / 13;
  }

  .moment-small,
  .moments-accent {
    display: none;
  }
}

@media (max-width: 760px) {
  .header-inner {
    gap: 12px;
  }

  .brand-logo {
    width: 116px;
  }

  .mgri-mark {
    width: 124px;
    height: 42px;
    padding: 0;
  }

  .section-title {
    margin-bottom: 42px;
    font-size: clamp(58px, 18vw, 94px);
    line-height: 0.88;
  }

  .section-intro-center,
  .moments-intro {
    margin: -14px auto 36px;
    font-size: 16px;
  }

  .about-grid,
  .partners-layout,
  .partner-history-heading {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .about-statement {
    font-size: 44px;
  }

  .moments-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 330px 260px;
  }

  .moment-wide {
    grid-column: 1 / 3;
    grid-row: 1;
  }

  .moment-tall {
    grid-column: 1;
    grid-row: 2;
  }

  .moment-small {
    grid-column: 2;
    grid-row: 2;
    display: block;
  }

  .moments-accent {
    display: none;
  }

  .direction-grid {
    margin-top: 38px;
  }

  .direction-card {
    min-height: 370px;
  }

  .program-layout {
    gap: 42px;
  }

  .program-heading h3 {
    font-size: 46px;
  }

  .program-tabs,
  .program-panel {
    padding-inline: 18px;
  }

  .partners-layout {
    margin-bottom: 58px;
  }

  .partners-layout h3 {
    font-size: 48px;
  }

  .partner-history-heading {
    gap: 18px;
  }

  .partner-logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .registration-inner {
    grid-template-columns: 1fr;
  }

  .registration-copy h3 {
    font-size: 52px;
  }

  .contacts-heading h3 {
    font-size: 46px;
  }
}

@media (max-width: 430px) {
  .mgri-mark {
    width: 94px;
    height: 38px;
    padding: 0;
  }

  .menu-button {
    width: 38px;
    height: 38px;
  }

  .section-title {
    font-size: clamp(50px, 17vw, 72px);
  }

  .moments-grid {
    grid-template-rows: 270px 220px;
  }
}

/* Program, speakers and internal archive */
.moments-accent {
  text-decoration: none;
  transition: background 160ms ease, transform 160ms ease;
}

.moments-accent:hover,
.moments-accent:focus-visible {
  background: var(--white);
  transform: translateY(-3px);
}

.program-more {
  margin-top: 34px;
}

.schedule-row {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.schedule-row:last-child {
  border-bottom: 0;
}

.schedule-row time {
  color: #9ee1ff;
  font-family: var(--oswald);
  font-size: 18px;
}

.schedule-row strong,
.schedule-row span {
  display: block;
}

.schedule-row strong {
  margin-bottom: 5px;
  font-family: var(--oswald);
  font-size: 19px;
  font-weight: 500;
  line-height: 1.25;
}

.schedule-row span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
  line-height: 1.45;
}

.speakers {
  background: #d9f1fb;
}

.speaker-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.speaker-card {
  min-width: 0;
  overflow: hidden;
  color: var(--white);
  background: var(--royal);
}

.speaker-card:nth-child(4n + 2) {
  background: var(--blue);
}

.speaker-card:nth-child(4n + 3) {
  background: var(--violet);
}

.speaker-card:nth-child(4n + 4) {
  background: #334d62;
}

.speaker-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  display: block;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.88) contrast(1.03);
  transition: transform 300ms ease, filter 300ms ease;
}

.speakers:not(.archive-speakers) .speaker-card {
  aspect-ratio: 7 / 9;
  display: grid;
  grid-template-rows: 56% 44%;
}

.speakers:not(.archive-speakers) .speaker-card img {
  height: 100%;
  aspect-ratio: auto;
}

.speakers:not(.archive-speakers) .speaker-card > div {
  min-height: 0;
  padding: 18px;
}

.speakers:not(.archive-speakers) .speaker-card h3 {
  font-size: clamp(23px, 2vw, 29px);
}

.speakers:not(.archive-speakers) .speaker-card p {
  font-size: 13px;
  line-height: 1.36;
}

.speaker-card:hover img {
  transform: scale(1.025);
  filter: saturate(1) contrast(1.03);
}

.speaker-card > div {
  min-height: 168px;
  padding: 22px;
}

.speaker-card h3 {
  margin: 0 0 12px;
  font-family: var(--oswald);
  font-size: clamp(24px, 2.2vw, 32px);
  font-weight: 400;
  line-height: 1;
}

.speaker-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.45;
}

.section-action {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.subpage-header {
  background: rgba(9, 11, 44, 0.97);
}

.subpage-nav {
  margin-left: auto;
}

.archive-landing-hero,
.year-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--deep);
}

.archive-landing-hero {
  min-height: 720px;
  background:
    radial-gradient(circle at 74% 42%, rgba(29, 66, 137, 0.82), transparent 30%),
    linear-gradient(135deg, #080a2b, #24125f);
}

.archive-hero-grid,
.year-hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.09) 1px, transparent 1px);
  background-size: 80px 80px;
}

.archive-landing-inner {
  position: relative;
  z-index: 1;
  min-height: 720px;
  padding: 158px 0 72px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.archive-kicker {
  margin: 0 0 26px;
  color: #9ee1ff;
  font-family: var(--oswald);
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.archive-landing-inner h1 {
  margin: 0;
  font-family: var(--oswald);
  font-size: clamp(90px, 15vw, 205px);
  font-weight: 600;
  line-height: 0.72;
  letter-spacing: -0.07em;
}

.archive-landing-inner h1 span {
  color: #9ee1ff;
  font-family: var(--arial);
  font-size: 0.55em;
  letter-spacing: -0.08em;
}

.archive-landing-inner > p:last-child {
  max-width: 620px;
  margin: 48px 0 0 auto;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
}

.archive-index-section {
  background: #c7ecfb;
}

.archive-facts {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.25);
}

.archive-facts article {
  min-height: 170px;
  padding: 28px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  background: var(--blue);
}

.archive-facts article:nth-child(2) {
  background: var(--royal);
}

.archive-facts article:nth-child(3) {
  background: var(--violet);
}

.archive-facts strong {
  font-family: var(--arial);
  font-size: clamp(38px, 5vw, 68px);
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.archive-facts span {
  max-width: 130px;
  font-family: var(--oswald);
  text-transform: uppercase;
}

.year-hero {
  min-height: 820px;
}

.year-hero-image,
.year-hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.year-hero-image {
  object-fit: cover;
}

.year-hero-overlay {
  background: linear-gradient(90deg, rgba(9, 11, 44, 0.94) 0%, rgba(9, 11, 44, 0.71) 53%, rgba(36, 18, 95, 0.26));
}

.year-hero-inner {
  position: relative;
  z-index: 2;
  min-height: 820px;
  padding: 160px 0 70px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.year-logo {
  width: min(620px, 72vw);
  height: auto;
  margin-bottom: 44px;
}

.year-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 32px;
  margin-bottom: 30px;
  color: #b7e9ff;
  font-family: var(--oswald);
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.year-hero h1 {
  max-width: 1040px;
  margin: 0;
  font-family: var(--oswald);
  font-size: clamp(50px, 7.2vw, 105px);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -0.05em;
}

.year-hero-2024 {
  background:
    radial-gradient(circle at 78% 32%, rgba(0, 75, 135, 0.88), transparent 30%),
    linear-gradient(135deg, #090b2c, #24125f);
}

.year-contours {
  position: absolute;
  width: min(90vw, 1100px);
  right: -10vw;
  bottom: -70px;
  fill: none;
  stroke: rgba(158, 225, 255, 0.32);
  stroke-width: 1.2;
}

.year-wordmark {
  position: relative;
  display: inline-block;
  width: fit-content;
  margin: 0 0 52px;
  font-family: var(--oswald);
  font-size: clamp(76px, 13vw, 175px);
  font-weight: 600;
  line-height: 0.78;
  letter-spacing: -0.065em;
}

.year-wordmark::after {
  display: none;
}

.year-wordmark span {
  display: block;
  margin-top: 20px;
  color: #9ee1ff;
  font-family: var(--arial);
  font-size: 0.5em;
  letter-spacing: -0.08em;
}

.archive-summary {
  background: var(--white);
}

.archive-about {
  margin-top: 72px;
}

.summary-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.summary-stat-grid article {
  min-height: 210px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--white);
  background: var(--blue);
}

.summary-stat-grid article:nth-child(2) {
  background: var(--royal);
}

.summary-stat-grid article:nth-child(3) {
  background: var(--violet);
}

.summary-stat-grid strong {
  font-family: var(--arial);
  font-size: clamp(68px, 8vw, 110px);
  line-height: 0.8;
  letter-spacing: -0.08em;
}

.summary-stat-grid span {
  font-family: var(--oswald);
  font-size: 20px;
  text-transform: uppercase;
}

.event-types,
.forum-topics,
.participants-section,
.media-section {
  color: var(--white);
  background: var(--deep);
}

.event-type-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.event-type-grid article {
  min-height: 320px;
  padding: 34px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-content: end;
  gap: 20px 34px;
  background: var(--royal);
}

.event-type-grid article:nth-child(2),
.event-type-grid article:nth-child(3) {
  background: var(--blue);
}

.event-type-grid article:nth-child(4) {
  background: var(--violet);
}

.event-type-grid span {
  align-self: start;
  color: #9ee1ff;
  font-family: var(--arial);
  font-size: 50px;
  font-weight: 700;
  line-height: 1;
}

.event-type-grid h3 {
  margin: 0;
  font-family: var(--oswald);
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 400;
  line-height: 0.95;
}

.event-type-grid p {
  grid-column: 2;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.full-program {
  background: #c7ecfb;
}

.archive-program-board {
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 20px 60px rgba(16, 17, 61, 0.1);
}

.archive-program-tabs {
  padding: 0 32px;
  color: var(--white);
  background: var(--royal);
}

.archive-program-panel {
  padding: 18px 32px 24px;
}

.agenda-row {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 32px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.agenda-row:last-child {
  border-bottom: 0;
}

.agenda-row time {
  color: var(--royal);
  font-family: var(--oswald);
  font-size: 22px;
  font-weight: 500;
}

.agenda-row h3 {
  margin: 0 0 8px;
  font-family: var(--oswald);
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 400;
  line-height: 1.12;
}

.agenda-row p {
  margin: 0;
  color: #5b6675;
}

.agenda-key,
.agenda-accent {
  margin-inline: -32px;
  padding-inline: 32px;
  color: var(--white);
  border: 0;
  background: var(--royal);
}

.agenda-accent {
  background: var(--blue);
}

.agenda-key time,
.agenda-accent time {
  color: #9ee1ff;
}

.agenda-key p,
.agenda-accent p {
  color: rgba(255, 255, 255, 0.7);
}

.archive-speakers {
  background: var(--paper);
}

.speaker-grid-all {
  grid-template-columns: repeat(4, 1fr);
}

.archive-partners {
  background: var(--white);
}

.media-section {
  background: var(--violet);
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 270px;
  gap: 10px;
}

.media-grid figure {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: var(--deep);
}

.media-grid .media-large {
  grid-column: span 2;
  grid-row: span 2;
}

.media-grid img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 320ms ease;
}

.media-grid figure:hover img {
  transform: scale(1.025);
}

.video-card {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--ink);
  background: #9ee1ff;
  text-decoration: none;
}

.video-play {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-size: 22px;
}

.video-card strong,
.video-card span:not(.video-play) {
  display: block;
}

.video-card strong {
  margin-bottom: 8px;
  font-family: var(--oswald);
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
}

.video-card span:not(.video-play) {
  font-size: 14px;
}

.media-credit {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  text-align: right;
}

.archive-year-nav {
  color: var(--white);
  background: var(--blue);
}

.archive-year-nav .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.archive-year-nav a {
  min-height: 190px;
  padding: 34px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
}

.archive-year-nav a:last-child {
  padding-left: 36px;
  border-left: 1px solid rgba(255, 255, 255, 0.28);
}

.archive-year-nav span {
  color: rgba(255, 255, 255, 0.64);
  font-family: var(--oswald);
  text-transform: uppercase;
}

.archive-year-nav strong {
  font-family: var(--arial);
  font-size: clamp(40px, 6vw, 78px);
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.topic-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.topic-columns article {
  min-height: 520px;
  padding: 38px;
  background: var(--royal);
}

.topic-columns article:last-child {
  background: var(--blue);
}

.topic-columns article > span {
  color: #9ee1ff;
  font-family: var(--arial);
  font-size: 58px;
  font-weight: 700;
}

.topic-columns h3 {
  margin: 60px 0 30px;
  font-family: var(--oswald);
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 400;
  line-height: 0.98;
}

.topic-columns ul,
.participant-columns ul {
  margin: 0;
  padding-left: 20px;
}

.topic-columns li {
  margin: 11px 0;
  color: rgba(255, 255, 255, 0.72);
}

.program-2024-date {
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: var(--white);
  background: var(--violet);
}

.program-2024-date span {
  color: #9ee1ff;
  font-family: var(--oswald);
  font-size: 18px;
  text-transform: uppercase;
}

.program-2024-date strong {
  font-family: var(--oswald);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 400;
}

.program-2024-list {
  background: var(--white);
  box-shadow: 0 20px 60px rgba(16, 17, 61, 0.1);
}

.program-2024-exhibition {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 0.35fr 0.65fr;
  background: var(--blue);
}

.program-2024-exhibition p {
  grid-column: 2;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.participant-lead {
  margin-bottom: 52px;
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 10%;
  align-items: end;
}

.participant-lead h3 {
  margin: 0;
  font-family: var(--oswald);
  font-size: clamp(42px, 5vw, 70px);
  font-weight: 400;
  line-height: 0.98;
}

.participant-lead p {
  margin: 0;
  color: rgba(255, 255, 255, 0.67);
}

.participant-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.participant-columns article {
  min-height: 390px;
  padding: 30px;
  background: var(--royal);
}

.participant-columns article:nth-child(2) {
  background: var(--blue);
}

.participant-columns article:nth-child(3) {
  background: var(--violet);
}

.participant-columns h3 {
  margin: 0 0 36px;
  font-family: var(--oswald);
  font-size: 32px;
  font-weight: 400;
}

.participant-columns li,
.participant-columns p {
  margin: 9px 0;
  color: rgba(255, 255, 255, 0.7);
}

.media-2024 {
  background: #c7ecfb;
}

.media-2024-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.material-card {
  min-height: 430px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--white);
  background: var(--blue);
  text-decoration: none;
  transition: transform 170ms ease;
}

.material-card:hover {
  transform: translateY(-5px);
}

.material-report {
  background: var(--violet);
}

.material-card > span,
.material-card small {
  font-family: var(--oswald);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.material-card strong {
  font-family: var(--oswald);
  font-size: clamp(52px, 6vw, 82px);
  font-weight: 500;
  line-height: 0.86;
  letter-spacing: -0.05em;
}

.material-card small {
  color: rgba(255, 255, 255, 0.66);
}

@media (max-width: 1080px) {
  .speaker-grid,
  .speaker-grid-all {
    grid-template-columns: repeat(3, 1fr);
  }

  .media-grid {
    grid-auto-rows: 230px;
  }
}

@media (max-width: 760px) {
  .archive-landing-hero,
  .archive-landing-inner {
    min-height: 650px;
  }

  .archive-landing-inner {
    padding-top: 130px;
  }

  .archive-landing-inner h1 {
    font-size: clamp(72px, 26vw, 118px);
    line-height: 0.78;
  }

  .archive-landing-inner > p:last-child {
    margin: 42px 0 0;
  }

  .archive-facts,
  .summary-stat-grid,
  .event-type-grid,
  .speaker-grid,
  .speaker-grid-all,
  .topic-columns,
  .participant-columns,
  .media-2024-grid {
    grid-template-columns: 1fr 1fr;
  }

  .archive-facts article {
    min-height: 145px;
  }

  .archive-facts article:last-child {
    grid-column: 1 / -1;
  }

  .year-hero,
  .year-hero-inner {
    min-height: 720px;
  }

  .year-hero-inner {
    padding: 132px 0 58px;
  }

  .year-logo {
    width: 90%;
  }

  .year-hero h1 {
    font-size: 52px;
  }

  .year-wordmark {
    font-size: clamp(68px, 23vw, 104px);
  }

  .summary-stat-grid article {
    min-height: 170px;
  }

  .summary-stat-grid article:last-child {
    grid-column: 1 / -1;
  }

  .archive-about {
    margin-top: 50px;
  }

  .event-type-grid article {
    min-height: 300px;
    padding: 24px;
    display: block;
  }

  .event-type-grid h3 {
    margin-top: 54px;
    font-size: 38px;
  }

  .event-type-grid p {
    margin-top: 20px;
  }

  .agenda-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .archive-program-tabs,
  .archive-program-panel {
    padding-inline: 18px;
  }

  .agenda-key,
  .agenda-accent {
    margin-inline: -18px;
    padding-inline: 18px;
  }

  .speaker-card > div {
    min-height: 152px;
    padding: 18px;
  }

  .speaker-card h3 {
    font-size: 27px;
  }

  .media-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 220px;
  }

  .media-grid .media-large {
    grid-column: 1 / -1;
    grid-row: span 1;
  }

  .archive-year-nav a {
    min-height: 150px;
  }

  .topic-columns article {
    min-height: 480px;
    padding: 25px;
  }

  .topic-columns h3 {
    margin-top: 38px;
    font-size: 38px;
  }

  .program-2024-date,
  .program-2024-exhibition {
    grid-template-columns: 1fr;
    display: grid;
  }

  .program-2024-exhibition p {
    grid-column: 1;
  }

  .participant-lead {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .participant-columns article {
    min-height: 350px;
  }
}

@media (max-width: 520px) {
  .archive-facts,
  .summary-stat-grid,
  .event-type-grid,
  .speaker-grid,
  .speaker-grid-all,
  .topic-columns,
  .participant-columns,
  .media-grid,
  .media-2024-grid {
    grid-template-columns: 1fr;
  }

  .archive-facts article:last-child,
  .summary-stat-grid article:last-child,
  .media-grid .media-large {
    grid-column: 1;
  }

  .event-type-grid article,
  .topic-columns article,
  .participant-columns article {
    min-height: auto;
  }

  .speaker-card > div {
    min-height: 138px;
  }

  .speakers:not(.archive-speakers) .speaker-card {
    aspect-ratio: 1 / 1;
  }

  .media-grid {
    grid-auto-rows: 270px;
  }

  .archive-year-nav .container {
    grid-template-columns: 1fr;
  }

  .archive-year-nav a:last-child {
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.28);
    border-left: 0;
  }

  .material-card {
    min-height: 330px;
  }
}

/* Confirmed 2026 program and event content */
.header-cta {
  flex: 0 0 auto;
  white-space: nowrap;
}

.events-2026 {
  color: var(--ink);
  background: var(--white);
}

.events-2026 .section-title {
  font-size: clamp(70px, 9.4vw, 136px);
}

.event-feature-grid,
.event-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.event-feature {
  min-width: 0;
  min-height: 470px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.event-feature-gintell {
  color: var(--white);
  background: var(--deep);
}

.event-feature-ai {
  color: var(--ink);
  background: #9ee1ff;
}

.event-logo-panel {
  min-height: 150px;
  padding: 28px;
  display: grid;
  place-items: center;
  background: var(--white);
}

.event-logo-panel img {
  width: min(100%, 480px);
  height: auto;
  display: block;
}

.event-date-mark {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.event-date-mark strong {
  font-family: var(--arial);
  font-size: clamp(100px, 12vw, 160px);
  line-height: 0.76;
  letter-spacing: -0.09em;
}

.event-date-mark span {
  font-family: var(--oswald);
  font-size: 18px;
  line-height: 1.25;
  text-align: right;
  text-transform: uppercase;
}

.event-feature-copy {
  margin-top: 56px;
}

.event-meta {
  margin: 0 0 14px;
  font-family: var(--oswald);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.event-feature-gintell .event-meta {
  color: #9ee1ff;
}

.event-feature h3,
.event-card h3,
.event-more h3 {
  margin: 0;
  font-family: var(--oswald);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.035em;
}

.event-feature h3 {
  max-width: 720px;
  font-size: clamp(36px, 4.2vw, 58px);
}

.event-feature-copy > p:last-child {
  max-width: 650px;
  margin: 24px 0 0;
  color: currentColor;
  opacity: 0.72;
}

.event-card-grid {
  margin-top: 14px;
}

.event-card {
  position: relative;
  min-width: 0;
  min-height: 430px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  color: var(--white);
  overflow: hidden;
}

.event-card-blue {
  background: var(--blue);
}

.event-card-violet {
  background: var(--violet);
}

.event-card-light {
  color: var(--ink);
  background: #d9f1fb;
}

.event-card-cyan {
  color: var(--ink);
  background: #9ee1ff;
}

.event-card h3 {
  max-width: 530px;
  font-size: clamp(36px, 4vw, 56px);
}

.event-card > p:not(.event-meta) {
  max-width: 570px;
  margin: 24px 0;
  color: currentColor;
  opacity: 0.74;
}

.event-partner-logo {
  min-height: 92px;
  margin: -30px -30px 28px;
  padding: 18px 30px;
  display: grid;
  place-items: center start;
  background: var(--white);
}

.event-partner-logo img {
  width: min(100%, 430px);
  height: auto;
  display: block;
}

.event-details {
  margin: auto 0 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.event-details summary {
  width: fit-content;
  font-family: var(--oswald);
  font-size: 17px;
  cursor: pointer;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
}

.event-details ul {
  margin: 20px 0 0;
  padding-left: 20px;
}

.event-details li {
  margin: 10px 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

.event-register {
  width: fit-content;
  margin-top: auto;
  font-family: var(--oswald);
  font-size: 17px;
  text-underline-offset: 6px;
}

.event-question {
  position: absolute;
  right: -10px;
  bottom: -65px;
  color: rgba(36, 18, 95, 0.1);
  font-family: var(--arial);
  font-size: 310px;
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
}

.event-card-cyan > *:not(.event-question) {
  position: relative;
  z-index: 1;
}

.event-more {
  margin-top: 14px;
  padding: 38px;
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 8%;
  color: var(--white);
  background: var(--royal);
}

.event-more h3 {
  font-size: clamp(34px, 4vw, 54px);
}

.event-more ul {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 32px;
  list-style: none;
}

.event-more li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.program-layout {
  grid-template-columns: minmax(250px, 0.62fr) minmax(0, 1.38fr);
  gap: 6%;
}

.program-status {
  width: fit-content;
  margin: 0 0 22px !important;
  padding: 8px 12px;
  color: var(--ink) !important;
  background: #9ee1ff;
  font-family: var(--oswald);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.program-board {
  overflow: hidden;
}

.program-panel {
  min-height: 0;
  padding-block: 8px 0;
}

.schedule-row {
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 22px;
  padding: 18px 0;
}

.schedule-row time {
  font-size: 16px;
  white-space: nowrap;
}

.schedule-row strong {
  font-size: 18px;
}

.schedule-key,
.schedule-accent {
  margin-inline: -28px;
  padding-inline: 28px;
  border: 0;
}

.schedule-key {
  background: rgba(9, 11, 44, 0.32);
}

.schedule-accent {
  background: rgba(158, 225, 255, 0.13);
}

.schedule-link {
  display: inline !important;
  color: #b9ebff !important;
  font-family: inherit !important;
  font-size: inherit;
}

.program-expand {
  padding: 0 28px 28px;
}

.program-toggle {
  width: 100%;
  min-height: 56px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.38);
  font-family: var(--oswald);
  font-size: 17px;
  cursor: pointer;
}

.program-toggle:hover,
.program-toggle:focus-visible {
  color: var(--ink);
  background: var(--white);
}

.program-toggle span:last-child {
  transition: transform 180ms ease;
}

.program-toggle[aria-expanded="true"] span:last-child {
  transform: rotate(180deg);
}

.speakers:not(.archive-speakers) .speaker-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.speakers:not(.archive-speakers) .speaker-card {
  aspect-ratio: 4 / 5;
  grid-template-rows: 57% 43%;
}

.speakers:not(.archive-speakers) .speaker-card > div {
  padding: 16px;
}

.speakers:not(.archive-speakers) .speaker-card h3 {
  font-size: clamp(22px, 1.85vw, 28px);
}

.speakers:not(.archive-speakers) .speaker-card p {
  font-size: 12px;
  line-height: 1.32;
}

.partners {
  background: var(--paper);
}

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

.confirmed-partner {
  min-width: 0;
  margin: 0;
  background: var(--white);
  border: 1px solid var(--line);
}

.confirmed-partner > div {
  min-height: 270px;
  padding: 42px;
  display: grid;
  place-items: center;
}

.confirmed-partner img {
  width: min(100%, 480px);
  max-height: 180px;
  display: block;
  object-fit: contain;
}

.confirmed-partner p {
  margin: 0;
  padding: 20px 26px;
  color: var(--white);
  background: var(--royal);
  font-family: var(--oswald);
  font-size: 17px;
}

@media (max-width: 1080px) {
  .event-feature {
    min-height: 440px;
    padding: 28px;
  }

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

@media (max-width: 760px) {
  .events-2026 .section-title {
    font-size: clamp(44px, 13vw, 66px);
  }

  .event-feature-grid,
  .event-card-grid,
  .event-more,
  .program-layout,
  .confirmed-partner-grid {
    grid-template-columns: 1fr;
  }

  .event-feature,
  .event-card {
    min-height: auto;
    padding: 24px;
  }

  .event-logo-panel {
    min-height: 120px;
    padding: 22px;
  }

  .event-feature-copy {
    margin-top: 46px;
  }

  .event-feature h3,
  .event-card h3 {
    font-size: 40px;
  }

  .event-card > p:not(.event-meta) {
    margin-bottom: 44px;
  }

  .event-details {
    margin-top: 0;
  }

  .event-partner-logo {
    margin: -24px -24px 24px;
    padding-inline: 24px;
  }

  .event-more {
    padding: 28px 24px;
    gap: 30px;
  }

  .event-more ul {
    grid-template-columns: 1fr;
  }

  .program-tabs,
  .program-panel {
    padding-inline: 16px;
  }

  .program-panel {
    padding-top: 6px;
  }

  .schedule-row {
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 17px 0;
  }

  .schedule-key,
  .schedule-accent {
    margin-inline: -16px;
    padding-inline: 16px;
  }

  .program-expand {
    padding: 0 16px 20px;
  }

  .speakers:not(.archive-speakers) .speaker-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .speakers:not(.archive-speakers) .speaker-card {
    aspect-ratio: auto;
    grid-template-rows: 210px auto;
  }

  .speakers:not(.archive-speakers) .speaker-card > div {
    min-height: 150px;
  }

  .speakers:not(.archive-speakers) .speaker-card p {
    font-size: 13px;
  }

  .confirmed-partner > div {
    min-height: 210px;
    padding: 30px;
  }
}

@media (max-width: 520px) {
  .speakers:not(.archive-speakers) .speaker-grid {
    grid-template-columns: 1fr;
  }

  .speakers:not(.archive-speakers) .speaker-card {
    grid-template-rows: minmax(280px, 92vw) auto;
  }

  .speakers:not(.archive-speakers) .speaker-card > div {
    min-height: 132px;
  }
}

/* Parallel program and complete 2026 speaker list */
.event-card-grid-main {
  margin-top: 0;
}

.event-card-deep {
  background: var(--deep);
}

.event-card-grid-main .event-card {
  min-height: 430px;
}

.event-card-grid-main .event-partner-logo {
  min-height: 132px;
  place-items: center;
}

.event-card-grid-main .event-partner-logo img {
  width: min(100%, 460px);
}

.program-layout {
  grid-template-columns: minmax(180px, 0.28fr) minmax(0, 1fr);
  gap: 4%;
}

.program-heading h3 {
  margin: 0;
  font-family: var(--oswald);
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 400;
  line-height: 0.98;
}

.program-heading > p:last-child {
  margin-top: 22px;
  font-size: 16px;
}

.program-panel {
  padding: 18px 20px 20px;
}

.program-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.program-event {
  min-width: 0;
  min-height: 195px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid rgba(255, 255, 255, 0.17);
}

.program-event-meta {
  margin-bottom: 26px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.program-event-meta time,
.program-event-meta span {
  color: #b9ebff;
  font-family: var(--oswald);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.25;
  text-transform: uppercase;
}

.program-event-meta span {
  max-width: 120px;
  color: rgba(255, 255, 255, 0.62);
  text-align: right;
}

.program-panel .program-event h3 {
  margin: auto 0 0;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.08;
}

.program-panel .program-event p:not(.status-label) {
  max-width: none;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
  line-height: 1.45;
}

.program-event-intensive {
  grid-column: 1 / -1;
  min-height: 0;
  padding: 22px;
}

.program-panel .program-event-intensive h3 {
  margin-top: 0;
  font-size: clamp(30px, 3.2vw, 46px);
}

.program-event-intensive > p {
  margin-bottom: 22px !important;
}

.intensive-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.intensive-grid > div {
  min-height: 142px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  background: var(--deep);
}

.intensive-grid time,
.intensive-grid strong,
.intensive-grid span {
  display: block;
}

.intensive-grid time {
  color: #9ee1ff;
  font-family: var(--oswald);
  font-size: 13px;
}

.intensive-grid strong {
  margin: 18px 0 12px;
  font-family: var(--oswald);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.25;
}

.intensive-grid span {
  margin-top: auto;
  color: rgba(255, 255, 255, 0.52);
  font-size: 13px;
}

.program-extra {
  margin-top: 30px;
}

.program-parallel-title {
  max-width: none !important;
  margin: 0 0 14px !important;
  color: var(--white) !important;
  font-family: var(--oswald);
  font-size: 20px !important;
  text-transform: uppercase;
}

.program-expand {
  padding: 0 20px 20px;
}

.speakers:not(.archive-speakers) .speaker-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
}

.speakers:not(.archive-speakers) .speaker-card {
  aspect-ratio: auto;
  display: grid;
  grid-template-rows: auto auto;
  overflow: visible;
}

.speakers:not(.archive-speakers) .speaker-card img,
.speaker-placeholder {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
}

.speakers:not(.archive-speakers) .speaker-card img {
  object-fit: cover;
  object-position: center 18%;
}

.speaker-placeholder {
  min-height: 0 !important;
  padding: 0 !important;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, transparent 49.7%, rgba(255, 255, 255, 0.14) 50%, transparent 50.3%),
    linear-gradient(45deg, transparent 49.7%, rgba(255, 255, 255, 0.1) 50%, transparent 50.3%),
    rgba(9, 11, 44, 0.3);
}

.speaker-placeholder span {
  font-family: var(--oswald);
  font-size: clamp(54px, 6vw, 92px);
  font-weight: 500;
  letter-spacing: -0.06em;
  opacity: 0.78;
}

.speakers:not(.archive-speakers) .speaker-card > div:not(.speaker-placeholder) {
  min-height: 0;
  padding: 18px;
}

.speakers:not(.archive-speakers) .speaker-card h3 {
  font-size: clamp(25px, 2.2vw, 32px);
}

.speakers:not(.archive-speakers) .speaker-card p {
  font-size: 14px;
  line-height: 1.42;
}

@media (max-width: 1080px) {
  .program-card-grid,
  .intensive-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 760px) {
  .program-layout,
  .program-card-grid,
  .intensive-grid {
    grid-template-columns: 1fr;
  }

  .program-heading {
    margin-bottom: 34px;
  }

  .program-panel {
    padding-inline: 14px;
  }

  .program-event {
    min-height: 170px;
  }

  .program-event-intensive {
    grid-column: 1;
  }

  .intensive-grid > div {
    min-height: 126px;
  }

  .program-expand {
    padding-inline: 14px;
  }

  .event-card-grid-main .event-card {
    min-height: auto;
  }

  .speakers:not(.archive-speakers) .speaker-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .speakers:not(.archive-speakers) .speaker-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Program flow, header contacts and equal speaker cards */
.header-inner {
  gap: 18px;
}

.main-nav {
  gap: clamp(10px, 1.1vw, 18px);
}

.program-extra {
  margin-top: 10px;
}

.intensive-grid {
  gap: 10px;
  background: transparent;
  border: 0;
}

.intensive-grid > div {
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid rgba(255, 255, 255, 0.17);
}

.speakers:not(.archive-speakers) .speaker-grid {
  grid-auto-rows: 1fr;
  align-items: stretch;
}

.speakers:not(.archive-speakers) .speaker-card {
  height: 100%;
  grid-template-rows: auto minmax(240px, 1fr);
}

.speakers:not(.archive-speakers) .speaker-card img,
.speaker-placeholder {
  aspect-ratio: 4 / 5;
}

.speakers:not(.archive-speakers) .speaker-card img {
  object-position: center top;
}

.speakers:not(.archive-speakers) .speaker-card > div:not(.speaker-placeholder) {
  min-height: 240px;
}

.speakers-controls {
  display: none;
}

@media (max-width: 760px) {
  .header-inner {
    gap: 12px;
  }

  .section-title {
    max-width: 100%;
    white-space: nowrap;
    overflow-wrap: normal;
    word-break: normal;
  }

  .speakers:not(.archive-speakers) .speaker-grid {
    grid-auto-rows: auto;
    gap: 8px;
  }

  .speakers:not(.archive-speakers) .speaker-grid:not(.is-expanded) .speaker-card:nth-child(n + 9) {
    display: none;
  }

  .speakers:not(.archive-speakers) .speaker-card {
    grid-template-rows: auto minmax(138px, 1fr);
  }

  .speakers:not(.archive-speakers) .speaker-card > div:not(.speaker-placeholder) {
    min-height: 138px;
    padding: 13px;
  }

  .speakers:not(.archive-speakers) .speaker-card h3 {
    font-size: clamp(19px, 5.6vw, 25px);
    line-height: 1.02;
  }

  .speakers:not(.archive-speakers) .speaker-card p {
    font-size: 11px;
    line-height: 1.32;
  }

  .speakers-controls {
    margin-top: 18px;
    display: flex;
  }

  .speakers-toggle {
    width: 100%;
    min-height: 54px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--white);
    background: var(--royal);
    border: 1px solid var(--royal);
    font-family: var(--oswald);
    font-size: 17px;
    cursor: pointer;
  }

  .speakers-toggle span:last-child {
    transition: transform 180ms ease;
  }

  .speakers-toggle[aria-expanded="true"] span:last-child {
    transform: rotate(180deg);
  }

  .program-layout {
    gap: 24px;
    row-gap: 24px;
  }

  .program {
    overflow: visible;
  }

  .program::after {
    display: none;
  }

  .program-heading {
    margin-bottom: 0;
  }

  .program-board,
  .program-panel,
  .program-extra {
    overflow: visible;
  }

  .program-expand {
    position: relative;
    padding: 12px 14px 24px;
  }

  .program-toggle {
    box-sizing: border-box;
  }
}

.archive-program-intro {
  margin: -44px auto 42px;
  text-align: center;
  font-family: var(--oswald);
  text-transform: uppercase;
}

.archive-program-intro p,
.archive-program-intro strong,
.archive-program-intro span {
  display: block;
  margin: 0;
}

.archive-program-intro p {
  color: #526171;
  font-size: 18px;
}

.archive-program-intro strong {
  margin-top: 7px;
  color: var(--royal);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
}

.archive-program-intro span {
  margin-top: 8px;
  color: var(--ink);
  font-size: 18px;
}

.archive-program-day {
  padding: 28px 0 24px;
  border-bottom: 1px solid var(--line);
}

.archive-program-day p,
.archive-program-day h3,
.archive-program-day span {
  margin: 0;
}

.archive-program-day p {
  color: var(--royal);
  font-family: var(--oswald);
  font-size: 18px;
}

.archive-program-day h3 {
  margin-top: 12px;
  color: var(--ink);
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1;
}

.archive-program-day span {
  display: block;
  margin-top: 8px;
  color: #526171;
  font-size: 16px;
}

.agenda-details {
  margin: 12px 0;
  padding-left: 20px;
  color: #526171;
}

.agenda-details li + li {
  margin-top: 8px;
}

.agenda-link {
  display: inline-block;
  margin-top: 12px;
  color: var(--royal);
  font-family: var(--oswald);
  font-weight: 500;
  text-underline-offset: 4px;
}

@media (max-width: 760px) {
  .archive-program-intro {
    margin: -18px auto 30px;
  }

  .archive-program-intro p,
  .archive-program-intro span {
    font-size: 14px;
  }

  .archive-program-day {
    padding-top: 22px;
  }
}

/* Legal information */
.legal-page {
  color: var(--ink);
  background: var(--paper);
}

.legal-header {
  color: var(--white);
  background: var(--deep);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.legal-header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.legal-back {
  color: rgba(255, 255, 255, 0.84);
  font-family: var(--oswald);
  font-size: 15px;
  text-underline-offset: 5px;
}

.legal-main {
  padding: 78px 0 110px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 780px);
  gap: 70px;
  justify-content: center;
}

.legal-aside {
  position: sticky;
  top: 28px;
  height: max-content;
  padding: 24px;
  color: var(--white);
  background: var(--violet);
}

.legal-aside > p,
.legal-kicker {
  margin: 0;
  font-family: var(--oswald);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.legal-aside nav {
  display: grid;
  gap: 13px;
  margin-top: 34px;
}

.legal-aside a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  text-underline-offset: 4px;
}

.legal-kicker {
  color: var(--royal);
}

.legal-content h1 {
  max-width: 720px;
  margin: 14px 0 30px;
  font-family: var(--oswald);
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.legal-lead {
  margin-bottom: 64px;
  font-size: 20px;
  line-height: 1.55;
}

.legal-content section {
  scroll-margin-top: 28px;
  padding: 34px 0;
  border-top: 1px solid var(--line);
}

.legal-content h2 {
  margin: 0 0 22px;
  font-family: var(--oswald);
  font-size: 28px;
  font-weight: 500;
}

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

.legal-content a {
  color: var(--royal);
  text-underline-offset: 4px;
}

.legal-details {
  margin: 24px 0;
  border-top: 1px solid var(--line);
}

.legal-details div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 22px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.legal-details dt {
  color: var(--slate);
  font-family: var(--oswald);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.legal-details dd {
  margin: 0;
}

.legal-updated {
  margin-top: 30px !important;
  color: var(--slate);
  font-size: 14px;
}

.legal-footer {
  color: rgba(255, 255, 255, 0.68);
  background: var(--deep);
}

.legal-footer .container {
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.legal-footer a {
  color: var(--white);
}

@media (max-width: 1000px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    padding: 32px 0;
  }

  .footer-inner > p:last-child {
    text-align: right;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .legal-aside {
    position: static;
  }

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

@media (max-width: 620px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-inner > p:last-child {
    text-align: left;
  }

  .legal-main {
    padding: 50px 0 76px;
  }

  .legal-back {
    font-size: 14px;
  }

  .legal-aside nav {
    grid-template-columns: 1fr;
  }

  .legal-lead {
    margin-bottom: 42px;
    font-size: 18px;
  }

  .legal-details div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .legal-footer .container {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }
}
/* GEONEXT_MGRI_HAMMERS_PATTERN */ .registration { background: url("./assets/mgri-hammers-pattern.svg") 0 0 / 96px 96px repeat, var(--violet); }
