@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&display=swap');

: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 {
  position: relative;
  z-index: 1060;
  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;
  transition: transform 0.3s ease, opacity 0.25s ease;
}

.navbar-toggler.is-open span:nth-child(1),
.navbar-toggler[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.navbar-toggler.is-open span:nth-child(2),
.navbar-toggler[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.navbar-toggler.is-open span:nth-child(3),
.navbar-toggler[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.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(28px, 2.8vw, 42px);
}

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

.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-top: 0;
  margin-bottom: clamp(24px, 2.5vw, 36px);
  margin-inline: auto;
  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;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px clamp(20px, 2.5vw, 36px);
  margin-bottom: clamp(28px, 3vw, 48px);
}

.hero-actions .btn-outline,
.hero-actions .btn-gradient {
  width: auto;
  white-space: nowrap;
}

.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(12px, 1.2vw, 20px);
  color: #05e2d1;
  font-family: "Orbitron", var(--font-digital);
  font-size: clamp(44px, 3.6vw, 62px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 1px;
  text-shadow: none;
}

.stat-item span {
  display: block;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: clamp(15px, 1.25vw, 21px);
  font-weight: 500;
  line-height: 1.35;
}

.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,
.rep-conf-title img {
  width: auto;
  max-width: 100%;
  height: auto;
}

/* #whatsOnTitle img { width: 368px; } */
#speakersTitle img { width: 381px; }
#scheduleTitle img { width: 377px; }
#whyTitle img { width: 435px; }
#sponsorsTitle img { width: 330px; max-width: 100%; height: auto; }
#aboutTitle img { width: 614px; }
#faqTitle img { width: 130px; max-width: 100%; height: auto; display: block; margin: 0 auto; }
#accommodationTitle img { width: min(430px, 85vw); max-width: 100%; height: auto; margin-top: -35px; margin-bottom: -35px; display: block; }

.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;
}

.venue-map-pin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-left: 12px;
  color: var(--cyan);
  vertical-align: middle;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.25s ease, color 0.25s ease, filter 0.25s ease;
}

.venue-map-pin svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  display: block;
  flex-shrink: 0;
}

.venue-map-pin span {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.2px;
}

.venue-map-pin:hover,
.venue-map-pin:focus-visible {
  color: var(--aqua-bright);
  transform: scale(1.06);
  filter: drop-shadow(0 0 8px rgba(5, 226, 209, 0.6));
}

.venue-map-pin:hover span {
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* 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: 550 / 267;

  background-image: url("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: none;
  transform-origin: center;
}

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

/* 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: 500;
    }

    .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;
      width: 100%;
    }

    .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;
      transition: all 0.2s ease;
    }

    .agenda-label--secondary {
      color: #ffffff;
      background: rgba(0, 185, 255, 0.08);
      border: 1px solid rgba(0, 185, 255, 0.25);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
      font-size: 13px;
      font-weight: 600;
      text-transform: none;
      letter-spacing: 0.5px;
      padding: 4px 12px 4px 4px;
      margin-left: auto;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      line-height: 1;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .agenda-label--secondary::before {
      content: "SPEAKER";
      font-size: 9px;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: var(--aqua-bright);
      background: rgba(0, 185, 255, 0.16);
      padding: 4px 10px;
      border-radius: 999px;
      margin-right: 10px;
      display: inline-block;
      line-height: 1;
    }

    .agenda-label--secondary:hover {
      background: rgba(0, 185, 255, 0.15);
      border-color: var(--aqua-bright);
      box-shadow: 0 6px 16px rgba(0, 185, 255, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.2);
      transform: translateY(-2px);
    }

    .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;
    }

    .agenda-title-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      margin-top: 5px;
      width: 100%;
    }

    .agenda-title-row h3 {
      margin: 0 !important;
    }

    .agenda-title-row .agenda-label--secondary {
      margin: 0 !important;
      flex-shrink: 0;
    }

    .speaker-info-block {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      text-align: right;
      gap: 6px;
      flex-shrink: 0;
    }

    .speaker-badge-tag {
      font-family: var(--font-body);
      font-size: 9px;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: var(--aqua-bright);
      background: rgba(0, 185, 255, 0.16);
      padding: 4px 10px;
      border-radius: 999px;
      display: inline-block;
      line-height: 1;
    }

    .speaker-name-headline {
      font-family: var(--font-digital);
      font-size: clamp(16px, 1.8vw, 24px);
      font-weight: 700;
      color: #ffffff;
      line-height: 1.1;
      margin: 0;
      letter-spacing: 0.5px;
    }

    .agenda-single-line-title {
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      margin: 0 !important;
      line-height: 1.2;
    }

    .agenda-meal-text {
      font-size: 13px;
      color: rgba(255, 255, 255, 0.55) !important;
      margin: 8px 0 0 !important;
      font-weight: 500;
      letter-spacing: 0.5px;
    }

    @media (max-width: 767.98px) {
      .agenda-title-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
      }

      .speaker-info-block {
        align-items: flex-start;
        text-align: left;
        margin-top: 5px;
      }
    }

    .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;
      }
    }

/* ==========================================================================
   Sponsors Section
   ========================================================================== */
.sponsors-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: var(--section-space);
  background: var(--ink);
  text-align: center;
}

