:root {

  --bg-site: #fdfaf6;

  --terracotta: #c35b48;

  --gold: #e5c027;

  --green: #458962;

  --logo-green: #006b3f;

  --charcoal: #2b2926;

  --blue: #125592;

  --cream-strong: #fff7eb;

  --ink-soft: #6d6258;

  --line: rgba(43, 41, 38, 0.16);

  --shadow: 0 28px 70px rgba(43, 41, 38, 0.14);

  --container: min(1400px, calc(100% - 10vw));

  --nav-radius: 22px;

  --title-font: "Special Gothic Condensed One", Arial, sans-serif;

  --display-font: "Special Gothic Condensed One", Arial, sans-serif;

  --mini-font: "Google Sans", Arial, sans-serif;

}



*,

*::before,

*::after {

  box-sizing: border-box;

}



html {

  scroll-behavior: smooth;

}



body {

  margin: 0;

  overflow-x: hidden;

  background: var(--bg-site);

  color: var(--charcoal);

  font-family: "Marcellus", Georgia, serif;

  font-size: 1rem;

  line-height: 1.6;

  letter-spacing: 0;

}



body.menu-open {

  overflow: hidden;

}



img,

picture,

video,

canvas,

svg {

  display: block;

  max-width: 100%;

}



a {

  color: inherit;

  text-decoration: none;

}



button,

input,

select,

textarea {

  font: inherit;

}



button {

  border: 0;

  cursor: pointer;

}



.skip-link {

  position: fixed;

  top: 1rem;

  left: 1rem;

  z-index: 30;

  transform: translateY(-150%);

  border-radius: 4px;

  background: var(--green);

  color: var(--charcoal);

  padding: 0.8rem 1rem;

  font-family: var(--mini-font);

  font-weight: 700;

  transition: transform 180ms ease;

}



.skip-link:focus {

  transform: translateY(0);

}



/* Splash Screen */

.splash-screen {

  position: fixed;

  inset: 0;

  z-index: 9999;

  display: flex;

  align-items: center;

  justify-content: center;

  padding: clamp(1.5rem, 5vw, 4rem);

  background: #1f1d1a;

  opacity: 1;

  overflow: hidden;

  transition: opacity 650ms ease;

}



.splash-content {

  position: relative;

  z-index: 1;

  width: min(78vw, 760px);

  display: flex;

  flex-direction: column;

  align-items: center;

  gap: clamp(0.85rem, 1.8vw, 1.25rem);

  animation: splash-rise 850ms cubic-bezier(0.2, 0.7, 0.2, 1) both;

}



.splash-screen.hidden {

  opacity: 0;

  pointer-events: none;

}



.splash-screen.fade-out {

  opacity: 0;

}



.splash-logo {

  width: 100%;

  height: auto;

  object-fit: contain;

  filter: drop-shadow(0 24px 44px rgba(0, 0, 0, 0.36));

}



.splash-loading-bar {

  position: relative;

  width: min(48%, 260px);

  height: 10px;

  padding: 3px;

  background: rgba(255, 250, 242, 0.08);

  border: 1px solid rgba(229, 192, 39, 0.2);

  border-radius: 999px;

  box-shadow:

    inset 0 0 0 1px rgba(0, 0, 0, 0.28),

    0 16px 38px rgba(0, 0, 0, 0.28);

  overflow: hidden;

}



.splash-loading-bar::before {

  content: "";

  position: absolute;

  inset: 50% auto auto 50%;

  width: 112%;

  height: 1px;

  transform: translate(-50%, -50%);

  background: linear-gradient(90deg, transparent, rgba(255, 247, 235, 0.34), transparent);

  opacity: 0.55;

}



.splash-loading-progress {

  height: 100%;

  width: 0%;

  position: relative;

  background: linear-gradient(90deg, #8f6b20, var(--gold) 58%, #fff2a8);

  border-radius: inherit;

  box-shadow: 0 0 18px rgba(229, 192, 39, 0.42);

  transition: width 50ms linear;

}



.splash-loading-progress::after {

  content: "";

  position: absolute;

  inset: 0;

  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.72), transparent);

  transform: translateX(-100%);

  animation: splash-loader-sheen 1.35s ease-in-out infinite;

}



@keyframes splash-rise {

  from {

    opacity: 0;

    transform: translateY(16px) scale(0.985);

  }



  to {

    opacity: 1;

    transform: translateY(0) scale(1);

  }

}



@keyframes splash-loader-sheen {

  to {

    transform: translateX(140%);

  }

}



.site-header {

  position: fixed;

  inset: 0 0 auto;

  z-index: 20;

  padding-top: 0.8rem;

  color: var(--charcoal);

  pointer-events: none;

  transition: padding 180ms ease, opacity 180ms ease, transform 180ms ease;

}



.site-header.is-scrolled {

  padding-top: 0.45rem;

}



.site-header.is-hidden-over-pillars {

  opacity: 0;

  transform: translateY(calc(-100% - 1rem));

}



.nav-shell {

  position: relative;

  width: calc(100% - 1.25rem);

  max-width: 1400px;

  min-height: 64px;

  margin: 0 auto;

  display: flex;

  align-items: center;

  justify-content: flex-start;

  gap: 0.7rem;

  border-radius: var(--nav-radius);

  background: var(--charcoal);

  box-shadow: 0 18px 46px rgba(18, 21, 24, 0.2);

  padding: 0.45rem 0.85rem;

  pointer-events: auto;

  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;

}



.site-header.is-scrolled .nav-shell,

.site-header.past-hero .nav-shell {

  background: var(--charcoal);

  box-shadow: 0 16px 38px rgba(18, 21, 24, 0.13);

}



.brand {

  position: relative;

  z-index: 1;

  width: clamp(260px, 30vw, 420px);

  max-width: calc(100vw - 7.25rem);

  height: 52px;

  display: inline-flex;

  align-items: center;

  flex: 0 0 auto;

}



.brand-logo {

  display: block;

  width: 100%;

  height: 100%;

  object-fit: contain;

  object-position: left center;

}



.menu-toggle {

  position: relative;

  z-index: 2;

  flex: 0 0 48px;

  width: 48px;

  height: 48px;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  gap: 4px;

  border-radius: 12px;

  background: rgba(43, 41, 38, 0.95);

  margin-left: auto;

}



.menu-toggle span {

  width: 22px;

  height: 2px;

  display: block;

  background: #fffaf2;

  transition: transform 180ms ease, opacity 180ms ease;

}



.menu-toggle[aria-expanded="true"] span:nth-child(1) {

  transform: translateY(6px) rotate(45deg);

}



.menu-toggle[aria-expanded="true"] span:nth-child(2) {

  opacity: 0;

}



.menu-toggle[aria-expanded="true"] span:nth-child(3) {

  transform: translateY(-6px) rotate(-45deg);

}



.nav-panel {

  position: fixed;

  inset: calc(64px + 1.15rem) 0 0;

  z-index: 1;

  min-height: calc(100svh - 64px - 1.15rem);

  display: grid;

  align-content: center;

  gap: 0.35rem;

  padding: 2rem 6vw 4rem;

  background: rgba(43, 41, 38, 0.96);

  transform: translateX(100%);

  transition: transform 260ms ease;

}



.nav-panel.is-open {

  transform: translateX(0);

}



.nav-panel a,

.nav-contact-btn {

  min-height: 54px;

  display: flex;

  align-items: center;

  border-bottom: 1px solid rgba(255, 255, 255, 0.12);

  color: rgba(255, 255, 255, 0.85);

  font-family: var(--mini-font);

  font-size: 0.95rem;

  font-weight: 500;

  text-transform: uppercase;

}



.nav-contact-btn {

  width: 100%;

  background: none;

  padding: 0;

  cursor: pointer;

}



