@charset "UTF-8";

:root {
  --ink: #020922;
  --ink-deep: #01061a;
  --ink-soft: #071432;
  --white: #f8fbff;
  --muted: #d3daea;
  --blue: #078bff;
  --cyan: #00b9ff;
  --aqua: #00cabd;
  --aqua-bright: #05e2d1;
  --line: rgba(4, 191, 255, 0.72);
  --line-soft: rgba(4, 191, 255, 0.2);
  --font-body: "Poppins", "Trebuchet MS", Arial, sans-serif;
  --font-display: "Black Ops One", Impact, "Arial Black", sans-serif;
  --font-digital: "Orbitron", "Courier New", monospace;
  --container: 1700px;
  --section-space: clamp(88px, 7vw, 90px);
  --content-gap: clamp(44px, 5.5vw, 108px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 55% 11%, rgba(0, 81, 198, 0.08), transparent 22%),
    linear-gradient(180deg, #020a25 0%, #020922 100%);
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  pointer-events: none;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.5), transparent 75%);
}

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

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

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

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 2000;
  padding: 10px 16px;
  color: #00101f;
  background: var(--aqua-bright);
  border-radius: 4px;
  transform: translateY(-160%);
  transition: transform .2s ease;
}

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

.page-container {
  width: min(calc(100% - 80px), var(--container));
  margin-inline: auto;
  padding-inline: 0;
}

.section-shell {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: var(--section-space);
  background: var(--ink);
}

section[id] {
  scroll-margin-top: 104px;
}

.section-shell::before {
  position: absolute;
  inset: 0;
  z-index: -3;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at 84% 44%, rgba(0, 98, 255, .035), transparent 24%),
    radial-gradient(circle at 15% 62%, rgba(0, 193, 255, .025), transparent 20%);
}

/* Header */
.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 1030;
  height: 124px;
  transition: background .3s ease, box-shadow .3s ease, transform .3s ease;
}

.site-header.is-sticky {
  position: fixed;
  height: 86px;
  background: rgba(2, 9, 34, .9);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .22);
  backdrop-filter: blur(18px);
}

.site-header .navbar {
  height: 100%;
  padding: 0;
}

.site-header .navbar-brand {
  margin: 0;
  padding: 0;
}

.site-header .navbar-brand img {
  width: 176px;
  height: auto;
  filter: drop-shadow(0 0 18px rgba(0, 203, 187, .08));
  transition: width .3s ease;
}

.site-header.is-sticky .navbar-brand img {
  width: 142px;
}

.site-header .navbar-nav {
  align-items: center;
  gap: clamp(30px, 3.4vw, 66px);
  padding-right: 0;
}

.site-header .nav-link {
  position: relative;
  padding: 10px 0 !important;
  color: rgba(255,255,255,.94);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: .1px;
  transition: color .2s ease;
}

.site-header .nav-link::after {
  position: absolute;
  right: 50%;
  bottom: 2px;
  left: 50%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--blue), var(--aqua));
  box-shadow: 0 0 8px rgba(0,202,189,.8);
  transition: right .25s ease, left .25s ease;
}

.site-header .nav-link:hover,
.site-header .nav-link.active {
  color: var(--aqua-bright);
}

.site-header .nav-link:hover::after,
.site-header .nav-link.active::after {
  right: 0;
  left: 0;
}

.navbar-toggler {
  display: none;
  width: 48px;
  height: 42px;
  padding: 8px;
  border: 0;
  box-shadow: none !important;
}

.navbar-toggler span {
  display: block;
  width: 29px;
  height: 2px;
  margin: 6px auto;
  background: var(--aqua-bright);
  border-radius: 4px;
}

.mobile-menu {
  color: var(--white);
  background: rgba(2,9,34,.98);
  border-left: 1px solid rgba(0,202,189,.25);
}

.mobile-menu .mobile-logo {
  width: 150px;
}

.mobile-menu .offcanvas-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 28px;
}

.mobile-menu .offcanvas-body > a {
  padding: 13px 0;
  color: var(--white);
  font-size: 20px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

/* Shared type */
.section-title {
  display: inline-block;
  margin: 0 0 30px;
  color: transparent;
  background:
    linear-gradient(90deg, #0f80ff 0%, #00a9ff 45%, #00ceb7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-family: var(--font-display);
  font-size: clamp(44px, 3vw, 57px);
  font-weight: 400;
  line-height: .95;
  letter-spacing: -.5px;
  text-transform: uppercase;
  filter: drop-shadow(0 0 13px rgba(0, 144, 255, .16));
}

.section-subtitle {
  max-width: 850px;
  margin: 0 0 clamp(22px, 2vw, 34px);
  color: var(--white);
  font-size: clamp(21px, 1.55vw, 26px);
  font-weight: 400;
  line-height: 1.35;
}

.section-lead {
  max-width: 1110px;
  margin: 0;
  color: rgba(255,255,255,.95);
  font-size: clamp(17px, 1.35vw, 24px);
  font-weight: 400;
  line-height: 1.5;
}

.section-lead.compact {
  max-width: 810px;
  font-size: clamp(17px, 1.3vw, 23px);
}

/* Buttons */
.btn-ibma {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  padding: 14px 34px;
  overflow: hidden;
  color: #fff;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.9);
  border-radius: 999px;
  font-size: 17px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: color .25s ease, border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.btn-ibma::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  opacity: 0;
  background: linear-gradient(90deg, var(--blue), var(--aqua));
  transition: opacity .25s ease;
}

.btn-ibma:hover,
.btn-ibma:focus-visible {
  color: #fff;
  border-color: var(--aqua-bright);
  box-shadow: 0 0 24px rgba(0, 202, 189, .26);
  transform: translateY(-2px);
}

.btn-ibma:hover::before,
.btn-ibma:focus-visible::before {
  opacity: .82;
}

.btn-gradient {
  z-index: 0;
  min-width: 302px;
  color: #fff;
  border: 0;
  background: linear-gradient(90deg, #087fff 0%, #02aaf6 56%, #00cbb9 100%);
  box-shadow: 0 8px 28px rgba(0, 139, 255, .15);
}

.btn-gradient::before {
  opacity: 0;
  background: linear-gradient(90deg, #00cbb9, #087fff);
}

.btn-gradient:hover::before,
.btn-gradient:focus-visible::before {
  opacity: 1;
}

.btn-outline {
  z-index: 0;
  background: rgba(2,9,34,.12);
  backdrop-filter: blur(5px);
}

.btn-ibma img {
  width: 22px;
  height: 22px;
  margin-left: 18px;
  color: currentColor;
  filter: brightness(0) invert(1);
}

.button-medium {
  min-width: 302px;
}

.button-wide {
  min-width: 380px;
}

.center-action {
  position: relative;
  z-index: 8;
  display: flex;
  justify-content: center;
  width: 100%;
}

/* Hero */
.hero-section {
  position: relative;
  display: flex;
  align-items: center;
  isolation: isolate;
  min-height: 820px;
  min-height: max(820px, 100svh);
  padding: clamp(155px, 11vw, 220px) 0 clamp(96px, 7vw, 132px);
  overflow: hidden;
  background: #020a24;
}

.hero-section::before {
  position: absolute;
  inset: 0;
  z-index: -4;
  content: "";
  background:
    radial-gradient(circle at 76% 34%, rgba(0,88,255,.14), transparent 27%),
    linear-gradient(180deg, rgba(2,10,36,.08), #020a24 94%);
}

.hero-section::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  z-index: 1;
  height: clamp(130px, 15vw, 240px);
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, transparent 0%, rgba(2,10,36,.62) 48%, #020a24 96%);
}

.hero-container {
  position: relative;
  z-index: 3;
  min-height: 0;
}

.hero-ambient {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(2,10,36,.99) 0%, rgba(2,10,36,.9) 34%, rgba(2,10,36,.48) 55%, rgba(2,10,36,.04) 82%, transparent 100%),
    radial-gradient(circle at 18% 23%, rgba(0,123,255,.09), transparent 25%);
}

.hero-scene {
  position: absolute;
  inset: 0 0 0 auto;
  z-index: -2;
  width: min(78vw, 1500px);
  max-width: none;
  height: 100%;
  object-fit: contain;
  object-position: right center;
  pointer-events: none;
  filter: saturate(1.05) contrast(1.03);
  transform-origin: 72% 45%;
}

.hero-copy {
  position: relative;
  z-index: 5;
  width: min(760px, 55%);
  max-width: none;
}

.hero-eyebrow {
  margin: 0 0 23px;
  color: rgba(255,255,255,.92);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 9.5px;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero-title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  line-height: .88;
  text-transform: uppercase;
}

.hero-title > span {
  display: block;
}

.hero-title .title-white {
  color: #f7f8fa;
  font-size: 56px;
  letter-spacing: -1.2px;
  text-shadow: 0 0 1px #fff, 0 0 18px rgba(255,255,255,.06);
}

.hero-title .title-gradient {
  margin-top: 13px;
  color: transparent;
  background: linear-gradient(100deg, #087eff 0%, #009fff 58%, #00cbb8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 79px;
  letter-spacing: -2px;
  filter: drop-shadow(0 0 18px rgba(0,121,255,.11));
}

.hero-tagline {
  margin: clamp(24px, 2vw, 33px) 0 clamp(28px, 2.4vw, 41px);
  color: #f4f6fc;
  font-size: clamp(19px, 1.55vw, 26px);
  font-weight: 400;
}

.event-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px clamp(24px, 3vw, 42px);
  margin-bottom: clamp(42px, 4.2vw, 70px);
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  color: rgba(255,255,255,.95);
  font-size: clamp(14px, .95vw, 16px);
  line-height: 1.4;
}

.meta-item img {
  flex: 0 0 auto;
  width: clamp(36px, 2.4vw, 43px);
  height: clamp(36px, 2.4vw, 43px);
  color: var(--cyan);
  filter: brightness(0) saturate(100%) invert(51%) sepia(99%) saturate(3278%) hue-rotate(174deg) brightness(101%) contrast(104%);
}

.meta-item sup {
  font-size: .6em;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(680px, 100%);
  min-height: clamp(116px, 8vw, 148px);
  margin-bottom: clamp(46px, 4.8vw, 78px);
  overflow: hidden;
  background: rgba(2,9,34,.42);
  border: 1.5px solid rgba(0,163,255,.95);
  border-radius: 12px;
  box-shadow: inset 0 0 35px rgba(0,105,255,.035), 0 0 25px rgba(0,89,255,.04);
  backdrop-filter: blur(7px);
}

.countdown-cell {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 18px 8px;
}

.countdown-cell:not(:last-child)::after {
  position: absolute;
  top: 24px;
  right: 0;
  bottom: 24px;
  width: 1px;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(0,168,255,.35), transparent);
}

.countdown-cell strong {
  color: #0b91ff;
  font-family: var(--font-digital);
  font-size: clamp(34px, 3vw, 51px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 1px;
  text-shadow: 0 0 13px rgba(0,137,255,.24);
}

.countdown-cell span {
  margin-top: 12px;
  color: #fff;
  font-size: clamp(10px, .9vw, 15px);
  font-weight: 400;
  letter-spacing: .3px;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px clamp(22px, 2.5vw, 44px);
}

.hero-actions .btn-outline {
  min-width: min(374px, 100%);
}

.hero-hex {
  position: absolute;
  top: 16%;
  right: 3%;
  z-index: 1;
  width: min(310px, 24vw);
  height: 260px;
  opacity: .2;
}

/* Background pattern layers always stay behind content and images. */
.hex-field {
  pointer-events: none;
  background-image:
    linear-gradient(30deg, rgba(0,162,255,.28) 12%, transparent 12.5%, transparent 87%, rgba(0,162,255,.28) 87.5%, rgba(0,162,255,.28)),
    linear-gradient(150deg, rgba(0,162,255,.28) 12%, transparent 12.5%, transparent 87%, rgba(0,162,255,.28) 87.5%, rgba(0,162,255,.28)),
    linear-gradient(30deg, rgba(0,162,255,.28) 12%, transparent 12.5%, transparent 87%, rgba(0,162,255,.28) 87.5%, rgba(0,162,255,.28)),
    linear-gradient(150deg, rgba(0,162,255,.28) 12%, transparent 12.5%, transparent 87%, rgba(0,162,255,.28) 87.5%, rgba(0,162,255,.28)),
    linear-gradient(60deg, rgba(0,162,255,.16) 25%, transparent 25.5%, transparent 75%, rgba(0,162,255,.16) 75%, rgba(0,162,255,.16)),
    linear-gradient(60deg, rgba(0,162,255,.16) 25%, transparent 25.5%, transparent 75%, rgba(0,162,255,.16) 75%, rgba(0,162,255,.16));
  background-position: 0 0, 0 0, 42px 74px, 42px 74px, 0 0, 42px 74px;
  background-size: 84px 148px;
}

/* Shared content grids */
.whats-layout,
.speakers-section .full-width-layout > .row,
.schedule-section .full-width-layout > .row,
.why-layout,
.about-layout {
  display: grid;
  align-items: center;
  gap: var(--content-gap);
  margin: 0;
}

.whats-layout {
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, .82fr);
}

.speakers-section .full-width-layout > .row {
  grid-template-columns: minmax(360px, .86fr) minmax(0, 1.14fr);
}

.schedule-section .full-width-layout > .row {
  grid-template-columns: minmax(360px, .86fr) minmax(0, 1.14fr);
}

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

.about-layout {
  grid-template-columns: minmax(340px, .82fr) minmax(0, 1.18fr);
}

.whats-layout > [class*="col-"],
.speakers-section .full-width-layout > .row > [class*="col-"],
.schedule-section .full-width-layout > .row > [class*="col-"],
.why-layout > [class*="col-"],
.about-layout > [class*="col-"] {
  width: auto;
  max-width: none;
  padding: 0;
}

.whats-copy,
.speakers-copy,
.schedule-copy,
.why-copy,
.about-copy {
  position: relative;
  z-index: 3;
  padding: 0;
}

.whats-visual,
.speakers-visual,
.schedule-visual,
.why-visual,
.about-visual {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
}

.whats-visual > img,
.speakers-visual img,
.schedule-visual img,
.why-visual img,
.about-visual img {
  position: relative;
  inset: auto;
  z-index: 2;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.center-action {
  margin-top: clamp(48px, 5vw, 80px);
}

/* Icons */
.icon-label {
  display: flex;
  align-items: center;
  min-height: 94px;
  gap: clamp(20px, 2vw, 31px);
}

.line-icon {
  display: grid;
  flex: 0 0 clamp(68px, 5vw, 84px);
  width: clamp(68px, 5vw, 84px);
  height: clamp(68px, 5vw, 84px);
  place-items: center;
  /* color: #00bfff; */
  /* background: rgba(0, 78, 178, .045); */
  /* border: 1.5px solid #00a9ff; */
  border-radius: 50%;
  box-shadow: inset 0 0 20px rgba(0,139,255,.035), 0 0 17px rgba(0,139,255,.025);
}

.line-icon img {
  width: 62%;
  height: 62%;
  color: inherit;
  /* filter: brightness(0) saturate(100%) invert(50%) sepia(98%) saturate(2680%) hue-rotate(167deg) brightness(101%) contrast(104%); */
}

.icon-label h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(18px, 1.35vw, 24px);
  font-weight: 400;
  line-height: 1.25;
}

.feature-grid,
.speaker-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 2.4vw, 38px) clamp(28px, 3vw, 52px);
  max-width: 980px;
  margin: clamp(44px, 5vw, 78px) 0 0;
}