.sponsors-section .section-title {
  margin-bottom: clamp(40px, 4vw, 60px);
}

.sponsor-tier {
  margin-bottom: clamp(40px, 5vw, 70px);
}

.sponsor-tier:last-child {
  margin-bottom: 0;
}

.tier-title {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.2vw, 20px);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: clamp(20px, 3vw, 35px);
  font-weight: 600;
  position: relative;
  display: inline-block;
}

.tier-title::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  margin: 10px auto 0;
  border-radius: 2px;
}

.tier-title.platinum {
  color: #e2e8f0;
  text-shadow: 0 0 10px rgba(226, 232, 240, 0.2);
}
.tier-title.platinum::after {
  background: linear-gradient(90deg, #e2e8f0, #94a3b8);
}

.tier-title.gold {
  color: #fbbf24;
  text-shadow: 0 0 10px rgba(251, 191, 36, 0.2);
}
.tier-title.gold::after {
  background: linear-gradient(90deg, #fbbf24, #d97706);
}

.tier-title.silver {
  color: #94a3b8;
  text-shadow: 0 0 10px rgba(148, 163, 184, 0.2);
}
.tier-title.silver::after {
  background: linear-gradient(90deg, #94a3b8, #64748b);
}

.sponsor-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(16px, 2vw, 30px);
  max-width: 1100px;
  margin: 0 auto;
  padding-inline: clamp(16px, 3vw, 40px);
}

.sponsor-card {
  background: rgba(7, 20, 50, 0.45);
  border: 1px solid rgba(4, 191, 255, 0.15);
  border-radius: 16px;
  padding: 20px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), 
              border-color 0.4s ease, 
              box-shadow 0.4s ease, 
              background 0.4s ease;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}

.sponsor-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(5, 226, 209, 0.08), transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* Sizing structure per tier */
.platinum-grid .sponsor-card {
  flex: 0 1 calc(33.333% - 20px);
  min-width: 260px;
  height: 140px;
}

.gold-grid .sponsor-card {
  flex: 0 1 320px;
  height: 130px;
}

.silver-grid .sponsor-card {
  flex: 0 1 calc(25% - 23px);
  min-width: 220px;
  height: 110px;
}

/* Hover effects */
.sponsor-card:hover {
  transform: translateY(-6px);
  border-color: var(--aqua-bright);
  box-shadow: 0 12px 30px rgba(5, 226, 209, 0.18);
  background: rgba(7, 20, 50, 0.7);
}

.sponsor-card:hover::before {
  opacity: 1;
}

.sponsor-card img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: filter 0.4s ease, transform 0.4s ease, opacity 0.4s ease;
  filter: grayscale(100%) brightness(4);
  opacity: 50;
}

.sponsor-card:hover img {
  filter: grayscale(0%) brightness(1.5);
  opacity: 1;
  transform: scale(1.03);
}

.sponsor-card img[src*="HEB_Logo"],
.sponsor-card img.logo-heb {
  max-height: 100%;
  transform: scale(1.45);
}

.sponsor-card:hover img[src*="HEB_Logo"],
.sponsor-card:hover img.logo-heb {
  filter: grayscale(0%) brightness(1.5);
  opacity: 1;
  transform: scale(1.55);
}

.sponsor-card img[src*="Sakthi_logo"],
.sponsor-card img.logo-sakthi {
  transform: scale(1.35);
}

.sponsor-card:hover img[src*="Sakthi_logo"],
.sponsor-card:hover img.logo-sakthi {
  filter: grayscale(0%) brightness(1.5);
  opacity: 1;
  transform: scale(1.45);
}