.nav-panel .nav-cta {

  position: relative;

  isolation: isolate;

  overflow: hidden;

  width: fit-content;

  min-width: 160px;

  justify-content: center;

  margin-top: 1rem;

  border: 3px solid rgba(69, 137, 98, 0.52);

  border-radius: 12px;

  background:

    linear-gradient(180deg, #3f815c 0%, #2a5f42 100%) padding-box,

    linear-gradient(180deg, rgba(126, 178, 145, 0.66), rgba(31, 74, 50, 0.92)) border-box;

  color: #fffaf2;

  padding: 0.72rem 1.45rem;

  font-size: 0.86rem;

  box-shadow:

    inset 0 1px 0 rgba(255, 255, 255, 0.16),

    inset 0 -1px 0 rgba(0, 0, 0, 0.26),

    0 2px 4px rgba(0, 0, 0, 0.48);

  text-shadow: none;

  transform: none;

  transition: all 180ms ease;

}



.nav-panel .nav-cta::before {

  display: none;

}



.nav-panel .nav-cta:hover,

.nav-panel .nav-cta:focus-visible {

  background:

    linear-gradient(180deg, #4b946b 0%, #32704d 100%) padding-box,

    linear-gradient(180deg, rgba(147, 199, 165, 0.76), rgba(38, 91, 62, 0.95)) border-box;

  color: #fffaf2;

  box-shadow:

    inset 0 1px 0 rgba(255, 255, 255, 0.18),

    inset 0 -1px 0 rgba(0, 0, 0, 0.24),

    0 4px 8px rgba(0, 0, 0, 0.48);

}



.hero {

  position: fixed;

  top: 0;

  left: 0;

  right: 0;

  z-index: 0;

  overflow: hidden;

  height: 100vh;

  height: 100svh;

  height: 100dvh;

  display: grid;

  align-items: center;

  isolation: isolate;

  background: #222222;

  color: #fffaf2;

  /* Reserve the fixed event top bar and navigation so hero copy is never covered. */

  padding: calc(164px + clamp(1rem, 3vh, 2rem)) 0 4.2rem;

}



/* Content slides over the fixed hero */

.hero + .section,

.hero ~ .section:not(.key-topics-section),

.hero ~ section:not(.key-topics-section) {

  position: relative;

  z-index: 1;

}



/* Spacer so content starts below the hero */

.hero + .section {

  margin-top: 100vh;

  margin-top: 100svh;

  margin-top: 100dvh;

  box-shadow: 0 -24px 80px rgba(0, 0, 0, 0.4);

}



.hero::before,

.hero::after {

  content: "";

  position: absolute;

  inset: 0;

  pointer-events: none;

}



.hero::before {

  z-index: 1;

  background: rgba(0, 0, 0, 0.35);

}



.hero::after {

  z-index: 1;

  background:

    linear-gradient(to bottom, rgba(34, 34, 34, 0.6) 0%, transparent 12%, transparent 70%, rgba(34, 34, 34, 0.8) 92%, #222222 100%);

}



.hero-video-bg {

  position: absolute;

  inset: 0;

  z-index: 0;

  overflow: hidden;

}



.hero-video {

  position: absolute;

  top: 58%;

  left: 50%;

  min-width: 100%;

  min-height: 100%;

  width: auto;

  height: auto;

  transform: translate(-50%, -50%);

  object-fit: cover;

  filter: grayscale(0.45);

}



/* Split hero: retain the existing film and copy at left, with a matching video panel at right. */

.hero--split .hero-video-bg {

  right: 28%;

  z-index: 1;

  /* Crossfade the left film over the first part of the right panel. */
  -webkit-mask-image: linear-gradient(90deg,
      #000 0%,
      #000 50%,
      rgba(0, 0, 0, 0.8) 68%,
      rgba(0, 0, 0, 0.35) 88%,
      transparent 100%);
  mask-image: linear-gradient(90deg,
      #000 0%,
      #000 50%,
      rgba(0, 0, 0, 0.8) 68%,
      rgba(0, 0, 0, 0.35) 88%,
      transparent 100%);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;

}



/* Keep the full left film dark enough for the hero content to remain legible. */
.hero--split .hero-video-bg::after {

  content: "";

  position: absolute;

  inset: 0;

  z-index: 1;

  background: rgba(0, 0, 0, 0.48);

  pointer-events: none;

}



.hero-secondary-video {

  position: absolute;

  inset: 0 0 0 60%;

  z-index: 0;

  overflow: hidden;

  background: #222222;

}



.hero-secondary-video video {

  width: 100%;

  height: 100%;

  /* Preserve the source proportions so the cards do not stretch on resize. */
  object-fit: cover;
  object-position: right 25%;

  filter: grayscale(0.45);

}



.hero--split::before {

  background: none;

}



.hero--split::after {

  background: linear-gradient(to bottom, rgba(34, 34, 34, 0.6) 0%, transparent 12%, transparent 70%, rgba(34, 34, 34, 0.8) 92%, #222222 100%);

}



.hero--split .hero-inner {

  width: 65%;

  margin-left: 0;

  padding-inline: clamp(1rem, 3vw, 4rem);

  text-align: left;

}



.hero--split .hero-inner h1 {

  margin-inline: 0;

  font-size: clamp(3rem, 11cqi, 7.5rem);

  text-align: left;

}



.hero--split .hero-subtitle,

.hero--split .seat-status {

  margin-inline: 0;

}



.hero--split .hero-footer {

  right: auto;

  width: 65%;

  padding-inline: clamp(1rem, 3vw, 4rem);

  text-align: left;

}



.hero--split .hero-context {

  margin-inline: 0;

}



@media (max-width: 767px) {

  .hero--split .hero-secondary-video {

    display: none;

  }



  .hero--split .hero-video-bg {

    right: 0;
    -webkit-mask-image: none;
    mask-image: none;

  }



  .hero--split .hero-inner {

    width: 100%;

  }



  .hero--split .hero-footer {

    right: 0;
    width: auto;

  }

}



.hero-inner,

.section-inner,

.signal-inner,

.footer-inner {

  width: var(--container);

  margin: 0 auto;

}



.hero-inner,

.section-inner {

  container-type: inline-size;

}



.hero-inner {

  position: relative;

  top: clamp(1rem, 3vh, 2rem);

  z-index: 2;

  max-width: 1400px;

  margin-inline: auto;

  text-align: center;

  will-change: transform, opacity;

}



.eyebrow {

  margin: 0 0 1rem;

  color: rgba(255, 250, 242, 0.86);

  font-family: var(--mini-font);

  font-size: 16px;

  font-weight: 700;

  line-height: 1.3;

  text-transform: uppercase;

}



.eyebrow-accent {

  color: var(--terracotta);

}



/* Tablet portrait uses the same focused, full-width hero composition as mobile. */
@media (min-width: 768px) and (max-width: 1199px) and (orientation: portrait) {

  .hero--split .hero-secondary-video {

    display: none;

  }

  .hero--split .hero-video-bg {

    right: 0;

    -webkit-mask-image: none;

    mask-image: none;

  }

  .hero--split .hero-inner {

    width: 100%;

  }

  .hero--split .hero-footer {

    right: 0;

    width: auto;

  }

  /* Preserve the pillars composition without the desktop-only 220vh scroll canvas. */
  .section.pillars-section {

    min-height: auto;

    padding: 0 0 clamp(2rem, 4vw, 3.5rem);

  }

  .pillars-section > .section-inner {

    position: relative;

    top: auto;

    min-height: 0;

    display: block;

    padding: clamp(3.5rem, 6vh, 5rem) 0 0;

  }

}



/* The dark sections require a lighter version of the accent colour to meet WCAG AA. */
.aim-series-section .eyebrow-accent,
.series-ecosystem-section .eyebrow-accent,
.featured-speakers-section .eyebrow-accent,
.pillars-section .eyebrow-accent,
.numbers-section .eyebrow-accent,
.key-topics-section .eyebrow-accent,
.who-attend-section .eyebrow-accent,
.why-attend-section .eyebrow-accent,
.why-sponsor-section .eyebrow-accent,
.feedback-section .eyebrow-accent,
.cta-section .eyebrow-accent {

  color: #d97663;

}



.hero .eyebrow {

  color: var(--gold);

  text-shadow: none;

  margin-bottom: 0.25rem;

}



h1,

h2,

h3,

p {

  margin-top: 0;

}



h1,

h2,

h3 {

  line-height: 1.03;

  letter-spacing: 0;

}



h1,

h2 {

  font-weight: 400;

}



h1 {

  width: fit-content;

  max-width: 100%;

  margin: 0 auto 1rem;

  font-family: var(--title-font);

  font-size: clamp(2.2rem, 9.5cqi, 6.8rem);

  font-weight: 700;

  text-align: center;

  text-transform: uppercase;

}



h1 > span {

  display: block;

  white-space: nowrap;

}



h1 .title-accent {

  color: var(--terracotta);

}



h2 {

  margin-bottom: 1rem;

  font-family: var(--display-font);

  font-size: clamp(2rem, 8cqi, 3.2rem);

}



h3 {

  font-family: var(--mini-font);

  font-size: 1.1rem;

}



.card {

  border: 1px solid var(--line);

  border-radius: 0;

  background: rgba(255, 250, 242, 0.86);

  padding: 1.2rem;

  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;

}



.card:hover {

  border-color: rgba(195, 91, 72, 0.25);

}



.hero-subtitle {

  max-width: 26ch;

  margin: 0 auto 1.9rem;

  color: rgba(255, 250, 242, 0.92);

  font-family: var(--mini-font);

  font-size: clamp(0.98rem, 3cqi, 1.45rem);

  font-weight: 100;

  line-height: 1.32;

}



.hero-footer {

  position: absolute;

  bottom: 0;

  left: 0;

  right: 0;

  z-index: 2;

  padding: 1.5rem 5vw;

  background: linear-gradient(180deg, rgba(34, 34, 34, 0), #222222);

  text-align: center;

}



.hero-context {

  max-width: 50ch;

  margin: 0 auto;

  color: rgba(255, 250, 242, 0.9);

  font-size: 0.85rem;

  line-height: 1.5;

}



.typewriter-text {

  display: inline;

}



.typewriter-cursor {

  display: inline-block;

  width: 2px;

  height: 1em;

  margin-left: 2px;

  background: var(--green);

  vertical-align: text-bottom;

  animation: blink 0.7s step-end infinite;

}



@keyframes blink {

  0%, 100% { opacity: 1; }

  50% { opacity: 0; }

}



@keyframes typing {

  from { width: 0; }

  to { width: 100%; }

}



.seat-status {

  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: clamp(1.25rem, 3vw, 2.2rem);

  width: fit-content;

  max-width: 100%;

  margin: 1rem auto 0;

  padding: 0.65rem 0.2rem;

  font-family: var(--mini-font);

}



.seat-status__item {

  display: flex;

  align-items: center;

  gap: 0.55rem;

  min-width: 0;

}



.seat-status__number {

  color: #fffaf2;

  font-family: var(--mini-font);

  font-size: clamp(2.65rem, 5vw, 4rem);

  font-weight: 800;

  line-height: 0.85;

  letter-spacing: -0.055em;

}

.seat-status__number.seat-status__number--countdown {

  color: var(--green);

}



.seat-status__label {

  display: flex;

  flex-direction: column;

  color: rgba(255, 250, 242, 0.76);

  font-size: clamp(0.62rem, 1vw, 0.74rem);

  font-weight: 800;

  line-height: 1.05;

  letter-spacing: 0.06em;

  text-align: left;

  text-transform: uppercase;

}



.seat-status__accent {

  color: var(--green);

}



.seat-status__divider {

  width: 1px;

  height: clamp(2.7rem, 5vw, 3.65rem);

  background: var(--green);

}



.calendar-save {

  position: relative;
  flex: 0 0 auto;

}



.calendar-save__trigger {

  min-height: 43px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.42rem;
  border: 1px solid rgba(69, 137, 98, 0.9);
  border-radius: 3px;
  background: rgba(69, 137, 98, 0.18);
  color: #fffaf2;
  cursor: pointer;
  padding: 0.55rem 0.75rem;
  font-family: var(--mini-font);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;

}



.calendar-save__trigger:hover,

.calendar-save__trigger:focus-visible,

.calendar-save__trigger[aria-expanded="true"] {

  border-color: var(--gold);
  background: var(--green);
  outline: 0;
  transform: translateY(-1px);

}



.calendar-save__trigger .material-symbols-outlined {

  font-size: 1.08rem;

}



.calendar-save__chevron {

  margin-left: -0.12rem;

}



.calendar-save__menu {

  position: absolute;
  right: 0;
  bottom: calc(100% + 0.65rem);
  z-index: 6;
  min-width: 224px;
  display: grid;
  gap: 0.2rem;
  border: 1px solid rgba(255, 250, 242, 0.22);
  border-radius: 4px;
  background: #fffaf2;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.35);
  padding: 0.35rem;
  text-align: left;

}



.calendar-save__menu[hidden] {

  display: none;

}



.calendar-save__menu a {

  min-height: 40px;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: #17202b;
  padding: 0.55rem 0.65rem;
  font-family: var(--mini-font);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.1;
  text-decoration: none;

}



.calendar-save__menu a:hover,

.calendar-save__menu a:focus-visible {

  background: rgba(69, 137, 98, 0.14);
  color: #17202b;
  outline: 0;

}



.calendar-save__menu .material-symbols-outlined {

  color: var(--green);
  font-size: 1.1rem;

}



@media (max-width: 520px) {

  .seat-status {

    flex-wrap: nowrap;
    gap: 0.45rem;

  }



  .calendar-save {

    flex-basis: auto;
    display: block;
    margin-top: 0;

  }



  .calendar-save__trigger {

    width: 42px;
    min-width: 42px;
    height: 42px;
    min-height: 42px;
    padding: 0;

  }



  .calendar-save__label,

  .calendar-save__chevron {

    display: none;

  }



  .calendar-save__menu {

    right: 50%;
    transform: translateX(50%);

  }

}



/* Keep the complete hero message comfortably inside shorter laptop viewports. */

@media (min-width: 768px) and (max-width: 1399px) {

  .hero h1 {

    font-size: clamp(2.6rem, 6.7cqi, 4.9rem);

  }



  .hero .eyebrow {

    font-size: 0.8rem;

  }



  .hero-subtitle {

    margin-bottom: 1.25rem;

    font-size: clamp(0.95rem, 2.2cqi, 1.15rem);

  }



  .seat-status__number {

    font-size: clamp(2.25rem, 4vw, 3.2rem);

  }

}



/* Wide laptops can still have a short viewport: prioritise the seat counter. */

@media (min-width: 768px) and (max-height: 900px) {

  .hero h1 {

    margin-bottom: 0.65rem;

    font-size: clamp(2.5rem, 6.6cqi, 4.8rem);

  }



  .hero .eyebrow {

    margin-bottom: 0.15rem;

    font-size: 0.78rem;

  }



  .hero-subtitle {

    margin-bottom: 0.85rem;

    font-size: clamp(0.92rem, 2.1cqi, 1.1rem);

  }



  .seat-status {

    margin-top: 0.5rem;

    padding-block: 0.4rem;

  }



  .seat-status__number {

    font-size: clamp(2.15rem, 3.8vw, 3rem);

  }

}



@media (max-width: 480px) {

  .seat-status {

    gap: 0.9rem;

    width: 100%;

  }



  .seat-status__item {

    gap: 0.4rem;

  }



  .seat-status__number {

    font-size: clamp(2.25rem, 12vw, 3rem);

  }



  .seat-status__label {

    max-width: 6.8rem;

    font-size: 0.58rem;

  }

}



/* Keep the calendar action in the same compact row as the mobile seat totals. */
@media (max-width: 520px) {

  .seat-status {

    gap: 0.45rem;

  }



  .seat-status__item {

    gap: 0.3rem;

  }



  .seat-status__number {

    font-size: clamp(2rem, 10vw, 2.5rem);

  }



  .seat-status__label {

    max-width: 5.5rem;
    font-size: 0.5rem;

  }



  .seat-status__divider {

    height: 2.45rem;

  }

}



@media (max-width: 767px) {

  .hero {

    position: fixed;
    display: grid;
    height: 100vh;
    height: 100svh;
    height: 100dvh;
    min-height: 100vh;
    min-height: 100svh;
    min-height: 100dvh;
    /* The header variables live on .site-header, so use its mobile height here explicitly. */
    padding: calc(164px + 2.5rem) 0 calc(1.1rem + env(safe-area-inset-bottom));

  }



  .hero-inner {

    top: 0;

  }



  .hero--split .hero-inner h1 {

    /* The unbroken summit title needs to fit even on 320 px-wide screens. */
    font-size: clamp(1.45rem, 8.5cqi, 2rem);
    line-height: 1.02;

  }



  .hero-subtitle {

    margin-bottom: 1.1rem;
    font-size: clamp(0.86rem, 3.6cqi, 1rem);

  }



  .seat-status {

    margin-top: 0.65rem;
    padding-block: 0.35rem;

  }



  .hero-footer {

    position: absolute;
    inset: auto 0 0;
    margin-top: 0;
    padding: 0.9rem 5vw calc(1.1rem + env(safe-area-inset-bottom));

  }



  .hero + .section {

    margin-top: 100vh;
    margin-top: 100svh;
    margin-top: 100dvh;

  }



  .hero-context {

    font-size: 0.75rem;
    line-height: 1.35;

  }



  .overview-heading h2,

  .aim-series-heading h2,

  .pillars-heading h2 {

    font-size: 2.15rem;

    line-height: 1.08;

  }



  .overview-punchline {

    margin: 0.85rem 0;

  }



  .overview-story p {

    font-size: 1rem;

    line-height: 1.65;

  }



  .aim-event-card {

    min-height: 0;

    grid-template-rows: 190px auto;

  }

}



.hero-actions,

.section-actions {

  display: flex;

  flex-wrap: wrap;

  justify-content: center;

  gap: 0.75rem;

}



.button {

  min-height: 48px;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  border-radius: 4px;

  padding: 0.8rem 1.1rem;

  font-family: var(--mini-font);

  font-weight: 700;

  line-height: 1.2;

  text-align: center;

  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;

}



.button:hover,

.button:focus-visible {

  transform: translateY(-2px);

}



.button-primary {

  border: 3px solid rgba(69, 137, 98, 0.52);

  border-radius: 12px;

  background:

    linear-gradient(180deg, #3f815c 0%, #2a5f42 100%) padding-box,

    linear-gradient(180deg, rgba(126, 178, 145, 0.66), rgba(31, 74, 50, 0.92)) border-box;

  color: #fffaf2;

  padding: 0.72rem 1.45rem;

  font-size: 0.86rem;

  box-shadow:

    inset 0 1px 0 rgba(255, 255, 255, 0.16),

    inset 0 -1px 0 rgba(0, 0, 0, 0.26),

    0 2px 4px rgba(0, 0, 0, 0.48);

}



.button-primary:hover,

.button-primary:focus-visible {

  background:

    linear-gradient(180deg, #4b946b 0%, #32704d 100%) padding-box,

    linear-gradient(180deg, rgba(147, 199, 165, 0.76), rgba(38, 91, 62, 0.95)) border-box;

  color: #fffaf2;

  box-shadow:

    inset 0 1px 0 rgba(255, 255, 255, 0.18),

    inset 0 -1px 0 rgba(0, 0, 0, 0.24),

    0 4px 8px rgba(0, 0, 0, 0.48);

}



.button-ghost {

  border: 1px solid rgba(255, 250, 242, 0.48);

  background: rgba(255, 250, 242, 0.08);

  color: #fffaf2;

}



.button-ghost:hover,

.button-ghost:focus-visible {

  border-color: var(--gold);

  color: var(--gold);

}



.signal-band {

  border-block: 1px solid var(--line);

  background: #fffaf2;

}



.signal-inner {

  display: grid;

  gap: 1px;

  background: var(--line);

}



.signal-inner > div {

  min-height: 160px;

  display: grid;

  align-content: center;

  background: #fffaf2;

  padding: 1.45rem;

}



.signal-kicker,

.roi-board span {

  color: var(--terracotta);

  font-family: var(--mini-font);

  font-size: 0.86rem;

  font-weight: 700;

  text-transform: uppercase;

}



.signal-inner strong {

  display: block;

  margin: 0.35rem 0;

  color: var(--blue);

  font-family: var(--display-font);

  font-size: 2.1rem;

  font-weight: 400;

  line-height: 1;

}



.signal-inner p,

.truth-grid p,

.pillar-card p,

.delegate-list p,

.section-copy p,

.venue-content p,

.invitation-layout p,

.roi-board p {

  margin-bottom: 0;

  color: var(--ink-soft);

}



.section {

  padding: 5rem 0;

}



.split-layout,

.sponsor-layout,

.invitation-layout {

  display: grid;

  gap: 2rem;

}



.section-copy {

  max-width: 630px;

}



.section.overview-section {

  position: relative;

  overflow: hidden;

  isolation: isolate;

  background: #222222;

  color: #fffaf2;

  user-select: none;

  -webkit-user-select: none;

  padding-top: clamp(4rem, 7vw, 7rem);

  padding-bottom: 0.5rem;

}



.overview-section .section-inner {

  position: relative;

  z-index: 1;

}



.overview-heading,

.aim-series-heading,

.pillars-heading {

  position: relative;

  display: grid;

  gap: 0.35rem;

  max-width: none;

  pointer-events: auto;

}



.overview-heading {

  max-width: 860px;

  margin-inline: auto;

  text-align: center;

}



.overview-heading h2,

.aim-series-heading h2,

.pillars-heading h2 {

  max-width: 100%;

  font-size: clamp(1.6rem, 5.5cqi, 2.8rem);

}



.overview-briefing {

  position: relative;

  display: grid;

  gap: clamp(1rem, 2vw, 1.75rem);

  margin-top: clamp(2rem, 4vw, 3.25rem);

}



.overview-model-stage {

  position: relative;

  min-height: clamp(560px, 48vw, 760px);

  background: radial-gradient(circle at 50% 46%, rgba(0, 107, 63, 0.18), transparent 34%);

}



.overview-model-bg {

  --overview-model-offset-x: 0px;

  --overview-model-offset-y: 0px;

  --overview-model-scale: 1;

  position: absolute;

  top: 50%;

  left: 50%;

  z-index: 3;

  width: min(64vw, 860px);

  height: min(46vw, 660px);

  min-width: 0;

  min-height: 480px;

  overflow: hidden;

  transform: translate(calc(-50% + var(--overview-model-offset-x)), calc(-50% + var(--overview-model-offset-y))) scale(var(--overview-model-scale));

  will-change: transform;

  opacity: 0.55;

  mix-blend-mode: screen;

  pointer-events: auto;

  -webkit-mask-image: radial-gradient(ellipse at center, #000 42%, transparent 72%);

  mask-image: radial-gradient(ellipse at center, #000 42%, transparent 72%);

}



.overview-model-bg::after {

  content: "";

  position: absolute;

  inset: 0;

  z-index: 1;

  pointer-events: none;

  background:

    linear-gradient(90deg, rgba(34, 34, 34, 0.62), rgba(34, 34, 34, 0.08) 35%, rgba(34, 34, 34, 0.2) 70%, rgba(34, 34, 34, 0.68)),

    radial-gradient(ellipse at center, transparent 24%, rgba(34, 34, 34, 0.58) 82%);

}



.overview-model-bg iframe {

  width: 100%;

  height: 100%;

  min-height: 0;

  border: 0;

  pointer-events: auto;

  filter: grayscale(0.32) contrast(0.95) saturate(0.82);

}



.overview-model-interaction-hint {

  position: absolute;

  bottom: 12%;

  left: 50%;

  z-index: 5;

  margin: 0;

  padding: 0.38rem 0.6rem;

  border: 1px solid rgba(143, 205, 165, 0.32);

  border-radius: 999px;

  background: rgba(8, 31, 23, 0.9);

  color: rgba(255, 250, 242, 0.92);

  font-size: clamp(0.63rem, 0.8vw, 0.72rem);

  line-height: 1;

  letter-spacing: 0.04em;

  pointer-events: none;

  transform: translateX(-50%);

}



.overview-narrative {

  order: -1;

  width: min(100%, 1280px);

  display: grid;

  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);

  gap: clamp(2rem, 5vw, 5rem);

  align-items: stretch;

  margin-inline: auto;

  padding-bottom: clamp(0.5rem, 1vw, 1rem);

}



.overview-story .overview-punchline {

  max-width: 860px;

  margin: 1rem 0;

  color: var(--green);

  font-family: var(--display-font);

  font-size: clamp(1.55rem, 3.6cqi, 2.25rem);

  font-weight: 400;

  line-height: 1.02;

  text-transform: uppercase;

}



.overview-story {

  display: grid;

  grid-template-columns: 1fr;

  gap: 1rem;

  max-width: none;

}



.overview-story p {

  margin-bottom: 0;

  color: rgba(255, 250, 242, 0.74);

  font-size: 1.06rem;

  line-height: 1.75;

}



.overview-story p:first-child {

  max-width: 46ch;

  color: #fffaf2;

  font-family: var(--display-font);

  font-size: clamp(1.45rem, 2.35cqi, 2rem);

  line-height: 1.15;

}



.overview-story p:nth-child(4),

.overview-story .overview-punchline {

  grid-column: auto;

}



.overview-model-origin {

  position: relative;

  min-height: clamp(430px, 36vw, 610px);

  margin: 0;

}



.overview-story strong {

  color: #b8f1c7;

  font-family: var(--mini-font);

  font-weight: 700;

}



.agenda-strip {

  --agenda-strip-ink: #03150e;

  --agenda-strip-band-height: clamp(15.5rem, 25vw, 20.5rem);

  position: relative;

  isolation: isolate;

  overflow: visible;

  width: 100%;

  padding: clamp(2rem, 3.8vw, 3.25rem) 0;

  background: #222222;

  color: #fff;

}



.overview-section + .agenda-strip {

  padding-top: clamp(0.75rem, 1.5vw, 1.25rem);

}



.agenda-strip::before,

.agenda-strip::after {

  content: "";

  position: absolute;

  top: 50%;

  left: 50%;

  z-index: 0;

  width: 100%;

  height: var(--agenda-strip-band-height);

  transform: translate(-50%, -50%);

  pointer-events: none;

}



.agenda-strip::before {

  border-block: 1px solid rgba(111, 192, 145, 0.35);

  background:

    radial-gradient(circle at 88% 48%, rgba(69, 137, 98, 0.42), transparent 19rem),

    radial-gradient(circle at 78% 44%, rgba(111, 192, 145, 0.24), transparent 18rem),

    linear-gradient(110deg, rgba(0, 107, 63, 0.78), rgba(0, 77, 46, 0.9) 38%, rgba(0, 63, 38, 0.98) 100%),

    linear-gradient(180deg, rgba(0, 92, 55, 0.98), rgba(1, 28, 18, 0.94));

  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);

}



.agenda-strip::after {

  background:

    linear-gradient(180deg, rgba(0, 0, 0, 0.18), transparent 18% 82%, rgba(0, 0, 0, 0.2)),

    linear-gradient(105deg, transparent 0 44%, rgba(111, 192, 145, 0.14) 49%, rgba(69, 137, 98, 0.12) 72%, transparent 88%);

  opacity: 0.5;

}



.agenda-strip-inner {

  position: relative;

  z-index: 1;

  display: grid;

  grid-template-columns: minmax(0, 0.9fr) minmax(22rem, 0.9fr);

  gap: clamp(1.3rem, 3.4vw, 4.7rem);

  align-items: center;

  min-height: clamp(16.25rem, 26vw, 22rem);

  width: min(86%, 1480px);

  margin: 0 auto;

  padding-inline: clamp(1.1rem, 2.4vw, 2.75rem);

}



.agenda-strip-copy {

  max-width: 690px;

  padding: clamp(1.35rem, 2.8vw, 2.25rem) 0;

}



.agenda-strip-copy h2 {

  margin: 0;

  color: #fff;

  font-family: var(--mini-font);

  font-size: clamp(1.18rem, 2.15vw, 1.78rem);

  font-weight: 700;

  line-height: 1.02;

  text-wrap: balance;

}



.agenda-strip-copy p {

  max-width: 36rem;

  margin: clamp(0.62rem, 1.2vw, 0.9rem) 0 0;

  color: rgba(255, 255, 255, 0.88);

  font-family: var(--mini-font);

  font-size: clamp(0.78rem, 0.9vw, 0.88rem);

  line-height: 1.48;

}



.agenda-strip-actions {

  display: flex;

  flex-wrap: wrap;

  gap: 0.65rem;

  margin-top: clamp(0.82rem, 1.6vw, 1.1rem);

}



.agenda-strip-cta {

  display: inline-flex;

  align-items: center;

  justify-content: space-between;

  gap: 0.78rem;

  min-height: 2.6rem;

  padding: 0.58rem 0.62rem 0.58rem 0.95rem;

  border: 1px solid rgba(255, 255, 255, 0.62);

  background: rgba(255, 255, 255, 0.08);

  color: #fff;

  font-family: var(--mini-font);

  font-size: 0.7rem;

  font-weight: 900;

  letter-spacing: 0.08em;

  line-height: 1;

  text-transform: uppercase;

  text-decoration: none;

  backdrop-filter: blur(10px);

  transition: 220ms ease;

}



.agenda-strip-cta__icon {

  width: 1.55rem;

  height: 1.55rem;

  flex: 0 0 1.55rem;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  border: 1px solid rgba(255, 255, 255, 0.72);

  font-size: 0.9rem;

  font-weight: 500;

  line-height: 1;

}



.agenda-strip-cta:hover,

.agenda-strip-cta:focus-visible {

  transform: translateY(-2px);

  border-color: #fff;

  background: #fff;

  color: var(--agenda-strip-ink);

  outline: 0;

}



.agenda-strip-cta:hover .agenda-strip-cta__icon,

.agenda-strip-cta:focus-visible .agenda-strip-cta__icon {

  border-color: var(--agenda-strip-ink);

}



.agenda-strip-visual {

  justify-self: end;

  width: min(30vw, 390px);

  margin: clamp(-5.75rem, -7vw, -2.85rem) 0;

  transform: rotate(-5deg) translate3d(.25rem, -.1rem, 0);

  transition: transform 260ms ease;

}



.agenda-strip-visual:hover {

  transform: rotate(-7deg) translate3d(.15rem, -.35rem, 0);

}



.agenda-strip-visual img {

  display: block;

  width: 100%;

  height: auto;

}



@media (max-width: 900px) {

  .agenda-strip {

    --agenda-strip-band-height: calc(100% - 1.2rem);

    padding: clamp(1.4rem, 6vw, 2.4rem) 0 clamp(1.7rem, 7vw, 2.8rem);

  }



  .agenda-strip::before,

  .agenda-strip::after {

    top: 0;

    height: 100%;

    transform: translateX(-50%);

  }



  .agenda-strip-inner {

    grid-template-columns: 1fr;

    text-align: center;

  }



  .agenda-strip-copy {

    margin: 0 auto;

    padding-top: clamp(1.05rem, 4.8vw, 1.55rem);

  }



  .agenda-strip-actions {

    justify-content: center;

  }



  .agenda-strip-visual {

    justify-self: center;

    width: min(56vw, 300px);

    margin: 0 auto -1rem;

    transform: rotate(-3deg);

  }

}



@media (max-width: 540px) {

  .agenda-strip-inner {

    width: min(calc(100% - 2rem), 340px);

    padding: 0;

  }



  .agenda-strip-copy h2 {

    max-width: 9.8em;

    margin-inline: auto;

    font-size: clamp(1rem, 4.9vw, 1.22rem);

    line-height: 1.1;

  }



  .agenda-strip-copy p {

    max-width: 17rem;

    margin-inline: auto;

  }



  .agenda-strip-visual {

    width: min(52vw, 230px);

    transform: rotate(-2.5deg);

  }

}



body.report-modal-open {

  overflow: hidden;

}



.report-modal[hidden] {

  display: none;

}



.report-modal {

  position: fixed;

  inset: 0;

  z-index: 12000;

  display: grid;

  place-items: center;

  padding: clamp(1rem, 3vw, 2.5rem);

  background: rgba(8, 10, 9, 0.94);

  color: #fffaf2;

  opacity: 0;

  visibility: hidden;

  transition: opacity 220ms ease, visibility 220ms ease;

}



.report-modal.is-open {

  opacity: 1;

  visibility: visible;

}



.report-modal__backdrop {

  position: absolute;

  inset: 0;

  background:

    radial-gradient(circle at 72% 18%, rgba(0, 107, 63, 0.24), transparent 27rem),

    rgba(8, 10, 9, 0.88);

  backdrop-filter: blur(12px);

}



.report-modal__panel {

  position: relative;

  z-index: 1;

  width: min(92vw, 1080px);

  max-height: min(90svh, 720px);

  overflow: auto;

  padding: clamp(1.25rem, 2.2vw, 2rem) clamp(1.35rem, 3vw, 3.1rem) clamp(2rem, 3.2vw, 3rem);

  border: 1px solid rgba(69, 137, 98, 0.48);

  background:

    radial-gradient(circle at 92% 8%, rgba(0, 107, 63, 0.18), transparent 23rem),

    linear-gradient(115deg, #202321, #111312 48%, #17241d);

  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.52);

  outline: none;

}



.report-modal__header {

  max-width: 650px;

  margin-bottom: 1rem;

}



.report-modal__eyebrow {

  margin: 0 0 0.45rem;

  color: var(--terracotta);

  font-family: var(--mini-font);

  font-size: 0.7rem;

  font-weight: 700;

  letter-spacing: 0.08em;

  line-height: 1;

  text-transform: uppercase;

}



.report-modal__header h2 {

  margin: 0;

  color: #fffaf2;

  font-family: var(--display-font);

  font-size: clamp(2rem, 3.2vw, 3rem);

  font-weight: 400;

  letter-spacing: -0.02em;

  line-height: 0.98;

  text-transform: uppercase;

}



.report-modal__header > p:last-child {

  margin: 0.62rem 0 0;

  color: rgba(255, 250, 242, 0.7);

  font-family: var(--mini-font);

  font-size: clamp(0.82rem, 1vw, 0.98rem);

  font-weight: 500;

  line-height: 1.42;

}



.report-modal__close {

  position: absolute;

  top: clamp(0.9rem, 1.8vw, 1.35rem);

  right: clamp(0.9rem, 1.8vw, 1.35rem);

  width: clamp(2.25rem, 3.2vw, 2.8rem);

  height: clamp(2.25rem, 3.2vw, 2.8rem);

  display: grid;

  place-items: center;

  border: 1px solid rgba(255, 250, 242, 0.18);

  border-radius: 50%;

  background: rgba(255, 250, 242, 0.06);

  color: #fffaf2;

  cursor: pointer;

  transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;

}



.report-modal__close:hover,

.report-modal__close:focus-visible {

  border-color: var(--green);

  background: rgba(0, 107, 63, 0.24);

  outline: 0;

  transform: rotate(4deg);

}



.report-modal__close .material-symbols-outlined {

  font-size: 1.2rem;

}



.report-modal__cards {

  display: grid;

  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 1rem;

}



.report-modal-card {

  position: relative;

  min-height: 23rem;

  display: flex;

  flex-direction: column;

  overflow: hidden;

  padding: clamp(1rem, 1.55vw, 1.25rem);

  border: 1px solid rgba(255, 250, 242, 0.14);

  background:

    linear-gradient(145deg, rgba(255, 250, 242, 0.07), rgba(0, 107, 63, 0.09) 46%, rgba(0, 0, 0, 0.24)),

    #18201c;

  transition: transform 220ms ease, border-color 220ms ease;

}



.report-modal-card:hover {

  border-color: rgba(69, 137, 98, 0.8);

  transform: translateY(-4px);

}



.report-modal-card__number {

  position: absolute;

  top: 1rem;

  right: 1rem;

  color: rgba(255, 250, 242, 0.18);

  font-family: var(--mini-font);

  font-size: clamp(1.25rem, 2vw, 1.75rem);

  font-weight: 700;

  line-height: 1;

}



.report-modal-card h3 {

  max-width: 14.5rem;

  margin: 1.65rem 2rem 0 0;

  color: #fffaf2;

  font-family: var(--mini-font);

  font-size: clamp(0.95rem, 1.32vw, 1.15rem);

  font-weight: 700;

  line-height: 1.18;

}



.report-modal-card__date,

.report-modal-card__location {

  margin: 0;

  font-family: var(--mini-font);

  font-size: clamp(0.68rem, 0.82vw, 0.78rem);

  font-weight: 700;

  letter-spacing: 0.04em;

  line-height: 1.15;

  text-transform: uppercase;

}



.report-modal-card__date {

  margin-top: 0.85rem;

  color: rgba(255, 250, 242, 0.76);

}



.report-modal-card__location {

  margin-top: 0.34rem;

  color: #75bd8e;

}



.report-modal-card__mockup {

  flex: 1;

  width: min(82%, 248px);

  margin: 0.8rem auto 0;

  transform: rotate(-7deg);

  transition: transform 240ms ease;

}



.report-modal-card:hover .report-modal-card__mockup {

  transform: rotate(-9deg) translateY(-0.18rem);

}



.report-modal-card__mockup img {

  width: 100%;

  height: 100%;

  display: block;

  object-fit: contain;

}



.report-modal-card__cta {

  min-height: 2.75rem;

  display: flex;

  align-items: center;

  justify-content: space-between;

  margin-top: 0.75rem;

  padding: 0.58rem 0.72rem 0.58rem 0.9rem;

  border: 1px solid rgba(255, 250, 242, 0.48);

  background: rgba(255, 250, 242, 0.06);

  color: #fffaf2;

  font-family: var(--mini-font);

  font-size: 0.72rem;

  font-weight: 700;

  letter-spacing: 0.06em;

  line-height: 1;

  text-decoration: none;

  text-transform: uppercase;

  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;

}



.report-modal-card__cta .material-symbols-outlined {

  font-size: 1rem;

}



.report-modal-card__cta:hover,

.report-modal-card__cta:focus-visible {

  background: #fffaf2;

  color: var(--logo-green);

  outline: 0;

  transform: translateY(-1px);

}



@media (max-width: 1120px) {

  .report-modal__cards {

    grid-auto-columns: minmax(245px, 42vw);

    grid-auto-flow: column;

    grid-template-columns: none;

    overflow-x: auto;

    padding-bottom: 1rem;

    scroll-snap-type: x proximity;

  }



  .report-modal-card {

    scroll-snap-align: center;

  }

}



@media (max-width: 720px) {

  .report-modal {

    padding: 1rem;

  }



  .report-modal__panel {

    width: min(330px, calc(100vw - 2rem));

    max-height: 84svh;

    padding: 1.15rem 0.85rem 1.25rem;

  }



  .report-modal__header {

    padding-right: 3.5rem;

  }



  .report-modal__cards {

    display: flex;

  }



  .report-modal-card {

    flex: 0 0 100%;

  }

}



.overview-rail {

  position: absolute;

  inset: 0;

  z-index: 4;

  pointer-events: none;

  transform: translateY(0);

  will-change: opacity, transform;

}



.overview-section.overview-motion-ready .overview-rail {

  opacity: 0;

}



.overview-rail div {

  --overview-link-length: clamp(1.5rem, 5vw, 5rem);

  position: absolute;

  width: clamp(10rem, 15vw, 14rem);

  display: grid;

  gap: 0.22rem;

  background: transparent;

  padding: 0;

  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.82);

}



.overview-rail div::before {

  content: "";

  position: absolute;

  top: 50%;

  width: var(--overview-link-length);

  border-top: 1px solid rgba(143, 205, 165, 0.48);

}



.overview-rail div::after {

  content: "";

  position: absolute;

  top: calc(50% - 0.26rem);

  width: 0.52rem;

  height: 0.52rem;

  border: 1px solid rgba(143, 205, 165, 0.95);

  border-radius: 50%;

  background: radial-gradient(circle, #8fcda5 0 26%, rgba(8, 31, 23, 0.88) 30% 52%, transparent 56%);

  box-shadow: 0 0 0 3px rgba(143, 205, 165, 0.1), 0 0 12px rgba(143, 205, 165, 0.46);

}



.overview-rail div:nth-child(1) {

  top: 22%;

  left: 6%;

}



.overview-rail div:nth-child(1)::before,

.overview-rail div:nth-child(3)::before,

.overview-rail div:nth-child(5)::before {

  right: calc(0px - var(--overview-link-length));

}



.overview-rail div:nth-child(1)::after,

.overview-rail div:nth-child(3)::after,

.overview-rail div:nth-child(5)::after {

  right: calc(0px - var(--overview-link-length) - 0.26rem);

}



.overview-rail div:nth-child(2) {

  top: 22%;

  right: 6%;

}



.overview-rail div:nth-child(1),

.overview-rail div:nth-child(2) {

  --overview-link-length: clamp(3rem, 6vw, 6rem);

}



.overview-rail div:nth-child(2)::before,

.overview-rail div:nth-child(4)::before {

  left: calc(0px - var(--overview-link-length));

}



.overview-rail div:nth-child(2)::after,

.overview-rail div:nth-child(4)::after {

  left: calc(0px - var(--overview-link-length) - 0.26rem);

}



.overview-rail div:nth-child(3) {

  top: 58%;

  left: 8%;

}



.overview-rail div:nth-child(4) {

  top: 58%;

  right: 8%;

}



.overview-rail div:nth-child(5) {

  bottom: 2%;

  left: 50%;

  width: clamp(12rem, 19vw, 17rem);

  transform: translateX(-50%);

  text-align: center;

}



.overview-rail div:nth-child(5)::before {

  top: calc(0px - var(--overview-link-length));

  right: auto;

  left: 50%;

  width: 0;

  height: var(--overview-link-length);

  border-top: 0;

  border-left: 1px solid rgba(143, 205, 165, 0.48);

}



.overview-rail div:nth-child(5)::after {

  top: calc(0px - var(--overview-link-length) - 0.26rem);

  right: auto;

  left: calc(50% - 0.26rem);

}



.overview-rail strong {

  color: var(--green);

  font-family: var(--mini-font);

  font-size: clamp(1.3rem, 2.2vw, 2.15rem);

  font-weight: 800;

  line-height: 1.1;

}



.overview-rail span {

  color: rgba(255, 250, 242, 0.78);

  font-size: clamp(0.7rem, 0.9vw, 0.84rem);

  line-height: 1.35;

}



@media (max-width: 767px) {

  .section.overview-section {

    padding-top: 4rem;

    padding-bottom: 0.5rem;

  }



  .overview-heading h2 {

    font-size: clamp(2.15rem, 10vw, 3.35rem);

  }



  .overview-narrative {

    grid-template-columns: 1fr;

    gap: 1.5rem;

    padding-bottom: 0.75rem;

  }



  .overview-story {

    grid-template-columns: 1fr;

    gap: 0.85rem;

  }



  .overview-story p:first-child,

  .overview-story p:nth-child(4),

  .overview-story .overview-punchline {

    grid-column: auto;

  }



  .overview-model-origin {

    display: none;

  }



  .overview-model-stage {

    min-height: 700px;

  }



  .overview-model-bg {

    top: 0;

    width: 100%;

    height: 330px;

    min-height: 0;

    transform: translateX(-50%);

  }



  .overview-model-interaction-hint {

    top: 290px;

    bottom: auto;

  }



  .overview-rail {

    inset: auto 0 0;

    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 1px;

    background: transparent;

  }



  .overview-rail div,

  .overview-rail div:nth-child(n) {

    position: relative;

    top: auto;

    right: auto;

    bottom: auto;

    left: auto;

    width: auto;

    min-height: 104px;

    transform: none;

    border-bottom: 1px solid rgba(143, 205, 165, 0.28);

    background: transparent;

    padding: 0.8rem 0;

    text-align: left;

  }



  .overview-rail div:last-child {

    grid-column: 1 / -1;

  }



  .overview-rail div::before {

    display: none;

  }



  .overview-rail div::after {

    display: none;

  }



  .overview-story p {

    font-size: 1rem;

    line-height: 1.65;

  }

}



.aim-series-section {

  position: relative;

  overflow: hidden;

  isolation: isolate;

  background: #222222;

  color: #fffaf2;

  padding-top: clamp(3rem, 5vw, 4.5rem);

  padding-bottom: clamp(3rem, 5vw, 4.5rem);

}



.aim-series-heading {

  max-width: 820px;

}



.aim-series-heading h2 {

  color: #fffaf2;

}



.aim-marquee {

  --aim-gap: 1rem;

  --aim-fade-width: clamp(4rem, 10vw, 9rem);

  position: relative;

  z-index: 1;

  display: flex;

  gap: var(--aim-gap);

  width: 100%;

  overflow: hidden;

  padding: 0.35rem 0 0.75rem;

}



.aim-marquee::before,

.aim-marquee::after {

  content: "";

  position: absolute;

  top: 0;

  bottom: 0;

  z-index: 3;

  width: var(--aim-fade-width);

  pointer-events: none;

}



.aim-marquee::before {

  left: 0;

  background: linear-gradient(90deg, #222222 0%, rgba(34, 34, 34, 0) 100%);

}



.aim-marquee::after {

  right: 0;

  background: linear-gradient(270deg, #222222 0%, rgba(34, 34, 34, 0) 100%);

}



.aim-marquee-track {

  flex: 0 0 auto;

  display: flex;

  gap: var(--aim-gap);

  min-width: max-content;

  animation: aimMarquee 78s linear infinite;

}



.aim-event-card {

  flex: 0 0 clamp(220px, 22vw, 300px);

  width: clamp(220px, 22vw, 300px);

  min-height: 0;

  display: grid;

  grid-template-rows: 215px auto;

  overflow: hidden;

  border: 1px solid rgba(255, 250, 242, 0.12);

  border-radius: 0;

  background: #141414;

  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.2);

  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;

}



.aim-event-card:hover,

.aim-event-card:focus-visible {

  transform: translateY(-5px);

  border-color: rgba(229, 192, 39, 0.52);

  background: #181818;

  outline: 0;

}



.aim-event-image {

  display: block;

  border-radius: 0;

  background: none;

  padding: 0;

}



.aim-event-image img {

  width: 100%;

  height: 100%;

  max-width: none;

  max-height: none;

  border-radius: 0;

  object-fit: cover;

}



.aim-event-body {

  display: grid;

  align-content: start;

  gap: 1.1rem;

  border-radius: 0;

  border-top: 1px solid rgba(69, 137, 98, 0.2);

  background: #141414;

  box-shadow:

    inset 0 0 0 1px rgba(255, 250, 242, 0.06),

    inset 0 -1px 0 rgba(255, 250, 242, 0.08);

  padding: 1rem;

  transition: background 180ms ease;

}



.aim-event-card:hover .aim-event-body,

.aim-event-card:focus-visible .aim-event-body {

  background: #181818;

}



.aim-event-name {

  color: #fffaf2;

  font-family: var(--mini-font);

  font-size: 0.92rem;

  font-weight: 700;

  line-height: 1.28;

}



.aim-event-meta {

  display: grid;

  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);

  gap: 0.6rem;

  border-top: 1px solid rgba(255, 250, 242, 0.14);

  margin-top: 0.2rem;

  padding-top: 0.9rem;

  color: rgba(255, 250, 242, 0.78);

  font-family: var(--mini-font);

  font-size: 0.76rem;

  line-height: 1.32;

}



.aim-event-meta span:last-child {

  color: rgba(255, 250, 242, 0.94);

  font-weight: 700;

  text-align: right;

}



@keyframes aimMarquee {

  from {

    transform: translateX(0);

  }



  to {

    transform: translateX(calc(-100% - var(--aim-gap)));

  }

}



.featured-speakers-section {

  position: relative;

  isolation: isolate;

  overflow: hidden;

  background: #222222;

  color: #fffaf2;

  padding-block: clamp(4.25rem, 8vw, 7.5rem);

}



.featured-speakers-inner {

  display: grid;

  gap: clamp(1.35rem, 2.4vw, 2.1rem);

}



.featured-speakers-heading {

  max-width: 760px;

  margin-bottom: 0;

  margin-inline: auto;

  text-align: center;

}



.featured-speakers-heading .eyebrow {

  margin: 0 0 1rem;

}



.featured-speakers-heading h2 {

  margin: 0;

  color: #fffaf2;

  font-family: var(--display-font);

  font-size: clamp(3.7rem, 7vw, 6.8rem);

  font-weight: 400;

  line-height: 0.86;

  letter-spacing: -0.025em;

  text-transform: uppercase;

}



.featured-speakers-grid {

  display: flex;

  flex-wrap: wrap;

  justify-content: center;

  align-items: stretch;

  gap: clamp(0.85rem, 1.5vw, 1.35rem);

}



.featured-speaker-card {

  display: flex;

  flex-direction: column;

  flex: 0 1 calc(25% - 1.02rem);

  width: 100%;

  min-width: 0;

  overflow: hidden;

  border: 1px solid rgba(69, 137, 98, 0.82);

  border-radius: 2px;

  background: #141414;

  box-shadow: 0 32px 74px rgba(0, 0, 0, 0.38);

  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;

}



.featured-speaker-card:hover {

  transform: translateY(-6px);

  border-color: #458962;

  box-shadow: 0 38px 90px rgba(0, 0, 0, 0.46);

}



.featured-speaker-card__visual {

  position: relative;

  aspect-ratio: 1 / 1.08;

  min-height: 0;

  overflow: hidden;

  background: #101010;

}



.featured-speaker-card__texture {

  position: absolute;

  inset: 0;

  width: 100%;

  height: 100%;

  object-fit: cover;

  object-position: center 62%;

  opacity: 0.92;

  filter: saturate(0.72) contrast(1.04);

}



.featured-speaker-card__portrait {

  position: absolute;

  right: 3%;

  bottom: -1px;

  z-index: 1;

  width: 94%;

  max-width: none;

  height: auto;

  object-fit: contain;

  object-position: bottom center;

  filter: saturate(0.88) contrast(1.03);

}



.featured-speaker-card__details {

  position: relative;

  z-index: 3;

  display: grid;

  flex: 1 1 auto;

  grid-template-rows: auto 1fr;

  min-height: 225px;

  margin-top: -30px;

  border-radius: 30px 30px 0 0;

  background: #fffdf9;

  color: #1b1b1b;

  padding: 1.45rem 1.25rem 1.2rem;

}



.featured-speaker-card__identity {

  display: grid;

  align-content: start;

}



.featured-speaker-card__identity h3 {

  max-width: 100%;

  margin: 0;

  color: #181818;

  font-family: var(--display-font);

  font-size: clamp(1.55rem, 2.2vw, 2rem);

  font-weight: 400;

  line-height: 0.98;

  text-transform: uppercase;

}



.featured-speaker-card__linkedin {

  display: inline-grid;

  position: absolute;

  z-index: 3;

  top: 0.9rem;

  right: 0.9rem;

  width: 2.15rem;

  height: 2.15rem;

  flex: 0 0 auto;

  place-items: center;

  border-radius: 50%;

  background: #458962;

  color: #fff;

  box-shadow: 0 6px 16px rgba(69, 137, 98, 0.24);

  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;

}



.featured-speaker-card__linkedin:hover {

  transform: translateY(-2px);

  background: #326b4b;

  box-shadow: 0 8px 20px rgba(69, 137, 98, 0.34);

}



.featured-speaker-card__linkedin:focus-visible {

  outline: 3px solid rgba(69, 137, 98, 0.4);

  outline-offset: 3px;

}



.featured-speaker-card__linkedin svg {

  width: 1.08rem;

  height: 1.08rem;

}



.featured-speaker-card__role {

  margin: 0.62rem 0 0;

  color: rgba(27, 27, 27, 0.62);

  font-family: var(--mini-font);

  font-size: 1rem;

  font-weight: 600;

  line-height: 1.35;

}



.featured-speaker-card__company {

  display: grid;

  grid-template-columns: minmax(0, 1fr) minmax(82px, 104px);

  align-items: end;

  gap: 1rem;

  align-self: end;

  margin-top: 1.15rem;

  border-top: 1px solid rgba(27, 27, 27, 0.12);

  padding-top: 0.9rem;

}



.featured-speaker-card__company div {

  display: grid;

  gap: 0.15rem;

}



.featured-speaker-card__company span {

  color: rgba(27, 27, 27, 0.45);

  font-family: var(--mini-font);

  font-size: 0.61rem;

  font-weight: 700;

  letter-spacing: 0.12em;

  line-height: 1;

  text-transform: uppercase;

}



.featured-speaker-card__company strong {

  color: #1b1b1b;

  font-family: var(--mini-font);

  font-size: 0.96rem;

  font-weight: 700;

  line-height: 1.25;

}



.featured-speaker-card__company img {

  width: 104px;

  height: 44px;

  object-fit: contain;

  object-position: right center;

}



@media (max-width: 1100px) {

  .featured-speakers-grid {

    gap: clamp(1rem, 2.4vw, 1.5rem);

  }

  .featured-speaker-card {

    flex-basis: calc(50% - 0.75rem);

  }



  .featured-speaker-card__details {

    min-height: 210px;

  }

}



@media (max-width: 620px) {

  .featured-speakers-grid {

    width: min(100%, 390px);

    margin-inline: auto;

  }

  .featured-speaker-card {

    flex-basis: 100%;

  }



  .featured-speaker-card__visual {

    aspect-ratio: 1 / 1.02;

  }



  .featured-speaker-card__details {

    min-height: 205px;

  }

}



@media (max-width: 480px) {

  .featured-speakers-section {

    padding-block: 3.6rem;

  }



  .featured-speaker-card__visual {

    aspect-ratio: 1 / 1.06;

  }



  .featured-speaker-card__details {

    min-height: 200px;

    padding-inline: 1.25rem;

  }



  .featured-speaker-card__company {

    grid-template-columns: minmax(0, 1fr) 96px;

  }



  .featured-speaker-card__company img {

    width: 96px;

  }

}

/*==========================================
  Supporting Partners
==========================================*/

      .supporting-partners {
        background: #222;
      }

      .supporting-partners__title {

        max-width: 980px;
        color: white;
        margin-inline: auto;

        text-align: center;
      }

      .supporting-partners__logo {
        margin-bottom: 50px;
        display: flex;
        justify-content: center;
        gap: 20px;
        /* Space between logos */
        flex-wrap: wrap;
        /* Keeps it responsive if you add more logos */
        align-items: center;
      }

      .supporting-partners__card {
        width: 350px;
        height: 190px;
        background: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: .3s ease;

      }

      .supporting-partners__card:hover {
        transform: translateY(-5px);
      }

      .supporting-partners__card img {
        max-width: 100%;
        max-height: 170px;
        width: auto;
        height: auto;
        object-fit: contain;
      }

      @media (max-width:768px) {

        .supporting-partners__card {
          width: 100%;
          max-width: 320px;
          height: 160px;
        }

        .supporting-partners__card img {
          max-width: 100%;
          max-height: 150px;
        }
      }

.series-ecosystem-section {

  position: relative;

  isolation: isolate;

  overflow: hidden;

  background: #222222;

  color: #fffaf2;

  padding-block: clamp(4rem, 8vw, 7rem);

}



.series-ecosystem-section::before {

  content: none;

}



.series-ecosystem-section .section-inner {

  min-width: 0;

  display: grid;

  gap: clamp(2.4rem, 5vw, 4.5rem);

}



.series-ecosystem-heading {

  max-width: 980px;

  margin-inline: auto;

  text-align: center;

}



.series-ecosystem-heading h2 {

  color: #fffaf2;

}



.series-ecosystem-heading p:last-child {

  max-width: 760px;

  margin: 0 auto;

  color: rgba(255, 250, 242, 0.68);

  font-size: 1rem;

  line-height: 1.7;

}



.series-block {

  min-width: 0;

  display: grid;

  gap: clamp(1.2rem, 3vw, 2rem);

  border-top: 1px solid rgba(255, 250, 242, 0.12);

  padding-top: clamp(1.6rem, 3vw, 2.25rem);

}



.series-block-head {

  position: relative;

  z-index: 2;

  display: grid;

  gap: 0.35rem;

  max-width: 760px;

  margin-inline: auto;

  text-align: center;

}



.series-block-head .eyebrow {

  display: block;

  margin-inline: auto;

}



.series-block-head h3 {

  margin: 0;

  color: #fffaf2;

  font-family: var(--display-font);

  font-size: clamp(1.45rem, 4vw, 2.35rem);

  font-weight: 400;

  line-height: 1.02;

  text-transform: uppercase;

}



.series-logo-grid {

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));

  gap: 0.75rem;

}



.series-logo-grid-featured {

  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));

}



.series-partners-block .series-logo-grid-featured {

  grid-template-columns: repeat(5, minmax(0, 1fr));

}



.series-logo-grid-compact {

  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));

}



.series-logo-card {

  min-height: 116px;

  display: grid;

  place-items: center;

  margin: 0;

  border: 1px solid rgba(255, 250, 242, 0.1);

  background:

    linear-gradient(180deg, rgba(255, 250, 242, 0.07), rgba(255, 250, 242, 0.025)),

    #181818;

  padding: 1rem;

  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;

}



.series-logo-card:hover {

  transform: translateY(-3px);

  border-color: rgba(229, 192, 39, 0.38);

  background:

    linear-gradient(180deg, rgba(255, 250, 242, 0.09), rgba(255, 250, 242, 0.035)),

    #1d1d1d;

}



.series-partners-block .series-logo-card,

.series-sponsors-block .series-logo-card {

  border-color: rgba(255, 255, 255, 0.86);

  background: #ffffff;

  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.16);

}