.feature-grid > [class*="col-"],
.speaker-grid > [class*="col-"] {
  width: auto;
  padding: 0;
}

/* What's on */
.whats-copy .section-lead {
  max-width: 980px;
}

.whats-visual > img {
  max-width: 780px;
  aspect-ratio: auto 810 / 710;
  filter: drop-shadow(0 30px 42px rgba(0,52,122,.14));
}

/* Speakers */
.full-width-layout {
  position: relative;
  z-index: 4;
}

.speakers-visual img {
  max-width: 760px;
  aspect-ratio: auto 760 / 820;
  filter: saturate(1.05) contrast(1.04);
}

.speakers-copy .section-subtitle {
  margin-bottom: clamp(22px, 2vw, 34px);
}

.speaker-grid {
  max-width: 900px;
}

/* Schedule */
.schedule-copy .section-lead {
  max-width: 660px;
}

.schedule-list {
  display: flex;
  flex-direction: column;
  gap: clamp(11px, 1vw, 16px);
  max-width: 650px;
  margin: clamp(38px, 4vw, 58px) 0 0;
  padding: 0;
  list-style: none;
}

.schedule-list li {
  display: grid;
  grid-template-columns: clamp(92px, 7vw, 118px) minmax(0, 1fr);
  align-items: baseline;
  color: #fff;
  font-size: clamp(17px, 1.25vw, 22px);
  line-height: 1.3;
}

.schedule-list time {
  color: #00d2c6;
  font-size: clamp(16px, 1.2vw, 21px);
  font-weight: 400;
}

.schedule-visual img {
  max-width: 900px;
  aspect-ratio: auto 915 / 840;
  filter: saturate(1.08) contrast(1.05);
}

/* Why attend */
.why-visual img {
  max-width: 870px;
  aspect-ratio: auto 870 / 770;
  filter: saturate(1.04) contrast(1.03);
}

.why-copy .section-lead {
  max-width: 790px;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: clamp(9px, .8vw, 13px);
  margin: clamp(38px, 4vw, 62px) 0 0;
  padding: 0;
  list-style: none;
}

.why-list li {
  position: relative;
  padding-left: clamp(36px, 3vw, 47px);
  color: #fff;
  font-size: clamp(17px, 1.3vw, 23px);
  line-height: 1.35;
}

.why-list li::before {
  position: absolute;
  top: .02em;
  left: 0;
  color: #00c9bd;
  content: "✦";
  font-size: clamp(25px, 2vw, 31px);
  line-height: 1;
  text-shadow: 0 0 12px rgba(0,201,189,.2);
}

/* About */
.about-lead {
  max-width: 680px;
  font-size: clamp(18px, 1.45vw, 25px);
  line-height: 1.5;
}

.glance-title {
  margin: clamp(38px, 4vw, 64px) 0 0;
  color: #00c9bd;
  font-size: clamp(20px, 1.6vw, 28px);
  font-weight: 600;
  letter-spacing: .2px;
  text-transform: uppercase;
}

.about-visual img {
  max-width: 900px;
  aspect-ratio: auto 900 / 620;
}

.hotel-hex {
  position: absolute;
  top: 8%;
  left: 0;
  z-index: 1;
  width: 44%;
  height: 78%;
  opacity: .12;
  mask-image: linear-gradient(90deg, #000, transparent);
}

.stats-row {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 64px);
  margin: clamp(58px, 6vw, 92px) 0 0;
  padding: 0;
}

.stats-row > [class*="col-"] {
  width: auto;
  padding: 0;
}

.stat-item {
  text-align: center;
}