.sponsor-card img[src*="Luminous_Logo"],
.sponsor-card img.logo-luminous {
  transform: scale(1.35);
}

.sponsor-card:hover img[src*="Luminous_Logo"],
.sponsor-card:hover img.logo-luminous {
  filter: grayscale(0%) brightness(1.5);
  opacity: 1;
  transform: scale(1.45);
}

/* Placeholder card styling */
.sponsor-card.placeholder-card {
  border-style: dashed;
  border-color: rgba(4, 191, 255, 0.3);
  background: rgba(7, 20, 50, 0.15);
  cursor: default;
}

.sponsor-card.placeholder-card:hover {
  border-style: solid;
  border-color: var(--aqua-bright);
  box-shadow: 0 12px 30px rgba(5, 226, 209, 0.12);
}

.sponsor-card .company-name {
  color: var(--muted);
  font-size: clamp(14px, 1.1vw, 16px);
  font-weight: 500;
  text-align: center;
  line-height: 1.35;
  transition: color 0.4s ease;
}

.sponsor-card.placeholder-card:hover .company-name {
  color: var(--white);
}

/* Responsive breakdowns */
@media (max-width: 991.98px) {
  .platinum-grid .sponsor-card {
    flex: 0 1 calc(50% - 15px);
  }
  .silver-grid .sponsor-card {
    flex: 0 1 calc(33.333% - 20px);
  }
}

@media (max-width: 767.98px) {
  .sponsor-grid {
    gap: 20px;
  }
  .platinum-grid .sponsor-card,
  .gold-grid .sponsor-card,
  .silver-grid .sponsor-card {
    flex: 0 1 100%;
    max-width: 320px;
    height: 110px;
  }
  .sponsor-card {
    padding: 15px 25px;
  }
}

@media (max-width: 480px) {
  .platinum-grid .sponsor-card,
  .gold-grid .sponsor-card,
  .silver-grid .sponsor-card {
    max-width: 100%;
  }
}

@media (hover: none) {
  .sponsor-card:hover {
    transform: none;
  }
  .sponsor-card img {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sponsor-card {
    transition: none !important;
  }
  .sponsor-card img {
    transition: none !important;
  }
}

/* ==========================================================================
   Accommodation & Hotel Details Pages
   ========================================================================== */
.accommodation-section {
  padding-block: var(--section-space);
  background: var(--ink);
}

.hotel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: clamp(24px, 3vw, 40px);
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: 20px;
}

.hotel-card {
  background: rgba(7, 20, 50, 0.45);
  border: 1px solid rgba(4, 191, 255, 0.15);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), 
              border-color 0.4s ease, 
              box-shadow 0.4s ease, 
              background 0.4s ease;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.hotel-card:hover {
  transform: translateY(-8px);
  border-color: var(--aqua-bright);
  box-shadow: 0 20px 42px rgba(5, 226, 209, 0.18);
  background: rgba(7, 20, 50, 0.7);
}

.hotel-card-media {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.hotel-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hotel-card:hover .hotel-card-media img {
  transform: scale(1.06);
}

.hotel-card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, var(--blue), var(--aqua));
  color: var(--white);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 12px rgba(0, 185, 255, 0.35);
}

.hotel-card-body {
  padding: clamp(20px, 3vw, 30px);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.hotel-card-name {
  font-size: clamp(20px, 1.5vw, 24px);
  font-weight: 600;
  color: var(--white);
  margin: 0 0 10px;
  line-height: 1.25;
}

.hotel-card-desc {
  font-size: 15px;
  color: var(--muted);
  margin: 0 0 24px;
  line-height: 1.6;
  flex-grow: 1;
}

.hotel-card-actions {
  margin-top: auto;
}

.hotel-card-actions .btn-ibma {
  width: 100%;
}

/* Details Page Layout */
.details-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.8fr);
  gap: clamp(30px, 4.5vw, 68px);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px clamp(60px, 6vw, 100px);
}

.details-content {
  background: rgba(7, 20, 50, 0.25);
  border: 1px solid rgba(4, 191, 255, 0.1);
  border-radius: 24px;
  padding: clamp(24px, 4vw, 48px);
  backdrop-filter: blur(8px);
}

.details-brand {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.3vw, 22px);
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
  border-bottom: 1.5px solid rgba(0, 185, 255, 0.2);
  padding-bottom: 14px;
}

.details-letter {
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
  line-height: 1.8;
}