.series-sponsors-block .series-logo-card {

  min-height: 164px;

  padding: 0.55rem;

}



.series-partners-block .series-logo-card:hover,

.series-sponsors-block .series-logo-card:hover {

  border-color: rgba(229, 192, 39, 0.62);

  background: #ffffff;

}



.series-logo-card img {

  width: 100%;

  max-width: 170px;

  max-height: 72px;

  object-fit: contain;

  filter: saturate(0.96) contrast(1.02);

}



.series-partners-block .series-logo-card img,

.series-sponsors-block .series-logo-card img {

  filter: none;

}



.series-sponsors-block .series-logo-card img {

  width: 100%;

  height: 136px;

  max-width: 100%;

  max-height: none;

  object-fit: contain;

}



.series-logo-grid-featured .series-logo-card {

  min-height: 138px;

}



.series-logo-grid-featured .series-logo-card img {

  max-width: 210px;

  max-height: 86px;

}



.series-partners-block .series-logo-grid-featured .series-logo-card {

  min-height: 164px;

  padding: 1.25rem;

}



.series-partners-block .series-logo-grid-featured .series-logo-card img {

  max-width: 100%;

  max-height: 110px;

}



@media (max-width: 1023px) {

  .series-partners-block .series-logo-grid-featured {

    grid-template-columns: repeat(3, minmax(0, 1fr));

  }

}



@media (max-width: 620px) {

  .series-partners-block .series-logo-grid-featured {

    grid-template-columns: repeat(2, minmax(0, 1fr));

  }



  .series-partners-block .series-logo-grid-featured .series-logo-card {

    min-height: 142px;

    padding: 1rem;

  }



  .series-partners-block .series-logo-grid-featured .series-logo-card img {

    max-height: 92px;

  }

}