.stat-item strong {
  display: block;
  margin-bottom: clamp(13px, 1.4vw, 22px);
  color: #00cfbf;
  font-family: var(--font-digital);
  font-size: clamp(36px, 3vw, 50px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -1px;
  text-shadow: 0 0 16px rgba(0,207,191,.18);
}

.stat-item span {
  display: block;
  color: #fff;
  font-size: clamp(15px, 1.35vw, 23px);
  line-height: 1.4;
}

.venue-row {
  position: relative;
  z-index: 6;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 28px 44px;
  margin-top: clamp(64px, 7vw, 110px);
  padding: 0;
}

.venue-row p {
  flex: 1 1 560px;
  margin: 0;
  color: #fff;
  font-size: clamp(18px, 1.35vw, 24px);
  line-height: 1.5;
}

.venue-row p strong {
  margin-right: 20px;
  color: transparent;
  background: linear-gradient(90deg, #087fff, #00cbb8);
  -webkit-background-clip: text;
  background-clip: text;
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 400;
  text-transform: uppercase;
}

/* Modal */
.registration-modal .modal-content {
  color: #fff;
  background:
    linear-gradient(145deg, rgba(7,25,58,.98), rgba(2,9,34,.99));
  border: 1px solid rgba(0,202,189,.35);
  border-radius: 18px;
  box-shadow: 0 24px 90px rgba(0,0,0,.55), 0 0 45px rgba(0,109,255,.09);
}

.registration-modal .modal-header {
  padding: 28px 30px 14px;
  border: 0;
}

.registration-modal .modal-body {
  padding: 14px 30px 32px;
}

.registration-modal .modal-kicker {
  margin: 0 0 4px;
  color: var(--aqua-bright);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.registration-modal .modal-title {
  font-size: 28px;
  font-weight: 600;
}

.registration-modal .form-label {
  color: rgba(255,255,255,.78);
  font-size: 14px;
}

.registration-modal .form-control,
.registration-modal .form-select {
  min-height: 49px;
  color: #fff;
  background-color: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 7px;
}

.registration-modal .form-control:focus,
.registration-modal .form-select:focus {
  background-color: rgba(255,255,255,.065);
  border-color: var(--aqua);
  box-shadow: 0 0 0 .2rem rgba(0,202,189,.12);
}

.registration-modal .form-select option {
  color: #00101f;
}

.form-message {
  min-height: 22px;
  margin: 16px 0 0;
  color: var(--aqua-bright);
  text-align: center;
}

/* Artwork-rendered headings extracted from the supplied Illustrator design. */
.hero-title.hero-title-art {
  width: min(842px, 100%);
  max-width: 100%;
  line-height: 1;
}

.hero-title-art img {
  width: 100%;
  height: auto;
}

.section-title.section-title-art {
  display: block;
  width: max-content;
  max-width: 100%;
  color: inherit;
  background: none;
  filter: none;
}

.section-title-art img {
  width: auto;
  max-width: 100%;
  height: auto;
}

/* #whatsOnTitle img { width: 368px; } */
#speakersTitle img { width: 381px; }
#scheduleTitle img { width: 377px; }
#whyTitle img { width: 435px; }
#aboutTitle img { width: 614px; }

.venue-row .venue-art {
  display: inline-block;
  margin-right: 20px;
  vertical-align: middle;
  background: none;
}

.venue-row .venue-art img {
  display: inline-block;
  width: 137px;
  height: auto;
}

/* Keep external SVG icon strokes consistently blue-cyan. */
.line-icon img,
.meta-item img,
.btn-ibma img {
  pointer-events: none;
}


/* =========================
   Footer
   ========================= */

.site-footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(70px, 8vw, 120px) 0 28px;
  color: var(--white);
  background:
    radial-gradient(
      circle at 85% 20%,
      rgba(0, 185, 255, 0.09),
      transparent 30%
    ),
    radial-gradient(
      circle at 10% 80%,
      rgba(0, 202, 189, 0.07),
      transparent 28%
    ),
    linear-gradient(180deg, #020922 0%, #010617 100%);
  border-top: 1px solid rgba(0, 185, 255, 0.18);
}

.site-footer::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  opacity: 0.17;
  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px
    );
  background-size: 64px 64px;
  mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.9),
    transparent
  );
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.25fr) minmax(170px, 0.65fr) minmax(320px, 1fr);
  gap: clamp(40px, 6vw, 100px);
}

.footer-logo {
  display: inline-block;
  margin-bottom: 26px;
}

.footer-logo img {
  width: clamp(145px, 12vw, 190px);
  height: auto;
  transition: transform 0.25s ease;
}

.footer-logo:hover img {
  transform: translateY(-3px);
}

.footer-brand h2 {
  max-width: 510px;
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(21px, 2vw, 28px);
  font-weight: 600;
  line-height: 1.35;
}

.footer-brand > p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.75;
}

.footer-brand .footer-tagline {
  margin-top: 22px;
  color: var(--aqua-bright);
  font-family: var(--font-digital);
  font-size: 14px;
  letter-spacing: 0.4px;
}

.footer-column h3 {
  position: relative;
  margin: 5px 0 29px;
  padding-bottom: 14px;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}

.footer-column h3::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 48px;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--blue), var(--aqua));
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 202, 189, 0.3);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  transition:
    color 0.22s ease,
    transform 0.22s ease;
}

.footer-links a::before {
  position: absolute;
  left: 0;
  width: 7px;
  height: 7px;
  content: "";
  background: var(--aqua);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(0, 202, 189, 0.4);
  transition: transform 0.22s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--aqua-bright);
  transform: translateX(5px);
}

.footer-links a:hover::before {
  transform: scale(1.35);
}

.footer-details {
  min-width: 0;
}

.footer-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 17px;
}

.footer-detail-item + .footer-detail-item {
  margin-top: 22px;
}

.footer-detail-icon {
  display: grid;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  place-items: center;
  background: rgba(0, 139, 255, 0.07);
  border: 1px solid rgba(0, 185, 255, 0.34);
  border-radius: 50%;
}

.footer-detail-icon img {
  width: 24px;
  height: 24px;
  filter:
    brightness(0)
    saturate(100%)
    invert(61%)
    sepia(97%)
    saturate(1514%)
    hue-rotate(128deg)
    brightness(99%)
    contrast(102%);
}

.footer-detail-item strong {
  display: block;
  margin-bottom: 5px;
  color: var(--aqua-bright);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.footer-detail-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.6;
}

.footer-detail-item sup {
  font-size: 0.65em;
}

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

.footer-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 22px;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition:
    color 0.22s ease,
    background 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.footer-button-primary {
  background: linear-gradient(
    90deg,
    var(--blue),
    var(--aqua)
  );
  border-color: transparent;
}

.footer-button:hover,
.footer-button:focus-visible {
  color: #fff;
  background: linear-gradient(
    90deg,
    var(--blue),
    var(--aqua)
  );
  border-color: var(--aqua-bright);
  box-shadow: 0 8px 24px rgba(0, 139, 255, 0.2);
  transform: translateY(-2px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  margin-top: clamp(55px, 7vw, 90px);
  padding-top: 27px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 13px;
  line-height: 1.6;
}

.footer-map-link {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  transition: color 0.22s ease;
}

.footer-map-link svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.22s ease;
}

.footer-map-link:hover,
.footer-map-link:focus-visible {
  color: var(--aqua-bright);
}

.footer-map-link:hover svg {
  transform: translateX(4px);
}

@media (max-width: 991.98px) {
  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .footer-details {
    grid-column: 1 / -1;
    max-width: 650px;
  }
}