.details-letter p {
  margin-bottom: 20px;
}

.details-letter p:last-child {
  margin-bottom: 0;
}

/* Call to Action Button styling */
.btn-book-container {
  margin-block: 36px;
}

.btn-book {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  padding: 16px 44px;
  background: linear-gradient(90deg, #078bff, #00cabd);
  color: #fff;
  border: none;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  box-shadow: 0 8px 30px rgba(0, 202, 189, 0.35);
  transition: all 0.4s ease;
  cursor: pointer;
  width: min(340px, 100%);
  text-align: center;
}

.btn-book:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(5, 226, 209, 0.55);
  background: linear-gradient(90deg, #00b9ff, #05e2d1);
}

.btn-book:active {
  transform: translateY(-1px);
}

.details-dates-highlight {
  background: rgba(5, 226, 209, 0.08);
  border-left: 4px solid var(--aqua-bright);
  padding: 18px 24px;
  border-radius: 0 12px 12px 0;
  margin-top: 36px;
}

.details-dates-highlight strong {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--aqua-bright);
  margin-bottom: 6px;
}

.details-dates-highlight span {
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
}

/* Sidebar styling */
.details-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sidebar-card {
  background: rgba(7, 20, 50, 0.45);
  border: 1px solid rgba(4, 191, 255, 0.15);
  border-radius: 20px;
  padding: clamp(20px, 3vw, 30px);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.sidebar-title {
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--white);
  margin: 0 0 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.info-item:last-child {
  margin-bottom: 0;
}

.info-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(0, 185, 255, 0.1);
  border: 1px solid rgba(0, 185, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
}

.info-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.info-label {
  font-size: 13px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 1px;
  margin: 0 0 4px;
  font-weight: 500;
}

.info-val {
  font-size: 16px;
  color: var(--white);
  margin: 0;
  line-height: 1.5;
  font-weight: 500;
}

.info-val address {
  font-style: normal;
  margin: 0;
}

/* Responsiveness adjustments */
@media (max-width: 991.98px) {
  .details-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .hotel-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
}

@media (max-width: 575.98px) {
  .hotel-grid {
    grid-template-columns: 1fr;
  }
  .details-content {
    padding: 20px;
  }
}

/* ==========================================================================
   Replicated Conference Section (Schedule, Glance, Venue)
   ========================================================================== */

@font-face {
  font-family: 'Open 24 Display St';
  src: url('./Confernce/Fonts/Open 24 Display St.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

.replicated-conference-section {
  position: relative;
  padding: var(--section-space) 0;
  overflow: hidden;
  background: var(--ink);
}

.rep-conf-ambient {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(circle at 50% 50%, rgba(0, 185, 255, 0.05), transparent 70%);
}

.rep-conf-header-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  width: 100%;
  position: relative;
}

.rep-conf-title-line-container {
  flex: 1 1 auto;
  position: relative;
  height: 40px;
  overflow: hidden;
}

.rep-conf-title {
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(24px, 3.2vw, 38px);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 0;
  white-space: nowrap;
  padding: 0 30px;
  flex: 0 0 auto;
}

.rep-conf-header-right-spacer {
  flex: 1 1 auto;
}

.rep-conf-grid {
  display: grid;
  grid-template-columns: 1.25fr 2fr 2fr;
  gap: 28px;
  align-items: start;
  margin-bottom: 70px;
  position: relative;
  z-index: 2;
}

.rep-conf-col {
  border: 1px solid rgba(0, 185, 255, 0.35);
  background: #020922;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  display: flex;
  flex-direction: column;
}

.rep-day-header {
  background: linear-gradient(90deg, #167DFF 0%, #13C9B3 100%);
  color: #FFFFFF;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(14px, 1.1vw, 17px);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 16px clamp(12px, 1.3vw, 20px);
  border-bottom: 1px solid rgba(0, 185, 255, 0.35);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
  transition: border-bottom-color 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.rep-day-header span {
  white-space: nowrap;
}

.rep-day-header:not(.expanded) {
  border-bottom-color: transparent;
}

.rep-chevron {
  transition: transform 350ms cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  display: inline-block;
}

.rep-day-header.expanded .rep-chevron {
  transform: rotate(180deg);
}

.rep-day-table-wrapper {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 350ms cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.rep-day-table-wrapper.expanded {
  grid-template-rows: 1fr;
}

.rep-day-table-inner {
  min-height: 0;
  overflow-x: auto;
  width: 100%;
}

.rep-day-table {
  width: 100%;
  border-collapse: collapse;
}

.rep-day-table td {
  padding: 14px clamp(10px, 1.2vw, 18px);
  border: 1px solid rgba(4, 191, 255, 0.15);
  color: #fff;
  font-size: clamp(13px, 1vw, 14px);
  line-height: 1.4;
  vertical-align: top;
}

.rep-day-table .rep-time {
  color: #14C4B6 !important;
  font-weight: 600;
  font-size: clamp(12.5px, 0.95vw, 13.5px);
  white-space: nowrap;
  width: clamp(92px, 7.5vw, 105px);
}

.rep-digital-time {
  font-family: 'Open 24 Display St', monospace;
  font-size: 21px;
  color: #215957; /* dimmed teal clock display */
  letter-spacing: 0.5px;
  width: 120px;
  padding-top: 11px !important;
  line-height: 1 !important;
}

.rep-session {
  color: #fff;
  font-size: 14px;
}

.rep-session.rep-full {
  font-weight: 500;
}

.rep-speaker {
  color: #d3daea;
  font-size: 13.5px;
  width: 120px;
}

.rep-nowrap {
  white-space: nowrap;
}

.rep-cat-row {
  border-top: 1px solid rgba(4, 191, 255, 0.3);
  border-bottom: 1px solid rgba(4, 191, 255, 0.3);
}

.rep-cat-header {
  background: linear-gradient(90deg, #167DFF 0%, #13C9B3 100%) !important;
  color: #FFFFFF !important;
  font-weight: 700;
  font-size: 13px !important;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 12px 18px !important;
  border-left: none !important;
  border-right: none !important;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.rep-cyan-subtext {
  color: #00d2c6;
  font-size: 13px;
  display: block;
  margin-top: 4px;
}

.rep-green-text {
  color: #05e2d1;
  font-weight: 600;
}

.rep-conf-bottom-lines {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 400px;
  height: 120px;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
  transition: transform 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.rep-schedule-wrap:not(.expanded) .rep-conf-bottom-lines {
  transform: translateY(20px);
}

@media (min-width: 992px) {
  .rep-schedule-wrap {
    padding-bottom: 100px;
    margin-bottom: 10px !important;
  }
}

.rep-glance-container {
  margin-top: 70px;
  position: relative;
  z-index: 5;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 50px;
}

.rep-glance-title {
  text-align: center;
  color: #00c9bd;
  font-size: clamp(20px, 1.6vw, 28px);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 40px;
}

/* Responsiveness for schedule grid */
@media (max-width: 991px) {
  .rep-conf-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .rep-conf-bottom-lines {
    display: none;
  }
  .rep-day-table {
    min-width: 100%;
  }
}

@media (max-width: 768px) {
  /* Convert table structure to block layout on mobile screens */
  .rep-day-table, 
  .rep-day-table tbody, 
  .rep-day-table tr, 
  .rep-day-table td {
    display: block;
    width: 100% !important;
  }
  
  .rep-day-table tr {
    border-bottom: 1px solid rgba(4, 191, 255, 0.12);
    padding: 14px 16px;
    box-sizing: border-box;
  }
  
  .rep-day-table tr:last-child {
    border-bottom: none;
  }
  
  .rep-day-table td {
    padding: 0 !important;
    border: none !important;
    text-align: left !important;
  }
  
  .rep-day-table .rep-time {
    color: #14C4B6 !important;
    font-size: 13.5px;
    font-weight: 600;
    margin-bottom: 6px;
    white-space: normal !important;
    width: 100% !important;
    display: block;
  }
  
  .rep-day-table .rep-session {
    color: #fff;
    font-size: 14px;
    margin-bottom: 6px;
    display: block;
  }
  
  .rep-day-table .rep-speaker {
    color: #d3daea;
    font-size: 13px;
    font-style: italic;
    width: 100% !important;
    display: block;
    margin-top: 2px;
  }
  
  /* Category headers mobile layout */
  .rep-day-table tr.rep-cat-row {
    background: linear-gradient(90deg, #167DFF 0%, #13C9B3 100%) !important;
    padding: 10px 16px !important;
    border: none !important;
  }
  
  .rep-day-table tr.rep-cat-row td.rep-cat-header {
    background: transparent !important;
    padding: 0 !important;
    font-size: 13px !important;
    font-weight: 700;
    color: #FFFFFF !important;
  }
  
  /* Remove nowrap restraint on mobile so session titles wrap correctly */
  .rep-nowrap {
    white-space: normal !important;
  }
}

/* ==========================================================================
   Premium Animated Accordion Conference Schedule (World-Class Interactions)
   ========================================================================== */

#detailed-programme {
  --bg: #050B23;
  --panel: #111D46;
  --panel-glow: #2f6bff;
  --accent: #2f6bff;
  --accent2: #018083;
  --text: #e9edf7;
  --muted: #9aa6c7;
  --line: #233B82;
  
  position: relative;
  padding: var(--section-space) 0;
  background: var(--bg);
  overflow: hidden;
}

#detailed-programme .accordion {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 2;
}

#detailed-programme .day {
  background: linear-gradient(135deg, rgba(13, 27, 65, 0.85) 0%, rgba(7, 16, 42, 0.95) 100%);
  border: 1px solid rgba(4, 191, 255, 0.25);
  border-radius: 24px;
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1), 
              box-shadow 0.35s cubic-bezier(0.25, 0.8, 0.25, 1), 
              border-color 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

#detailed-programme .day:not(.open):hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(5, 226, 209, 0.15);
  border-color: rgba(5, 226, 209, 0.5);
}

/* Clearer schedule hierarchy and a more responsive card hover state. */
#detailed-programme .day:not(.open):hover .day-title-info .date,
#detailed-programme .day:not(.open):focus-within .day-title-info .date {
  color: #05e2d1;
}

#detailed-programme .day.open {
  border-color: #00cabd;
  box-shadow: 0 0 0 1px rgba(0, 202, 189, 0.35), 0 20px 50px rgba(0, 185, 255, 0.2);
}

#detailed-programme .day-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--text);
  font-family: var(--font-body);
  outline: none;
  min-height: 110px;
}

#detailed-programme .day-header:hover {
  background: rgba(255, 255, 255, 0.02);
}

#detailed-programme .day-title {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
  text-align: left;
}