.series-speaker-grid {

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));

  gap: 0.8rem;

}



.series-speaker-card {

  min-height: 315px;

  display: grid;

  grid-template-rows: 260px auto;

  overflow: hidden;

  border: 1px solid rgba(255, 250, 242, 0.1);

  background: #181818;

  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.2);

  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;

}



.series-speaker-card:hover {

  transform: translateY(-4px);

  border-color: rgba(69, 137, 98, 0.52);

  background: #1d1d1d;

}



.series-speaker-card img {

  width: 100%;

  height: 100%;

  object-fit: cover;

  object-position: top center;

  background: #ffffff;

  filter: grayscale(0.12) saturate(0.98) contrast(1.02);

}



.series-speaker-card div {

  display: grid;

  align-content: start;

  gap: 0.45rem;

  border-top: 1px solid rgba(69, 137, 98, 0.24);

  padding: 1rem;

  text-align: center;

}



.series-speaker-card h4 {

  margin: 0;

  color: #fffaf2;

  font-family: var(--mini-font);

  font-size: 0.98rem;

  font-weight: 700;

  line-height: 1.25;

}



.series-speaker-card p {

  margin: 0;

  color: rgba(255, 250, 242, 0.62);

  font-family: var(--mini-font);

  font-size: 0.78rem;

  line-height: 1.45;

}



.speaker-meta {

  display: grid;

  gap: 0.15rem;

}



.speaker-role,

.speaker-company {

  display: block;

}



.speaker-company {

  color: rgba(255, 250, 242, 0.45);

}



.series-logo-card a {

  display: grid;

  width: 100%;

  height: 100%;

  place-items: center;

}



.series-data-status {

  width: min(82vw, 680px);

  margin: 0;

  color: rgba(255, 250, 242, 0.68);

  font-family: var(--mini-font);

  font-size: 0.9rem;

}

.series-data-retry {

  padding: 0;

  border: 0;

  background: transparent;

  color: var(--accent, #b8cf67);

  font: inherit;

  text-decoration: underline;

  text-underline-offset: 0.18em;

  cursor: pointer;

}

.series-data-retry:focus-visible {

  outline: 2px solid currentColor;

  outline-offset: 3px;

}



.series-speakers-block,

.series-sponsors-block {

  overflow: visible;

}



.series-marquee-window {

  width: 100%;

  max-width: 100%;

  min-width: 0;

  overflow: hidden;

  cursor: grab;

  touch-action: pan-y;

  user-select: none;

}



.series-speaker-grid[data-series-marquee],

.series-logo-grid-compact[data-series-marquee] {

  --series-marquee-duration: 480s;

  display: flex;

  grid-template-columns: none;

  width: max-content;

  min-width: max-content;

  overflow: visible;

  will-change: transform;

  animation: seriesMarquee var(--series-marquee-duration) linear infinite;

}



.series-logo-grid-compact[data-series-marquee] {

  --series-marquee-duration: 420s;

}



.series-speaker-grid[data-series-marquee].is-js-marquee,

.series-logo-grid-compact[data-series-marquee].is-js-marquee {

  animation: none;

}



.series-speaker-grid[data-series-marquee] .series-speaker-card {

  flex: 0 0 clamp(220px, 20vw, 282px);

}



.series-logo-grid-compact[data-series-marquee] .series-logo-card {

  flex: 0 0 clamp(220px, 20vw, 280px);

}



.series-marquee-clone {

  pointer-events: none;

}



@keyframes seriesMarquee {

  from {

    transform: translateX(0);

  }



  to {

    transform: translateX(-50%);

  }

}



@media (prefers-reduced-motion: reduce) {

  .series-speaker-grid[data-series-marquee],

  .series-logo-grid-compact[data-series-marquee] {

    width: auto;

    min-width: 0;

    flex-wrap: wrap;

    animation: none;

  }

}



/* Conference highlights video */

.legacy-highlights {

  position: relative;

  isolation: isolate;

  overflow: hidden;

  background: #222222;

  color: #fffaf2;

}



.legacy-highlights__head {

  position: relative;

  z-index: 1;

  width: min(860px, calc(100% - 2rem));

  margin: 0 auto;

  text-align: center;

}



.legacy-highlights__kicker {

  margin-bottom: 0.65rem;

}



.legacy-highlights__title {

  margin: 0;

  color: #fffaf2;

  font-family: var(--display-font);

  font-size: clamp(1.8rem, 4vw, 3.25rem);

  font-weight: 400;

  line-height: 1.02;

  text-transform: uppercase;

}



.legacy-highlights__media {

  position: relative;

  width: min(1120px, calc(100% - 2rem));

  aspect-ratio: 16 / 9;

  margin: clamp(2rem, 4vw, 3.5rem) auto 0;

  overflow: hidden;

  border: 0;

  background: #0d0d0d;

  box-shadow: none;

}



.legacy-highlights__media::before {

  display: none;

}



.legacy-highlights__video {

  position: absolute;

  inset: 0;

  width: 100%;

  height: 100%;

  border: 0;

  background: #0d0d0d;

}



@media (max-width: 620px) {

  .legacy-highlights__head,

  .legacy-highlights__media {

    width: calc(100% - 1.5rem);

  }



  .legacy-highlights__title {

    font-size: 1.85rem;

  }

}



.platform-scroll-section {

  position: relative;

  overflow: clip;

  background-color: #222222;

}



.platform-scroll-section.is-media-ready {

  background-image: url('assets/images/storage-tanks1.webp');

  background-position: center;

  background-size: cover;

  background-repeat: no-repeat;

}



.platform-scroll-section::before {

  content: "";

  position: absolute;

  inset: 0;

  background: linear-gradient(to bottom, #222222 0%, rgba(0, 0, 0, 0.55) 35%);

  z-index: 0;

}



.platform-scroll-section,

.platform-scroll-section * {

  filter: grayscale(1);

}



.platform-scroll-sticky {

  position: sticky;

  top: 0;

  height: 100vh;

  display: flex;

  align-items: center;

  overflow: hidden;

  z-index: 1;

}



.platform-scroll-copy {

  margin: 0;

  white-space: nowrap;

  color: rgba(255, 250, 242, 0.88);

  font-family: var(--display-font);

  font-size: clamp(5rem, 11vw, 12rem);

  font-weight: 900;

  line-height: 0.88;

  letter-spacing: 0;

  text-transform: uppercase;

  transform: translate3d(var(--platform-scroll-x, max(5vw, 1.5rem)), 0, 0);

  will-change: transform;

}



@media (prefers-reduced-motion: reduce) {

  .platform-scroll-section {

    min-height: auto;

  }



  .platform-scroll-sticky {

    position: relative;

    min-height: auto;

    padding: clamp(3rem, 7vw, 5rem) 0;

  }



  .platform-scroll-copy {

    white-space: normal;

    transform: none;

  }

}



/* Numbers Section */

.section.numbers-section {

  background: #222222;

  color: #fffaf2;

  padding: clamp(4rem, 6vw, 6rem) 0 clamp(3rem, 5vw, 4.5rem);

}



.platform-scroll-section + .numbers-section {

  padding-top: clamp(3rem, 5vw, 5rem);

}



.numbers-section .numbers-heading {

  text-align: center;

  margin-inline: auto;

}



.numbers-section .numbers-heading h2 {

  color: #fffaf2;

  text-align: center;

}



.numbers-section .numbers-heading .eyebrow {

  color: var(--terracotta);

  text-align: center;

}



.numbers-grid {

  display: grid;

  grid-template-columns: repeat(1, 1fr);

  gap: 1rem;

  margin-top: clamp(3rem, 5vw, 4.5rem);

}



@media (min-width: 768px) {

  .numbers-grid {

    grid-template-columns: repeat(2, 1fr);

  }

}



@media (min-width: 1200px) {

  .numbers-grid {

    grid-template-columns: repeat(4, 1fr);

  }

}



.number-item {

  position: relative;

  min-height: clamp(160px, 14vw, 200px);

  display: flex;

  flex-direction: column;

  align-items: flex-start;

  justify-content: flex-end;

  gap: 0.9rem;

  padding: clamp(1.15rem, 1.8vw, 1.5rem);

  border: 1px solid rgba(255, 250, 242, 0.12);

  background: #141414;

  text-align: left;

  overflow: hidden;

  transition: border-color 220ms ease, background 220ms ease, transform 220ms ease;

}



.number-item::before {

  content: "";

  position: absolute;

  top: 1.35rem;

  left: 1.35rem;

  width: 42px;

  height: 2px;

  background: var(--green);

}



.number-item:hover {

  border-color: rgba(69, 137, 98, 0.5);

  background: #181818;

  transform: translateY(-4px);

}



.number-value {

  display: block;

  position: relative;

  font-family: var(--display-font);

  font-size: clamp(3.75rem, 6.5vw, 5.25rem);

  font-weight: 900;

  color: #fffaf2;

  line-height: 1;

  margin-bottom: 0;

  text-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);

}



.number-label {

  position: relative;

  font-family: var(--mini-font);

  font-size: 0.9rem;

  font-weight: 700;

  text-transform: uppercase;

  letter-spacing: 0.12em;

  color: rgba(255, 250, 242, 0.68);

  text-align: left;

}



.truth-grid {

  display: grid;

  gap: 1rem;

}



.truth-grid article {

  border-top: 1px solid var(--line);

  padding-top: 1.2rem;

}



.truth-grid span {

  display: block;

  margin-bottom: 0.75rem;

  color: var(--green);

  font-family: var(--mini-font);

  font-weight: 700;

}



.section-heading {

  max-width: 900px;

  margin-bottom: 2rem;

}



.section-heading::after {

  content: "";

  display: block;

  width: 100%;

  height: 1px;

  margin-top: 1.6rem;

  background: rgba(255, 250, 242, 0.16);

}



.section-heading.overview-heading::after {

  display: none;

}



.pillars-heading {

  text-align: center;

  margin-inline: auto;

  justify-content: center;

  margin-bottom: 1.6rem;

}



.section.pillars-section {

  background: #222222;

  color: #fffaf2;

  padding-top: clamp(3rem, 5vw, 4.5rem);

  padding-bottom: clamp(0.75rem, 1.5vw, 2rem);

}



@media (min-width: 1024px) {

  .section.pillars-section {

    min-height: 220vh;

    padding: 0;

  }



  .pillars-section > .section-inner {

    position: sticky;

    top: 0;

    min-height: 100vh;

    display: grid;

    align-content: start;

    padding: clamp(3.5rem, 6vh, 5rem) 0;

  }

}



.tank-curve-marquee {

  position: absolute;

  left: 50%;

  bottom: clamp(-3.25rem, 0vw, 0.75rem);

  z-index: 1;

  width: 140vw;

  height: clamp(13rem, 28vw, 30rem);

  color: rgba(255, 250, 242, 0.88);

  overflow: visible;

  -webkit-mask-image: linear-gradient(

    90deg,

    rgba(0, 0, 0, 0.01) 0%,

    rgba(0, 0, 0, 0.08) 8%,

    rgba(0, 0, 0, 0.46) 20%,

    #000 36%,

    #000 64%,

    rgba(0, 0, 0, 0.46) 80%,

    rgba(0, 0, 0, 0.08) 92%,

    rgba(0, 0, 0, 0.01) 100%

  );

  mask-image: linear-gradient(

    90deg,

    rgba(0, 0, 0, 0.01) 0%,

    rgba(0, 0, 0, 0.08) 8%,

    rgba(0, 0, 0, 0.46) 20%,

    #000 36%,

    #000 64%,

    rgba(0, 0, 0, 0.46) 80%,

    rgba(0, 0, 0, 0.08) 92%,

    rgba(0, 0, 0, 0.01) 100%

  );

  pointer-events: none;

  transform: translateX(-50%);

}



.tank-curve-marquee text {

  fill: currentColor;

  font-family: var(--display-font);

  font-size: 72px;

  letter-spacing: 0;

  text-transform: uppercase;

  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.64);

}



.pillars-grid {

  display: grid;

  grid-template-columns: 1fr;

  border: 1px solid rgba(255, 250, 242, 0.12);

  background: #141414;

}



.pillar-card {

  position: relative;

  min-height: 205px;

  display: flex;

  flex-direction: column;

  justify-content: flex-end;

  padding: 2rem 1.45rem 1.55rem;

  background: #141414;

  border: 0;

  border-bottom: 1px solid rgba(255, 250, 242, 0.12);

  border-radius: 0;

  box-shadow: none;

  transition: background 180ms ease;

  overflow: hidden;

}



.pillars-grid .pillar-card:last-child {

  border-bottom: 0;

}



.pillar-card::before {

  content: "";

  position: absolute;

  top: 0;

  bottom: auto;

  left: 0;

  width: 100%;

  height: 3px;

  background: var(--green);

  opacity: 0;

  transform: none;

  transition: opacity 180ms ease;

}



.pillar-card:hover {

  background: #181818;

}



.pillar-card:hover::before {

  opacity: 1;

}



.pillar-number {

  position: absolute;

  top: 1.35rem;

  right: 1.35rem;

  width: auto;

  height: auto;

  background: transparent;

  color: rgba(255, 250, 242, 0.12);

  font-family: var(--display-font);

  font-size: 3.35rem;

  line-height: 1;

  font-weight: 900;

  opacity: 1;

  transition: color 300ms ease, opacity 300ms ease;

}



.pillar-card:hover .pillar-number {

  color: rgba(255, 250, 242, 0.16);

  opacity: 1;

}



.pillar-card h3 {

  position: relative;

  margin-bottom: 0.75rem;

  font-family: var(--mini-font);

  font-weight: 700;

  font-size: 1.32rem;

  text-transform: uppercase;

  letter-spacing: 0.02em;

  color: #fffaf2;

  line-height: 1.2;

}



.pillar-card p {

  position: relative;

  margin: 0;

  color: rgba(255, 250, 242, 0.66);

  font-size: 1rem;

  line-height: 1.6;

  max-width: 94%;

}



.pillar-card::after {

  content: "";

  position: absolute;

  right: 1.45rem;

  bottom: 1.35rem;

  width: 36px;

  height: 1px;

  background: rgba(229, 192, 39, 0.42);

}



/* Pillars Layout */

.pillars-layout {

  display: grid;

  gap: 0;

  align-items: center;

  margin-top: 4rem;

}



@media (min-width: 1024px) {

  .pillars-layout {

    grid-template-columns: 1fr;

    gap: 0;

    margin-top: 2.2rem;

    align-items: stretch;

  }



  .pillars-layout .pillars-grid {

    --pillars-video-inset: 33.3333%;

    position: relative;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    grid-template-rows: repeat(2, minmax(205px, 1fr));

    height: clamp(430px, 34vw, 520px);

    overflow: hidden;

  }



  .pillars-layout .pillar-card,

  .pillars-layout .pillars-video-container {

    min-height: 0;

    height: 100%;

  }



  .pillars-grid .pillar-card:nth-of-type(1) {

    grid-column: 1;

    grid-row: 1;

  }



  .pillars-grid .pillar-card:nth-of-type(2) {

    grid-column: 1;

    grid-row: 2;

    border-bottom: 0;

  }



  .pillars-grid .pillar-card:nth-of-type(3) {

    grid-column: 3;

    grid-row: 1;

  }



  .pillars-grid .pillar-card:nth-of-type(4) {

    grid-column: 3;

    grid-row: 2;

    border-bottom: 0;

  }



  .pillars-section.is-pillars-ready:not(.is-pillars-scroll-driven):not(.is-pillars-revealed) .pillars-grid {

    --pillars-video-inset: 0%;

  }



  .pillars-section.is-pillars-ready .pillar-card {

    min-width: 0;

    z-index: 3;

    transition: background 180ms ease;

    will-change: opacity, transform;

  }



  .pillars-section.is-pillars-ready:not(.is-pillars-scroll-driven):not(.is-pillars-revealed) .pillar-card {

    pointer-events: none;

  }



  .pillars-section.is-pillars-ready:not(.is-pillars-scroll-driven):not(.is-pillars-revealed) .pillar-card:nth-of-type(-n + 2) {

    transform: translateX(-80vw);

  }



  .pillars-section.is-pillars-ready:not(.is-pillars-scroll-driven):not(.is-pillars-revealed) .pillar-card:nth-of-type(n + 3) {

    transform: translateX(80vw);

  }



  .pillars-section.is-pillars-revealed .pillar-card {

    transform: translateX(0);

  }

}



.pillars-video-container {

  width: 100%;

  min-height: clamp(260px, 34vw, 430px);

  position: relative;

  overflow: hidden;

  border: 0;

  border-bottom: 1px solid rgba(255, 250, 242, 0.12);

  background: #222222;

  display: flex;

}



@media (min-width: 1024px) {

  .pillars-video-container {

    position: absolute;

    top: 0;

    right: var(--pillars-video-inset);

    bottom: 0;

    left: var(--pillars-video-inset);

    width: auto;

    z-index: 2;

    border-inline: 1px solid rgba(255, 250, 242, 0.12);

    border-bottom: 0;

    will-change: left, right;

  }

}



@media (max-width: 1023px) {

  .pillars-video-container {

    min-height: 300px;

  }

}



.pillars-video {

  width: 100%;

  height: 100%;

  object-fit: cover;

  display: block;

  filter: grayscale(68%) contrast(1.06) brightness(0.88);

}



.section.who-attend-section {

  padding-top: 0;

  padding-bottom: clamp(1.8rem, 4vw, 3.5rem);

}



.who-attend-section {

  position: relative;

  z-index: 2;

  background: #1f1f1f;

  color: #fffaf2;

  box-shadow: 0 -24px 80px rgba(0, 0, 0, 0.4);

}



.who-attend-section::after {

  content: "";

  position: absolute;

  right: 0;

  bottom: 0;

  left: 0;

  z-index: 1;

  height: clamp(2.25rem, 5vw, 4rem);

  background: linear-gradient(180deg, rgba(31, 31, 31, 0), #141414);

  pointer-events: none;

}



/* All sections from who-attend onward slide over the sticky sections */

.who-attend-section ~ .section,

.who-attend-section ~ section {

  position: relative;

  z-index: 2;

}



.who-attend-inner {

  position: relative;

  z-index: 3;

  padding-top: 0;

  padding-bottom: clamp(2rem, 4vw, 3rem);

}



.who-attend-layout {

  display: grid;

  gap: clamp(2rem, 4.5vw, 4.5rem);

}



.who-attend-copy {

  max-width: 640px;

  padding-top: 2rem;

}



.who-attend-copy .pillars-heading {

  text-align: left;

  margin-inline: 0;

  justify-content: start;

  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);

}



.who-attend-visual {

  display: block;

}

.who-attend-image,

.who-attend-video {

  width: 100%;

  height: auto;

  max-height: 500px;

  display: block;

  object-fit: cover;

  object-position: top;

}



.who-attend-grid {

  display: grid;

  grid-template-columns: 1fr;

  gap: 0;

  padding: 0;

  margin: 0;

  list-style: none;

}



@media (min-width: 1024px) {

  .who-attend-layout {

    grid-template-columns: minmax(26rem, 1.05fr) minmax(0, 0.85fr);

    align-items: stretch;

  }



  .who-attend-copy {

    padding-top: 4rem;

    order: 1;

  }



  .who-attend-visual {

    position: relative;

    display: flex;

    order: 2;

    align-items: flex-start;

    justify-content: center;

    min-height: clamp(660px, 74vw, 880px);

    overflow: hidden;

  }



  .who-attend-image,

  .who-attend-video {

    max-height: clamp(660px, 74vw, 880px);

    object-fit: contain;

    object-position: center top;

  }

}



.attend-card {

  display: grid;

  grid-template-columns: 2.8rem minmax(0, 1fr);

  gap: clamp(0.85rem, 1.6vw, 1.3rem);

  align-items: baseline;

  min-height: 0;

  padding: clamp(0.85rem, 1.5vw, 1.15rem) 0;

  border-bottom: 1px solid rgba(255, 250, 242, 0.18);

  transition: border-color 220ms ease, padding-left 220ms ease;

}



.attend-card:hover {

  padding-left: 0.35rem;

  border-color: rgba(229, 192, 39, 0.44);

}



.attend-number {

  font-family: var(--display-font);

  font-size: 0.78rem;

  font-weight: 900;

  color: var(--gold);

  opacity: 0.8;

  line-height: 1;

  letter-spacing: 0.08em;

}



.attend-card h3 {

  font-family: var(--mini-font);

  font-weight: 700;

  font-size: clamp(0.9rem, 1.05vw, 1.05rem);

  color: #fffaf2;

  line-height: 1.35;

  text-transform: uppercase;

  letter-spacing: 0.02em;

}



.attend-card p {

  margin: 0;

  font-size: 0.96rem;

  color: var(--ink-soft);

  line-height: 1.6;

}



.content-list-section {

  background: #222222;

  color: #fffaf2;

}



.content-list-section .section-heading {

  margin-bottom: clamp(2rem, 4vw, 3rem);

}



.key-topics-section {

  position: relative;

  z-index: 1;

  scroll-margin-top: clamp(5.5rem, 8vw, 8rem);

  padding-top: clamp(0.5rem, 1.25vw, 1.25rem);

  padding-bottom: clamp(5rem, 9vw, 7.5rem);

}



@media (min-width: 1024px) {

  .key-topics-section {

    position: sticky;

    top: 0;

  }

}



.key-topics-section .content-list-card {

  background: #141414;

  border-color: rgba(255, 250, 242, 0.12);

}



.key-topics-section .content-list-card:hover {

  background: #181818;

  border-color: rgba(229, 192, 39, 0.34);

}



.key-topics-section .content-list-number {

  font-size: 1.65rem;

}



.key-topics-section .content-list-card h3 {

  font-size: 1.05rem;

  line-height: 1.28;

}



.key-topics-section .content-list-card p {

  font-size: 0.9rem;

  line-height: 1.5;

}



/* Program focus: an editorial rail sequence rather than a conventional card grid. */

.key-topics-layout {

  position: relative;

  max-width: 1540px;

}



.key-topics-section .pillars-heading {

  position: relative;

  margin: 0 auto clamp(2rem, 4vw, 3rem);

  width: 100%;

  max-width: none;

  min-height: 0;

  padding: 0 0 calc(1.6rem + 1px);

  display: grid;

  gap: 0.35rem;

  justify-content: center;

  justify-items: center;

  text-align: center;

}



.key-topics-section .pillars-heading::before {

  display: none;

}