@media (max-width: 767.98px) {
  .site-footer {
    padding-top: 70px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .footer-brand h2 {
    font-size: 22px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 58px;
  }
}

@media (max-width: 575.98px) {
  .footer-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .footer-button {
    width: 100%;
  }

  .footer-detail-icon {
    flex-basis: 42px;
    width: 42px;
    height: 42px;
  }

  .footer-detail-icon img {
    width: 21px;
    height: 21px;
  }
}

/* ================================================================
   Back to Top Button
   ================================================================ */

.back-to-top {
  position: fixed;
  right: max(24px, env(safe-area-inset-right));
  bottom: max(24px, env(safe-area-inset-bottom));
  z-index: 1050;

  display: grid;
  width: 52px;
  height: 52px;
  padding: 0;
  place-items: center;

  color: #ffffff;
  background: linear-gradient(
    135deg,
    var(--blue) 0%,
    var(--aqua) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  box-shadow:
    0 10px 30px rgba(0, 139, 255, 0.28),
    0 0 22px rgba(0, 202, 189, 0.18);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  cursor: pointer;
  transform: translateY(18px) scale(0.88);

  transition:
    opacity 0.25s ease,
    visibility 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.back-to-top:hover {
  color: #ffffff;
  box-shadow:
    0 14px 34px rgba(0, 139, 255, 0.38),
    0 0 28px rgba(0, 202, 189, 0.3);
  transform: translateY(-4px) scale(1.04);
}

.back-to-top:active {
  transform: translateY(-1px) scale(0.96);
}

.back-to-top:focus-visible {
  outline: 3px solid rgba(5, 226, 209, 0.45);
  outline-offset: 4px;
}

.back-to-top svg {
  display: block;
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 767.98px) {
  .back-to-top {
    right: max(16px, env(safe-area-inset-right));
    bottom: max(16px, env(safe-area-inset-bottom));
    width: 46px;
    height: 46px;
  }

  .back-to-top svg {
    width: 21px;
    height: 21px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .back-to-top {
    transition: none;
  }
}



.section-end-circuit {
  position: absolute;
  bottom: clamp(12px, 2vw, 34px);
  z-index: 2;

  width: clamp(250px, 23vw, 430px);
  aspect-ratio: 322 / 88;

  background-image: url("../assets/images/separator.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;

  opacity: 0.92;
  pointer-events: none;
  user-select: none;
  mix-blend-mode: lighten;
}

/* Section 1, 3, 5: right side */
main > section:nth-of-type(odd) > .section-end-circuit {
  right: 0;
  left: auto;
  transform: scaleX(-1);
  transform-origin: center;
}

/* Section 2, 4, 6: left side */
main > section:nth-of-type(even) > .section-end-circuit {
  right: auto;
  left: 0;
  transform: none;
}

/* Tablet */
@media (max-width: 991.98px) {
  .section-end-circuit {
    bottom: 14px;
    width: clamp(230px, 36vw, 340px);
    opacity: 0.78;
  }
}

/* Mobile */
@media (max-width: 575.98px) {
  .section-end-circuit {
    bottom: 8px;
    width: min(240px, 68vw);
    opacity: 0.62;
  }
}


/* Schedules  */
    .ibma-subpage {
      --subpage-card: rgba(8, 25, 58, 0.78);
      --subpage-card-strong: rgba(8, 27, 63, 0.94);
      --subpage-border: rgba(0, 185, 255, 0.2);
      --subpage-border-strong: rgba(0, 202, 189, 0.42);
      --subpage-muted: rgba(255, 255, 255, 0.7);
      --subpage-radius: 24px;
    }

    .ibma-subpage main {
      overflow: clip;
    }

    .ibma-subpage section[id] {
      scroll-margin-top: 172px;
    }

    .ibma-subpage .subpage-hero {
      min-height: clamp(670px, 88svh, 900px);
      padding: clamp(155px, 12vw, 205px) 0 clamp(92px, 8vw, 126px);
    }

    .ibma-subpage .subpage-hero::before {
      background:
        radial-gradient(circle at 72% 31%, rgba(0, 145, 255, 0.2), transparent 30%),
        linear-gradient(180deg, rgba(2, 10, 36, 0.02), #020a24 98%);
    }

    .ibma-subpage .subpage-hero .hero-scene {
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: 70% center;
      opacity: 0.64;
      animation: none;
      filter: saturate(1.08) contrast(1.06);
      transform: none;
    }

    .ibma-subpage .subpage-hero .hero-ambient {
      z-index: -1;
      background:
        linear-gradient(90deg, rgba(2, 10, 36, 1) 0%, rgba(2, 10, 36, 0.97) 34%, rgba(2, 10, 36, 0.78) 55%, rgba(2, 10, 36, 0.28) 82%, rgba(2, 10, 36, 0.08) 100%),
        linear-gradient(180deg, rgba(2, 10, 36, 0.08), rgba(2, 10, 36, 0.58));
    }

    .ibma-subpage .subpage-hero .hero-copy {
      width: min(760px, 64%);
    }

    .subpage-breadcrumb {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 8px;
      margin: 0 0 24px;
      padding: 0;
      list-style: none;
      color: rgba(255, 255, 255, 0.62);
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 1.8px;
      text-transform: uppercase;
    }

    .subpage-breadcrumb li {
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .subpage-breadcrumb li + li::before {
      color: var(--aqua);
      content: "/";
    }

    .subpage-breadcrumb a {
      transition: color 0.2s ease;
    }

    .subpage-breadcrumb a:hover,
    .subpage-breadcrumb a:focus-visible {
      color: var(--aqua-bright);
    }

    .subpage-art-title {
      width: min(445px, 100%);
      margin: 0 0 24px;
    }

    .subpage-art-title img {
      width: 100%;
      height: auto;
    }

    .subpage-hero-lead {
      max-width: 690px;
      margin: 0 0 30px;
      color: rgba(255, 255, 255, 0.94);
      font-size: clamp(19px, 1.55vw, 26px);
      line-height: 1.55;
    }

    .subpage-hero .event-meta {
      margin-bottom: 30px;
    }

    .hero-highlights {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin: 0 0 clamp(34px, 4vw, 52px);
      padding: 0;
      list-style: none;
    }

    .hero-highlights li {
      display: inline-flex;
      align-items: center;
      min-height: 38px;
      padding: 8px 15px;
      color: rgba(255, 255, 255, 0.9);
      background: rgba(3, 18, 47, 0.58);
      border: 1px solid rgba(0, 185, 255, 0.24);
      border-radius: 999px;
      font-size: 13px;
      font-weight: 500;
      backdrop-filter: blur(8px);
    }

    .hero-highlights li::before {
      width: 7px;
      height: 7px;
      margin-right: 9px;
      content: "";
      background: var(--aqua-bright);
      border-radius: 50%;
      box-shadow: 0 0 10px rgba(5, 226, 209, 0.65);
    }

    .ibma-subpage .hero-actions .btn-ibma {
      min-width: min(300px, 100%);
    }

    .subpage-anchor-bar {
      position: sticky;
      top: 86px;
      z-index: 1020;
      background: rgba(2, 9, 34, 0.92);
      border-top: 1px solid rgba(0, 185, 255, 0.12);
      border-bottom: 1px solid rgba(0, 185, 255, 0.18);
      box-shadow: 0 14px 34px rgba(0, 0, 0, 0.14);
      backdrop-filter: blur(16px);
    }

    .subpage-anchor-list {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: clamp(24px, 4vw, 64px);
      min-height: 68px;
      margin: 0;
      padding: 0;
      overflow-x: auto;
      list-style: none;
      scrollbar-width: none;
    }

    .subpage-anchor-list::-webkit-scrollbar {
      display: none;
    }

    .subpage-anchor-list a {
      position: relative;
      display: inline-flex;
      align-items: center;
      min-height: 68px;
      color: rgba(255, 255, 255, 0.7);
      font-size: 14px;
      font-weight: 500;
      white-space: nowrap;
      transition: color 0.2s ease;
    }

    .subpage-anchor-list a::after {
      position: absolute;
      right: 50%;
      bottom: 0;
      left: 50%;
      height: 2px;
      content: "";
      background: linear-gradient(90deg, var(--blue), var(--aqua));
      transition: right 0.22s ease, left 0.22s ease;
    }

    .subpage-anchor-list a:hover,
    .subpage-anchor-list a:focus-visible {
      color: var(--aqua-bright);
    }

    .subpage-anchor-list a:hover::after,
    .subpage-anchor-list a:focus-visible::after {
      right: 0;
      left: 0;
    }

    .subpage-section {
      position: relative;
      isolation: isolate;
      padding: clamp(78px, 8vw, 124px) 0;
      background:
        radial-gradient(circle at 88% 24%, rgba(0, 123, 255, 0.055), transparent 24%),
        var(--ink);
    }

    .subpage-section + .subpage-section {
      border-top: 1px solid rgba(0, 185, 255, 0.08);
    }

    .subpage-section--alternate {
      background:
        radial-gradient(circle at 12% 76%, rgba(0, 202, 189, 0.055), transparent 24%),
        linear-gradient(180deg, #020922, #03102c);
    }

    .section-kicker {
      margin: 0 0 14px;
      color: var(--aqua-bright);
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 3px;
      text-transform: uppercase;
    }

    .subpage-heading {
      max-width: 980px;
      margin: 0;
      color: transparent;
      background: linear-gradient(90deg, #0f80ff 0%, #00a9ff 47%, #00ceb7 100%);
      -webkit-background-clip: text;
      background-clip: text;
      font-family: var(--font-display);
      font-size: clamp(38px, 4vw, 62px);
      font-weight: 400;
      line-height: 1.03;
      letter-spacing: -0.5px;
      text-transform: uppercase;
    }

    .subpage-intro {
      max-width: 850px;
      margin: 22px 0 0;
      color: var(--subpage-muted);
      font-size: clamp(16px, 1.25vw, 20px);
      line-height: 1.75;
    }

    .programme-alert {
      display: flex;
      align-items: flex-start;
      gap: 15px;
      max-width: 1020px;
      margin-top: 32px;
      padding: 17px 19px;
      color: rgba(255, 255, 255, 0.72);
      background: rgba(0, 185, 255, 0.055);
      border: 1px solid rgba(0, 185, 255, 0.15);
      border-radius: 14px;
      font-size: 13px;
      line-height: 1.65;
    }

    .programme-alert strong {
      color: #fff;
    }

    .programme-alert::before {
      display: grid;
      flex: 0 0 26px;
      width: 26px;
      height: 26px;
      place-items: center;
      color: var(--aqua-bright);
      content: "i";
      border: 1px solid rgba(0, 202, 189, 0.45);
      border-radius: 50%;
      font-family: Georgia, serif;
      font-weight: 700;
    }

    .day-card-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: clamp(18px, 2vw, 28px);
      margin-top: clamp(42px, 5vw, 72px);
    }

    .day-card {
      position: relative;
      min-width: 0;
      min-height: 360px;
      overflow: hidden;
      background: linear-gradient(155deg, rgba(8, 28, 66, 0.96), rgba(3, 14, 39, 0.96));
      border: 1px solid var(--subpage-border);
      border-radius: 22px;
      box-shadow: 0 20px 48px rgba(0, 0, 0, 0.2);
      transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    }

    .day-card:hover {
      border-color: var(--subpage-border-strong);
      box-shadow: 0 28px 60px rgba(0, 0, 0, 0.28), 0 0 28px rgba(0, 202, 189, 0.07);
      transform: translateY(-6px);
    }

    .day-card-header {
      position: relative;
      min-height: 146px;
      padding: 25px;
      overflow: hidden;
      background:
        radial-gradient(circle at 86% 14%, rgba(0, 202, 189, 0.18), transparent 34%),
        linear-gradient(135deg, rgba(8, 72, 151, 0.55), rgba(3, 22, 55, 0.85));
      border-bottom: 1px solid rgba(0, 185, 255, 0.14);
    }

    .day-card-header::after {
      position: absolute;
      right: -44px;
      bottom: -62px;
      width: 174px;
      height: 174px;
      content: "";
      border: 1px solid rgba(0, 202, 189, 0.16);
      border-radius: 50%;
      box-shadow: 0 0 0 32px rgba(0, 139, 255, 0.025), 0 0 0 64px rgba(0, 139, 255, 0.018);
    }

    .day-card-number {
      color: var(--aqua-bright);
      font-family: var(--font-digital);
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 2px;
      text-transform: uppercase;
    }

    .day-card-date {
      position: relative;
      z-index: 2;
      margin: 13px 0 0;
      color: #fff;
      font-size: clamp(23px, 2vw, 30px);
      font-weight: 600;
      line-height: 1.3;
    }

    .day-card-date small {
      display: block;
      margin-top: 6px;
      color: rgba(255, 255, 255, 0.65);
      font-size: 13px;
      font-weight: 400;
    }

    .day-card-body {
      display: flex;
      min-height: 214px;
      flex-direction: column;
      padding: 25px;
    }

    .day-card h3 {
      margin: 0;
      color: #fff;
      font-size: 20px;
      font-weight: 600;
      line-height: 1.4;
    }

    .day-card ul {
      display: flex;
      flex-direction: column;
      gap: 9px;
      margin: 17px 0 24px;
      padding: 0;
      list-style: none;
    }

    .day-card li {
      position: relative;
      padding-left: 19px;
      color: rgba(255, 255, 255, 0.65);
      font-size: 13px;
      line-height: 1.55;
    }

    .day-card li::before {
      position: absolute;
      top: 0.58em;
      left: 0;
      width: 6px;
      height: 6px;
      content: "";
      background: var(--aqua);
      border-radius: 50%;
      box-shadow: 0 0 8px rgba(0, 202, 189, 0.4);
    }

    .day-card-link {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      width: max-content;
      margin-top: auto;
      color: var(--aqua-bright);
      font-size: 13px;
      font-weight: 600;
      transition: gap 0.2s ease, color 0.2s ease;
    }

    .day-card-link::after {
      content: "→";
      font-size: 17px;
    }

    .day-card-link:hover,
    .day-card-link:focus-visible {
      gap: 13px;
      color: #fff;
    }

    .agenda-section {
      position: relative;
    }

    .day-heading-grid {
      display: grid;
      grid-template-columns: 154px minmax(0, 1fr);
      align-items: start;
      gap: clamp(28px, 4vw, 58px);
      margin-bottom: clamp(40px, 5vw, 66px);
    }

    .day-number-panel {
      display: grid;
      min-height: 154px;
      place-items: center;
      text-align: center;
      background:
        radial-gradient(circle at 50% 30%, rgba(0, 202, 189, 0.12), transparent 50%),
        rgba(6, 24, 57, 0.72);
      border: 1px solid rgba(0, 185, 255, 0.2);
      border-radius: 20px;
    }

    .day-number-panel span {
      display: block;
      color: rgba(255, 255, 255, 0.62);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 2.4px;
      text-transform: uppercase;
    }

    .day-number-panel strong {
      display: block;
      margin-top: 4px;
      color: var(--aqua-bright);
      font-family: var(--font-digital);
      font-size: 58px;
      font-weight: 500;
      line-height: 1;
      text-shadow: 0 0 18px rgba(0, 202, 189, 0.2);
    }

    .day-heading-copy {
      padding-top: 3px;
    }

    .day-date {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin: 0 0 13px;
      color: var(--aqua-bright);
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 1.7px;
      text-transform: uppercase;
    }

    .day-date::before {
      width: 24px;
      height: 1px;
      content: "";
      background: var(--aqua);
    }

    .day-heading-copy h2 {
      max-width: 900px;
      margin: 0;
      color: #fff;
      font-size: clamp(31px, 3.4vw, 52px);
      font-weight: 600;
      line-height: 1.2;
    }

    .day-heading-copy p:last-child {
      max-width: 890px;
      margin: 18px 0 0;
      color: rgba(255, 255, 255, 0.68);
      font-size: 16px;
      line-height: 1.75;
    }

    .agenda-list {
      position: relative;
      max-width: 1180px;
      margin-inline: auto;
    }

    .agenda-item {
      position: relative;
      display: grid;
      grid-template-columns: 140px 34px minmax(0, 1fr);
      gap: 22px;
      min-width: 0;
    }

    .agenda-item:not(:last-child) {
      padding-bottom: 20px;
    }

    .agenda-time {
      padding-top: 23px;
      text-align: right;
    }

    .agenda-time time {
      display: block;
      color: var(--aqua-bright);
      font-family: var(--font-digital);
      font-size: 17px;
      font-weight: 500;
      white-space: nowrap;
    }

    .agenda-time span {
      display: block;
      margin-top: 6px;
      color: rgba(255, 255, 255, 0.46);
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 1.2px;
      text-transform: uppercase;
    }

    .agenda-rail {
      position: relative;
      min-height: 100%;
    }

    .agenda-rail::before {
      position: absolute;
      top: 0;
      bottom: -20px;
      left: 50%;
      width: 1px;
      content: "";
      background: linear-gradient(180deg, rgba(0, 202, 189, 0.6), rgba(0, 139, 255, 0.15));
      transform: translateX(-50%);
    }

    .agenda-item:last-child .agenda-rail::before {
      bottom: 50%;
    }

    .agenda-rail::after {
      position: absolute;
      top: 28px;
      left: 50%;
      width: 14px;
      height: 14px;
      content: "";
      background: #03132f;
      border: 3px solid var(--aqua);
      border-radius: 50%;
      box-shadow: 0 0 0 6px rgba(0, 202, 189, 0.08), 0 0 15px rgba(0, 202, 189, 0.32);
      transform: translateX(-50%);
    }

    .agenda-content {
      min-width: 0;
      padding: 22px 24px 23px;
      background: rgba(6, 24, 57, 0.62);
      border: 1px solid rgba(0, 185, 255, 0.14);
      border-radius: 17px;
      transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
    }

    .agenda-content:hover {
      background: rgba(8, 30, 69, 0.82);
      border-color: rgba(0, 202, 189, 0.3);
      transform: translateX(4px);
    }

    .agenda-item--featured .agenda-content {
      background:
        radial-gradient(circle at 92% 20%, rgba(0, 202, 189, 0.13), transparent 28%),
        linear-gradient(145deg, rgba(8, 45, 91, 0.84), rgba(5, 24, 57, 0.84));
      border-color: rgba(0, 202, 189, 0.3);
    }

    .agenda-labels {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 10px;
    }

    .agenda-label {
      display: inline-flex;
      align-items: center;
      min-height: 24px;
      padding: 5px 9px;
      color: var(--aqua-bright);
      background: rgba(0, 202, 189, 0.07);
      border: 1px solid rgba(0, 202, 189, 0.2);
      border-radius: 999px;
      font-size: 9px;
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
    }

    .agenda-label--secondary {
      color: rgba(255, 255, 255, 0.62);
      background: rgba(255, 255, 255, 0.035);
      border-color: rgba(255, 255, 255, 0.1);
    }

    .agenda-content h3 {
      margin: 0;
      color: #fff;
      font-size: clamp(18px, 1.6vw, 23px);
      font-weight: 600;
      line-height: 1.4;
    }

    .agenda-content p {
      max-width: 900px;
      margin: 9px 0 0;
      color: rgba(255, 255, 255, 0.61);
      font-size: 13px;
      line-height: 1.65;
    }

    .programme-notes-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
      margin-top: clamp(40px, 5vw, 64px);
    }

    .programme-note-card {
      min-width: 0;
      padding: 26px;
      background: rgba(6, 24, 57, 0.58);
      border: 1px solid rgba(0, 185, 255, 0.14);
      border-radius: 18px;
    }

    .programme-note-card span {
      display: grid;
      width: 44px;
      height: 44px;
      margin-bottom: 19px;
      place-items: center;
      color: var(--aqua-bright);
      background: rgba(0, 202, 189, 0.07);
      border: 1px solid rgba(0, 202, 189, 0.22);
      border-radius: 50%;
      font-family: var(--font-digital);
      font-size: 14px;
    }

    .programme-note-card h3 {
      margin: 0;
      color: #fff;
      font-size: 18px;
      font-weight: 600;
    }

    .programme-note-card p {
      margin: 11px 0 0;
      color: rgba(255, 255, 255, 0.62);
      font-size: 13px;
      line-height: 1.7;
    }

    .schedule-cta {
      position: relative;
      overflow: hidden;
      margin-top: clamp(42px, 5vw, 68px);
      padding: clamp(34px, 5vw, 64px);
      background:
        radial-gradient(circle at 86% 20%, rgba(0, 202, 189, 0.17), transparent 26%),
        linear-gradient(135deg, rgba(8, 35, 79, 0.96), rgba(3, 15, 41, 0.98));
      border: 1px solid rgba(0, 185, 255, 0.25);
      border-radius: clamp(20px, 2vw, 30px);
      box-shadow: 0 28px 70px rgba(0, 0, 0, 0.25);
    }

    .schedule-cta::after {
      position: absolute;
      right: -80px;
      bottom: -110px;
      width: 310px;
      height: 310px;
      content: "";
      border: 1px solid rgba(0, 202, 189, 0.14);
      border-radius: 50%;
      box-shadow: 0 0 0 48px rgba(0, 139, 255, 0.025), 0 0 0 96px rgba(0, 139, 255, 0.018);
    }

    .schedule-cta-grid {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      align-items: center;
      gap: 42px;
    }

    .schedule-cta h2 {
      max-width: 760px;
      margin: 0;
      color: #fff;
      font-size: clamp(28px, 3vw, 46px);
      font-weight: 600;
      line-height: 1.25;
    }

    .schedule-cta p {
      max-width: 760px;
      margin: 16px 0 0;
      color: rgba(255, 255, 255, 0.68);
      font-size: 15px;
      line-height: 1.75;
    }

    .schedule-cta-actions {
      display: flex;
      flex-direction: column;
      gap: 13px;
      min-width: 280px;
    }

    .schedule-cta-actions .btn-ibma {
      width: 100%;
      min-width: 0;
    }

    @media (max-width: 1199.98px) {
      .ibma-subpage .subpage-hero .hero-copy {
        width: min(720px, 72%);
      }

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

      .day-card-body {
        padding: 23px;
      }
    }

    @media (max-width: 991.98px) {
      .ibma-subpage section[id] {
        scroll-margin-top: 156px;
      }

      .ibma-subpage .subpage-hero {
        min-height: 760px;
        padding-top: 138px;
      }

      .ibma-subpage .subpage-hero .hero-copy {
        width: min(690px, 82%);
      }

      .ibma-subpage .subpage-hero .hero-scene {
        object-position: 72% center;
        opacity: 0.5;
      }

      .ibma-subpage .subpage-hero .hero-ambient {
        background:
          linear-gradient(90deg, rgba(2, 10, 36, 0.995) 0%, rgba(2, 10, 36, 0.96) 50%, rgba(2, 10, 36, 0.72) 77%, rgba(2, 10, 36, 0.3) 100%),
          linear-gradient(180deg, rgba(2, 10, 36, 0.08), rgba(2, 10, 36, 0.62));
      }

      .subpage-anchor-bar {
        top: 92px;
      }

      .subpage-anchor-list {
        justify-content: flex-start;
      }

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

      .day-card:last-child,
      .programme-note-card:last-child {
        grid-column: 1 / -1;
      }

      .schedule-cta-grid {
        grid-template-columns: minmax(0, 1fr);
      }

      .schedule-cta-actions {
        flex-direction: row;
        min-width: 0;
      }

      .schedule-cta-actions .btn-ibma {
        width: auto;
        min-width: 260px;
      }
    }

    @media (max-width: 767.98px) {
      .ibma-subpage section[id] {
        scroll-margin-top: 142px;
      }

      .ibma-subpage .subpage-hero {
        min-height: 720px;
        padding: 116px 0 80px;
      }

      .ibma-subpage .subpage-hero .hero-copy {
        width: 100%;
      }

      .ibma-subpage .subpage-hero .hero-scene {
        object-position: 64% center;
        opacity: 0.32;
      }

      .ibma-subpage .subpage-hero .hero-ambient {
        background:
          linear-gradient(90deg, rgba(2, 10, 36, 0.995) 0%, rgba(2, 10, 36, 0.95) 68%, rgba(2, 10, 36, 0.66) 100%),
          linear-gradient(180deg, rgba(2, 10, 36, 0.18), rgba(2, 10, 36, 0.84));
      }

      .subpage-breadcrumb {
        margin-bottom: 19px;
        font-size: 11px;
        letter-spacing: 1.4px;
      }

      .subpage-art-title {
        width: min(365px, 88vw);
        margin-bottom: 18px;
      }

      .subpage-hero-lead {
        margin-bottom: 25px;
        font-size: 18px;
      }

      .subpage-hero .event-meta {
        margin-bottom: 24px;
      }

      .hero-highlights {
        gap: 8px;
      }

      .hero-highlights li {
        min-height: 34px;
        padding: 7px 12px;
        font-size: 11px;
      }

      .subpage-anchor-bar {
        top: 80px;
      }

      .subpage-anchor-list {
        min-height: 58px;
        gap: 28px;
        padding-inline: 17px;
      }

      .subpage-anchor-list a {
        min-height: 58px;
        font-size: 12px;
      }

      .day-card-grid,
      .programme-notes-grid {
        grid-template-columns: minmax(0, 1fr);
      }

      .day-card:last-child,
      .programme-note-card:last-child {
        grid-column: auto;
      }

      .day-card {
        min-height: 0;
      }

      .day-heading-grid {
        grid-template-columns: 112px minmax(0, 1fr);
        gap: 24px;
      }

      .day-number-panel {
        min-height: 112px;
        border-radius: 17px;
      }

      .day-number-panel strong {
        font-size: 42px;
      }

      .agenda-item {
        grid-template-columns: 104px 26px minmax(0, 1fr);
        gap: 14px;
      }

      .agenda-time time {
        font-size: 14px;
      }

      .agenda-content {
        padding: 19px 19px 20px;
      }

      .schedule-cta-actions {
        align-items: stretch;
        flex-direction: column;
      }

      .schedule-cta-actions .btn-ibma {
        width: 100%;
        min-width: 0;
      }
    }

    @media (max-width: 575.98px) {
      .ibma-subpage .subpage-hero {
        min-height: 700px;
        padding-top: 106px;
      }

      .ibma-subpage .hero-actions {
        width: 100%;
      }

      .ibma-subpage .hero-actions .btn-ibma {
        width: 100%;
      }

      .subpage-section {
        padding: 68px 0;
      }

      .subpage-heading {
        font-size: clamp(34px, 11vw, 46px);
      }

      .subpage-intro {
        margin-top: 17px;
        font-size: 15px;
      }

      .programme-alert {
        padding: 15px;
      }

      .day-card,
      .schedule-cta {
        border-radius: 18px;
      }

      .day-card-header {
        min-height: 132px;
        padding: 22px;
      }

      .day-card-body {
        min-height: 0;
        padding: 22px;
      }

      .day-heading-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 20px;
      }

      .day-number-panel {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 12px;
        width: max-content;
        min-height: 0;
        padding: 14px 18px;
        border-radius: 999px;
      }

      .day-number-panel span,
      .day-number-panel strong {
        display: inline;
        margin: 0;
      }

      .day-number-panel strong {
        font-size: 28px;
      }

      .agenda-item {
        display: block;
        padding-left: 25px;
      }

      .agenda-item:not(:last-child) {
        padding-bottom: 18px;
      }

      .agenda-time {
        padding: 0 0 9px;
        text-align: left;
      }

      .agenda-time time,
      .agenda-time span {
        display: inline-block;
      }

      .agenda-time span {
        margin: 0 0 0 9px;
      }

      .agenda-rail {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        width: 14px;
      }

      .agenda-rail::before {
        top: 9px;
        bottom: -18px;
      }

      .agenda-rail::after {
        top: 5px;
        width: 11px;
        height: 11px;
        border-width: 2px;
      }

      .agenda-content:hover {
        transform: none;
      }

      .schedule-cta {
        padding: 27px 21px;
      }
    }

    @media (max-width: 399.98px) {
      .ibma-subpage .subpage-hero {
        min-height: 680px;
      }

      .hero-highlights li {
        width: 100%;
      }

      .agenda-content {
        padding: 17px;
        border-radius: 14px;
      }

      .programme-note-card {
        padding: 22px;
      }
    }

    @media (hover: none) {
      .day-card:hover,
      .agenda-content:hover {
        transform: none;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .day-card,
      .agenda-content,
      .subpage-breadcrumb a,
      .subpage-anchor-list a,
      .day-card-link {
        transition: none;
      }
    }



    /* Speaker */
        .ibma-subpage {
      --subpage-card: rgba(8, 25, 58, 0.78);
      --subpage-card-strong: rgba(8, 27, 63, 0.94);
      --subpage-border: rgba(0, 185, 255, 0.2);
      --subpage-border-strong: rgba(0, 202, 189, 0.42);
      --subpage-muted: rgba(255, 255, 255, 0.7);
      --subpage-radius: 24px;
    }

    .ibma-subpage main {
      overflow: clip;
    }

    .ibma-subpage section[id] {
      scroll-margin-top: 172px;
    }

    .ibma-subpage .subpage-hero {
      min-height: clamp(670px, 88svh, 900px);
      padding: clamp(155px, 12vw, 205px) 0 clamp(92px, 8vw, 126px);
    }

    .ibma-subpage .subpage-hero::before {
      background:
        radial-gradient(circle at 72% 31%, rgba(0, 145, 255, 0.2), transparent 30%),
        linear-gradient(180deg, rgba(2, 10, 36, 0.02), #020a24 98%);
    }

    .ibma-subpage .subpage-hero .hero-scene {
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: 68% center;
      opacity: 0.66;
      animation: none;
      filter: saturate(1.08) contrast(1.06);
      transform: none;
    }

    .ibma-subpage .subpage-hero .hero-ambient {
      z-index: -1;
      background:
        linear-gradient(90deg, rgba(2, 10, 36, 1) 0%, rgba(2, 10, 36, 0.97) 34%, rgba(2, 10, 36, 0.78) 55%, rgba(2, 10, 36, 0.28) 82%, rgba(2, 10, 36, 0.08) 100%),
        linear-gradient(180deg, rgba(2, 10, 36, 0.08), rgba(2, 10, 36, 0.58));
    }

    .ibma-subpage .subpage-hero .hero-copy {
      width: min(760px, 64%);
    }

    .subpage-breadcrumb {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 8px;
      margin: 0 0 24px;
      padding: 0;
      list-style: none;
      color: rgba(255, 255, 255, 0.62);
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 1.8px;
      text-transform: uppercase;
    }

    .subpage-breadcrumb li {
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .subpage-breadcrumb li + li::before {
      color: var(--aqua);
      content: "/";
    }

    .subpage-breadcrumb a {
      transition: color 0.2s ease;
    }

    .subpage-breadcrumb a:hover,
    .subpage-breadcrumb a:focus-visible {
      color: var(--aqua-bright);
    }

    .subpage-art-title {
      width: min(445px, 100%);
      margin: 0 0 24px;
    }

    .subpage-art-title img {
      width: 100%;
      height: auto;
    }

    .subpage-hero-lead {
      max-width: 690px;
      margin: 0 0 30px;
      color: rgba(255, 255, 255, 0.94);
      font-size: clamp(19px, 1.55vw, 26px);
      line-height: 1.55;
    }

    .subpage-hero .event-meta {
      margin-bottom: 30px;
    }

    .hero-highlights {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin: 0 0 clamp(34px, 4vw, 52px);
      padding: 0;
      list-style: none;
    }

    .hero-highlights li {
      display: inline-flex;
      align-items: center;
      min-height: 38px;
      padding: 8px 15px;
      color: rgba(255, 255, 255, 0.9);
      background: rgba(3, 18, 47, 0.58);
      border: 1px solid rgba(0, 185, 255, 0.24);
      border-radius: 999px;
      font-size: 13px;
      font-weight: 500;
      backdrop-filter: blur(8px);
    }

    .hero-highlights li::before {
      width: 7px;
      height: 7px;
      margin-right: 9px;
      content: "";
      background: var(--aqua-bright);
      border-radius: 50%;
      box-shadow: 0 0 10px rgba(5, 226, 209, 0.65);
    }

    .ibma-subpage .hero-actions .btn-ibma {
      min-width: min(300px, 100%);
    }

    .subpage-anchor-bar {
      position: sticky;
      top: 86px;
      z-index: 1020;
      background: rgba(2, 9, 34, 0.92);
      border-top: 1px solid rgba(0, 185, 255, 0.12);
      border-bottom: 1px solid rgba(0, 185, 255, 0.18);
      box-shadow: 0 14px 34px rgba(0, 0, 0, 0.14);
      backdrop-filter: blur(16px);
    }

    .subpage-anchor-list {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: clamp(24px, 4vw, 64px);
      min-height: 68px;
      margin: 0;
      padding: 0;
      overflow-x: auto;
      list-style: none;
      scrollbar-width: none;
    }

    .subpage-anchor-list::-webkit-scrollbar {
      display: none;
    }

    .subpage-anchor-list a {
      position: relative;
      display: inline-flex;
      align-items: center;
      min-height: 68px;
      color: rgba(255, 255, 255, 0.7);
      font-size: 14px;
      font-weight: 500;
      white-space: nowrap;
      transition: color 0.2s ease;
    }

    .subpage-anchor-list a::after {
      position: absolute;
      right: 50%;
      bottom: 0;
      left: 50%;
      height: 2px;
      content: "";
      background: linear-gradient(90deg, var(--blue), var(--aqua));
      transition: right 0.22s ease, left 0.22s ease;
    }

    .subpage-anchor-list a:hover,
    .subpage-anchor-list a:focus-visible {
      color: var(--aqua-bright);
    }

    .subpage-anchor-list a:hover::after,
    .subpage-anchor-list a:focus-visible::after {
      right: 0;
      left: 0;
    }

    .subpage-section {
      position: relative;
      isolation: isolate;
      padding: clamp(78px, 8vw, 124px) 0;
      background:
        radial-gradient(circle at 88% 24%, rgba(0, 123, 255, 0.055), transparent 24%),
        var(--ink);
    }

    .subpage-section + .subpage-section {
      border-top: 1px solid rgba(0, 185, 255, 0.08);
    }

    .subpage-section--alternate {
      background:
        radial-gradient(circle at 12% 76%, rgba(0, 202, 189, 0.055), transparent 24%),
        linear-gradient(180deg, #020922, #03102c);
    }

    .section-kicker {
      margin: 0 0 14px;
      color: var(--aqua-bright);
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 3px;
      text-transform: uppercase;
    }

    .subpage-heading {
      max-width: 980px;
      margin: 0;
      color: transparent;
      background: linear-gradient(90deg, #0f80ff 0%, #00a9ff 47%, #00ceb7 100%);
      -webkit-background-clip: text;
      background-clip: text;
      font-family: var(--font-display);
      font-size: clamp(38px, 4vw, 62px);
      font-weight: 400;
      line-height: 1.03;
      letter-spacing: -0.5px;
      text-transform: uppercase;
    }

    .subpage-intro {
      max-width: 850px;
      margin: 22px 0 0;
      color: var(--subpage-muted);
      font-size: clamp(16px, 1.25vw, 20px);
      line-height: 1.75;
    }

    .overview-grid {
      display: grid;
      grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
      align-items: center;
      gap: clamp(48px, 7vw, 110px);
    }

    .overview-points {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
      margin: 38px 0 0;
      padding: 0;
      list-style: none;
    }

    .overview-points li {
      position: relative;
      min-height: 62px;
      padding: 18px 18px 18px 49px;
      color: rgba(255, 255, 255, 0.9);
      background: rgba(6, 24, 57, 0.54);
      border: 1px solid rgba(0, 185, 255, 0.13);
      border-radius: 14px;
      font-size: 14px;
      line-height: 1.55;
    }

    .overview-points li::before {
      position: absolute;
      top: 20px;
      left: 20px;
      width: 11px;
      height: 11px;
      content: "";
      background: var(--aqua);
      border: 3px solid rgba(0, 202, 189, 0.2);
      border-radius: 50%;
      box-shadow: 0 0 13px rgba(0, 202, 189, 0.36);
    }

    .overview-media {
      position: relative;
      min-width: 0;
    }

    .overview-media::before {
      position: absolute;
      top: -24px;
      right: -24px;
      width: 45%;
      aspect-ratio: 1;
      content: "";
      opacity: 0.18;
      background-image:
        linear-gradient(30deg, rgba(0, 162, 255, 0.28) 12%, transparent 12.5%, transparent 87%, rgba(0, 162, 255, 0.28) 87.5%),
        linear-gradient(150deg, rgba(0, 162, 255, 0.28) 12%, transparent 12.5%, transparent 87%, rgba(0, 162, 255, 0.28) 87.5%);
      background-size: 58px 102px;
    }

    .overview-media-frame {
      position: relative;
      overflow: hidden;
      background: #061431;
      border: 1px solid rgba(0, 185, 255, 0.25);
      border-radius: var(--subpage-radius);
      box-shadow: 0 28px 70px rgba(0, 0, 0, 0.3);
    }

    .overview-media-frame::after {
      position: absolute;
      inset: 0;
      content: "";
      pointer-events: none;
      background: linear-gradient(180deg, transparent 55%, rgba(2, 9, 34, 0.82));
    }

    .overview-media-frame img {
      width: 100%;
      aspect-ratio: 4 / 3;
      object-fit: cover;
      object-position: center;
    }

    .overview-media-caption {
      position: absolute;
      right: 24px;
      bottom: 22px;
      left: 24px;
      z-index: 2;
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 18px;
    }

    .overview-media-caption strong {
      display: block;
      margin-bottom: 5px;
      color: #fff;
      font-size: clamp(18px, 1.5vw, 24px);
      font-weight: 600;
    }

    .overview-media-caption span {
      color: rgba(255, 255, 255, 0.68);
      font-size: 13px;
    }

    .overview-media-caption b {
      flex: 0 0 auto;
      color: var(--aqua-bright);
      font-family: var(--font-digital);
      font-size: clamp(28px, 3vw, 46px);
      font-weight: 500;
    }

    .section-heading-row {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 28px;
      margin-bottom: clamp(42px, 5vw, 70px);
    }

    .section-heading-row .subpage-intro {
      max-width: 610px;
      margin-top: 0;
    }

    .speaker-card-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: clamp(18px, 2vw, 28px);
    }

    .speaker-card {
      position: relative;
      min-width: 0;
      overflow: hidden;
      background: linear-gradient(155deg, rgba(8, 28, 66, 0.96), rgba(3, 14, 39, 0.96));
      border: 1px solid var(--subpage-border);
      border-radius: 20px;
      box-shadow: 0 20px 48px rgba(0, 0, 0, 0.2);
      transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    }

    .speaker-card:hover {
      border-color: var(--subpage-border-strong);
      box-shadow: 0 26px 58px rgba(0, 0, 0, 0.3), 0 0 28px rgba(0, 202, 189, 0.07);
      transform: translateY(-6px);
    }

    .speaker-card-visual {
      position: relative;
      display: grid;
      min-height: 230px;
      place-items: center;
      overflow: hidden;
      background:
        radial-gradient(circle at 50% 44%, rgba(0, 202, 189, 0.15), transparent 29%),
        radial-gradient(circle at 50% 44%, rgba(0, 126, 255, 0.17), transparent 55%),
        linear-gradient(155deg, #071b42, #03102c);
      border-bottom: 1px solid rgba(0, 185, 255, 0.12);
    }

    .speaker-card-visual::before,
    .speaker-card-visual::after {
      position: absolute;
      content: "";
      border: 1px solid rgba(0, 185, 255, 0.16);
      border-radius: 50%;
    }

    .speaker-card-visual::before {
      width: 176px;
      height: 176px;
    }

    .speaker-card-visual::after {
      width: 126px;
      height: 126px;
      border-color: rgba(0, 202, 189, 0.2);
    }

    .speaker-card-visual img {
      position: relative;
      z-index: 2;
      width: 82px;
      height: 82px;
      object-fit: contain;
      filter: drop-shadow(0 0 20px rgba(0, 185, 255, 0.2));
    }

    .speaker-status {
      position: absolute;
      top: 18px;
      right: 18px;
      z-index: 3;
      padding: 7px 11px;
      color: var(--aqua-bright);
      background: rgba(2, 9, 34, 0.74);
      border: 1px solid rgba(0, 202, 189, 0.3);
      border-radius: 999px;
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 1.1px;
      text-transform: uppercase;
      backdrop-filter: blur(8px);
    }

    .speaker-card-body {
      padding: 25px 25px 28px;
    }

    .speaker-card-label {
      margin: 0 0 10px;
      color: var(--aqua);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 1.8px;
      text-transform: uppercase;
    }

    .speaker-card h3 {
      margin: 0;
      color: #fff;
      font-size: clamp(20px, 1.55vw, 25px);
      font-weight: 600;
      line-height: 1.35;
    }

    .speaker-card p:last-child {
      margin: 12px 0 0;
      color: rgba(255, 255, 255, 0.64);
      font-size: 14px;
      line-height: 1.65;
    }

    .editor-note {
      display: flex;
      align-items: flex-start;
      gap: 13px;
      max-width: 980px;
      margin: 34px auto 0;
      padding: 16px 18px;
      color: rgba(255, 255, 255, 0.65);
      background: rgba(0, 185, 255, 0.045);
      border: 1px solid rgba(0, 185, 255, 0.12);
      border-radius: 13px;
      font-size: 13px;
      line-height: 1.65;
      text-align: left;
    }

    .editor-note::before {
      flex: 0 0 auto;
      color: var(--aqua-bright);
      content: "i";
      display: grid;
      width: 22px;
      height: 22px;
      place-items: center;
      border: 1px solid rgba(0, 202, 189, 0.45);
      border-radius: 50%;
      font-family: Georgia, serif;
      font-weight: 700;
    }

    .theme-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
      margin-top: clamp(40px, 5vw, 66px);
    }

    .theme-card {
      position: relative;
      min-width: 0;
      min-height: 174px;
      padding: 25px 25px 25px 82px;
      overflow: hidden;
      background: rgba(6, 24, 57, 0.58);
      border: 1px solid rgba(0, 185, 255, 0.14);
      border-radius: 18px;
      transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
    }

    .theme-card:hover {
      background: rgba(8, 30, 69, 0.8);
      border-color: rgba(0, 202, 189, 0.32);
      transform: translateY(-4px);
    }

    .theme-card-number {
      position: absolute;
      top: 24px;
      left: 24px;
      color: var(--aqua-bright);
      font-family: var(--font-digital);
      font-size: 17px;
      font-weight: 500;
    }

    .theme-card h3 {
      margin: 0;
      color: #fff;
      font-size: 19px;
      font-weight: 600;
      line-height: 1.4;
    }

    .theme-card p {
      margin: 10px 0 0;
      color: rgba(255, 255, 255, 0.62);
      font-size: 13px;
      line-height: 1.65;
    }

    .speaker-cta {
      position: relative;
      overflow: hidden;
      padding: clamp(34px, 5vw, 64px);
      background:
        radial-gradient(circle at 86% 20%, rgba(0, 202, 189, 0.17), transparent 26%),
        linear-gradient(135deg, rgba(8, 35, 79, 0.96), rgba(3, 15, 41, 0.98));
      border: 1px solid rgba(0, 185, 255, 0.25);
      border-radius: clamp(20px, 2vw, 30px);
      box-shadow: 0 28px 70px rgba(0, 0, 0, 0.25);
    }

    .speaker-cta::after {
      position: absolute;
      right: -80px;
      bottom: -110px;
      width: 310px;
      height: 310px;
      content: "";
      border: 1px solid rgba(0, 202, 189, 0.14);
      border-radius: 50%;
      box-shadow: 0 0 0 48px rgba(0, 139, 255, 0.025), 0 0 0 96px rgba(0, 139, 255, 0.018);
    }

    .speaker-cta-grid {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      align-items: center;
      gap: 42px;
    }

    .speaker-cta h2 {
      max-width: 760px;
      margin: 0;
      color: #fff;
      font-size: clamp(28px, 3vw, 46px);
      font-weight: 600;
      line-height: 1.25;
    }

    .speaker-cta p {
      max-width: 760px;
      margin: 16px 0 0;
      color: rgba(255, 255, 255, 0.68);
      font-size: 15px;
      line-height: 1.75;
    }

    .speaker-cta-actions {
      display: flex;
      flex-direction: column;
      gap: 13px;
      min-width: 280px;
    }

    .speaker-cta-actions .btn-ibma {
      width: 100%;
      min-width: 0;
    }

    .speaker-stats {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 18px;
      margin-top: 28px;
    }

    .speaker-stat {
      min-width: 0;
      padding: 23px 18px;
      text-align: center;
      background: rgba(4, 17, 45, 0.58);
      border: 1px solid rgba(0, 185, 255, 0.12);
      border-radius: 16px;
    }

    .speaker-stat strong {
      display: block;
      color: var(--aqua-bright);
      font-family: var(--font-digital);
      font-size: clamp(27px, 2.5vw, 40px);
      font-weight: 500;
      line-height: 1;
    }

    .speaker-stat span {
      display: block;
      margin-top: 10px;
      color: rgba(255, 255, 255, 0.68);
      font-size: 12px;
      line-height: 1.45;
      text-transform: uppercase;
    }

    @media (max-width: 1199.98px) {
      .ibma-subpage .subpage-hero .hero-copy {
        width: min(720px, 72%);
      }

      .overview-grid {
        grid-template-columns: minmax(0, 0.95fr) minmax(370px, 1.05fr);
        gap: 56px;
      }

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

    @media (max-width: 991.98px) {
      .ibma-subpage section[id] {
        scroll-margin-top: 156px;
      }

      .ibma-subpage .subpage-hero {
        min-height: 760px;
        padding-top: 138px;
      }

      .ibma-subpage .subpage-hero .hero-copy {
        width: min(690px, 82%);
      }

      .ibma-subpage .subpage-hero .hero-scene {
        object-position: 72% center;
        opacity: 0.5;
      }

      .ibma-subpage .subpage-hero .hero-ambient {
        background:
          linear-gradient(90deg, rgba(2, 10, 36, 0.995) 0%, rgba(2, 10, 36, 0.96) 50%, rgba(2, 10, 36, 0.72) 77%, rgba(2, 10, 36, 0.3) 100%),
          linear-gradient(180deg, rgba(2, 10, 36, 0.08), rgba(2, 10, 36, 0.62));
      }

      .subpage-anchor-bar {
        top: 92px;
      }

      .subpage-anchor-list {
        justify-content: flex-start;
      }

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

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

      .overview-media {
        width: min(760px, 100%);
        margin-inline: auto;
      }

      .section-heading-row {
        align-items: flex-start;
        flex-direction: column;
      }

      .section-heading-row .subpage-intro {
        margin-top: -6px;
      }

      .speaker-cta-grid {
        grid-template-columns: minmax(0, 1fr);
      }

      .speaker-cta-actions {
        flex-direction: row;
        min-width: 0;
      }

      .speaker-cta-actions .btn-ibma {
        width: auto;
        min-width: 260px;
      }
    }

    @media (max-width: 767.98px) {
      .ibma-subpage section[id] {
        scroll-margin-top: 142px;
      }

      .ibma-subpage .subpage-hero {
        min-height: 720px;
        padding: 116px 0 80px;
      }

      .ibma-subpage .subpage-hero .hero-copy {
        width: 100%;
      }

      .ibma-subpage .subpage-hero .hero-scene {
        object-position: 65% center;
        opacity: 0.32;
      }

      .ibma-subpage .subpage-hero .hero-ambient {
        background:
          linear-gradient(90deg, rgba(2, 10, 36, 0.995) 0%, rgba(2, 10, 36, 0.95) 68%, rgba(2, 10, 36, 0.66) 100%),
          linear-gradient(180deg, rgba(2, 10, 36, 0.18), rgba(2, 10, 36, 0.84));
      }

      .subpage-breadcrumb {
        margin-bottom: 19px;
        font-size: 11px;
        letter-spacing: 1.4px;
      }

      .subpage-art-title {
        width: min(365px, 88vw);
        margin-bottom: 18px;
      }

      .subpage-hero-lead {
        margin-bottom: 25px;
        font-size: 18px;
      }

      .subpage-hero .event-meta {
        margin-bottom: 24px;
      }

      .hero-highlights {
        gap: 8px;
      }

      .hero-highlights li {
        min-height: 34px;
        padding: 7px 12px;
        font-size: 11px;
      }

      .subpage-anchor-bar {
        top: 80px;
      }

      .subpage-anchor-list {
        min-height: 58px;
        gap: 28px;
        padding-inline: 17px;
      }

      .subpage-anchor-list a {
        min-height: 58px;
        font-size: 12px;
      }

      .overview-points {
        grid-template-columns: minmax(0, 1fr);
      }

      .overview-media-caption {
        right: 18px;
        bottom: 17px;
        left: 18px;
      }

      .speaker-card-grid,
      .theme-grid {
        grid-template-columns: minmax(0, 1fr);
      }

      .speaker-card-visual {
        min-height: 210px;
      }

      .theme-card {
        min-height: 0;
      }

      .speaker-cta-actions {
        align-items: stretch;
        flex-direction: column;
      }

      .speaker-cta-actions .btn-ibma {
        width: 100%;
        min-width: 0;
      }

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

    @media (max-width: 575.98px) {
      .ibma-subpage .subpage-hero {
        min-height: 700px;
        padding-top: 106px;
      }

      .ibma-subpage .hero-actions {
        width: 100%;
      }

      .ibma-subpage .hero-actions .btn-ibma {
        width: 100%;
      }

      .subpage-section {
        padding: 68px 0;
      }

      .subpage-heading {
        font-size: clamp(34px, 11vw, 46px);
      }

      .subpage-intro {
        margin-top: 17px;
        font-size: 15px;
      }

      .overview-media::before {
        display: none;
      }

      .overview-media-frame,
      .speaker-card,
      .speaker-cta {
        border-radius: 18px;
      }

      .overview-media-frame img {
        aspect-ratio: 4 / 3.35;
      }

      .overview-media-caption {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
      }

      .overview-media-caption b {
        font-size: 27px;
      }

      .speaker-card-body {
        padding: 22px;
      }

      .speaker-cta {
        padding: 27px 21px;
      }

      .speaker-stats {
        gap: 12px;
      }

      .speaker-stat {
        padding: 19px 10px;
      }
    }

    @media (max-width: 399.98px) {
      .ibma-subpage .subpage-hero {
        min-height: 680px;
      }

      .hero-highlights li {
        width: 100%;
      }

      .speaker-card-visual {
        min-height: 185px;
      }

      .speaker-card-visual::before {
        width: 145px;
        height: 145px;
      }

      .speaker-card-visual::after {
        width: 102px;
        height: 102px;
      }

      .speaker-card-visual img {
        width: 68px;
        height: 68px;
      }

      .theme-card {
        padding: 22px 20px 22px 67px;
      }

      .theme-card-number {
        top: 22px;
        left: 20px;
      }
    }

    @media (hover: none) {
      .speaker-card:hover,
      .theme-card:hover {
        transform: none;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .speaker-card,
      .theme-card,
      .subpage-breadcrumb a,
      .subpage-anchor-list a {
        transition: none;
      }
    }