#detailed-programme .day-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  background: linear-gradient(135deg, rgba(4, 191, 255, 0.14), rgba(5, 226, 209, 0.08));
  border: 1.5px solid rgba(5, 226, 209, 0.4);
  color: var(--accent2);
  font-weight: 700;
  width: 58px;
  height: 58px;
  min-width: 58px;
  border-radius: 50%;
  transition: all 0.35s cubic-bezier(.34, 1.56, .64, 1);
  transform-origin: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25), inset 0 0 10px rgba(5, 226, 209, 0.15);
}

#detailed-programme .day-header:hover .day-badge {
  background: linear-gradient(135deg, rgba(4, 191, 255, 0.22), rgba(5, 226, 209, 0.22));
  border-color: #05e2d1;
  box-shadow: 0 0 20px rgba(5, 226, 209, 0.45);
  transform: scale(1.06);
}

#detailed-programme .day-badge-label {
  font-size: 12px;
  letter-spacing: 1.5px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1;
  color: #00cabd;
  transition: all 0.35s ease;
}

#detailed-programme .day-badge-num {
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
  color: #05e2d1;
  text-shadow: 0 0 10px rgba(5, 226, 209, 0.6);
  transition: all 0.35s ease;
}

#detailed-programme .day.open .day-badge {
  background: linear-gradient(135deg, #00cabd 0%, #05e2d1 100%);
  border: 1.5px solid #05e2d1;
  color: #010a24;
  width: 58px;
  height: 58px;
  min-width: 58px;
  flex-direction: column;
  gap: 1px;
  box-shadow: 0 0 25px rgba(5, 226, 209, 0.6), 0 8px 20px rgba(0, 0, 0, 0.4);
  animation: badgeBounce 0.45s cubic-bezier(.34, 1.56, .64, 1) forwards;
}