.key-topics-section .pillars-heading::after {

  content: "";

  position: absolute;

  bottom: 0;

  left: 50%;

  width: min(90vw, 900px);

  height: 1px;

  margin: 0;

  transform: translateX(-50%);

  background: rgba(255, 250, 242, 0.16);

}



.key-topics-section .pillars-heading .eyebrow {

  display: block;

  width: 100%;

  margin-bottom: 0;

  text-align: center;

}



.key-topics-section .pillars-heading .eyebrow::after {

  display: none;

}



.key-topics-section .pillars-heading h2 {

  width: 100%;

  max-width: 100%;

  margin: 0;

  font-size: clamp(1.6rem, 5.5cqi, 2.8rem);

  text-align: center;

}



.key-topics-section .pillars-heading h2::after {

  display: none;

}



.topic-card-grid {

  position: relative;

  display: grid;

  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 0.8rem;

  align-items: end;

}



.key-topics-section .topic-card-grid::after {

  display: none;

}



.key-topics-section .content-list-card {

  min-height: 0;

  padding: 1.35rem 1.35rem 0;

  border: 1px solid rgba(255, 250, 242, 0.16);

  border-bottom: 0;

  background: #141414;

  overflow: visible;

  transition: border-color 220ms ease, transform 220ms ease, background-color 220ms ease;

}



.key-topics-section .content-list-card::before {

  display: none;

}



.key-topics-section .content-list-card::after {

  content: "";

  position: absolute;

  z-index: 2;

  right: 0;

  bottom: 0;

  left: 0;

  height: clamp(1.75rem, 3vw, 2.75rem);

  background: linear-gradient(to bottom, rgba(34, 34, 34, 0), rgba(34, 34, 34, 0.28) 72%, rgba(34, 34, 34, 0.62) 100%);

  pointer-events: none;

}



.key-topics-section .content-list-card:hover {

  transform: translateY(-0.35rem);

  border-color: rgba(195, 91, 72, 0.75);

  border-bottom-color: transparent;

  background: #191919;

}



.key-topics-section .content-list-number {

  margin-bottom: 0.8rem;

  color: var(--green);

  font-family: var(--display-font);

  font-size: clamp(2rem, 2.25vw, 2.8rem);

  font-weight: 900;

  line-height: 0.85;

}



.key-topics-section .content-list-card h3 {

  min-height: 2.6em;

  margin-bottom: 0.6rem;

  font-family: var(--mini-font);

  font-size: clamp(0.92rem, 1.1vw, 1.15rem);

  font-weight: 700;

  letter-spacing: 0.02em;

}



.key-topics-section .content-list-card p {

  min-height: 4.5em;

  margin-bottom: 1.2rem;

  font-family: "Marcellus", Georgia, serif;

  font-weight: 400;

  color: rgba(255, 250, 242, 0.78);

}



.key-topics-section .content-card-image {

  margin: 0 -1.35rem;

  width: calc(100% + 2.7rem);

  aspect-ratio: 4 / 3;

  background: #141414;

  overflow: visible;

}



.key-topics-section .content-card-image img {

  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 18%, #000 100%);

  mask-image: linear-gradient(to bottom, transparent 0%, #000 18%, #000 100%);

  -webkit-box-reflect: below -1px linear-gradient(to bottom, rgba(34, 34, 34, 0.32), transparent 45%);

}



@media (min-width: 768px) {

  .key-topics-section .pillars-heading {

    margin-bottom: 2.8rem;

  }



  .topic-card-grid {

    grid-template-columns: repeat(5, minmax(0, 1fr));

    gap: clamp(0.6rem, 1vw, 1rem);

  }



  .key-topics-section .content-list-card {

    margin-bottom: 0;

  }



  .key-topics-section .content-list-card:nth-child(1) { height: clamp(23rem, 27vw, 27rem); }

  .key-topics-section .content-list-card:nth-child(2) { height: clamp(26rem, 31vw, 30rem); }

  .key-topics-section .content-list-card:nth-child(3) { height: clamp(29rem, 35vw, 34rem); }

  .key-topics-section .content-list-card:nth-child(4) { height: clamp(25rem, 29vw, 29rem); }

  .key-topics-section .content-list-card:nth-child(5) { height: clamp(22rem, 26vw, 26rem); }



  .key-topics-section .content-card-image {

    flex: 1 1 auto;

    min-height: 7rem;

    margin-top: auto;

    aspect-ratio: auto;

  }

}



@media (min-width: 1024px) {

  .key-topics-section {

    min-height: 0;

    padding: clamp(0.75rem, 1.5vw, 1.5rem) 0 clamp(13rem, 18vw, 20rem);

  }



  .key-topics-layout {

    position: relative;

    top: auto;

    display: block;

    padding: 0;

  }



  .key-topics-section .pillars-heading {

    width: 100%;

    max-width: none;

    margin: 0 auto clamp(2rem, 4vw, 3rem);

    min-height: 0;

  }



  .key-topics-section .content-list-card {

    padding: clamp(1.25rem, 1.45vw, 1.7rem) clamp(1rem, 1.2vw, 1.4rem) 0;

  }



  .key-topics-section .content-list-card h3 {

    min-height: 3.8em;

  }



  .key-topics-section .content-list-card p {

    min-height: 6em;

  }



  .key-topics-section .content-card-image {

    margin-inline: calc(clamp(1rem, 1.2vw, 1.4rem) * -1);

    width: calc(100% + clamp(2rem, 2.4vw, 2.8rem));

  }

}



/* Keep the sticky sequence on short laptops, but size it to fit within the viewport. */

@media (min-width: 1024px) and (max-height: 950px) {

  .key-topics-section {

    position: sticky;

    top: 0;

    padding-bottom: clamp(4rem, 6vw, 6rem);

  }



  #main .key-topics-section .pillars-heading {

    margin-bottom: clamp(1.25rem, 2vw, 1.75rem);

  }



  #main .key-topics-section .pillars-heading::after {

    margin-top: clamp(1.25rem, 2vw, 1.75rem);

  }



  .key-topics-section .content-list-card:nth-child(1) { height: 18rem; }

  .key-topics-section .content-list-card:nth-child(2) { height: 20rem; }

  .key-topics-section .content-list-card:nth-child(3) { height: 23rem; }

  .key-topics-section .content-list-card:nth-child(4) { height: 19rem; }

  .key-topics-section .content-list-card:nth-child(5) {

    height: 18rem;

    align-self: end;

  }



  .key-topics-section .content-list-card h3 {

    min-height: 3.1em;

  }



  .key-topics-section .content-list-card p {

    min-height: 4.5em;

    margin-bottom: 0.8rem;

  }



  .key-topics-section .content-card-image {

    min-height: 5rem;

  }

}



.why-attend-section {

  position: relative;

  overflow: hidden;

  isolation: isolate;

  background: #141414;

  padding-top: clamp(2rem, 4vw, 3rem);

}



.why-attend-section::before {

  content: "";

  position: absolute;

  inset: 0;

  z-index: -1;

  background: none;

  opacity: 0.28;

  filter: grayscale(0.85) contrast(1.02) brightness(0.68);

  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 35%, black 85%, transparent 100%);

  mask-image: linear-gradient(to bottom, transparent 0%, black 35%, black 85%, transparent 100%);

}



.why-attend-section.is-media-ready::before {

  background: url("assets/images/whyattend.webp") center / cover no-repeat;

}



.why-attend-section > .section-inner {

  position: relative;

  z-index: 1;

}



.why-attend-section .value-list {

  gap: 0;

  border-block: 1px solid rgba(255, 250, 242, 0.16);

}



.why-attend-section .value-list li {

  min-height: 0;

  align-items: flex-start;

  padding: clamp(1.2rem, 2vw, 1.6rem) clamp(1rem, 1.8vw, 1.35rem);

  border: 0;

  border-bottom: 1px solid rgba(255, 250, 242, 0.14);

  background: transparent;

  font-size: clamp(0.94rem, 1.1cqi, 1.04rem);

  line-height: 1.5;

  transition: background 180ms ease, border-color 180ms ease;

}



.why-attend-section .value-list li:last-child {

  border-bottom: 0;

}



.why-attend-section .value-list li::before {

  position: static;

  flex: 0 0 auto;

  width: 1rem;

  height: 1rem;

  margin: 0.24rem 0.85rem 0 0;

  border-radius: 0;

  transform: none;

  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='m13 6 6 6-6 6'/%3E%3C/svg%3E") center / contain no-repeat;

  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='m13 6 6 6-6 6'/%3E%3C/svg%3E") center / contain no-repeat;

  box-shadow: 0 0 18px rgba(229, 192, 39, 0.34);

}



.why-attend-section .value-list li:hover {

  background: rgba(255, 250, 242, 0.045);

  border-color: rgba(229, 192, 39, 0.28);

}



.why-sponsor-section {

  background: #141414;

}



.why-sponsor-layout {

  display: grid;

  gap: clamp(2rem, 5vw, 5rem);

  align-items: start;

}



.why-sponsor-intro {

  max-width: 560px;

}



.why-sponsor-heading-row {

  display: grid;

  grid-template-columns: auto minmax(0, 1fr);

  align-items: center;

  gap: 1rem;

}



.why-sponsor-intro .pillars-heading {

  text-align: left;

  margin-inline: 0;

  justify-content: start;

}



.why-sponsor-intro .pillars-heading h2 {

  color: #fffaf2;

}



.why-sponsor-intro .pillars-heading .eyebrow {

  color: var(--terracotta);

}



.why-sponsor-intro p {

  margin: 0;

  color: rgba(255, 250, 242, 0.68);

  font-size: 1rem;

  line-height: 1.6;

}



.why-sponsor-cta {

  width: fit-content;

  flex: 0 0 auto;

  justify-self: center;

  margin: 0;

  white-space: nowrap;

}



@media (max-width: 480px) {

  .why-sponsor-heading-row {

    grid-template-columns: 1fr;

  }



  .why-sponsor-cta {

    justify-self: start;

    margin-top: 0.25rem;

  }

}



.sponsor-value-list {

  counter-reset: sponsorValue;

  gap: 0;

  max-width: none;

  margin: 0;

  border-left: 0;

  border-block: 0;

}



.sponsor-value-list li {

  counter-increment: sponsorValue;

  min-height: 0;

  align-items: flex-start;

  padding: clamp(0.95rem, 1.55vw, 1.25rem) 0 clamp(0.95rem, 1.55vw, 1.25rem) clamp(1.8rem, 2.6vw, 2.6rem);

  border: 0;

  border-bottom: 1px solid rgba(255, 250, 242, 0.14);

  background: transparent;

  color: #fffaf2;

  font-family: var(--mini-font);

  font-size: clamp(0.9rem, 1.05vw, 1.05rem);

  font-weight: 700;

  line-height: 1.4;

  text-transform: uppercase;

  letter-spacing: 0.02em;

}



.sponsor-value-list li:last-child {

  border-bottom: 0;

}



.sponsor-value-list li:hover {

  border-color: rgba(229, 192, 39, 0.44);

}



.sponsor-value-list li::before {

  content: counter(sponsorValue, decimal-leading-zero);

  left: 0.2rem;

  top: clamp(0.95rem, 1.55vw, 1.25rem);

  width: auto;

  height: auto;

  border-radius: 0;

  background: transparent;

  color: var(--gold);

  font-family: var(--display-font);

  font-size: 12px;

  font-weight: 900;

  line-height: 1;

  transform: none;

}



.feedback-section {

  position: relative;

  isolation: isolate;

  overflow: hidden;

  padding-block: clamp(4.5rem, 7vw, 7rem);

  color: #fffaf2;

  background: #141414;

}



.feedback-inner {

  position: relative;

  z-index: 1;

}



.feedback-marquee {

  position: relative;

  z-index: 1;

  width: 100%;

  overflow: hidden;

  cursor: grab;

  touch-action: pan-y;

  user-select: none;

  -webkit-mask-image: linear-gradient(

    90deg,

    transparent 0%,

    black 6%,

    black 94%,

    transparent 100%

  );

  mask-image: linear-gradient(

    90deg,

    transparent 0%,

    black 6%,

    black 94%,

    transparent 100%

  );

}



.feedback-track {

  --feedback-marquee-duration: 220s;

  display: flex;

  align-items: stretch;

  gap: clamp(0.85rem, 1.5vw, 1.25rem);

  width: max-content;

  min-width: max-content;

  will-change: transform;

  animation: feedbackMarquee var(--feedback-marquee-duration) linear infinite;

}



.feedback-track.is-js-marquee {

  animation: none;

}



.series-marquee-window.is-dragging,

.feedback-marquee.is-dragging {

  cursor: grabbing;

}



.series-marquee-window.is-dragging *,

.feedback-marquee.is-dragging * {

  cursor: grabbing;

}



.series-marquee-window img,

.feedback-marquee img {

  -webkit-user-drag: none;

}



.feedback-card {

  position: relative;

  flex: 0 0 clamp(280px, 28vw, 340px);

  min-height: 460px;

  aspect-ratio: 3 / 4;

  display: flex;

  flex-direction: column;

  gap: 0.55rem;

  padding: clamp(1.35rem, 2.5vw, 2rem);

  overflow: hidden;

  border: 1px solid rgba(255, 250, 242, 0.14);

  background: rgba(10, 10, 10, 0.76);

  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);

}



.feedback-card::before {

  content: "“";

  position: absolute;

  top: -0.2rem;

  right: 1.2rem;

  color: rgba(69, 137, 98, 0.2);

  font-family: Georgia, serif;

  font-size: clamp(5rem, 9vw, 8rem);

  line-height: 1;

  pointer-events: none;

}



.feedback-person {

  position: relative;

  z-index: 1;

  flex: 0 0 170px;

  min-height: 170px;

  display: flex;

  flex-direction: column;

  align-items: center;

  gap: 0.85rem;

  text-align: center;

}



.feedback-person img {

  width: 88px;

  height: 88px;

  border: 2px solid rgba(69, 137, 98, 0.78);

  border-radius: 50%;

  background: #222222;

  object-fit: cover;

}



.feedback-person h3 {

  margin: 0 0 0.25rem;

  color: #fffaf2;

  font-family: var(--mini-font);

  font-size: clamp(0.9rem, 1.3vw, 1.02rem);

  font-weight: 700;

  line-height: 1.2;

}



.feedback-person p {

  margin: 0;

  color: var(--gold);

  font-family: var(--mini-font);

  font-size: 0.68rem;

  font-weight: 700;

  line-height: 1.35;

  letter-spacing: 0.05em;

  text-transform: uppercase;

}



.feedback-copy {

  position: relative;

  z-index: 1;

  margin: 0;

  color: rgba(255, 250, 242, 0.74);

  font-family: "Marcellus", Georgia, serif;

  font-size: clamp(0.78rem, 1vw, 0.88rem);

  line-height: 1.55;

  text-wrap: pretty;

}



.feedback-marquee-clone {

  pointer-events: none;

}



.feedback-status {

  width: min(84vw, 680px);

  margin: 0 auto;

  color: rgba(255, 250, 242, 0.68);

  font-family: var(--mini-font);

  font-size: 0.95rem;

  text-align: center;

}



@keyframes feedbackMarquee {

  from {

    transform: translateX(0);

  }



  to {

    transform: translateX(-50%);

  }

}



@media (max-width: 700px) {

  .feedback-marquee {

    -webkit-mask-image: linear-gradient(90deg, transparent, black 3%, black 97%, transparent);

    mask-image: linear-gradient(90deg, transparent, black 3%, black 97%, transparent);

  }



  .feedback-card {

    flex-basis: min(82vw, 320px);

    min-height: 430px;

    padding: 1.3rem;

  }



  .feedback-person {

    flex-basis: 160px;

    min-height: 160px;

    gap: 0.7rem;

  }



  .feedback-person img {

    width: 76px;

    height: 76px;

  }

}



@media (prefers-reduced-motion: reduce) {

  .feedback-marquee {

    width: min(1120px, calc(100% - 2rem));

    margin-inline: auto;

    overflow: visible;

    -webkit-mask-image: none;

    mask-image: none;

  }



  .feedback-track {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(min(100%, 310px), 1fr));

    width: 100%;

    min-width: 0;

    animation: none;

  }



  .feedback-card {

    min-height: 430px;

  }

}



.content-card-grid {

  display: grid;

  grid-template-columns: 1fr;

  gap: 1rem;

}



.content-list-card {

  position: relative;

  min-height: 190px;

  padding: 1.5rem;

  display: flex;

  flex-direction: column;

  justify-content: flex-start;

  border: 1px solid rgba(255, 250, 242, 0.14);

  background: rgba(255, 250, 242, 0.055);

  overflow: hidden;

  transition: border-color 220ms ease, transform 220ms ease;

}



.content-list-card::before {

  content: "";

  position: absolute;

  inset: 0 auto 0 0;

  width: 4px;

  background: var(--gold);

  transform: scaleY(0);

  transform-origin: bottom;

  transition: transform 300ms ease;

}



.content-list-card:hover {

  border-color: rgba(229, 192, 39, 0.34);

  transform: translateY(-4px);

}



.content-list-card:hover::before {

  transform: scaleY(1);

}



.content-list-number {

  position: relative;

  color: rgba(255, 250, 242, 0.4);

  font-family: var(--display-font);

  font-size: 2rem;

  line-height: 1;

  margin-bottom: 1rem;

  display: block;

}



.content-list-card h3 {

  position: relative;

  margin-bottom: 0.7rem;

  color: #fffaf2;

  font-family: var(--mini-font);

  font-size: 1.22rem;

  font-weight: 700;

  line-height: 1.25;

  text-transform: uppercase;

}



.content-list-card p {

  position: relative;

  margin: 0 0 1.5rem 0;

  color: rgba(255, 250, 242, 0.72);

  font-size: 1rem;

  line-height: 1.55;

}



.content-card-image {

  position: relative;

  flex-shrink: 0;

  margin: auto -1.5rem -1.5rem -1.5rem;

  width: calc(100% + 3rem);

  aspect-ratio: 16 / 9;

  overflow: hidden;

}



.content-card-image img {

  width: 100%;

  height: 100%;

  object-fit: cover;

  transition: transform 0.4s ease;

}



.content-list-card:hover .content-card-image img {

  transform: scale(1.05);

}



.value-list {

  display: grid;

  grid-template-columns: 1fr;

  gap: 1rem;

  max-width: 980px;

  margin: 0 auto;

  padding: 0;

  list-style: none;

}



.value-list li {

  position: relative;

  min-height: 92px;

  display: flex;

  align-items: center;

  padding: 1.2rem 1.35rem 1.2rem 3.25rem;

  border: 1px solid rgba(255, 250, 242, 0.14);

  background: rgba(255, 250, 242, 0.055);

  color: #fffaf2;

  font-family: var(--mini-font);

  font-size: clamp(1rem, 2cqi, 1.16rem);

  font-weight: 600;

  line-height: 1.45;

}



.value-list li::before {

  content: "";

  position: absolute;

  left: 1.35rem;

  top: 50%;

  width: 0.7rem;

  height: 0.7rem;

  border-radius: 50%;

  background: var(--gold);

  transform: translateY(-50%);

}



.why-sponsor-section .sponsor-value-list {

  counter-reset: sponsorValue;

  gap: 0;

  max-width: none;

  margin: 0;

  border-left: 0;

  border-block: 0;

}



.why-sponsor-section .sponsor-value-list li {

  counter-increment: sponsorValue;

  min-height: 0;

  align-items: flex-start;

  padding: clamp(0.8rem, 1.2vw, 1rem) 0 clamp(0.8rem, 1.2vw, 1rem) clamp(1.6rem, 2.2vw, 2.2rem);

  border: 0;

  border-bottom: 1px solid rgba(255, 250, 242, 0.14);

  background: transparent;

  color: #fffaf2;

  font-family: var(--mini-font);

  font-size: clamp(0.9rem, 1.05vw, 1.05rem);

  font-weight: 700;

  line-height: 1.35;

  text-transform: uppercase;

  letter-spacing: 0.02em;

}



.why-sponsor-section .sponsor-value-list li:last-child {

  border-bottom: 0;

}



.why-sponsor-section .sponsor-value-list li::before {

  content: counter(sponsorValue, decimal-leading-zero);

  position: absolute;

  left: 0.2rem;

  top: clamp(0.8rem, 1.2vw, 1rem);

  width: auto;

  height: auto;

  border-radius: 0;

  background: transparent;

  color: var(--gold);

  font-family: var(--display-font);

  font-size: 11px;

  font-weight: 900;

  line-height: 1;

  transform: none;

}



@media (min-width: 768px) {

  .content-card-grid,

  .value-list {

    grid-template-columns: repeat(2, 1fr);

  }



  .why-attend-section .value-list {

    grid-template-columns: 1fr;

  }



  .sponsor-value-list {

    grid-template-columns: 1fr;

  }

}



@media (min-width: 1024px) {

  .why-sponsor-layout {

    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);

  }



  .topic-card-grid {

    grid-template-columns: repeat(3, 1fr);

  }



  .content-list-card {

    min-height: 260px;

  }



  .value-list {

    grid-template-columns: repeat(3, 1fr);

    max-width: none;

  }



  .value-list li {

    min-height: 180px;

    align-items: flex-end;

    padding: 3.2rem 1.2rem 1.25rem;

  }



  .value-list li::before {

    top: 1.35rem;

    transform: none;

  }



  .why-attend-section .value-list {

    grid-template-columns: repeat(5, minmax(0, 1fr));

  }



  .why-attend-section .value-list li {

    min-height: 150px;

    align-items: flex-start;

    padding: clamp(1.05rem, 1.5vw, 1.3rem) clamp(0.8rem, 1.2vw, 1rem);

    border-bottom: 0;

    border-right: 1px solid rgba(255, 250, 242, 0.14);

    font-size: clamp(0.8rem, 0.82vw, 0.9rem);

    line-height: 1.4;

    text-wrap: pretty;

  }



  .why-attend-section .value-list li:last-child {

    border-right: 0;

  }



  .why-attend-section .value-list li::before {

    top: auto;

    transform: none;

  }



  .sponsor-value-list {

    grid-template-columns: 1fr;

  }



  .sponsor-value-list li {

    min-height: 0;

    align-items: flex-start;

    padding: clamp(0.95rem, 1.55vw, 1.25rem) 0 clamp(0.95rem, 1.55vw, 1.25rem) clamp(1.8rem, 2.6vw, 2.6rem);

  }



  .sponsor-value-list li::before {

    top: clamp(0.95rem, 1.55vw, 1.25rem);

    transform: none;

  }

}