#detailed-programme .day.open .day-badge-label {
  font-size: 12px;
  letter-spacing: 1.5px;
  font-weight: 800;
  color: #010a24;
  line-height: 1;
  margin-bottom: 0;
}

#detailed-programme .day.open .day-badge-num {
  font-size: 27px;
  font-weight: 900;
  color: #010a24;
  text-shadow: none;
  line-height: 1;
}

@keyframes badgeBounce {
  0% {
    transform: scale(0.6);
  }
  100% {
    transform: scale(1);
  }
}

#detailed-programme .day-title-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

#detailed-programme .day-title-info .date {
  font-size: 25px;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: 0.3px;
}

#detailed-programme .day-title-info .meta {
  font-size: 16px;
  color: #9bb2da;
  font-weight: 800;
}

#detailed-programme .chevron {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(4, 191, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1), 
              background-color 0.45s ease, 
              border-color 0.45s ease;
  flex-shrink: 0;
  background: rgba(4, 191, 255, 0.08);
}

#detailed-programme .day.open .chevron {
  transform: rotate(180deg);
  background-color: #00cabd;
  border-color: #00cabd;
  animation: circleGrow 0.3s ease-out forwards;
}

#detailed-programme .chevron svg {
  width: 16px;
  height: 16px;
  stroke: #05e2d1;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1), stroke 0.45s ease;
}

#detailed-programme .day.open .chevron svg {
  stroke: #010a24;
}

@keyframes circleGrow {
  0% {
    transform: rotate(180deg) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(1.15);
  }
  100% {
    transform: rotate(180deg) scale(1);
  }
}

#detailed-programme .day-body {
  max-height: 0;
  opacity: 0;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1), 
              opacity 0.4s ease, 
              padding 0.4s ease;
  padding: 0 28px;
  overflow: hidden;
}

#detailed-programme .day.open .day-body {
  opacity: 1;
  padding: 0 28px 28px;
}

/* Staggered slide up & fade-in animations for table content */
#detailed-programme .day-body > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), 
              transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

#detailed-programme .day.open .day-body > * {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays up to 10 elements */
#detailed-programme .day.open .day-body > *:nth-child(1) { transition-delay: 0.05s; }
#detailed-programme .day.open .day-body > *:nth-child(2) { transition-delay: 0.1s; }
#detailed-programme .day.open .day-body > *:nth-child(3) { transition-delay: 0.15s; }
#detailed-programme .day.open .day-body > *:nth-child(4) { transition-delay: 0.2s; }
#detailed-programme .day.open .day-body > *:nth-child(5) { transition-delay: 0.25s; }
#detailed-programme .day.open .day-body > *:nth-child(6) { transition-delay: 0.3s; }
#detailed-programme .day.open .day-body > *:nth-child(7) { transition-delay: 0.35s; }
#detailed-programme .day.open .day-body > *:nth-child(8) { transition-delay: 0.4s; }
#detailed-programme .day.open .day-body > *:nth-child(9) { transition-delay: 0.45s; }
#detailed-programme .day.open .day-body > *:nth-child(10) { transition-delay: 0.5s; }

#detailed-programme .block-title {
  margin: 24px 0 12px;
  font-size: 13px;
  letter-spacing: 1.5px;
  color: var(--accent2);
  font-weight: 700;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 20px;
  text-align: left;
  text-transform: uppercase;
}

#detailed-programme .block-title:first-child {
  border-top: none;
  padding-top: 0;
  margin-top: 6px;
}

/* Table Container (Glassmorphic) */
#detailed-programme .day-body-table-wrapper {
  overflow-x: auto;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  width: 100%;
  margin-bottom: 12px;
}

#detailed-programme table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
  font-weight: 700;
}

#detailed-programme th, 
#detailed-programme td {
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  vertical-align: middle;
  color: #FFFFFF;
}

#detailed-programme tr:last-child td {
  border-bottom: none;
}

#detailed-programme tr:hover td {
  background: rgba(255, 255, 255, 0.05);
}

#detailed-programme th {
  color: var(--muted);
  font-weight: 600;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

#detailed-programme td.time {
  color: #05e2d1;
  white-space: nowrap;
  font-weight: 700;
  font-size: 14px;
  width: 150px;
}

#detailed-programme td.speaker {
  width: 220px;
  color: #05e2d1;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.3px;
}

#detailed-programme .day-body table td {
  font-size: clamp(16px, 1.15vw, 19px);
  font-weight: 800;
  line-height: 1.45;
}

#detailed-programme .day-body table th {
  font-size: clamp(13px, .95vw, 15px);
}

.sponsor-card img.logo-client {
  max-width: min(96%, 360px);
  max-height: 130px;
  object-fit: contain;
  mix-blend-mode: screen;
}

/* Accessibility: Support reduced motion */
@media (prefers-reduced-motion: reduce) {
  #detailed-programme * {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
}