@media (min-width: 1200px) {

  .topic-card-grid,

  .value-list {

    grid-template-columns: repeat(5, 1fr);

  }



  .why-attend-section .value-list {

    grid-template-columns: repeat(5, minmax(0, 1fr));

  }



  .sponsor-value-list {

    grid-template-columns: 1fr;

  }

}



.tank-curve-marquee .tank-marquee-eyebrow {

  fill: var(--charcoal);

  font-family: var(--mini-font);

  font-size: 0.86rem;

  font-weight: 700;

  letter-spacing: 0;

  text-shadow: none;

}



.tank-curve-marquee .tank-marquee-title {

  fill: currentColor;

  font-family: var(--display-font);

  font-size: 72px;

  font-weight: 400;

  letter-spacing: 0;

  text-transform: uppercase;

  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.64);

}



.delegate-section {

  position: relative;

  isolation: isolate;

  color: #fffaf2;

  background: var(--charcoal);

}



.delegate-section::before {

  content: "";

  position: absolute;

  inset: 0;

  z-index: -1;

  background:

    linear-gradient(90deg, rgba(43, 41, 38, 0.95), rgba(43, 41, 38, 0.72)),

    url("assets/images/storage-tanks1.webp") center / cover;

}



.delegate-layout {

  display: grid;

  gap: 2rem;

}



.delegate-panel {

  max-width: 620px;

}



.delegate-panel p:not(.eyebrow),

.delegate-list p {

  color: rgba(255, 250, 242, 0.78);

}



.delegate-list {

  display: grid;

  gap: 1rem;

}



.delegate-list article {

  background: rgba(255, 250, 242, 0.07);

  border-color: rgba(255, 250, 242, 0.16);

}



.delegate-list h3 {

  color: var(--gold);

}



.sponsor-section {

  background: #fffaf2;

}



.roi-board {

  display: grid;

  gap: 1rem;

}



.roi-board article {

  background: var(--bg-site);

}



.roi-board strong {

  display: block;

  margin: 0.45rem 0 0.5rem;

  color: var(--blue);

  font-family: var(--display-font);

  font-size: clamp(2.1rem, 8cqi, 3.5rem);

  font-weight: 400;

  line-height: 1;

}



.venue-section {

  display: grid;

  background: var(--charcoal);

  color: #fffaf2;

}



.venue-image {

  min-height: 340px;

  background-image:

    linear-gradient(180deg, rgba(43, 41, 38, 0.08), rgba(43, 41, 38, 0.22)),

    url("assets/images/storage-tanks.webp");

  background-size: cover;

  background-position: center;

}



.venue-content {

  padding: 3rem 5vw;

}



.venue-content p {

  color: rgba(255, 250, 242, 0.76);

}



.venue-content dl {

  display: grid;

  gap: 0.8rem;

  margin: 1.6rem 0 0;

}



.venue-content div {

  border-top: 1px solid rgba(255, 250, 242, 0.16);

  padding-top: 0.9rem;

}



.venue-content dt {

  color: var(--gold);

  font-family: var(--mini-font);

  font-size: 0.86rem;

  font-weight: 700;

  text-transform: uppercase;

}



.venue-content dd {

  margin: 0.2rem 0 0;

}



.invitation-section {

  background: linear-gradient(180deg, var(--bg-site), #fffaf2);

}



.invitation-form {

  display: grid;

  gap: 1rem;

}



.invitation-form label {

  display: grid;

  gap: 0.45rem;

}



.invitation-form span {

  color: var(--charcoal);

  font-family: var(--mini-font);

  font-size: 0.9rem;

  font-weight: 700;

}



.invitation-form input,

.invitation-form select,

.invitation-form textarea {

  width: 100%;

  min-height: 48px;

  border: 1px solid var(--line);

  border-radius: 4px;

  background: #fffaf2;

  color: var(--charcoal);

  padding: 0.8rem 0.95rem;

}



.cta-section {

  background: #141414;

  padding-bottom: 0;

}



.cta-card {

  position: relative;

  overflow: hidden;

  display: grid;

  gap: 2.5rem;

  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 4vw, 4rem);

  background: #0f0f0f;

  border: 1px solid rgba(255, 250, 242, 0.12);

  border-bottom: 0;

}



.cta-card::before {

  content: "";

  position: absolute;

  inset: 0;

  z-index: 0;

  background: none;

  opacity: 0.72;

}



.cta-section.is-media-ready .cta-card::before {

  background: url('assets/images/storage-tanks.webp') center 62% / cover no-repeat;

}



.cta-card::after {

  content: "";

  position: absolute;

  inset: 0;

  z-index: 0;

  background:

    linear-gradient(90deg, rgba(15, 15, 15, 0.82) 0%, rgba(15, 15, 15, 0.48) 48%, rgba(15, 15, 15, 0.7) 100%),

    linear-gradient(180deg, rgba(15, 15, 15, 0.16) 0%, rgba(15, 15, 15, 0.7) 100%);

}



.cta-content {

  position: relative;

  z-index: 1;

  max-width: 720px;

}



.cta-content h2 {

  color: #fffaf2;

  margin: 1rem 0 1.5rem;

  line-height: 1.1;

}



.cta-description {

  color: rgba(255, 250, 242, 0.7);

  font-size: clamp(1rem, 2cqi, 1.25rem);

  line-height: 1.5;

  margin: 0;

}



.cta-actions {

  position: relative;

  z-index: 1;

  display: flex;

  flex-direction: column;

  gap: 1.25rem;

  align-items: flex-start;

  justify-content: center;

}



.cta-actions .button {

  position: relative;

  overflow: hidden;

  min-width: 198px;

  min-height: 46px;

  padding: 0.72rem 1.45rem;

  font-size: 0.86rem;

  border-radius: 12px;

}



.cta-actions .button-primary {

  border: 3px solid rgba(69, 137, 98, 0.52);

  background:

    linear-gradient(180deg, #3f815c 0%, #2a5f42 100%) padding-box,

    linear-gradient(180deg, rgba(126, 178, 145, 0.66), rgba(31, 74, 50, 0.92)) border-box;

  color: #fffaf2;

  box-shadow:

    inset 0 1px 0 rgba(255, 255, 255, 0.16),

    inset 0 -1px 0 rgba(0, 0, 0, 0.26),

    0 2px 4px rgba(0, 0, 0, 0.48);

}



.cta-actions .button-primary:hover,

.cta-actions .button-primary:focus-visible {

  background:

    linear-gradient(180deg, #4b946b 0%, #32704d 100%) padding-box,

    linear-gradient(180deg, rgba(147, 199, 165, 0.76), rgba(38, 91, 62, 0.95)) border-box;

  color: #fffaf2;

  box-shadow:

    inset 0 1px 0 rgba(255, 255, 255, 0.18),

    inset 0 -1px 0 rgba(0, 0, 0, 0.24),

    0 4px 8px rgba(0, 0, 0, 0.48);

}



.cta-actions .button-primary:active {

  transform: translateY(0) scale(0.995);

  box-shadow: 0 0 1px rgba(0, 0, 0, 0.8);

}



.cta-note {

  color: rgba(255, 250, 242, 0.4);

  font-size: 0.82rem;

  font-family: var(--mini-font);

  font-weight: 500;

  margin: 0;

  text-transform: uppercase;

  letter-spacing: 0.05em;

}



@media (min-width: 1024px) {

  .cta-card {

    grid-template-columns: 1fr auto;

    align-items: center;

    gap: 5rem;

  }

}



.site-footer {

  position: relative;

  z-index: 2;

  overflow: hidden;

  border-top: 1px solid rgba(255, 250, 242, 0.03);

  background: #0b0a09;

  color: #fffaf2;

  font-family: var(--mini-font);

  padding-top: clamp(4rem, 8vw, 7rem);

}



.site-footer::before {

  content: "";

  position: absolute;

  inset: 0;

  z-index: 0;

  background-image: none;

  background-size: cover;

  background-position: center;

  filter: grayscale(1) brightness(0.22) contrast(1.34);

  pointer-events: none;

}



.site-footer.is-media-ready::before {

  background-image: url('assets/images/footer.webp');

}



.site-footer::after {

  content: "";

  position: absolute;

  inset: 0;

  z-index: 1;

  background: 

    linear-gradient(to right, rgba(11, 10, 9, 0.98) 0%, rgba(11, 10, 9, 0.9) 35%, rgba(11, 10, 9, 0.16) 100%),

    linear-gradient(to bottom, rgba(11, 10, 9, 0.98) 0%, rgba(11, 10, 9, 0.88) 25%, rgba(11, 10, 9, 0.18) 100%);

  pointer-events: none;

}



.footer-inner {

  position: relative;

  z-index: 2;

  width: var(--container);

  margin: 0 auto;

}



.footer-inner::before {

  content: "";

  position: absolute;

  top: 50%;

  left: 50%;

  z-index: -1;

  width: min(104rem, 145vw);

  aspect-ratio: 5195 / 2887;

  transform: translate(-50%, -50%);

  background-image: none;

  background-repeat: no-repeat;

  background-position: center;

  background-size: contain;

  opacity: 0.08;

  filter: grayscale(1) brightness(1.65) contrast(0.9);

  mix-blend-mode: screen;

  pointer-events: none;

}



@supports ((-webkit-mask-image: url("")) or (mask-image: url(""))) {

  .footer-inner::before {

    background: none;

    -webkit-mask-image: none;

    mask-image: none;

  }



  .site-footer.is-media-ready .footer-inner::before {

    background: linear-gradient(

      135deg,

      rgba(255, 250, 242, 0.34) 0%,

      rgba(121, 170, 82, 0.22) 48%,

      rgba(255, 250, 242, 0.14) 100%

    );

    -webkit-mask-image: url('assets/images/map.webp');

    mask-image: url('assets/images/map.webp');

    -webkit-mask-repeat: no-repeat;

    mask-repeat: no-repeat;

    -webkit-mask-position: center;

    mask-position: center;

    -webkit-mask-size: contain;

    mask-size: contain;

    opacity: 0.14;

    filter: none;

  }

}



.footer-grid {

  display: grid;

  grid-template-columns: 1fr;

  gap: 4rem;

  padding-bottom: clamp(4rem, 8vw, 7rem);

}



@media (max-width: 767px) {

  .footer-grid {

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 2.5rem 1.25rem;

  }



  .footer-organizer {

    grid-column: 1 / -1;

    align-items: center;

    text-align: center;

  }



  .footer-col {

    min-width: 0;

    gap: 1.5rem;

  }



  .footer-office-group,

  .footer-links,

  .footer-contact-group {

    grid-template-columns: 1fr;

  }



  .footer-organizer .footer-socials {

    justify-content: center;

  }

}



@media (min-width: 1024px) {

  .footer-grid {

    grid-template-columns: 1.1fr 1.2fr 1.3fr;

    gap: clamp(3rem, 5vw, 6rem);

  }

}



.footer-col {

  display: flex;

  flex-direction: column;

  gap: 2rem;

}



.footer-kicker {

  color: var(--green);

  font-family: var(--mini-font);

  font-size: 0.72rem;

  font-weight: 700;

  text-transform: uppercase;

  letter-spacing: 0.1em;

  margin-bottom: -0.5rem;

}



.footer-logo-wrap {

  width: 200px;

  max-width: 100%;

  padding: 1px;

  background: rgba(255, 255, 255, 0.05);

  border: 1px solid rgba(255, 255, 255, 0.1);

}



.footer-logo {

  width: 100%;

  height: auto;

  display: block;

  opacity: 0.95;

}



.footer-description {

  color: rgba(255, 250, 242, 0.6);

  font-size: 0.88rem;

  line-height: 1.6;

  margin: 0;

  max-width: 38ch;

}



@media (max-width: 767px) {

  .footer-description {

    display: none;

  }

}



.footer-website {

  color: #fffaf2;

  font-family: var(--mini-font);

  font-size: 0.88rem;

  font-weight: 700;

  text-decoration: none;

  width: fit-content;

  transition: opacity 180ms ease;

}



.footer-website:hover {

  opacity: 0.8;

}



.footer-socials {

  display: flex;

  flex-wrap: wrap;

  gap: 1.25rem;

  margin-top: 0.5rem;

}



.footer-socials a {

  color: rgba(255, 250, 242, 0.4);

  font-family: var(--mini-font);

  font-size: 0.7rem;

  font-weight: 700;

  text-transform: uppercase;

  letter-spacing: 0.1em;

  transition: color 180ms ease;

}



.footer-socials a:hover {

  color: var(--green);

}



.footer-title {

  color: #fffaf2;

  font-family: var(--mini-font);

  font-size: 0.85rem;

  font-weight: 700;

  text-transform: uppercase;

  letter-spacing: 0.12em;

  margin-bottom: 0;

}



.footer-office-group,

.footer-links,

.footer-contact-group {

  display: grid;

  grid-template-columns: 1fr;

  gap: 1.25rem;

}



@media (min-width: 640px) {

  .footer-office-group,

  .footer-links,

  .footer-contact-group {

    grid-template-columns: 1fr 1fr;

    column-gap: 2.5rem;

  }

}



.footer-office-group .footer-title,

.footer-links-group .footer-title,

.footer-contact-group .footer-title,

.footer-contact-group > .contact-heading {

  grid-column: 1 / -1;

}



.footer-office {

  display: grid;

  gap: 0.35rem;

}



.footer-office strong {

  color: #fffaf2;

  font-family: var(--mini-font);

  font-size: 0.88rem;

  font-weight: 700;

  line-height: 1.25;

}



.footer-office p {

  color: rgba(255, 250, 242, 0.55);

  font-size: 0.82rem;

  line-height: 1.5;

  margin: 0;

}



.footer-links-group .footer-title {

  margin-bottom: 1.25rem;

}



.footer-links {

  list-style: none;

  padding: 0;

  margin: 0;

  gap: 0.85rem;

}



.footer-links a {

  color: rgba(255, 250, 242, 0.65);

  font-family: var(--mini-font);

  font-size: 0.88rem;

  transition: color 180ms ease;

}



.footer-links a:hover {

  color: #fffaf2;

}



.footer-contact-group .contact-heading {

  color: var(--green);

  font-family: var(--mini-font);

  font-size: 0.72rem;

  font-weight: 700;

  text-transform: uppercase;

  letter-spacing: 0.1em;

  margin-bottom: 0.75rem;

}



.contact-topic {

  display: flex;

  flex-direction: column;

}



.contact-person {

  display: flex;

  flex-direction: column;

  gap: 0.05rem;

}



.contact-name {

  color: #fffaf2;

  font-weight: 700;

  font-size: 0.95rem;

  margin: 0;

}



.contact-role {

  color: rgba(255, 250, 242, 0.4);

  font-size: 0.68rem;

  text-transform: uppercase;

  letter-spacing: 0.05em;

  line-height: 1.1;

  margin: 0;

}



.contact-links {

  display: flex;

  flex-direction: column;

  gap: 0;

}



.contact-links a {

  display: inline-flex;

  align-items: center;

  min-height: 24px;

  padding: 3px 0;

  color: rgba(255, 250, 242, 0.55);

  font-size: 0.82rem;

  line-height: 1.2;

  transition: color 180ms ease;

}



.contact-links a:hover {

  color: #fffaf2;

}



.footer-bottom {

  border-top: 1px solid rgba(255, 250, 242, 0.05);

  padding: 2.5rem 0;

}



.footer-copyright {

  display: flex;

  flex-direction: column;

  gap: 0.6rem;

}



@media (min-width: 768px) {

  .footer-copyright {

    flex-direction: row;

    justify-content: space-between;

  }

}



.footer-copyright p {

  color: rgba(255, 250, 242, 0.25);

  font-size: 0.72rem;

  margin: 0;

}



@media (min-width: 640px) {

  .invitation-form {

    grid-template-columns: repeat(2, 1fr);

  }



  .full-field,

  .form-button,

  .form-status {

    grid-column: 1 / -1;

  }

}



@media (min-width: 768px) {

  .hero {

    padding: calc(164px + clamp(1rem, 3vh, 2rem)) 0 4.4rem;

  }



  .hero-subtitle {

    max-width: 720px;

  }



  .hero-context {

    max-width: 680px;

  }



  .signal-inner {

    grid-template-columns: repeat(3, 1fr);

  }



  .roi-board {

    grid-template-columns: repeat(2, 1fr);

  }



  .delegate-layout,

  .sponsor-layout,

  .invitation-layout {

    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);

    align-items: start;

  }



  .venue-section {

    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);

  }



  .venue-image {

    min-height: 640px;

  }



  .venue-content {

    align-self: center;

    max-width: 720px;

    padding: 4rem 6vw;

  }

}



@media (min-width: 1024px) {

  .nav-shell {

    justify-content: space-between;

  }



  .menu-toggle {

    display: none;

  }



  .nav-panel {

    position: relative;

    inset: auto;

    min-height: auto;

    display: flex;

    align-items: center;

    gap: 0.25rem;

    padding: 0.35rem;

    border-radius: 16px;

    background: rgba(255, 255, 255, 0.08);

    transform: none;

    transition: none;

  }



  .nav-panel a,

  .nav-contact-btn {

    min-height: 44px;

    border: 0;

    border-radius: 12px;

    color: rgba(255, 255, 255, 0.85);

    font-family: var(--mini-font);

    font-size: 0.78rem;

    font-weight: 500;

    padding: 0 0.68rem;

    transition: color 180ms ease;

    white-space: nowrap;

  }



  .nav-contact-btn {

    background: none;

    cursor: pointer;

    text-transform: uppercase;

    display: flex;

    align-items: center;

  }



  .nav-panel a:hover,

  .nav-panel a:focus-visible,

  .nav-contact-btn:hover,

  .nav-contact-btn:focus-visible {

    background: transparent;

    color: var(--gold);

  }



  .nav-panel .nav-cta {

    margin-top: 0;

    min-width: 90px;

    padding: 0 0.68rem;

  }



  .split-layout {

    grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);

    align-items: start;

  }



  .truth-grid {

    grid-template-columns: repeat(3, 1fr);

  }



  .overview-briefing {

    grid-template-columns: minmax(0, 1fr);

    gap: clamp(3rem, 5vw, 5rem);

    align-items: start;

  }



  .overview-rail {

    border-top: 0;

    border-left: 0;

    padding-left: 0;

  }



  .overview-rail div:first-child {

    padding-top: 0.8rem;

  }



  .delegate-list {

    grid-template-columns: repeat(3, 1fr);

  }



  .section {

    padding: 7rem 0;

  }

}



/* Contact Modal */

.contact-modal {

  position: fixed;

  inset: 0;

  z-index: 10000;

  display: flex;

  align-items: center;

  justify-content: center;

  padding: 1.5rem;

  opacity: 0;

  visibility: hidden;

  transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);

  backdrop-filter: blur(0px);

}



.contact-modal.is-active {

  opacity: 1;

  visibility: visible;

  backdrop-filter: blur(8px);

}



.contact-modal-backdrop {

  position: absolute;

  inset: 0;

  background: rgba(11, 10, 9, 0.82);

}



.contact-modal-content {

  position: relative;

  width: 100%;

  max-width: 580px;

  max-height: 85vh;

  overflow-y: auto;

  background: #0b0a09;

  border: 1px solid rgba(255, 250, 242, 0.08);

  border-radius: 0;

  padding: 3.5rem 2.5rem;

  box-shadow: 

    0 30px 60px rgba(0, 0, 0, 0.6),

    0 0 0 1px rgba(255, 250, 242, 0.05);

  transform: translateY(20px) scale(0.98);

  transition: transform 400ms cubic-bezier(0.34, 1.56, 0.64, 1);

  

  /* Hide scrollbar */

  scrollbar-width: none; /* Firefox */

  -ms-overflow-style: none; /* IE and Edge */

}



.contact-modal-content::-webkit-scrollbar {

  display: none; /* Chrome, Safari, Opera */

}



.contact-modal.is-active .contact-modal-content {

  transform: translateY(0) scale(1);

}



.contact-modal-close {

  position: absolute;

  top: 1.25rem;

  right: 1.25rem;

  width: 40px;

  height: 40px;

  display: flex;

  align-items: center;

  justify-content: center;

  background: rgba(255, 250, 242, 0.04);

  color: rgba(255, 250, 242, 0.4);

  border: 1px solid rgba(255, 250, 242, 0.08);

  transition: all 240ms ease;

}



.contact-modal-close:hover {

  background: rgba(69, 137, 98, 0.12);

  color: var(--green);

  border-color: rgba(69, 137, 98, 0.3);

  transform: rotate(90deg);

}



.contact-modal-title {

  font-family: var(--title-font);

  font-size: clamp(2.25rem, 6vw, 3rem);

  color: #fffaf2;

  margin: 0 0 2.5rem 0;

  letter-spacing: -0.01em;

  text-align: center;

}



.contact-category {

  margin-bottom: 2rem;

  padding-bottom: 2rem;

  border-bottom: 1px solid rgba(255, 250, 242, 0.06);

}



.contact-category:last-child {

  border-bottom: 0;

  margin-bottom: 0;

  padding-bottom: 0;

}



.contact-category-title {

  font-family: var(--mini-font);

  font-size: 0.68rem;

  font-weight: 800;

  text-transform: uppercase;

  letter-spacing: 0.15em;

  color: var(--green);

  margin: 0 0 1.5rem 0;

  opacity: 0.9;

}



.contact-person-card {

  padding: 0.5rem 0;

}



.contact-person-card + .contact-person-card {

  margin-top: 1.5rem;

  padding-top: 1.5rem;

  border-top: 1px dashed rgba(255, 250, 242, 0.04);

}



.contact-person-name {

  font-family: var(--mini-font);

  color: #fffaf2;

  font-size: 1.15rem;

  font-weight: 600;

  margin: 0;

  letter-spacing: 0.01em;

}



.contact-person-role,

.contact-company {

  font-family: var(--mini-font);

  font-size: 0.82rem;

  color: rgba(255, 250, 242, 0.45);

  margin: 0.25rem 0 0 0;

}



.contact-person-links {

  display: flex;

  flex-direction: column;

  gap: 0.5rem;

  margin-top: 1rem;

}



.contact-person-links a {

  font-family: var(--mini-font);

  font-size: 0.9rem;

  color: rgba(255, 250, 242, 0.75);

  width: fit-content;

  transition: all 200ms ease;

  display: flex;

  align-items: center;

  gap: 0.5rem;

}