/* Mobile responsive styles */
@media (max-width: 768px) {
  #detailed-programme .rep-conf-header-wrap {
    justify-content: center;
    margin-bottom: 34px;
  }

  #detailed-programme .rep-conf-title {
    width: 100%;
    padding: 0;
    text-align: center;
    overflow: hidden;
  }

  #detailed-programme .rep-conf-title img {
    display: block !important;
    width: min(330px, 78vw) !important;
    max-width: 100% !important;
    height: auto !important;
    margin: 0 auto;
  }

  #detailed-programme .rep-conf-title-line-container,
  #detailed-programme .rep-conf-header-right-spacer {
    display: none;
  }

  #detailed-programme .day-header {
    padding: 20px 20px;
    min-height: 90px;
  }
  
  #detailed-programme .day-title-info .date {
    font-size: 17px;
  }
  
  #detailed-programme .day-title {
    gap: 12px;
  }
  
  #detailed-programme .day-body {
    padding: 0 20px;
  }
  
  #detailed-programme .day.open .day-body {
    padding: 0 20px 20px;
  }
}

@media (max-width: 420px) {
  #detailed-programme .rep-conf-title img {
    width: min(300px, 82vw) !important;
  }
}

.site-header .navbar-nav .btn-ibma {
  min-height: auto !important;
  min-width: auto !important;
  padding: 10px 24px !important;
  font-size: 15px !important;
  margin-left: 15px;
  border: none !important;
}

.site-header .navbar-nav .btn-ibma img {
  width: 14px !important;
  height: auto !important;
  margin-left: 8px !important;
}

.site-header .navbar-nav .btn-ibma:hover,
.site-header .navbar-nav .btn-ibma:focus-visible {
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 20px rgba(0, 202, 189, 0.35) !important;
}

/* FAQ Section */
.faq-section {
  position: relative;
  z-index: 2;
  padding: var(--section-space, 100px) 0;
}

.faq-header {
  margin-bottom: clamp(32px, 4vw, 54px);
}

.faq-accordion-container {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: rgba(2, 9, 34, 0.45);
  border: 1px solid rgba(0, 163, 255, 0.22);
  border-radius: 12px;
  overflow: hidden;
  backdrop-filter: blur(8px);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.faq-item:hover,
.faq-item.is-open {
  border-color: rgba(0, 168, 255, 0.55);
  box-shadow: 0 6px 24px rgba(0, 137, 255, 0.12);
  background: rgba(2, 12, 42, 0.65);
}

.faq-question-heading {
  margin: 0;
  padding: 0;
}

.faq-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: clamp(16px, 2vw, 22px) clamp(20px, 2.5vw, 28px);
  background: transparent;
  border: none;
  color: #ffffff;
  font-family: inherit;
  font-size: clamp(16px, 1.15vw, 19px);
  font-weight: 600;
  line-height: 1.45;
  text-align: left;
  cursor: pointer;
  gap: 16px;
  transition: color 0.25s ease;
}

.faq-trigger:hover,
.faq-trigger:focus-visible {
  color: var(--aqua-bright, #00cbb9);
  outline: none;
}

.faq-icon-indicator {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 168, 255, 0.12);
  color: #00a8ff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.faq-trigger:hover .faq-icon-indicator {
  background: rgba(0, 203, 185, 0.2);
  color: #00cbb9;
}

.faq-item.is-open .faq-icon-indicator {
  background: linear-gradient(135deg, #087fff, #00cbb9);
  color: #ffffff;
  transform: rotate(180deg);
}

.faq-icon-plus,
.faq-icon-minus {
  transition: opacity 0.25s ease;
}

.faq-icon-minus {
  display: none;
}

.faq-item.is-open .faq-icon-plus {
  display: none;
}

.faq-item.is-open .faq-icon-minus {
  display: block;
}

.faq-answer-panel {
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-content {
  padding: 0 clamp(20px, 2.5vw, 28px) clamp(20px, 2.5vw, 28px);
  border-top: 1px solid rgba(0, 168, 255, 0.12);
  padding-top: 18px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.7;
}

.faq-answer-content p {
  margin-bottom: 14px;
}

.faq-answer-content p:last-child {
  margin-bottom: 0;
}

.faq-list {
  margin: 12px 0 16px 20px;
  padding: 0;
  list-style-type: disc;
}

.faq-list li {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.88);
}

.faq-text-link {
  color: #00cbb9;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 500;
  word-break: break-word;
  transition: color 0.2s ease;
}

.faq-text-link:hover,
.faq-text-link:focus-visible {
  color: #38bdf8;
}

.faq-cta-wrapper {
  margin-top: 20px;
  margin-bottom: 6px;
}