.contact-person-links a:hover {

  color: #fffaf2;

  transform: translateX(4px);

}



.contact-person-links a::before {

  content: "→";

  color: var(--green);

  font-size: 0.8rem;

  opacity: 0;

  transform: translateX(-10px);

  transition: all 200ms ease;

}



.contact-person-links a:hover::before {

  opacity: 1;

  transform: translateX(0);

}



.footer-enquiries-btn {

  background: none;

  border: 0;

  padding: 0;

  color: rgba(255, 250, 242, 0.65);

  font-family: var(--mini-font);

  font-size: 0.88rem;

  transition: color 180ms ease;

  cursor: pointer;

  text-align: left;

}



.footer-enquiries-btn:hover {

  color: #fffaf2;

}



.floating-actions {

  position: fixed;

  inset: 50% 0 auto;

  z-index: 60;

  pointer-events: none;

}



.floating-action {

  --float-size: 64px;

  --float-expanded: clamp(210px, 18vw, 282px);

  position: fixed;

  top: 50%;

  width: var(--float-size);

  height: var(--float-size);

  display: flex;

  align-items: center;

  overflow: hidden;

  border: 3px solid rgba(69, 137, 98, 0.52);

  border-radius: 999px;

  background:

    linear-gradient(180deg, #3f815c 0%, #2a5f42 100%) padding-box,

    linear-gradient(180deg, rgba(126, 178, 145, 0.66), rgba(31, 74, 50, 0.92)) border-box;

  box-shadow:

    inset 0 1px 0 rgba(255, 255, 255, 0.16),

    inset 0 -1px 0 rgba(0, 0, 0, 0.26),

    0 18px 44px rgba(0, 0, 0, 0.32);

  color: #fffaf2;

  font-family: var(--mini-font);

  font-size: 0.78rem;

  font-weight: 800;

  letter-spacing: 0;

  line-height: 1;

  pointer-events: auto;

  text-transform: uppercase;

  transform: translateY(-50%) scale(0.9);

  opacity: 0;

  visibility: hidden;

  transition:

    width 220ms ease,

    border-color 220ms ease,

    background 220ms ease,

    box-shadow 220ms ease,

    opacity 300ms ease,

    visibility 300ms ease,

    transform 300ms ease;

}



.floating-actions.is-visible .floating-action {

  opacity: 1;

  visibility: visible;

  transform: translateY(-50%) scale(1);

}



.floating-action-left {

  left: clamp(0.65rem, 1.6vw, 1.25rem);

}



.floating-action-right {

  right: clamp(0.65rem, 1.6vw, 1.25rem);

  flex-direction: row-reverse;

}



.why-conference-fixed-btn {

  --why-btn-size: 48px;

  --why-btn-expanded: 280px;

  position: fixed;

  bottom: clamp(1.5rem, 4vw, 2.5rem);

  right: clamp(1.5rem, 4vw, 2.5rem);

  width: var(--why-btn-size);

  height: var(--why-btn-size);

  display: flex;

  align-items: center;

  overflow: hidden;

  border-radius: 999px;

  border: 3px solid rgba(229, 192, 39, 0.52);

  background:

    linear-gradient(180deg, #e5c027 0%, #b8981a 100%) padding-box,

    linear-gradient(180deg, rgba(252, 234, 187, 0.66), rgba(184, 152, 26, 0.92)) border-box;

  box-shadow:

    inset 0 1px 0 rgba(255, 255, 255, 0.36),

    inset 0 -1px 0 rgba(0, 0, 0, 0.26),

    0 12px 32px rgba(0, 0, 0, 0.3);

  color: #181818;

  font-family: var(--mini-font);

  font-size: 0.82rem;

  font-weight: 800;

  text-transform: uppercase;

  z-index: 100;

  transition: width 280ms cubic-bezier(0.34, 1.56, 0.64, 1), transform 200ms ease, box-shadow 200ms ease;

  text-decoration: none;

}



.why-conference-fixed-btn:hover {

  transform: translateY(-2px);

  background:

    linear-gradient(180deg, #f0cc41 0%, #d1ae1d 100%) padding-box,

    linear-gradient(180deg, rgba(252, 234, 187, 0.86), rgba(209, 174, 29, 0.95)) border-box;

  box-shadow:

    inset 0 1px 0 rgba(255, 255, 255, 0.4),

    inset 0 -1px 0 rgba(0, 0, 0, 0.24),

    0 16px 40px rgba(0, 0, 0, 0.4);

}



.why-btn-icon {

  flex: 0 0 calc(var(--why-btn-size) - 6px);

  width: calc(var(--why-btn-size) - 6px);

  height: calc(var(--why-btn-size) - 6px);

  display: flex;

  align-items: center;

  justify-content: center;

}



.why-btn-icon svg {

  width: 28px;

  height: 28px;

  stroke: currentColor;

  stroke-width: 2;

  stroke-linecap: round;

  stroke-linejoin: round;

  fill: none;

}



.why-btn-label {

  display: none;

}

.why-conference-fixed-btn:hover .why-btn-label {

  display: none;

}



@media (max-width: 760px) {

  .why-conference-fixed-btn {

    --why-btn-size: 42px;

    bottom: 1.25rem;

    right: 1.25rem;

  }

}



.floating-action:hover,

.floating-action:focus-visible {

  width: var(--float-expanded);

  background:

    linear-gradient(180deg, #4b946b 0%, #32704d 100%) padding-box,

    linear-gradient(180deg, rgba(147, 199, 165, 0.76), rgba(38, 91, 62, 0.95)) border-box;

  box-shadow:

    inset 0 1px 0 rgba(255, 255, 255, 0.18),

    inset 0 -1px 0 rgba(0, 0, 0, 0.24),

    0 22px 56px rgba(0, 0, 0, 0.4);

  outline: 0;

}



.floating-action-icon {

  flex: 0 0 calc(var(--float-size) - 6px);

  width: calc(var(--float-size) - 6px);

  height: calc(var(--float-size) - 6px);

  display: flex;

  align-items: center;

  justify-content: center;

  transition: all 180ms ease;

}



.floating-action-icon svg {

  width: 24px;

  height: 24px;

  fill: none;

  stroke: currentColor;

  stroke-linecap: round;

  stroke-linejoin: round;

  stroke-width: 2.2;

}



.floating-action-label {

  min-width: max-content;

  padding: 0 1.25rem;

  opacity: 0;

  transform: translateX(-0.4rem);

  transition: opacity 160ms ease, transform 180ms ease;

}



.floating-action-right .floating-action-label {

  transform: translateX(0.4rem);

}



.floating-action:hover .floating-action-label,

.floating-action:focus-visible .floating-action-label {

  opacity: 1;

  transform: translateX(0);

}



@media (max-width: 760px) {

  .floating-action {

    --float-size: 54px;

    --float-expanded: min(78vw, 232px);

    font-size: 0.68rem;

  }



  .floating-action-icon svg {

    width: 20px;

    height: 20px;

  }

}



/* Why This Conference Tooltip Modal */

.why-conference-tooltip {

  position: fixed;

  inset: 0;

  z-index: 100;

  display: grid;

  place-items: center;

  padding: 1rem;

  opacity: 0;

  visibility: hidden;

  transition: opacity 280ms ease, visibility 280ms ease;

}



.why-conference-tooltip.is-open {

  opacity: 1;

  visibility: visible;

}



.why-conference-tooltip-backdrop {

  position: absolute;

  inset: 0;

  background: rgba(43, 41, 38, 0.82);

  backdrop-filter: blur(4px);

}



.why-conference-tooltip-content {

  position: relative;

  width: min(90vw, 520px);

  max-height: 90vh;

  overflow-y: auto;

  border: 1px solid rgba(229, 192, 39, 0.42);

  border-radius: 16px;

  background: linear-gradient(180deg, #1f1d1a 0%, #141414 100%);

  box-shadow:

    inset 0 0 0 1px rgba(255, 250, 242, 0.06),

    0 32px 80px rgba(0, 0, 0, 0.5);

  color: #fffaf2;

  padding: clamp(1.5rem, 4vw, 2.5rem);

  transform: translateY(12px) scale(0.98);

  transition: transform 280ms ease;

}



.why-conference-tooltip.is-open .why-conference-tooltip-content {

  transform: translateY(0) scale(1);

}



.why-conference-tooltip-close {

  position: absolute;

  top: 1rem;

  right: 1rem;

  width: 40px;

  height: 40px;

  display: grid;

  place-items: center;

  border-radius: 50%;

  background: rgba(255, 250, 242, 0.08);

  color: rgba(255, 250, 242, 0.68);

  transition: background 180ms ease, color 180ms ease;

}



.why-conference-tooltip-close:hover,

.why-conference-tooltip-close:focus-visible {

  background: rgba(255, 250, 242, 0.16);

  color: #fffaf2;

}



.why-conference-tooltip-title {

  margin: 0 0 1.25rem;

  font-family: var(--display-font);

  font-size: clamp(1.4rem, 5cqi, 1.9rem);

  font-weight: 400;

  color: var(--gold);

  text-transform: uppercase;

  line-height: 1.1;

}



.why-conference-tooltip-body {

  display: grid;

  gap: 1rem;

}



.why-conference-tagline {

  margin: 0;

  font-family: var(--display-font);

  font-size: clamp(1.2rem, 4cqi, 1.6rem);

  font-weight: 400;

  color: var(--green);

  text-transform: uppercase;

  line-height: 1.2;

}



.why-conference-tooltip-body p {

  margin: 0;

  color: rgba(255, 250, 242, 0.82);

  font-size: clamp(0.95rem, 2.5cqi, 1.05rem);

  line-height: 1.7;

}



/* Video Popup Modal */

.video-popup {

  position: fixed;

  inset: 0;

  z-index: 10001;

  display: grid;

  place-items: center;

  padding: clamp(1rem, 5vw, 4rem);

  opacity: 0;

  visibility: hidden;

  transition: all 500ms cubic-bezier(0.4, 0, 0.2, 1);

  pointer-events: none;

}



.video-popup.is-active {

  opacity: 1;

  visibility: visible;

  pointer-events: auto;

}



.video-popup-backdrop {

  position: absolute;

  inset: 0;

  background: rgba(11, 10, 9, 0.7);

  backdrop-filter: blur(12px);

  -webkit-backdrop-filter: blur(12px);

}



.video-popup-content {

  position: relative;

  width: 100%;

  max-width: 1000px;

  background: #000;

  box-shadow: 

    0 40px 100px rgba(0, 0, 0, 0.8),

    0 0 0 1px rgba(255, 250, 242, 0.1);

  transform: translateY(40px) scale(0.95);

  transition: transform 600ms cubic-bezier(0.34, 1.56, 0.64, 1);

  overflow: visible;

}



.video-popup.is-active .video-popup-content {

  transform: translateY(0) scale(1);

}



.video-popup-close {

  position: absolute;

  top: -1.5rem;

  right: -1.5rem;

  width: 48px;

  height: 48px;

  display: flex;

  align-items: center;

  justify-content: center;

  background: var(--charcoal);

  color: #fffaf2;

  border: 1px solid rgba(255, 250, 242, 0.2);

  border-radius: 50%;

  cursor: pointer;

  z-index: 2;

  transition: all 300ms ease;

  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);

}



.video-popup-close:hover {

  background: var(--terracotta);

  border-color: var(--terracotta);

  transform: rotate(90deg) scale(1.1);

  color: #fff;

}



.video-wrapper {

  position: relative;

  width: 100%;

  padding-top: 56.25%; /* 16:9 Aspect Ratio */

  background: #000;

}



.video-wrapper iframe {

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  border: 0;

}



@media (max-width: 1100px) {

  .video-popup-close {

    top: -1.25rem;

    right: 0;

    width: 40px;

    height: 40px;

  }

}



@media (max-width: 768px) {

  .video-popup {

    padding: 1rem;

  }

  

  .video-popup-close {

    top: -3.5rem;

    right: 0;

  }

}



@media (prefers-reduced-motion: reduce) {

  *,

  *::before,

  *::after {

    scroll-behavior: auto !important;

    transition-duration: 0.01ms !important;

    animation-duration: 0.01ms !important;

    animation-iteration-count: 1 !important;

  }

}



/* AIM event rail: compact three-up reference layout */

.sr-only {

  position: absolute;

  width: 1px;

  height: 1px;

  padding: 0;

  margin: -1px;

  overflow: hidden;

  clip: rect(0, 0, 0, 0);

  white-space: nowrap;

  border: 0;

}



.aim-series-section {

  position: relative;

  overflow: hidden;

  isolation: isolate;

  background: #222222;

  color: #f5f4f1;

  padding: clamp(3.7rem, 5vw, 5.4rem) 1rem clamp(1.5rem, 2.2vw, 2.3rem);

}



.aim-series-shell {

  width: 100%;

  margin: 0 auto;

}



.aim-series-section .aim-series-heading {

  margin-inline: auto;

  text-align: center;

}



.aim-carousel {

  position: relative;

  display: grid;

  grid-template-columns: 32px minmax(0, 1fr) 32px;

  align-items: center;

  gap: clamp(1rem, 2.1vw, 2rem);

  width: 100%;

  max-width: 1400px;

  margin: 0 auto;

  border-top: 1px solid rgba(245, 244, 241, 0.22);

  border-bottom: 1px solid rgba(245, 244, 241, 0.22);

  padding: clamp(1.65rem, 2.2vw, 2.2rem) 0 clamp(1.55rem, 2vw, 1.95rem);

}



.aim-carousel-window {

  min-width: 0;

  overflow: hidden;

}



.aim-carousel-track {

  display: flex;

  align-items: stretch;

  width: 100%;

  transform: translateX(0);

  transition: transform 360ms cubic-bezier(0.22, 0.61, 0.36, 1);

  will-change: transform;

}



.aim-carousel-arrow {

  width: 32px;

  height: 32px;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  border: 1px solid rgba(245, 244, 241, 0.28);

  background: #080808;

  color: #f5f4f1;

  font-family: Arial, sans-serif;

  font-size: 1.45rem;

  line-height: 1;

  transition: border-color 180ms ease, color 180ms ease, background 180ms ease;

}



.aim-carousel-arrow:hover,

.aim-carousel-arrow:focus-visible {

  border-color: var(--blue);

  background: #101010;

  color: #fff;

  outline: 0;

}



.aim-event-card {

  flex: 0 0 33.333333%;

  min-width: 0;

  display: grid;

  grid-template-rows: auto auto minmax(8.5rem, 1fr);

  gap: clamp(0.8rem, 1.1vw, 1rem);

  min-height: 0;

  padding: clamp(0.9rem, 1.35vw, 1.2rem);

  border: 1px solid rgba(245, 244, 241, 0.16);

  border-left: 1px solid rgba(245, 244, 241, 0.18);

  border-radius: 2px;

  background: linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012));

  color: #f5f4f1;

  box-shadow: none;

  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;

}



.aim-event-card:last-child {

  border-right: 1px solid rgba(245, 244, 241, 0.16);

}



.aim-event-card:hover,

.aim-event-card:focus-visible {

  transform: none;

  background: linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012));

  border-color: var(--green);

  outline: 0;

}



.aim-event-card:hover .aim-event-body,

.aim-event-card:focus-visible .aim-event-body {

  background: transparent;

}



.aim-event-topline {

  min-height: 24px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 0.8rem;

  padding-bottom: 0.15rem;

}



.aim-event-edition {

  color: #f5f4f1;

  font-family: var(--mini-font);

  font-size: clamp(0.8rem, 1.05vw, 0.95rem);

  font-weight: 700;

  line-height: 1.1;

  text-transform: uppercase;

  white-space: nowrap;

}



.aim-event-status {

  flex: 0 0 auto;

  min-width: 77px;

  border: 1px solid var(--blue);

  padding: 0.3rem 0.55rem;

  color: #199be8;

  font-family: var(--mini-font);

  font-size: 0.58rem;

  font-weight: 700;

  line-height: 1;

  text-align: center;

  text-transform: uppercase;

}



.aim-event-status-past {

  border-color: rgba(245, 244, 241, 0.34);

  color: rgba(245, 244, 241, 0.7);

}



.aim-event-image {

  display: grid;

  place-items: center;

  min-width: 0;

  overflow: hidden;

  aspect-ratio: 16 / 7;

  border: 1px solid rgba(255, 255, 255, 0.22);

  border-radius: 2px;

  background: #fff;

  box-shadow: none;

  padding: 0.35rem;

}



.aim-event-image img {

  width: 100%;

  height: 100%;

  max-width: none;

  max-height: none;

  border-radius: 0;

  object-fit: contain;

  object-position: center;

}



.aim-event-body {

  display: grid;

  grid-template-rows: minmax(2.7em, 1fr) auto;

  align-content: stretch;

  gap: 0.85rem;

  border: 0;

  border-radius: 0;

  background: transparent;

  box-shadow: none;

  padding: 0.15rem 0 0;

}



.aim-event-name {

  min-height: 0;

  color: #f5f4f1;

  font-family: var(--mini-font);

  font-size: clamp(0.95rem, 1.2vw, 1.08rem);

  font-weight: 700;

  line-height: 1.22;

}



.aim-event-meta {

  display: flex;

  align-items: center;

  flex-wrap: wrap;

  gap: 0.65rem;

  border-top: 1px solid rgba(245, 244, 241, 0.2);

  margin-top: 0;

  padding-top: 0.9rem;

  color: rgba(245, 244, 241, 0.78);

  font-family: var(--mini-font);

  font-size: clamp(0.67rem, 0.88vw, 0.78rem);

  font-weight: 700;

  line-height: 1.2;

  text-transform: uppercase;

}



.aim-event-meta span + span::before {

  content: "";

  display: inline-block;

  width: 5px;

  height: 5px;

  margin: 0 0.65rem 1px 0.05rem;

  border-radius: 50%;

  background: #199be8;

}



@media (max-width: 900px) {

  .aim-event-card {

    flex-basis: 50%;

  }

}



@media (max-width: 620px) {

  .aim-series-section {

    padding-inline: 0.75rem;

  }



  .aim-carousel {

    grid-template-columns: 28px minmax(0, 1fr) 28px;

    gap: 0.55rem;

  }



  .aim-event-card {

    flex-basis: 100%;

    grid-template-rows: auto auto minmax(8rem, 1fr);

    padding: 0.9rem;

  }



.aim-event-edition {

  font-size: 0.74rem;

}



  .aim-event-status {

    min-width: 70px;

    font-size: 0.52rem;

  }

}



/* Full-width event header with the navigation kept as a separate lower bar. */

.site-header {

  --event-topbar-height: 118px;

  --event-nav-height: 46px;

  top: 0;

  padding-top: 0;

  color: #17202b;

}



.site-header.is-scrolled {

  padding-top: 0;

}



.event-topbar {

  width: 100%;

  height: var(--event-topbar-height);

  display: grid;

  grid-template-columns: minmax(220px, 1.05fr) minmax(280px, 1.35fr) minmax(300px, 1.45fr) minmax(150px, 0.8fr);

  align-items: stretch;

  background: #fff;

  border-top: 1px solid rgba(23, 32, 43, 0.32);

  border-bottom: 1px solid rgba(23, 32, 43, 0.2);

  color: #17202b;

  font-family: var(--mini-font);

  pointer-events: auto;

}



.event-topbar__brand,

.event-topbar__details,

.event-topbar__partners,

.event-topbar__actions {

  min-width: 0;

  border-right: 1px solid rgba(23, 32, 43, 0.28);

}



.event-topbar__brand {

  display: flex;

  align-items: center;

  justify-content: center;

  padding: 0.35rem 1.25rem;

  overflow: hidden;

}



.event-topbar__brand img {

  width: min(100%, 360px);

  height: 130px;

  max-width: none;

  object-fit: contain;

  object-position: center;

}



.event-topbar__details {

  display: flex;

  flex-direction: column;

  justify-content: center;

  gap: 0.28rem;

  padding: 1rem clamp(1rem, 2vw, 2rem);

}



.event-topbar__details p {

  margin: 0;

  font-family: var(--mini-font);

}



.event-topbar__date {

  color: #000;

  font-size: clamp(0.86rem, 1.1vw, 1.05rem);

  font-weight: 700;

  line-height: 1.15;

  text-transform: uppercase;

}



.event-topbar__venue {

  color: #17202b;

  font-size: clamp(0.85rem, 1vw, 0.98rem);

  font-weight: 500;

  line-height: 1.15;

}



.event-topbar__series {

  max-width: 440px;

  color: rgba(23, 32, 43, 0.72);

  font-size: 0.72rem;

  line-height: 1.25;

  text-transform: uppercase;

}



.event-topbar__partners {

  display: flex;

  align-items: center;

  justify-content: flex-end;

  gap: 0.35rem;

  padding: 0.55rem 1.25rem;

}



.event-topbar__partner {

  min-width: 0;

  display: grid;

  align-content: center;

  justify-items: end;

  gap: 0.2rem;

  margin: 0;

}



.event-topbar__partner figcaption {

  color: #17202b;

  font-family: var(--mini-font);

  font-size: 0.58rem;

  font-weight: 700;

  line-height: 1;

  text-align: right;

  white-space: nowrap;

}



.event-topbar__partner img {

  width: 100%;

  height: 66px;

  max-width: 145px;

  object-fit: cover;

  object-position: center;

}



.event-topbar__actions {

  display: grid;

  align-content: center;

  gap: 0.6rem;

  border-right: 0;

  padding: 0.7rem 1.25rem;

}



.event-topbar__cta {

  min-height: 36px;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  padding: 0.5rem 0.75rem;

  background: #c61125;

  color: #fff;

  font-family: var(--mini-font);

  font-size: 0.78rem;

  font-weight: 400;

  line-height: 1;

  text-align: center;

  text-transform: uppercase;

  transition: filter 180ms ease, transform 180ms ease;

}



.event-topbar__cta--booth {

  background: #f2c400;

  color: #17202b;

}



.event-topbar__cta:hover,

.event-topbar__cta:focus-visible {

  filter: brightness(1.08);

  transform: translateY(-1px);

  outline: 0;

}



.site-header .menu-toggle {

  display: none;

}



.site-header .nav-shell,

.site-header.is-scrolled .nav-shell,

.site-header.past-hero .nav-shell {

  width: 100%;

  max-width: none;

  min-height: var(--event-nav-height);

  height: var(--event-nav-height);

  margin: 0;

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 0;

  border-radius: 0;

  background: #131a24;

  box-shadow: none;

  padding: 0 1rem;

  font-family: var(--mini-font);

  pointer-events: auto;

}



.site-header .nav-panel {

  position: fixed;

  top: calc(var(--event-topbar-height) + var(--event-nav-height));

  right: 0;

  bottom: 0;

  left: 0;

  z-index: 1;

  min-height: 0;

  display: grid;

  align-content: center;

  gap: 0.35rem;

  padding: 2rem 6vw 4rem;

  border-radius: 0;

  background: rgba(19, 26, 36, 0.98);

  transform: translateX(100%);

  transition: transform 260ms ease;

}



.site-header .nav-panel.is-open {

  transform: translateX(0);

}



@media (min-width: 1024px) {

  .site-header {

    --event-topbar-height: 145px;

    --event-nav-height: 44px;

  }



  .site-header .nav-shell {

    justify-content: flex-start;

  }



  .event-topbar {

    grid-template-columns: minmax(300px, 1.08fr) minmax(390px, 1.55fr) minmax(430px, 1.5fr) minmax(230px, 0.8fr);

  }



  .site-header .nav-panel {

    position: relative;

    inset: auto;

    width: fit-content;

    min-height: auto;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 0.2rem;

    padding: 0.1rem;

    border-radius: 0;

    background: transparent;

    transform: none;

    transition: none;

  }



  .site-header .nav-panel a,

  .site-header .nav-contact-btn {

    min-height: 44px;

    border: 0;

    border-radius: 12px;

    color: rgba(255, 255, 255, 0.92);

    font-family: var(--mini-font);

    font-size: 0.78rem;

    font-weight: 500;

    padding: 0 0.68rem;

    text-transform: none;

    transition: color 180ms ease, background 180ms ease;

    white-space: nowrap;

  }



  .site-header .nav-contact-btn {

    width: auto;

    background: transparent;

    cursor: pointer;

  }



  .site-header .nav-panel a:hover,

  .site-header .nav-panel a:focus-visible,

  .site-header .nav-contact-btn:hover,

  .site-header .nav-contact-btn:focus-visible {

    background: transparent;

    color: var(--gold);

    outline: 0;

  }

}



@media (max-width: 1023px) {

  .site-header .menu-toggle {

    display: flex;

    position: absolute;

    top: 0.7rem;

    right: 0.75rem;

    z-index: 2;

    background: #17202b;

  }



  .event-topbar {

    grid-template-columns: minmax(0, 1fr) auto;

    grid-template-rows: 68px 50px;

    padding: 0.35rem 0.75rem;

  }



  .event-topbar__brand {

    justify-content: flex-start;

    border-right: 0;

    padding: 0;

  }



  .event-topbar__brand img {

    width: min(280px, 82vw);

    height: 62px;

  }



  .event-topbar__details {

    grid-column: 1;

    grid-row: 2;

    border-right: 0;

    padding: 0.25rem 0;

  }



  .event-topbar__date,

  .event-topbar__venue {

    font-size: 0.7rem;

  }



  .event-topbar__series,

  .event-topbar__partners {

    display: none;

  }



  .event-topbar__actions {

    grid-column: 2;

    grid-row: 2;

    display: flex;

    align-items: center;

    border-right: 0;

    padding: 0;

  }



  .event-topbar__cta {

    min-height: 30px;

    padding: 0.35rem 0.55rem;

    font-size: 0.62rem;

  }



  .site-header .nav-shell {

    justify-content: center;

  }

}



/* Shared editorial treatment for every main section heading. */

#main .section-heading,

#main .featured-speakers-heading {

  width: min(86vw, 1125px);

  max-width: none;

  display: grid;

  justify-items: center;

  gap: 0;

  margin: 0 auto clamp(2.5rem, 5vw, 4.5rem);

  padding: 0;

  text-align: center;

}



#main .section-heading .eyebrow,

#main .featured-speakers-heading .eyebrow {

  margin: 0 0 clamp(1rem, 1.8vw, 1.45rem);

  color: var(--terracotta);

  font-size: clamp(0.75rem, 0.9vw, 0.9rem);

  font-weight: 800;

  letter-spacing: 0.02em;

  line-height: 1;

  text-align: center;

}



#main .section-heading h2,

#main .featured-speakers-heading h2 {

  width: 100%;

  max-width: none;

  margin: 0;

  color: #fffaf2;

  font-family: var(--display-font);

  font-size: clamp(2.15rem, 3.6vw, 3.35rem);

  font-weight: 400;

  letter-spacing: -0.02em;

  line-height: 1;

  text-align: center;

  text-transform: none;

}



#main .section-heading::after,

#main .featured-speakers-heading::after {

  content: "";

  position: static;

  display: block !important;

  order: 3;

  justify-self: center;

  width: min(78vw, 860px);

  height: 1px;

  margin: clamp(2rem, 3.8vw, 3.8rem) 0 0;

  transform: none;

  background: rgba(255, 250, 242, 0.2);

}



#main .section-heading::before,

#main .section-heading .eyebrow::after,

#main .section-heading h2::after,

#main .featured-speakers-heading .eyebrow::after,

#main .featured-speakers-heading h2::after {

  display: none !important;

}



/* Keep the speaker cards close to their heading separator. */

#main .featured-speakers-heading {

  margin-bottom: 0;

}



/* Apply the shared eyebrow, title and below-title rule to the series blocks. */

#main .series-block {

  border-top: 0;

  gap: clamp(0.8rem, 1.6vw, 1.25rem);

}



#main .series-block-head,

#main .legacy-highlights__head {

  width: min(86vw, 1125px);

  max-width: none;

  display: grid;

  justify-items: center;

  gap: 0;

  margin: 0 auto;

  padding: 0;

  text-align: center;

}



#main .series-block-head .eyebrow,

#main .legacy-highlights__head .eyebrow {

  margin: 0 0 clamp(1rem, 1.8vw, 1.45rem);

  color: var(--terracotta);

  font-size: clamp(0.75rem, 0.9vw, 0.9rem);

  font-weight: 800;

  letter-spacing: 0.02em;

  line-height: 1;

  text-align: center;

}



#main .series-block-head h3,

#main .legacy-highlights__head h2 {

  width: 100%;

  max-width: none;

  margin: 0;

  color: #fffaf2;

  font-family: var(--display-font);

  font-size: clamp(2.15rem, 3.6vw, 3.35rem);

  font-weight: 400;

  letter-spacing: -0.02em;

  line-height: 1;

  text-align: center;

  text-transform: none;

}



#main .series-block-head::after,

#main .legacy-highlights__head::after {

  content: "";

  display: block;

  order: 3;

  justify-self: center;

  width: min(78vw, 860px);

  height: 1px;

  margin: clamp(2rem, 3.8vw, 3.8rem) 0 0;

  background: rgba(255, 250, 242, 0.2);

}



#main .series-block-head::before,

#main .legacy-highlights__head::before,

#main .series-block-head .eyebrow::after,

#main .legacy-highlights__head .eyebrow::after,

#main .series-block-head h3::after,

#main .legacy-highlights__head h2::after {

  display: none !important;

}



#main .legacy-highlights__media {

  margin-top: clamp(1rem, 2vw, 1.65rem);

}



/* Why Sponsor uses a compact, left-aligned copy block instead of the shared centred heading treatment. */

#main .why-sponsor-layout {

  align-items: start;

}



#main .why-sponsor-intro {

  align-self: start;

  padding-top: clamp(0.75rem, 1.4vw, 1.1rem);

}



#main .why-sponsor-intro .section-heading {

  width: auto;

  display: flex;

  flex-direction: column;

  align-items: flex-start;

  margin: 0 0 clamp(1.4rem, 2.2vw, 2rem);

  padding: 0;

  text-align: left;

}



#main .why-sponsor-intro .section-heading .eyebrow,

#main .why-sponsor-intro .section-heading h2 {

  width: auto;

  align-self: flex-start;

  text-align: left;

}



#main .why-sponsor-intro .section-heading .eyebrow {

  display: block;

  margin-right: 0;

  margin-left: 0;

}



#main .why-sponsor-intro .section-heading::after {

  display: none !important;

}



/* Tablet layout layer: preserve the editorial design without desktop-width crowding. */

@media (min-width: 768px) and (max-width: 1023px) {

  .section {

    padding-block: clamp(3.5rem, 7vw, 4.75rem);

  }



  #main .section-heading,

  #main .featured-speakers-heading {

    margin-bottom: clamp(2rem, 4vw, 3rem);

  }



  .agenda-strip-inner {

    grid-template-columns: 1fr;

    width: min(86%, 760px);

    text-align: center;

  }



  .agenda-strip-copy {

    margin-inline: auto;

  }



  .agenda-strip-actions {

    justify-content: center;

  }



  .agenda-strip-visual {

    justify-self: center;

    width: min(44vw, 340px);

    margin: 0 auto -1.5rem;

  }



  .topic-card-grid {

    grid-template-columns: repeat(2, minmax(0, 1fr));

    align-items: stretch;

  }



  .key-topics-section .content-list-card:nth-child(n) {

    height: auto;

    min-height: 25rem;

  }



  .key-topics-section .content-list-card h3 {

    min-height: 2.8em;

  }



  .key-topics-section .content-list-card p {

    min-height: 4.5em;

  }



  .featured-speakers-inner {

    gap: clamp(1.5rem, 3vw, 2.25rem);

  }



  .pillars-grid {

    grid-template-columns: repeat(2, minmax(0, 1fr));

  }



  .pillars-grid .pillar-card {

    min-height: 250px;

  }



  .pillars-grid .pillar-card:nth-of-type(odd) {

    border-right: 1px solid rgba(255, 250, 242, 0.12);

  }



  .pillars-video-container {

    grid-column: 1 / -1;

    min-height: 360px;

  }



  .why-sponsor-layout {

    max-width: 760px;

    margin-inline: auto;

  }



  .footer-grid {

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: clamp(2.5rem, 5vw, 4rem);

  }



  .footer-grid > :last-child {

    grid-column: 1 / -1;

  }

}



/* iPad landscape reaches 1024px, so keep the Topics rail in its tablet layout through 1199px. */

@media (min-width: 768px) and (max-width: 1199px) {
  .key-topics-section {

    position: relative;

    top: auto;

    padding-bottom: clamp(4rem, 7vw, 6rem);

  }



  #main .key-topics-section .pillars-heading {

    margin-bottom: clamp(1.5rem, 3vw, 2rem);

  }



  #main .key-topics-section .pillars-heading::after {

    margin-top: clamp(1.5rem, 3vw, 2rem);

  }



  .topic-card-grid {

    grid-template-columns: repeat(2, minmax(0, 1fr));

    align-items: stretch;

  }



  .key-topics-section .content-list-card:nth-child(n) {

    height: auto;

    min-height: clamp(23rem, 46vw, 28rem);

  }



  .key-topics-section .content-list-card h3 {

    min-height: 2.8em;

  }



  .key-topics-section .content-list-card p {

    min-height: 4.5em;

  }

}

.featured-speaker-card {
  cursor: pointer;
}

.featured-speaker-card:focus-visible {
  outline: 3px solid #b9ead5;
  outline-offset: 4px;
}

.featured-speaker-card__company {
  grid-template-columns: minmax(0, 1fr);
}

.featured-speaker-card__company.has-logo {
  grid-template-columns: minmax(0, 1fr) minmax(104px, 128px);
}

.featured-speaker-card__company.has-logo img {
  width: 128px;
  height: 60px;
}

@media (max-width: 1100px) {
  .featured-speaker-card__company.has-logo {
    grid-template-columns: minmax(0, 1fr) minmax(96px, 112px);
  }

  .featured-speaker-card__company.has-logo img {
    width: 112px;
    height: 54px;
  }
}

/* Keep the complete supplied mockup visible; its landscape proportion needs a
   larger frame than the former portrait booklet artwork. */
.agenda-strip-visual--tank-mockup {
  width: min(46vw, 620px);
  aspect-ratio: auto;
  overflow: visible;
}

/* Tighten only this agenda strip below its visual, preserving the top overlap. */
.agenda-strip--tank-mockup {
  margin-top: 0;
  border-top: clamp(0.75rem, 1.5vw, 1.25rem) solid #222222;
  padding-bottom: clamp(0.75rem, 1.5vw, 1.15rem);
}

.agenda-strip-visual--tank-mockup img {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}

@media (max-width: 900px) {
  .agenda-strip-visual--tank-mockup {
    width: min(82vw, 460px);
  }
}

@media (max-width: 540px) {
  .agenda-strip-visual--tank-mockup {
    width: min(82vw, 340px);
  }
}

/* This must follow the desktop pillars rules: at 1024px portrait those rules
   otherwise win the cascade and leave the 220vh presentation canvas visible. */
@media (min-width: 768px) and (max-width: 1199px) and (orientation: portrait) {
  .section.pillars-section {
    min-height: auto;
    padding: 0 0 clamp(2rem, 4vw, 3.5rem);
  }

  .pillars-section > .section-inner {
    position: relative;
    top: auto;
    min-height: 0;
    display: block;
    padding: clamp(3.5rem, 6vh, 5rem) 0 0;
  }
}

body.speaker-modal-open {
  overflow: hidden;
}

.speaker-modal[hidden] {
  display: none;
}

.speaker-modal {
  position: fixed;
  z-index: 1200;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(0.75rem, 2vw, 2rem);
  opacity: 0;
  transition: opacity 180ms ease;
}

.speaker-modal.is-open {
  opacity: 1;
}

.speaker-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(9, 24, 20, 0.8);
  backdrop-filter: blur(5px);
}

.speaker-modal__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 1120px);
  max-height: min(94vh, 840px);
  overflow: auto;
  border: 5px solid rgba(182, 220, 200, 0.7);
  border-radius: 8px;
  background: #101c18;
  box-shadow: 0 0 0 1px rgba(58, 111, 87, 0.9), 0 18px 55px rgba(0, 0, 0, 0.62);
  outline: 0;
}

.speaker-modal__close {
  position: absolute;
  z-index: 2;
  top: 0.65rem;
  right: 0.65rem;
  display: grid;
  place-items: center;
  width: 2.65rem;
  height: 2.65rem;
  padding: 0;
  border: 1px solid rgba(214, 241, 229, 0.32);
  border-radius: 9px;
  background: #112a23;
  color: #b9ead5;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
}

.speaker-modal__close:hover,
.speaker-modal__close:focus-visible {
  background: #1f5644;
  color: #fffefa;
}

.speaker-modal__layout {
  display: grid;
  grid-template-columns: minmax(285px, 0.73fr) minmax(0, 1.27fr);
  gap: clamp(1.5rem, 4.4vw, 4.5rem);
  padding: clamp(1.6rem, 4.1vw, 3.5rem);
}

.speaker-modal__profile {
  align-self: start;
}

.speaker-modal__image {
  display: block;
  width: min(100%, 350px);
  aspect-ratio: 1 / 1.08;
  margin-bottom: 1.15rem;
  object-fit: cover;
  object-position: center top;
  border-radius: 0 0 8px 8px;
  background: #f5faf7;
}

.speaker-modal__eyebrow,
.speaker-modal__presenting,
.speaker-modal__company {
  margin: 0;
  font-family: var(--mini-font);
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.35;
  text-transform: uppercase;
}

.speaker-modal__eyebrow,
.speaker-modal__company {
  color: #9bceb7;
}

.speaker-modal__profile h2 {
  margin: 0.45rem 0 0.65rem;
  color: #f3fbf6;
  font-family: var(--display-font);
  font-size: clamp(2rem, 3.1vw, 3.1rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.98;
}

.speaker-modal__role {
  margin: 0 0 0.25rem;
  color: #d7e6df;
  font-family: var(--mini-font);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
}

.speaker-modal__topic {
  position: relative;
  overflow: hidden;
  padding: clamp(1.55rem, 3.2vw, 2.45rem);
  border-radius: 0 22px 22px 22px;
  background: linear-gradient(145deg, #296951 0%, #1c5140 100%);
  color: #effaf3;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 360ms ease, transform 460ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.speaker-modal__event-promo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0 0 1.5rem;
  border-bottom: 1px solid rgba(192, 227, 209, 0.22);
}

.speaker-modal__event-promo-copy {
  min-width: 0;
}

.speaker-modal__event-promo-title,
.speaker-modal__event-promo-text {
  margin: 0;
  font-family: var(--mini-font);
}

.speaker-modal__event-promo-title {
  color: #9bceb7;
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  font-weight: 700;
  letter-spacing: 0.075em;
  line-height: 1.25;
  text-transform: uppercase;
}

.speaker-modal__event-promo-text {
  margin-top: 0.45rem;
  color: #d7e6df;
  font-size: 1rem;
  line-height: 1.45;
}

.speaker-modal__event-promo-register {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 2.9rem;
  padding: 0.65rem 1rem;
  border: 1px solid rgba(184, 228, 208, 0.7);
  border-radius: 0.45rem;
  color: #eafff3;
  font-family: var(--mini-font);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.speaker-modal__event-promo-register span {
  font-size: 1.2rem;
  transition: transform 180ms ease;
}

.speaker-modal__event-promo-register:hover,
.speaker-modal__event-promo-register:focus-visible {
  background: #2e7359;
  color: #fff;
  transform: translateY(-2px);
}

.speaker-modal__event-promo-register:hover span,
.speaker-modal__event-promo-register:focus-visible span {
  transform: translateX(3px);
}

.speaker-modal.is-open .speaker-modal__topic {
  opacity: 1;
  transform: translateY(0);
}

.speaker-modal__event-promo + .speaker-modal__topic:not([hidden]) {
  margin-top: 1.5rem;
}

.speaker-modal__event {
  margin: 0 0 1.1rem;
  font-family: var(--display-font);
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.1;
}

.speaker-modal.is-open .speaker-modal__event,
.speaker-modal.is-open .speaker-modal__presenting,
.speaker-modal.is-open .speaker-modal__topic-title,
.speaker-modal.is-open .speaker-modal__topic-intro,
.speaker-modal.is-open .speaker-modal__register {
  animation: speaker-topic-content 420ms ease both;
}

.speaker-modal.is-open .speaker-modal__event {
  animation-delay: 110ms;
}

.speaker-modal.is-open .speaker-modal__presenting {
  animation-delay: 170ms;
}

.speaker-modal.is-open .speaker-modal__topic-title {
  animation-delay: 220ms;
}

.speaker-modal.is-open .speaker-modal__topic-intro {
  animation-delay: 300ms;
}

.speaker-modal.is-open .speaker-modal__register {
  animation-delay: 360ms;
}

.speaker-modal__presenting {
  color: #a9d3c0;
}

.speaker-modal__topic-title {
  margin: 0.45rem 0 1rem;
  padding-bottom: 1.15rem;
  border-bottom: 1px solid rgba(223, 247, 235, 0.27);
  color: #c8ead9;
  font-family: var(--display-font);
  font-size: clamp(1.3rem, 2.2vw, 1.9rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.15;
}

.speaker-modal__topic-intro {
  margin: 0 0 1.35rem;
  color: #e3f5eb;
  font-family: var(--mini-font);
  font-size: 0.96rem;
  font-weight: 500;
  line-height: 1.45;
}

.speaker-modal__register {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-width: 13.6rem;
  min-height: 3.25rem;
  padding: 0.7rem 1.25rem;
  border: 1px solid rgba(184, 228, 208, 0.7);
  border-radius: 999px;
  background: #102c24;
  color: #eafff3;
  box-shadow: 0 0 0 4px rgba(189, 230, 212, 0.15), inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  font-family: var(--mini-font);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.speaker-modal__register::before {
  position: absolute;
  z-index: -1;
  inset: -2px auto -2px -48%;
  width: 42%;
  background: linear-gradient(100deg, transparent, rgba(195, 245, 221, 0.62), transparent);
  content: "";
  transform: skewX(-20deg);
  animation: speaker-register-shine 2.8s ease-in-out infinite;
}

.speaker-modal__register span {
  font-size: 1.3rem;
  transition: transform 180ms ease;
}

.speaker-modal__register:hover,
.speaker-modal__register:focus-visible {
  background: #2e7359;
  color: #fff;
  box-shadow: 0 0 0 5px rgba(189, 230, 212, 0.25), inset 0 0 0 1px rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.speaker-modal__register:hover span,
.speaker-modal__register:focus-visible span {
  transform: translateX(4px);
}

@keyframes speaker-register-shine {
  0%, 56% {
    transform: translateX(0) skewX(-20deg);
  }

  80%, 100% {
    transform: translateX(410%) skewX(-20deg);
  }
}

@keyframes speaker-topic-content {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.speaker-modal__overview {
  margin: 1.5rem 0 0;
  padding-top: 1.5rem;
}

.speaker-modal__overview h3 {
  margin: 0 0 0.8rem;
  color: #9bceb7;
  font-family: var(--mini-font);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.35;
  text-transform: uppercase;
}

.speaker-modal__bio {
  margin: 0;
  color: #d7e4de;
  font-family: var(--mini-font);
  font-size: 1rem;
  line-height: 1.72;
}

@media (max-width: 720px) {
  .speaker-modal {
    align-items: end;
    padding: 0;
  }

  .speaker-modal__panel {
    width: 100%;
    max-height: 92vh;
    border-width: 3px 0 0;
    border-radius: 8px 8px 0 0;
  }

  .speaker-modal__layout {
    grid-template-columns: 1fr;
    gap: 1.4rem;
    padding: 1.25rem;
  }

  .speaker-modal__profile {
    display: grid;
    grid-template-columns: 104px minmax(0, 1fr);
    column-gap: 1rem;
    align-items: end;
    padding-right: 3rem;
  }

  .speaker-modal__image {
    grid-row: span 4;
    width: 104px;
    margin: 0;
  }

  .speaker-modal__profile h2 {
    font-size: 1.9rem;
  }

  .speaker-modal__topic {
    border-radius: 0 16px 16px 16px;
  }

  .speaker-modal__event-promo {
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
  }

  .speaker-modal__event-promo-register {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .speaker-modal__register::before,
  .speaker-modal.is-open .speaker-modal__event,
  .speaker-modal.is-open .speaker-modal__presenting,
  .speaker-modal.is-open .speaker-modal__topic-title,
  .speaker-modal.is-open .speaker-modal__topic-intro,
  .speaker-modal.is-open .speaker-modal__register {
    animation: none;
  }

  .speaker-modal__topic {
    transition: none;
  }
}
