:root {
  --ink: #102033;
  --muted: #4d6176;
  --line: #d9e4ee;
  --surface: #ffffff;
  --soft: #f2f7fb;
  --blue: #1453a1;
  --blue-deep: #092f60;
  --blue-bright: #1f78c8;
  --blue-ice: #8bdcff;
  --aqua: #00a7d7;
  --aqua-deep: #006da8;
  --accent: #2f8f5b;
  --content-width: 1440px;
  --page-gutter: clamp(20px, 6vw, 96px);
  --shadow: 0 18px 45px rgba(10, 47, 96, 0.12);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #eef8fd;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

main,
section,
article,
div {
  min-width: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 24px rgba(12, 53, 101, 0.08);
  backdrop-filter: blur(16px);
}

.top-strip {
  padding: 7px var(--page-gutter);
  background: linear-gradient(90deg, #073166, var(--blue), var(--aqua-deep));
  color: #fff;
  font-size: 0.96rem;
  font-weight: 700;
}

.top-strip-inner,
.nav-shell,
.section,
.stats-band,
.prefooter-cta,
.footer-grid,
.footer-bottom {
  max-width: var(--content-width);
  margin: 0 auto;
}

.top-strip-inner,
.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.top-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 22px;
}

.top-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 28px;
  color: #fff;
  line-height: 1.2;
}

.top-contact-link svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.top-social {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-left: auto;
}

.top-social a {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  line-height: 1;
}

.top-social a:hover {
  background: rgba(255, 255, 255, 0.24);
}

.top-social svg,
.footer-social svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.top-social .brand-icon-outline,
.footer-social .brand-icon-outline {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.nav-shell {
  padding: 14px var(--page-gutter);
}

.nav-shell .desktop-nav {
  margin-left: auto;
}

.brand,
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand img:first-child {
  width: auto;
  height: 44px;
}

.brand img:last-child {
  width: 148px;
  height: auto;
}

.brand-divider {
  width: 1px;
  height: 46px;
  background: var(--line);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 1.05rem;
  font-weight: 800;
}

.desktop-nav a {
  min-height: 48px;
  padding: 11px 14px;
  border-radius: 7px;
  color: #253f58;
}

.desktop-nav a:hover,
.nav-dropdown:focus-within > a,
.nav-dropdown:hover > a {
  background: var(--soft);
  color: var(--blue);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown > a::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-3px) rotate(45deg);
}

.nav-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 80;
  min-width: 150px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-dropdown:hover .nav-menu,
.nav-dropdown:focus-within .nav-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-menu a {
  display: block;
  min-height: 46px;
  padding: 11px 14px;
}

.mobile-toggle {
  display: none;
  width: 50px;
  height: 50px;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: var(--blue);
  color: #fff;
  box-shadow: 0 12px 26px rgba(20, 83, 161, 0.18);
}

.mobile-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
}

.mobile-nav {
  display: none;
  padding: 8px var(--page-gutter) 18px;
  border-top: 1px solid var(--line);
  background: #fff;
}

.mobile-nav a {
  display: block;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  color: #253f58;
  font-size: 1.08rem;
  font-weight: 900;
}

.mobile-registration-cta {
  display: none;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 7px;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.2;
}

.nav-cta,
.button-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 12px 26px rgba(20, 83, 161, 0.24);
}

.nav-cta:hover,
.button-primary:hover {
  background: var(--blue-bright);
}

.desktop-nav .nav-cta {
  min-height: 48px;
  padding: 12px 18px;
  background: var(--blue);
  color: #fff;
}

.desktop-nav .nav-cta:hover {
  background: var(--blue-bright);
  color: #fff;
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.65);
  background: rgba(7, 31, 61, 0.28);
  color: #fff;
}

.inline-action {
  margin-top: 24px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  min-height: 760px;
  overflow: hidden;
  background: linear-gradient(125deg, #071f3d, var(--blue-deep) 54%, var(--aqua-deep));
  color: #fff;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 31, 61, 0.88), rgba(7, 31, 61, 0.58) 48%, rgba(7, 31, 61, 0.1));
  pointer-events: none;
}

.hero-media {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  opacity: 0.72;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: 820px;
  padding: 120px var(--page-gutter) 170px;
}

.ipc-event-hero .hero-content {
  max-width: 900px;
}

.ipc-event-hero {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
  min-height: 600px;
  isolation: isolate;
  background:
    linear-gradient(135deg, rgba(7, 31, 61, 0.98) 0%, rgba(9, 47, 96, 0.96) 48%, rgba(0, 109, 168, 0.92) 100%),
    var(--blue-deep);
}

.ipc-event-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(139, 220, 255, 0.14), transparent 44%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 26px);
  opacity: 0.5;
  pointer-events: none;
}

.ipc-event-hero::after {
  background: linear-gradient(90deg, rgba(7, 31, 61, 0.22), transparent 64%);
}

.ipc-event-hero .hero-content {
  padding-top: clamp(96px, 12vw, 148px);
  padding-bottom: clamp(96px, 12vw, 150px);
}

.ipc-event-hero .eyebrow {
  width: fit-content;
  padding: 9px 14px;
  border-left: 4px solid var(--aqua);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
}

.ipc-event-hero h1 {
  max-width: 940px;
  font-size: clamp(2.85rem, 5.9vw, 6rem);
  line-height: 1;
}

.ipc-event-hero .hero-lede {
  max-width: 760px;
  font-size: clamp(1.22rem, 1.8vw, 1.55rem);
  font-weight: 760;
}

.events-hero {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(125deg, #071f3d, var(--blue-deep) 54%, var(--aqua-deep));
  color: #fff;
}

.events-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 31, 61, 0.9), rgba(9, 47, 96, 0.68) 54%, rgba(0, 109, 168, 0.25));
}

.events-hero-media {
  position: absolute;
  inset: 0;
}

.events-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

.events-hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 120px var(--page-gutter);
}

.events-hero .eyebrow {
  color: var(--blue-ice);
}

.events-hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.24rem;
}

.home-banner-slider {
  position: relative;
  min-height: clamp(640px, 78vh, 820px);
  overflow: hidden;
  background: var(--blue-deep);
}

.home-banner-track,
.home-banner-slide {
  position: absolute;
  inset: 0;
}

.home-banner-slide {
  visibility: hidden;
  opacity: 0;
  background: var(--blue-deep);
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

.home-banner-slide.is-active {
  visibility: visible;
  opacity: 1;
}

.home-banner-slide > img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  transition: transform 5.5s ease;
}

.home-banner-slide.is-active > img {
  transform: scale(1);
}

.home-banner-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  background-position: center;
  background-size: cover;
  filter: blur(20px);
  opacity: 0.45;
  transform: scale(1.08);
}

.home-banner-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 31, 61, 0.94) 0%, rgba(7, 31, 61, 0.8) 40%, rgba(0, 109, 168, 0.26) 74%, rgba(7, 31, 61, 0.06) 100%),
    linear-gradient(180deg, rgba(7, 31, 61, 0.1), rgba(7, 31, 61, 0.38));
}

.home-banner-content {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(760px, 58%);
  height: 100%;
  padding: 86px var(--page-gutter) 144px;
  color: #fff;
}

.home-banner-caption {
  width: fit-content;
  margin: 0 0 20px;
  padding: 9px 14px;
  border-left: 4px solid var(--aqua);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.14);
  color: var(--blue-ice);
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
  backdrop-filter: blur(7px);
}

.home-banner-content h1,
.home-banner-content h2 {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-size: clamp(2.75rem, 4.5vw, 5.05rem);
  line-height: 1.04;
  text-shadow: 0 3px 18px rgba(3, 20, 42, 0.48);
}

.home-banner-description {
  max-width: 660px;
  margin: 22px 0 26px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.15rem, 1.5vw, 1.35rem);
  font-weight: 650;
  text-shadow: 0 2px 12px rgba(3, 20, 42, 0.48);
}

.home-banner-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 50%;
  background: rgba(7, 31, 61, 0.5);
  color: #fff;
  cursor: pointer;
  transform: translateY(-50%);
  backdrop-filter: blur(8px);
}

.home-banner-arrow:hover {
  background: var(--blue);
}

.home-banner-arrow svg,
.home-events-controls svg {
  width: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.home-banner-previous {
  left: 28px;
  right: auto;
}

.home-banner-next {
  right: 28px;
}

.home-banner-dots {
  position: absolute;
  bottom: 34px;
  left: var(--page-gutter);
  z-index: 4;
  display: flex;
  gap: 9px;
}

.home-banner-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

.home-banner-dots button.is-active {
  width: 34px;
  background: var(--blue-ice);
}

.home-events {
  position: relative;
  overflow: hidden;
  padding: 72px var(--page-gutter);
  background:
    linear-gradient(135deg, #071f3d 0%, #1453a1 54%, #00a7d7 100%);
  border-top: 1px solid rgba(139, 220, 255, 0.24);
}

.home-events::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(139, 220, 255, 0.12), transparent 42%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 24px);
  opacity: 0.38;
  pointer-events: none;
}

.home-events-inner {
  position: relative;
  z-index: 1;
  max-width: var(--content-width);
  margin: 0 auto;
}

.home-events-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.home-events-heading h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 3vw, 3.15rem);
  line-height: 1.12;
}

.home-events .eyebrow {
  color: var(--blue-ice);
}

.home-events-controls {
  display: flex;
  gap: 10px;
}

.home-events-controls button {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  color: var(--blue-deep);
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(3, 20, 42, 0.2);
}

.home-events-controls button:hover {
  border-color: #fff;
  background: var(--blue-ice);
}

.home-events-controls svg {
  width: 23px;
}

.home-events-slider {
  overflow: hidden;
}

.home-events-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 6px 2px 24px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.home-events-track::-webkit-scrollbar {
  display: none;
}

.home-event-card {
  flex: 0 0 calc((100% - 36px) / 3);
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-width: 0;
  overflow: hidden;
  min-height: 320px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 12px;
  background:
    linear-gradient(180deg, #ffffff 0%, #eefaff 100%);
  box-shadow: 0 20px 46px rgba(3, 20, 42, 0.26);
  scroll-snap-align: start;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.home-event-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.home-event-card:hover {
  border-color: rgba(139, 220, 255, 0.78);
  box-shadow: 0 26px 58px rgba(3, 20, 42, 0.32);
  transform: translateY(-6px);
}

.home-event-card-upcoming {
  border-color: rgba(139, 220, 255, 0.82);
  box-shadow:
    0 26px 58px rgba(3, 20, 42, 0.34),
    0 0 0 5px rgba(139, 220, 255, 0.18);
  transform: translateY(-4px);
}

.home-event-card-upcoming::before {
  box-shadow:
    inset 0 0 0 2px rgba(139, 220, 255, 0.72),
    inset 0 0 0 6px rgba(47, 143, 91, 0.16);
}

.home-event-visual {
  position: relative;
  min-height: 104px;
  overflow: hidden;
  background: var(--blue-deep);
  color: #fff;
}

.home-event-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 20, 42, 0.18), rgba(3, 20, 42, 0.78)),
    linear-gradient(90deg, rgba(0, 167, 215, 0.34), transparent 58%);
}

.home-event-visual img {
  width: 100%;
  height: 100%;
  min-height: 104px;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.3s ease;
}

.home-event-card:hover .home-event-visual img {
  transform: scale(1.08);
}

.home-event-status,
.home-event-edition,
.home-event-city {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 26px;
  padding: 6px 9px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.home-event-status {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.56);
  background: rgba(255, 255, 255, 0.9);
  color: var(--blue-deep);
  box-shadow: 0 12px 26px rgba(3, 20, 42, 0.2);
}

.home-event-card-upcoming .home-event-status {
  border-color: rgba(255, 255, 255, 0.72);
  background: var(--accent);
  color: #fff;
}

.home-event-city {
  position: absolute;
  right: 14px;
  bottom: 12px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(9, 47, 96, 0.72);
  color: #fff;
  box-shadow: 0 10px 22px rgba(3, 20, 42, 0.22);
}

.home-event-card-body {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 14px 16px 12px;
}

.home-event-edition {
  border: 1px solid rgba(0, 167, 215, 0.28);
  background: linear-gradient(135deg, rgba(139, 220, 255, 0.28), rgba(0, 167, 215, 0.12));
  color: var(--aqua-deep);
}

.home-event-card h3 {
  color: var(--blue-deep);
  font-size: 1.24rem;
  line-height: 1.18;
}

.home-event-details {
  display: grid;
  gap: 9px;
  margin: 0;
}

.home-event-details span {
  display: grid;
  gap: 2px;
  padding: 8px 10px;
  border-top: 1px solid rgba(20, 83, 161, 0.1);
  border-left: 4px solid rgba(0, 167, 215, 0.42);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.42;
}

.home-event-details strong {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 950;
  line-height: 1.1;
  text-transform: uppercase;
}

.home-event-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 44px;
  margin: 0 16px 16px;
  padding: 10px 12px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--blue), var(--aqua-deep));
  color: #fff;
  font-size: 0.86rem;
  font-weight: 950;
  line-height: 1.2;
  text-transform: uppercase;
  box-shadow: 0 14px 28px rgba(20, 83, 161, 0.22);
}

.home-event-card-upcoming .home-event-action {
  background: linear-gradient(135deg, var(--accent), var(--aqua-deep));
}

.home-event-action::after {
  content: "";
  width: 11px;
  height: 11px;
  flex: 0 0 auto;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.home-event-card:hover .home-event-action::after {
  transform: translateX(4px) rotate(45deg);
}

.home-story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 590px;
  background: #071f3d;
}

.home-story-card {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 590px;
  overflow: hidden;
  color: #fff;
}

.home-story-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
  transition: transform 260ms ease;
}

.home-story-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 31, 61, 0.08), rgba(7, 31, 61, 0.58) 44%, rgba(7, 31, 61, 0.96));
}

.home-story-card:hover img {
  transform: scale(1.04);
}

.home-story-card > div {
  position: relative;
  z-index: 1;
  padding: clamp(28px, 5vw, 54px);
}

.home-story-card .eyebrow {
  color: var(--blue-ice);
}

.home-story-card h2 {
  font-size: clamp(1.7rem, 2.7vw, 2.85rem);
}

.home-story-card p:last-child {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.84);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 0.98rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow,
.prefooter-cta .eyebrow {
  color: var(--blue-ice);
}

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

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3.2rem, 7vw, 7rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4.1rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.32;
}

.hero-lede {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.22rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.event-panel {
  position: relative;
  z-index: 3;
  align-self: end;
  justify-self: end;
  width: min(520px, calc(100% - 40px));
  min-width: 0;
  margin: 0 var(--page-gutter) 170px 0;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
}

.event-panel span {
  display: block;
  color: #88d9ff;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.event-panel strong {
  display: block;
  margin: 5px 0 20px;
  font-size: 1.24rem;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.event-panel strong:last-child {
  margin-bottom: 0;
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  padding: 0 var(--page-gutter);
  transform: translateY(-50%);
}

.event-facts {
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: -70px;
}

.event-facts div {
  min-height: 172px;
}

.event-facts strong {
  font-size: clamp(1.75rem, 2.45vw, 2.45rem);
  line-height: 1.08;
}

.edition-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 44px;
  padding-bottom: 0;
}

.edition-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 18px;
  border: 1px solid rgba(20, 83, 161, 0.18);
  border-radius: 7px;
  background: #fff;
  color: var(--blue);
  font-size: 0.98rem;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(10, 47, 96, 0.08);
}

.edition-nav a:hover,
.edition-nav a.is-active {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
}

.stats-band div {
  min-height: 140px;
  padding: 24px;
  background: #fff;
  box-shadow: var(--shadow);
}

.stats-band strong {
  display: block;
  color: var(--blue);
  font-size: 2.5rem;
  line-height: 1;
}

.stats-band span {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-weight: 800;
}

.section {
  padding: 80px var(--page-gutter);
}

.section-heading {
  max-width: 880px;
  margin-bottom: 34px;
}

.section-heading p {
  max-width: 780px;
  color: var(--muted);
  font-size: 1.1rem;
}

.about-ipa-section {
  background: #fff;
}

.about-page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(92px, 12vw, 150px) var(--page-gutter);
  background:
    linear-gradient(125deg, rgba(7, 31, 61, 0.98), rgba(9, 47, 96, 0.94) 48%, rgba(0, 109, 168, 0.9)),
    var(--blue-deep);
  color: #fff;
}

.about-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(139, 220, 255, 0.14), transparent 38%),
    repeating-linear-gradient(135deg, rgba(139, 220, 255, 0.08) 0 1px, transparent 1px 22px);
  opacity: 0.44;
  pointer-events: none;
}

.about-page-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.36fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: end;
  max-width: var(--content-width);
  margin: 0 auto;
}

.about-page-hero-copy {
  max-width: 860px;
}

.about-page-hero .eyebrow {
  color: var(--blue-ice);
}

.about-page-hero h1 {
  max-width: 820px;
  margin: 0;
  color: #fff;
  font-size: clamp(3rem, 6vw, 6.2rem);
  line-height: 0.98;
}

.about-page-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.08rem, 1.45vw, 1.28rem);
  font-weight: 700;
}

.about-page-hero-card {
  display: grid;
  gap: 10px;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid rgba(139, 220, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 45px rgba(3, 20, 42, 0.2);
  backdrop-filter: blur(12px);
}

.about-page-hero-card span {
  color: var(--blue-ice);
  font-size: 0.78rem;
  font-weight: 950;
  line-height: 1.2;
  text-transform: uppercase;
}

.about-page-hero-card strong {
  color: #fff;
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  line-height: 1;
}

.about-page-hero-card p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.55;
}

.about-page-overview,
.about-page-details {
  background:
    linear-gradient(180deg, #ffffff 0%, rgba(247, 252, 255, 0.96) 100%),
    #fff;
}

.about-page-overview-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.38fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.about-page-heading {
  position: sticky;
  top: 110px;
}

.about-page-heading h2,
.about-page-detail-copy h2 {
  max-width: 720px;
  margin: 0;
  color: var(--blue-deep);
  font-size: clamp(2rem, 4vw, 3.65rem);
  line-height: 1.05;
}

.about-page-story {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(20, 83, 161, 0.12);
  border-left: 5px solid var(--aqua);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(247, 252, 255, 0.99)),
    #fff;
  box-shadow: 0 16px 38px rgba(10, 47, 96, 0.08);
}

.about-page-story p,
.about-page-detail-copy p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.25vw, 1.12rem);
  font-weight: 700;
  line-height: 1.76;
}

.about-page-story p:first-child,
.about-page-detail-copy p:first-of-type {
  color: #253d55;
  font-size: clamp(1.08rem, 1.45vw, 1.24rem);
  font-weight: 760;
  line-height: 1.68;
}

.about-page-detail-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.36fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: start;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(20, 83, 161, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(247, 252, 255, 0.99)),
    #fff;
  box-shadow: 0 16px 38px rgba(10, 47, 96, 0.08);
}

.about-page-detail-copy {
  display: grid;
  gap: 16px;
}

.about-page-milestones {
  display: grid;
  gap: 14px;
}

.about-page-milestones article {
  position: relative;
  display: grid;
  gap: 7px;
  padding: 18px 18px 18px 22px;
  border: 1px solid rgba(0, 167, 215, 0.18);
  border-radius: 8px;
  background: #fff;
}

.about-page-milestones article::before {
  content: "";
  position: absolute;
  inset: 16px auto 16px 0;
  width: 4px;
  border-radius: 999px;
  background: var(--aqua);
}

.about-page-milestones strong {
  color: var(--blue-deep);
  font-size: clamp(1.55rem, 3vw, 2.4rem);
  line-height: 1;
}

.about-page-milestones span {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 850;
  line-height: 1.4;
}

.about-page-cta {
  margin-top: 0;
}

.policy-page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(84px, 11vw, 132px) var(--page-gutter);
  background:
    linear-gradient(125deg, rgba(7, 31, 61, 0.98), rgba(9, 47, 96, 0.94) 48%, rgba(0, 109, 168, 0.9)),
    var(--blue-deep);
  color: #fff;
}

.policy-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(139, 220, 255, 0.14), transparent 38%),
    repeating-linear-gradient(135deg, rgba(139, 220, 255, 0.08) 0 1px, transparent 1px 22px);
  opacity: 0.44;
  pointer-events: none;
}

.policy-page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--content-width);
  margin: 0 auto;
}

.policy-page-hero .eyebrow {
  color: var(--blue-ice);
}

.policy-page-hero h1 {
  max-width: 900px;
  margin: 0;
  color: #fff;
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: 0.98;
}

.policy-page-hero p:last-child {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.08rem, 1.45vw, 1.28rem);
  font-weight: 700;
}

.policy-page-content {
  background:
    linear-gradient(180deg, #ffffff 0%, rgba(247, 252, 255, 0.96) 100%),
    #fff;
}

.policy-page-panel {
  max-width: 980px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(20, 83, 161, 0.12);
  border-left: 5px solid var(--aqua);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(10, 47, 96, 0.08);
}

.policy-page-panel p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.25vw, 1.12rem);
  font-weight: 700;
  line-height: 1.76;
}

.policy-page-panel p + p {
  margin-top: 16px;
}

.policy-page-panel a {
  color: var(--blue);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.event-editions-section {
  background: #fff;
}

.event-editions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.event-edition-card {
  display: grid;
  align-content: space-between;
  min-height: 285px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbfd;
  box-shadow: 0 14px 34px rgba(10, 47, 96, 0.08);
}

.event-edition-card span,
.event-edition-card small {
  color: var(--aqua-deep);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.event-edition-card h3 {
  margin-top: 18px;
  color: var(--blue);
  font-size: 2.25rem;
}

.event-edition-card strong {
  display: block;
  margin-top: 6px;
  color: var(--ink);
  font-size: 1.2rem;
}

.event-edition-card p {
  min-height: 72px;
  margin: 14px 0 20px;
  color: var(--muted);
  font-weight: 700;
}

.event-edition-card:hover {
  border-color: rgba(20, 83, 161, 0.35);
  transform: translateY(-3px);
  transition: border-color 180ms ease, transform 180ms ease;
}

.ipc-overview-section {
  display: grid;
  gap: clamp(26px, 4vw, 48px);
  background:
    linear-gradient(145deg, rgba(237, 248, 255, 0.98), rgba(211, 243, 251, 0.72) 52%, rgba(255, 255, 255, 0.96)),
    #edf9fd;
}

.overview-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.36fr);
  gap: clamp(24px, 5vw, 68px);
  align-items: end;
}

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

.overview-copy h2 {
  max-width: 860px;
}

.overview-copy p {
  color: var(--muted);
  font-size: 1.16rem;
}

.overview-highlight {
  display: grid;
  gap: 8px;
  padding: 26px;
  border: 1px solid rgba(0, 167, 215, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(145deg, #fff, rgba(238, 248, 255, 0.96));
  box-shadow: var(--shadow);
}

.overview-highlight strong {
  color: var(--blue);
  font-size: 1.45rem;
  line-height: 1.15;
}

.overview-highlight span {
  color: var(--muted);
  font-size: 1.04rem;
  font-weight: 750;
  line-height: 1.45;
}

.overview-pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.overview-pillar {
  min-height: 245px;
  padding: 24px;
  border: 1px solid rgba(0, 167, 215, 0.18);
  border-top: 4px solid var(--aqua);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 38px rgba(10, 47, 96, 0.1);
}

.overview-icon {
  display: inline-grid;
  width: 58px;
  height: 58px;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 8px;
  background: var(--blue);
  color: #fff;
}

.overview-icon-water {
  background: var(--aqua-deep);
}

.overview-icon-sanitation {
  background: #2f8f5b;
}

.overview-icon-building {
  background: var(--ink);
}

.overview-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.overview-pillar h3 {
  color: var(--blue);
  font-size: 1.32rem;
}

.overview-pillar p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.65;
}

.overview-support-copy {
  max-width: 980px;
  margin: -8px 0 0;
  color: var(--muted);
  font-size: 1.14rem;
}

.home-profile-layout {
  grid-template-columns: repeat(2, 1fr);
}

.home-profile-layout .profile-panel ul {
  grid-template-columns: 1fr;
}

.home-testimonial-grid {
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}

.ipa-closing-section {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 360px);
  align-items: center;
  gap: clamp(28px, 6vw, 84px);
  background:
    linear-gradient(125deg, rgba(7, 31, 61, 0.98), rgba(9, 47, 96, 0.94) 46%, rgba(0, 109, 168, 0.9)),
    var(--blue-deep);
  color: #fff;
}

.ipa-closing-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(139, 220, 255, 0.14), transparent 38%),
    repeating-linear-gradient(135deg, rgba(139, 220, 255, 0.08) 0 1px, transparent 1px 22px);
  opacity: 0.42;
}

.ipa-closing-section::after {
  content: none;
}

.ipa-closing-section > * {
  position: relative;
  z-index: 2;
}

.ipa-closing-copy {
  max-width: 900px;
}

.ipa-closing-logo {
  justify-self: end;
  width: min(100%, 340px);
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(139, 220, 255, 0.24);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(236, 248, 255, 0.92));
  box-shadow: 0 24px 56px rgba(3, 20, 42, 0.28);
}

.ipa-closing-logo img {
  width: min(100%, 220px);
  max-height: 280px;
  margin: 0 auto;
  object-fit: contain;
}

.ipa-closing-section .eyebrow {
  color: var(--blue-ice);
}

.ipa-closing-section h2 {
  max-width: 740px;
  color: #fff;
}

.ipa-closing-section p {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.16rem;
}

.ipa-closing-points {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  max-width: 720px;
  margin-top: 28px;
}

.ipa-closing-points span {
  min-height: 52px;
  display: grid;
  place-items: center;
  padding: 10px;
  border: 1px solid rgba(139, 220, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.11);
  color: #fff;
  font-size: 0.96rem;
  font-weight: 900;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.light-button {
  border-color: rgba(255, 255, 255, 0.74);
  color: #fff;
}

.light-button:hover {
  background: rgba(255, 255, 255, 0.12);
}

.ipa-highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.ipa-highlight-grid article {
  min-height: 190px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbfd;
  box-shadow: 0 14px 34px rgba(10, 47, 96, 0.08);
}

.ipa-highlight-grid h3 {
  color: var(--blue);
}

.ipa-highlight-grid p {
  margin: 12px 0 0;
  color: var(--muted);
}

.events-list-section,
.events-gallery-band {
  background: #edf5f9;
}

.event-year-grid {
  display: grid;
  gap: 24px;
}

.event-year-card {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.event-year-card > img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
}

.event-year-card > div {
  padding: clamp(28px, 5vw, 54px);
}

.event-year-card > div > span {
  display: inline-flex;
  min-width: 86px;
  min-height: 86px;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border-radius: 8px;
  background: var(--blue);
  color: #fff;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.event-year-card h3 {
  font-size: clamp(2rem, 4vw, 4rem);
  color: var(--ink);
}

.event-year-card dl {
  display: grid;
  gap: 14px;
  margin: 28px 0;
}

.event-year-card dl div {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.event-year-card dt {
  color: var(--aqua-deep);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.event-year-card dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-weight: 800;
}

.edition-section {
  padding-top: 20px;
}

.edition-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.edition-card {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  border-radius: 8px;
  background: #071f3d;
  box-shadow: var(--shadow);
}

.edition-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  transition: transform 260ms ease;
}

.edition-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 31, 61, 0.1), rgba(7, 31, 61, 0.92));
}

.edition-card:hover img {
  transform: scale(1.04);
}

.edition-card span,
.edition-card h3,
.edition-card p {
  position: relative;
  z-index: 1;
}

.edition-card span {
  display: inline-flex;
  margin: 270px 24px 0;
  padding: 7px 10px;
  border-radius: 6px;
  background: var(--blue);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.edition-card h3 {
  margin: 16px 24px 0;
  color: #fff;
}

.edition-card p {
  margin: 10px 24px 26px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.98rem;
}

.overview-section {
  padding-top: 48px;
  background:
    linear-gradient(145deg, rgba(237, 248, 255, 0.98), rgba(255, 255, 255, 0.96) 58%, rgba(213, 244, 252, 0.74)),
    #edf8fd;
}

.simple-live-section {
  overflow: hidden;
  background: #fff;
}

.simple-live-alt {
  background:
    linear-gradient(135deg, rgba(231, 247, 255, 0.92), rgba(255, 255, 255, 0.98) 58%, rgba(213, 244, 252, 0.72)),
    #edf8fd;
}

.simple-live-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
}

.simple-live-copy {
  min-width: 0;
  max-width: 900px;
}

.simple-live-grid > * {
  min-width: 0;
}

.simple-live-copy h2 {
  max-width: 820px;
}

.simple-live-copy p {
  color: var(--muted);
  font-size: 1.1rem;
}

.simple-live-image {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(0, 167, 215, 0.18);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(10, 47, 96, 0.08);
}

.simple-live-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.simple-live-video {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(0, 167, 215, 0.18);
  border-radius: 8px;
  background: var(--blue-deep);
  box-shadow: 0 14px 34px rgba(10, 47, 96, 0.08);
}

.simple-live-video iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.ipc-2024-detail-block {
  overflow: hidden;
  padding: 72px var(--page-gutter);
  background:
    radial-gradient(circle at 8% 12%, rgba(139, 220, 255, 0.22), transparent 30%),
    linear-gradient(135deg, #f7fcff 0%, #ffffff 48%, #eef9fd 100%);
}

.ipc-2024-shell {
  display: grid;
  gap: clamp(44px, 6vw, 76px);
  max-width: var(--content-width);
  margin: 0 auto;
}

.ipc-2024-highlights {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
}

.ipc-2024-side-title {
  display: grid;
  place-items: center;
  color: var(--aqua-deep);
  font-size: clamp(2.2rem, 5vw, 4.7rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.92;
  text-align: center;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.ipc-2024-highlight-stack {
  display: grid;
  gap: 12px;
}

.ipc-2024-highlight-pill {
  min-height: 82px;
  padding: 18px clamp(20px, 3vw, 34px);
  border-radius: 0 999px 999px 0;
  border-left: 6px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 30px rgba(10, 47, 96, 0.08);
}

.ipc-2024-highlight-pill p {
  max-width: 1180px;
  margin: 0;
  color: #07192b;
  font-size: clamp(1rem, 1.35vw, 1.22rem);
  font-weight: 650;
  line-height: 1.32;
}

.ipc-2024-highlight-pill.tone-1 {
  background: linear-gradient(90deg, rgba(255,255,255,0.98), rgba(122, 205, 238, 0.9));
}

.ipc-2024-highlight-pill.tone-2 {
  background: linear-gradient(90deg, rgba(219, 240, 224, 0.95), rgba(255,255,255,0.92));
}

.ipc-2024-highlight-pill.tone-3 {
  background: linear-gradient(90deg, rgba(255,255,255,0.96), rgba(255, 201, 143, 0.82));
}

.ipc-2024-highlight-pill.tone-4 {
  background: linear-gradient(90deg, rgba(212, 236, 104, 0.76), rgba(255,255,255,0.92));
}

.ipc-2024-highlight-pill.tone-5 {
  background: linear-gradient(90deg, rgba(255, 244, 244, 0.96), rgba(242, 139, 150, 0.76));
}

.ipc-2024-highlight-pill.tone-6 {
  background: linear-gradient(90deg, rgba(188, 188, 225, 0.82), rgba(255,255,255,0.92));
}

.section-heading.centered {
  max-width: none;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading.centered h2 {
  color: #007d52;
  font-size: clamp(1.75rem, 3.3vw, 3rem);
}

.green-credit-panel {
  display: grid;
  grid-template-columns: minmax(250px, 0.32fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 10px;
  border: 10px solid #a7cf39;
  background: #fbffe8;
  box-shadow: 0 18px 44px rgba(10, 47, 96, 0.08);
}

.green-credit-visual {
  display: grid;
  align-content: end;
  min-height: 260px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(13, 116, 76, 0.08), rgba(13, 116, 76, 0.38)),
    linear-gradient(135deg, #eaffc5, #8ecf6a);
  color: #073926;
}

.green-credit-visual span {
  width: 92px;
  height: 92px;
  margin-bottom: 22px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 35%, #ffffff 0 9px, transparent 10px),
    linear-gradient(135deg, #0d744c, #7fc23b);
  box-shadow:
    34px 26px 0 -10px #a3d966,
    70px 48px 0 -18px #d0e985;
}

.green-credit-visual strong {
  display: block;
  font-size: 1.45rem;
  line-height: 1.1;
}

.green-credit-visual small {
  display: block;
  margin-top: 8px;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.35;
}

.green-credit-panel ul {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 22px clamp(20px, 3vw, 34px);
}

.green-credit-panel li {
  color: #07192b;
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  font-weight: 650;
  line-height: 1.42;
}

.ipc-2024-recognition-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.ipc-recognition-card {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  min-height: 188px;
  padding: 24px;
  border: 1px solid rgba(0, 167, 215, 0.18);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(10, 47, 96, 0.09);
}

.ipc-recognition-card img {
  width: 100%;
  max-height: 132px;
  object-fit: contain;
}

.ipc-recognition-card h3 {
  color: var(--blue);
  font-size: clamp(1.45rem, 2.7vw, 2.65rem);
  line-height: 1.08;
}

.ipc-recognition-card.is-recognition h3 {
  color: #ed1c24;
}

.ipc-recognition-card p {
  margin: 10px 0 0;
  color: #07192b;
  font-weight: 850;
  line-height: 1.45;
}

.ipc-ribbon-heading {
  display: flex;
  justify-content: center;
  margin-bottom: 26px;
  text-align: center;
}

.ipc-ribbon-heading h2 {
  position: relative;
  min-height: 52px;
  margin: 0;
  padding: 11px clamp(28px, 5vw, 66px);
  background: #9fdcf7;
  color: #07192b;
  font-size: clamp(1.45rem, 3vw, 2.45rem);
  line-height: 1.05;
  text-transform: uppercase;
}

.ipc-ribbon-heading h2::before,
.ipc-ribbon-heading h2::after {
  content: "";
  position: absolute;
  top: 0;
  width: 34px;
  height: 100%;
  background: inherit;
}

.ipc-ribbon-heading h2::before {
  right: 100%;
  clip-path: polygon(100% 0, 0 50%, 100% 100%);
}

.ipc-ribbon-heading h2::after {
  left: 100%;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.ipc-ribbon-heading.red h2 {
  background: #ed1c24;
  color: #fff;
}

.ipc-ribbon-heading.teal h2,
.ipc-ribbon-heading.solid h2 {
  background: #318b7d;
  color: #fff;
}

.ipc-ribbon-heading.blue h2 {
  background: #293394;
  color: #fff;
}

.delegate-orbit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 34px);
}

.delegate-orbit {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  padding: 30px;
  border: 5px solid rgba(93, 176, 209, 0.38);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.94), rgba(192, 232, 246, 0.72));
  text-align: center;
}

.delegate-orbit::after {
  content: "";
  position: absolute;
  inset: -12px;
  border: 4px solid currentColor;
  border-radius: 50%;
  opacity: 0.34;
  clip-path: polygon(0 0, 92% 0, 92% 56%, 100% 56%, 100% 78%, 88% 66%, 0 66%);
}

.delegate-orbit.orbit-1 { color: #6eb882; background: radial-gradient(circle, #ffffff, #d6f0dc); }
.delegate-orbit.orbit-2 { color: #ffc47f; background: radial-gradient(circle, #ffffff, #ffe7c9); }
.delegate-orbit.orbit-3 { color: #67c5ed; background: radial-gradient(circle, #ffffff, #d5f0fb); }
.delegate-orbit.orbit-4 { color: #d6acd4; background: radial-gradient(circle, #ffffff, #f0dff0); }

.delegate-orbit h3 {
  max-width: 220px;
  color: #07192b;
  font-size: clamp(1rem, 1.6vw, 1.36rem);
  font-weight: 950;
  line-height: 1.25;
}

.profile-chevron-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px clamp(24px, 5vw, 58px);
}

.profile-chevron {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  align-items: center;
  min-height: 78px;
}

.profile-chevron span {
  z-index: 1;
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  border: 4px solid #4c80bd;
  border-radius: 12px;
  background: #fff;
  color: #66717c;
  transform: rotate(45deg);
  box-shadow: 10px 10px 0 rgba(7, 25, 43, 0.58);
}

.profile-chevron svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
  transform: rotate(-45deg);
}

.profile-chevron strong {
  display: flex;
  align-items: center;
  min-height: 78px;
  margin-left: -18px;
  padding: 12px 24px 12px 34px;
  color: #111;
  font-size: clamp(0.96rem, 1.3vw, 1.15rem);
  font-weight: 950;
  line-height: 1.18;
  clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 50%, calc(100% - 28px) 100%, 0 100%);
}

.profile-chevron.tone-1 strong { background: #f6bfd2; }
.profile-chevron.tone-2 strong { background: #beb4dd; }
.profile-chevron.tone-3 strong { background: #a9d9bc; }
.profile-chevron.tone-4 strong { background: #8fc3ec; }

.registration-panel {
  padding: clamp(22px, 4vw, 34px);
  border: 3px solid #318b7d;
  border-radius: 28px;
  background: #f6f8d8;
  box-shadow: 0 18px 42px rgba(10, 47, 96, 0.08);
}

.registration-table {
  overflow: hidden;
  border: 1px solid #2454a5;
  border-radius: 18px;
  background: #fff;
}

.registration-row {
  display: grid;
  grid-template-columns: 0.9fr 1.65fr 0.8fr;
}

.registration-row + .registration-row {
  border-top: 1px solid #4e9ae1;
}

.registration-row div {
  min-height: 42px;
  padding: 8px 12px;
  border-left: 1px solid #2454a5;
  color: #000;
  font-size: 1.05rem;
  line-height: 1.25;
  text-align: center;
}

.registration-row div:first-child {
  border-left: 0;
  text-align: left;
}

.registration-head div,
.registration-head div:first-child {
  font-weight: 950;
  text-align: center;
}

.registration-panel ol {
  margin: 18px 0 0;
  padding-left: 22px;
}

.registration-panel li {
  color: #07192b;
  font-size: 0.95rem;
  font-weight: 650;
  line-height: 1.45;
}

.exhibitor-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px 38px;
}

.exhibitor-grid article {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  align-items: center;
  min-height: 72px;
}

.exhibitor-grid span {
  z-index: 1;
  display: grid;
  place-items: center;
  width: 88px;
  min-height: 88px;
  background: linear-gradient(135deg, #26a6db, #28b99d);
  color: #fff;
  clip-path: polygon(22% 0, 100% 0, 78% 100%, 0 100%);
}

.exhibitor-grid svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.exhibitor-grid strong {
  display: flex;
  align-items: center;
  min-height: 66px;
  margin-left: -18px;
  padding: 10px 20px 10px 34px;
  border-radius: 0 7px 7px 0;
  background: #b8e2e8;
  color: #07192b;
  font-size: clamp(0.94rem, 1.22vw, 1.08rem);
  font-weight: 950;
  line-height: 1.22;
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 50%, calc(100% - 18px) 100%, 0 100%);
}

.ipc-2024-exhibition-highlights {
  max-width: 1220px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 52px);
  border: 4px solid #293394;
  border-radius: 34px;
  background: #fffbd0;
  box-shadow: 0 18px 42px rgba(10, 47, 96, 0.08);
}

.ipc-2024-exhibition-highlights .ipc-ribbon-heading {
  margin-top: calc(clamp(28px, 5vw, 52px) * -1 - 29px);
}

.ipc-2024-exhibition-highlights ul {
  display: grid;
  justify-items: center;
  gap: 0;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
  text-align: center;
}

.ipc-2024-exhibition-highlights li {
  width: fit-content;
  max-width: 100%;
  padding: 10px 20px;
  border-bottom: 3px solid rgba(238, 173, 81, 0.62);
  color: #07192b;
  font-size: clamp(1.05rem, 2vw, 1.6rem);
  font-weight: 650;
  line-height: 1.25;
}

.ipc-2024-exhibition-highlights li:last-child {
  border-bottom: 0;
}

/* IPC 2024 brochure content, adapted to the site's web theme. */
.ipc-2024-detail-block {
  padding: 84px var(--page-gutter);
  background:
    linear-gradient(135deg, rgba(237, 248, 255, 0.96), rgba(255, 255, 255, 0.98) 46%, rgba(231, 247, 255, 0.92)),
    #f7fcff;
}

.ipc-2024-shell {
  gap: clamp(48px, 6vw, 82px);
}

.ipc-2024-highlights {
  display: grid;
  grid-template-columns: minmax(260px, 0.34fr) minmax(0, 1fr);
  gap: clamp(26px, 5vw, 54px);
  align-items: start;
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid rgba(0, 167, 215, 0.18);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(10, 47, 96, 0.09);
}

.ipc-2024-side-title {
  display: block;
  place-items: initial;
  color: var(--blue-deep);
  font-size: clamp(2rem, 3.4vw, 3.45rem);
  line-height: 1.05;
  text-align: left;
  text-transform: none;
  writing-mode: horizontal-tb;
  transform: none;
}

.ipc-2024-side-title::before {
  content: "IPC 2024";
  display: block;
  width: fit-content;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-left: 4px solid var(--aqua);
  border-radius: 6px;
  background: rgba(0, 167, 215, 0.1);
  color: var(--blue);
  font-size: 0.84rem;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.ipc-2024-highlight-stack {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.ipc-2024-highlight-pill,
.ipc-2024-highlight-pill.tone-1,
.ipc-2024-highlight-pill.tone-2,
.ipc-2024-highlight-pill.tone-3,
.ipc-2024-highlight-pill.tone-4,
.ipc-2024-highlight-pill.tone-5,
.ipc-2024-highlight-pill.tone-6 {
  min-height: 100%;
  padding: 18px;
  border: 1px solid rgba(20, 83, 161, 0.12);
  border-top: 4px solid var(--aqua);
  border-left: 1px solid rgba(20, 83, 161, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 250, 254, 0.98)),
    #fff;
  box-shadow: none;
}

.ipc-2024-highlight-pill:nth-child(1),
.ipc-2024-highlight-pill:nth-child(4) {
  border-top-color: var(--blue);
}

.ipc-2024-highlight-pill p,
.green-credit-panel li {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 740;
  line-height: 1.55;
}

.section-heading.centered h2 {
  max-width: 980px;
  margin-right: auto;
  margin-left: auto;
  color: var(--blue-deep);
}

.green-credit-panel {
  align-items: stretch;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(0, 167, 215, 0.18);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(10, 47, 96, 0.09);
}

.green-credit-visual {
  min-height: 100%;
  background:
    linear-gradient(135deg, rgba(47, 143, 91, 0.92), rgba(0, 109, 168, 0.88)),
    var(--accent);
  color: #fff;
}

.green-credit-visual span {
  background:
    radial-gradient(circle at 50% 35%, #ffffff 0 8px, transparent 9px),
    linear-gradient(135deg, rgba(255,255,255,0.95), rgba(139, 220, 255, 0.72));
  box-shadow:
    34px 26px 0 -10px rgba(139, 220, 255, 0.72),
    70px 48px 0 -18px rgba(255, 255, 255, 0.4);
}

.green-credit-panel ul {
  align-content: center;
  padding: clamp(24px, 4vw, 42px);
  list-style: none;
}

.green-credit-panel li {
  position: relative;
  padding-left: 28px;
}

.green-credit-panel li::before {
  content: "";
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--aqua);
  box-shadow: 0 0 0 5px rgba(0, 167, 215, 0.12);
}

.ipc-recognition-card {
  border-top: 4px solid var(--aqua);
}

.ipc-recognition-card.is-award {
  border-top-color: var(--blue);
}

.ipc-recognition-card.is-recognition {
  border-top-color: var(--accent);
}

.ipc-recognition-card h3,
.ipc-recognition-card.is-recognition h3 {
  color: var(--blue-deep);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.18;
}

.ipc-ribbon-heading {
  justify-content: flex-start;
  margin-bottom: 24px;
  text-align: left;
}

.ipc-ribbon-heading h2,
.ipc-ribbon-heading.red h2,
.ipc-ribbon-heading.teal h2,
.ipc-ribbon-heading.solid h2,
.ipc-ribbon-heading.blue h2 {
  min-height: 0;
  padding: 0 0 0 18px;
  border-left: 5px solid var(--aqua);
  background: transparent;
  color: var(--blue-deep);
  font-size: clamp(1.85rem, 3.4vw, 3.15rem);
  line-height: 1.08;
  text-transform: none;
}

.ipc-ribbon-heading.red h2 {
  border-left-color: var(--blue);
}

.ipc-ribbon-heading.teal h2,
.ipc-ribbon-heading.solid h2 {
  border-left-color: var(--accent);
}

.ipc-ribbon-heading.blue h2 {
  border-left-color: var(--blue);
}

.ipc-ribbon-heading h2::before,
.ipc-ribbon-heading h2::after {
  display: none;
}

.delegate-orbit-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.delegate-orbit,
.delegate-orbit.orbit-1,
.delegate-orbit.orbit-2,
.delegate-orbit.orbit-3,
.delegate-orbit.orbit-4 {
  display: grid;
  place-items: start;
  aspect-ratio: auto;
  min-height: 188px;
  padding: 24px;
  border: 1px solid rgba(0, 167, 215, 0.18);
  border-top: 4px solid var(--aqua);
  border-radius: 8px;
  background: #fff;
  color: var(--blue);
  text-align: left;
  box-shadow: 0 16px 36px rgba(10, 47, 96, 0.08);
}

.delegate-orbit.orbit-2 {
  border-top-color: var(--blue);
}

.delegate-orbit.orbit-3 {
  border-top-color: var(--accent);
}

.delegate-orbit::after {
  display: none;
}

.delegate-orbit span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 20px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--blue), var(--aqua-deep));
  color: #fff;
}

.delegate-orbit span::before {
  content: "";
  width: 18px;
  height: 18px;
  border-right: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transform: rotate(45deg) translate(-2px, -2px);
}

.delegate-orbit h3 {
  max-width: none;
  color: var(--blue-deep);
  font-size: 1.08rem;
  line-height: 1.35;
}

.profile-chevron-grid,
.exhibitor-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.profile-chevron,
.exhibitor-grid article {
  grid-template-columns: 46px minmax(0, 1fr);
  min-height: auto;
  padding: 14px;
  border: 1px solid rgba(0, 167, 215, 0.16);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 26px rgba(10, 47, 96, 0.07);
}

.profile-chevron span,
.exhibitor-grid span {
  width: 46px;
  height: 46px;
  min-height: 46px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--blue), var(--aqua-deep));
  color: #fff;
  clip-path: none;
  transform: none;
  box-shadow: none;
}

.profile-chevron svg,
.exhibitor-grid svg {
  width: 25px;
  height: 25px;
  transform: none;
}

.profile-chevron strong,
.profile-chevron.tone-1 strong,
.profile-chevron.tone-2 strong,
.profile-chevron.tone-3 strong,
.profile-chevron.tone-4 strong,
.exhibitor-grid strong {
  min-height: auto;
  margin-left: 0;
  padding: 0;
  background: transparent;
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.35;
  clip-path: none;
}

.registration-panel {
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(0, 167, 215, 0.18);
  border-top: 4px solid var(--accent);
  border-radius: 8px;
  background: #fff;
}

.registration-table {
  border: 1px solid var(--line);
  border-radius: 8px;
}

.registration-row + .registration-row,
.registration-row div {
  border-color: var(--line);
}

.registration-head div {
  background: linear-gradient(180deg, #f7fcff, #edf8fd);
  color: var(--blue-deep);
}

.registration-row div {
  color: var(--ink);
}

.registration-row div:first-child {
  font-weight: 850;
}

.registration-panel li {
  color: var(--muted);
}

.ipc-2024-exhibitors {
  padding: clamp(28px, 5vw, 46px);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(7, 31, 61, 0.98), rgba(9, 47, 96, 0.96) 52%, rgba(0, 109, 168, 0.9)),
    var(--blue-deep);
}

.ipc-2024-exhibitors .ipc-ribbon-heading h2 {
  color: #fff;
}

.ipc-2024-exhibitors .exhibitor-grid article {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.96);
}

.ipc-2024-exhibition-highlights {
  max-width: none;
  padding: clamp(28px, 5vw, 46px);
  border: 1px solid rgba(0, 167, 215, 0.18);
  border-top: 4px solid var(--blue);
  border-radius: 8px;
  background: #fff;
}

.ipc-2024-exhibition-highlights .ipc-ribbon-heading {
  margin-top: 0;
}

.ipc-2024-exhibition-highlights ul {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  text-align: left;
}

.ipc-2024-exhibition-highlights li {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 92px;
  padding: 18px;
  border: 1px solid rgba(20, 83, 161, 0.1);
  border-left: 4px solid var(--aqua);
  border-radius: 8px;
  background: #f8fbfd;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 850;
  line-height: 1.35;
}

/* Final IPC 2024 theme polish: consistent, professional web sections. */
.ipc-2024-detail-block {
  padding-top: clamp(64px, 7vw, 96px);
  padding-bottom: clamp(64px, 7vw, 96px);
  background:
    linear-gradient(180deg, #f6fbff 0%, #ffffff 26%, #edf8fd 100%);
}

.ipc-2024-shell {
  gap: clamp(34px, 4vw, 52px);
}

.ipc-2024-highlights,
.ipc-2024-green-card,
.ipc-2024-recognition-grid,
.ipc-2024-orbit-section,
.ipc-2024-profile-section,
.ipc-2024-registration,
.ipc-2024-exhibition-highlights {
  border: 1px solid rgba(20, 83, 161, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(247, 252, 255, 0.99)),
    #fff;
  box-shadow: 0 16px 38px rgba(10, 47, 96, 0.08);
}

.ipc-2024-highlights,
.ipc-2024-green-card,
.ipc-2024-orbit-section,
.ipc-2024-profile-section,
.ipc-2024-registration,
.ipc-2024-exhibition-highlights {
  padding: clamp(24px, 4vw, 42px);
}

.ipc-2024-recognition-grid {
  padding: 18px;
}

.ipc-2024-green-card .section-heading {
  margin-bottom: 24px;
}

.ipc-2024-green-card .eyebrow,
.ipc-2024-side-title::before {
  color: var(--aqua-deep);
}

.ipc-2024-side-title,
.ipc-ribbon-heading h2,
.ipc-ribbon-heading.red h2,
.ipc-ribbon-heading.teal h2,
.ipc-ribbon-heading.solid h2,
.ipc-ribbon-heading.blue h2 {
  color: var(--blue-deep);
  font-weight: 950;
}

.ipc-2024-side-title {
  align-self: start;
  max-width: 360px;
}

.ipc-2024-highlight-pill,
.ipc-recognition-card,
.delegate-orbit,
.delegate-orbit.orbit-1,
.delegate-orbit.orbit-2,
.delegate-orbit.orbit-3,
.delegate-orbit.orbit-4,
.profile-chevron,
.exhibitor-grid article,
.ipc-2024-exhibition-highlights li {
  box-shadow: none;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.ipc-2024-highlight-pill:hover,
.ipc-recognition-card:hover,
.delegate-orbit:hover,
.profile-chevron:hover,
.exhibitor-grid article:hover,
.ipc-2024-exhibition-highlights li:hover {
  border-color: rgba(0, 167, 215, 0.38);
  box-shadow: 0 12px 28px rgba(10, 47, 96, 0.08);
  transform: translateY(-2px);
}

.ipc-2024-highlight-pill p,
.green-credit-panel li,
.registration-panel li {
  color: #445a70;
}

.green-credit-panel {
  border-color: rgba(20, 83, 161, 0.12);
  box-shadow: none;
}

.green-credit-visual {
  min-height: 280px;
  background:
    linear-gradient(135deg, rgba(9, 47, 96, 0.98), rgba(0, 109, 168, 0.92)),
    var(--blue-deep);
}

.green-credit-visual strong {
  font-size: clamp(1.3rem, 2vw, 1.7rem);
}

.ipc-recognition-card {
  min-height: 162px;
  border-top-width: 3px;
  background: #fff;
}

.ipc-recognition-card img {
  max-height: 104px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.ipc-recognition-card p {
  color: var(--muted);
  font-size: 0.96rem;
}

.delegate-orbit,
.delegate-orbit.orbit-1,
.delegate-orbit.orbit-2,
.delegate-orbit.orbit-3,
.delegate-orbit.orbit-4 {
  min-height: 170px;
  align-content: start;
}

.delegate-orbit span,
.profile-chevron span,
.exhibitor-grid span {
  background: var(--blue);
}

.delegate-orbit:hover span,
.profile-chevron:hover span,
.exhibitor-grid article:hover span {
  background: var(--aqua-deep);
}

.profile-chevron-grid {
  gap: 12px;
}

.profile-chevron strong,
.exhibitor-grid strong {
  color: #23384d;
  font-weight: 900;
}

.registration-panel {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.registration-table {
  background: #fff;
}

.registration-row div {
  min-height: 50px;
  padding: 12px 14px;
  font-size: 0.98rem;
}

.registration-head div {
  font-size: 0.9rem;
  text-transform: none;
}

.registration-panel ol {
  display: grid;
  gap: 6px;
  margin-top: 20px;
  padding: 18px 18px 18px 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbfd;
}

.ipc-2024-exhibitors {
  border: 1px solid rgba(139, 220, 255, 0.2);
  box-shadow: 0 18px 42px rgba(10, 47, 96, 0.12);
}

.ipc-2024-exhibitors .ipc-ribbon-heading h2 {
  border-left-color: var(--blue-ice);
  color: #fff;
}

.ipc-2024-exhibitors .exhibitor-grid article {
  background: rgba(255, 255, 255, 0.98);
}

.ipc-2024-exhibition-highlights li {
  min-height: 86px;
  background: #fff;
}

.ipc-2024-highlights {
  display: block;
}

.ipc-2024-highlight-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.ipc-2024-highlight-head .eyebrow {
  margin-bottom: 10px;
}

.ipc-2024-highlight-head .ipc-2024-side-title {
  max-width: 620px;
  margin: 0;
}

.ipc-2024-highlight-head .ipc-2024-side-title::before {
  display: none;
}

.ipc-2024-highlight-controls {
  display: flex;
  gap: 10px;
  flex: 0 0 auto;
}

.ipc-2024-highlight-controls button {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(20, 83, 161, 0.16);
  border-radius: 50%;
  background: #fff;
  color: var(--blue-deep);
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(10, 47, 96, 0.08);
}

.ipc-2024-highlight-controls button:hover:not(:disabled) {
  border-color: var(--aqua);
  background: var(--soft);
  color: var(--blue);
}

.ipc-2024-highlight-controls button:disabled {
  cursor: default;
  opacity: 0.42;
}

.ipc-2024-highlight-controls svg {
  width: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.25;
}

.ipc-2024-highlight-slider {
  overflow: hidden;
  margin-right: calc(clamp(24px, 4vw, 42px) * -1);
}

.ipc-2024-highlight-slider .ipc-2024-highlight-stack {
  display: flex;
  grid-template-columns: none;
  gap: 18px;
  overflow-x: auto;
  padding: 4px clamp(24px, 4vw, 42px) 18px 0;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.ipc-2024-highlight-slider .ipc-2024-highlight-stack::-webkit-scrollbar {
  display: none;
}

.ipc-2024-highlight-slider .ipc-2024-highlight-pill,
.ipc-2024-highlight-slider .ipc-2024-highlight-pill.tone-1,
.ipc-2024-highlight-slider .ipc-2024-highlight-pill.tone-2,
.ipc-2024-highlight-slider .ipc-2024-highlight-pill.tone-3,
.ipc-2024-highlight-slider .ipc-2024-highlight-pill.tone-4,
.ipc-2024-highlight-slider .ipc-2024-highlight-pill.tone-5,
.ipc-2024-highlight-slider .ipc-2024-highlight-pill.tone-6 {
  display: grid;
  align-content: start;
  gap: 18px;
  flex: 0 0 min(620px, calc((100% - 18px) / 2));
  min-height: 260px;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(20, 83, 161, 0.14);
  border-top: 0;
  border-left: 5px solid var(--aqua);
  border-radius: 8px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fcff 100%),
    #fff;
  scroll-snap-align: start;
}

.ipc-2024-highlight-slider .ipc-2024-highlight-pill:nth-child(odd) {
  border-left-color: var(--blue);
}

.ipc-2024-highlight-slider .ipc-2024-highlight-pill:nth-child(3n) {
  border-left-color: var(--accent);
}

.ipc-2024-highlight-pill > span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--blue), var(--aqua-deep));
  color: #fff;
  font-size: 0.86rem;
  font-weight: 950;
  line-height: 1;
}

.ipc-2024-highlight-slider .ipc-2024-highlight-pill p {
  color: #31495f;
  font-size: clamp(1.02rem, 1.25vw, 1.12rem);
  line-height: 1.62;
}

.ipc-2024-profile-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.99), rgba(239, 249, 253, 0.98)),
    #fff;
}

.ipc-2024-profile-section::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--blue), var(--aqua), var(--accent));
}

.visitor-profile-head {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(160px, 0.22fr);
  gap: clamp(20px, 4vw, 42px);
  align-items: end;
  margin-bottom: 26px;
}

.visitor-profile-head h2 {
  max-width: 760px;
  color: var(--blue-deep);
  font-size: clamp(2rem, 4vw, 3.15rem);
}

.visitor-profile-head p:not(.eyebrow) {
  max-width: 820px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
  font-weight: 720;
  line-height: 1.58;
}

.visitor-profile-head > strong {
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 132px;
  padding: 20px;
  border: 1px solid rgba(0, 167, 215, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(135deg, var(--blue), var(--aqua-deep)),
    var(--blue);
  color: #fff;
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  line-height: 1;
  box-shadow: 0 16px 34px rgba(20, 83, 161, 0.18);
}

.visitor-profile-head > strong span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
}

.ipc-2024-profile-section .profile-chevron-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.ipc-2024-profile-section .profile-chevron {
  position: relative;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 104px;
  padding: 18px;
  border: 1px solid rgba(20, 83, 161, 0.12);
  border-radius: 8px;
  background: #fff;
}

.ipc-2024-profile-section .profile-chevron::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  border-radius: 8px 0 0 8px;
  background: var(--aqua);
}

.ipc-2024-profile-section .profile-chevron:nth-child(3n + 1)::after {
  background: var(--blue);
}

.ipc-2024-profile-section .profile-chevron:nth-child(3n)::after {
  background: var(--accent);
}

.ipc-2024-profile-section .profile-chevron span {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(20, 83, 161, 0.96), rgba(0, 109, 168, 0.94)),
    var(--blue);
}

.ipc-2024-profile-section .profile-chevron svg {
  width: 28px;
  height: 28px;
}

.ipc-2024-profile-section .profile-chevron small {
  display: block;
  margin-bottom: 6px;
  color: var(--aqua-deep);
  font-size: 0.72rem;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.ipc-2024-profile-section .profile-chevron strong {
  display: block;
  color: var(--blue-deep);
  font-size: 1rem;
  font-weight: 950;
  line-height: 1.28;
}

.conference-copy-section {
  position: relative;
}

.conference-copy-panel {
  display: grid;
  gap: clamp(26px, 4vw, 42px);
  max-width: var(--content-width);
  margin: 0 auto;
}

.conference-copy-heading {
  max-width: 920px;
}

.conference-copy-heading h2 {
  max-width: 820px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.65rem);
  line-height: 1.08;
}

.conference-copy-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 18px;
}

.conference-copy-grid article {
  min-height: 250px;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid rgba(0, 167, 215, 0.18);
  border-top: 4px solid var(--aqua);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 249, 253, 0.98)),
    #fff;
  box-shadow: 0 16px 38px rgba(10, 47, 96, 0.09);
}

.conference-copy-grid article:first-child {
  border-top-color: var(--blue);
}

.conference-copy-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.72;
}

.takeaway-section {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(237, 248, 255, 0.92)),
    #fff;
}

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

.takeaway-card {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(0, 167, 215, 0.2);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 249, 253, 0.98)),
    #fff;
  box-shadow: 0 18px 40px rgba(10, 47, 96, 0.1);
}

.takeaway-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--blue), var(--aqua));
}

.takeaway-card-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}

.takeaway-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--blue), var(--aqua-deep));
  color: #fff;
  box-shadow: 0 14px 28px rgba(20, 83, 161, 0.22);
}

.takeaway-icon svg,
.takeaway-list svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.takeaway-icon svg {
  width: 31px;
  height: 31px;
  stroke-width: 1.8;
}

.takeaway-card h3 {
  color: var(--blue-deep);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
}

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

.takeaway-list li {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  min-height: 72px;
  padding: 14px;
  border: 1px solid rgba(20, 83, 161, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
}

.takeaway-list li > span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0, 167, 215, 0.13);
  color: var(--aqua-deep);
}

.takeaway-list svg {
  width: 17px;
  height: 17px;
  stroke-width: 2.6;
}

.takeaway-list strong {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.45;
}

.ipc-2025-overview {
  position: relative;
  background:
    linear-gradient(180deg, #ffffff 0%, rgba(247, 252, 255, 0.96) 100%),
    #fff;
}

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

.ipc-2025-overview .simple-live-copy {
  max-width: 1120px;
}

.ipc-2025-overview .simple-live-copy h2 {
  max-width: 900px;
  color: var(--blue-deep);
  font-size: clamp(2rem, 4vw, 3.65rem);
  line-height: 1.02;
}

.ipc-2025-overview .simple-live-copy > p {
  max-width: 980px;
  font-size: clamp(1.05rem, 1.45vw, 1.2rem);
  line-height: 1.75;
}

.ipc-2025-overview-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 3vw, 34px);
  margin-top: clamp(28px, 4vw, 46px);
  padding-top: 22px;
  border-top: 1px solid rgba(20, 83, 161, 0.16);
}

.ipc-2025-overview-facts span {
  position: relative;
  display: grid;
  gap: 6px;
  min-width: 0;
  padding-left: 18px;
}

.ipc-2025-overview-facts span::before {
  content: "";
  position: absolute;
  inset: 4px auto 4px 0;
  width: 4px;
  border-radius: 999px;
  background: var(--aqua);
}

.ipc-2025-overview-facts strong {
  color: var(--blue-deep);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 950;
  line-height: 1.15;
}

.ipc-2025-overview-facts small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.ipc-2025-text-flow {
  padding: clamp(34px, 6vw, 78px) 5vw;
  background:
    linear-gradient(180deg, rgba(247, 252, 255, 0.98), rgba(255, 255, 255, 0.98) 48%, rgba(239, 249, 253, 0.92)),
    #f7fcff;
}

.ipc-2025-shell {
  display: grid;
  gap: 0;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.ipc-2025-copy-block {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  padding: clamp(40px, 6vw, 78px) 0;
  border-bottom: 1px solid rgba(20, 83, 161, 0.14);
}

.ipc-2025-copy-block:first-child {
  padding-top: 0;
}

.ipc-2025-copy-block:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.ipc-2025-copy-block .section-heading.centered {
  position: sticky;
  top: 110px;
  margin: 0;
  text-align: left;
}

.ipc-2025-copy-block .section-heading.centered::before {
  content: "";
  display: block;
  width: 64px;
  height: 4px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--aqua), rgba(0, 167, 215, 0));
}

.ipc-2025-copy-block:nth-child(even) .section-heading.centered::before {
  background: linear-gradient(90deg, var(--accent), rgba(0, 167, 215, 0));
}

.ipc-2025-copy-block .section-heading.centered h2 {
  max-width: 430px;
  color: var(--blue-deep);
  font-size: clamp(1.72rem, 3.2vw, 3rem);
  line-height: 1.05;
}

.ipc-2025-paragraphs {
  display: grid;
  gap: 16px;
}

.ipc-2025-paragraphs p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.25vw, 1.12rem);
  line-height: 1.78;
}

.ipc-2025-paragraphs p:first-child {
  color: #253d55;
  font-size: clamp(1.08rem, 1.45vw, 1.24rem);
  font-weight: 750;
  line-height: 1.68;
}

.ipc-2025-live-hero {
  min-height: 620px;
}

.ipc-2025-live-media {
  background:
    linear-gradient(180deg, #ffffff 0%, rgba(247, 252, 255, 0.96) 100%),
    #fff;
}

.ipc-2025-live-banner-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.ipc-2025-live-banner-grid figure,
.ipc-2025-live-split figure {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(10, 47, 96, 0.08);
}

.ipc-2025-live-banner-grid img,
.ipc-2025-live-split img,
.ipc-2025-live-feature-grid img,
.ipc-2025-live-session-grid img,
.ipc-2025-live-gallery-grid img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ipc-2025-live-stats {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(16px, 3vw, 28px);
  padding-top: 22px;
  border-top: 1px solid rgba(20, 83, 161, 0.16);
}

.ipc-2025-live-stats article {
  position: relative;
  display: grid;
  gap: 6px;
  min-height: 0;
  padding: 0 0 0 18px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.ipc-2025-live-stats article::before {
  content: "";
  position: absolute;
  inset: 4px auto 4px 0;
  width: 4px;
  border-radius: 999px;
  background: var(--aqua);
}

.ipc-2025-live-stats strong {
  color: var(--blue-deep);
  font-size: clamp(1.3rem, 2.2vw, 2rem);
  font-weight: 950;
  line-height: 1.05;
}

.ipc-2025-live-stats span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.ipc-2025-live-video-section {
  background: #fff;
}

.ipc-2025-live-split {
  background:
    linear-gradient(145deg, rgba(237, 248, 255, 0.98), rgba(211, 243, 251, 0.72) 52%, rgba(255, 255, 255, 0.96)),
    #edf9fd;
}

.ipc-2025-live-split:not(:has(.ipc-2025-theme-container)) {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.ipc-2025-live-theme-copy {
  display: grid;
  gap: 18px;
}

.ipc-2025-live-theme-copy h2 {
  margin: 0;
  color: var(--blue-deep);
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  line-height: 0.98;
}

.ipc-2025-live-theme-copy h3 {
  margin: 0;
  color: var(--aqua-deep);
  font-size: clamp(1.3rem, 2.6vw, 2.2rem);
  line-height: 1.12;
}

.ipc-2025-live-theme-copy p,
.ipc-2025-live-theme-copy li,
.ipc-2025-live-highlight-grid p,
.ipc-2025-live-feature-grid p,
.ipc-2025-live-session-grid li {
  color: var(--muted);
  font-weight: 750;
  line-height: 1.62;
}

.ipc-2025-live-theme-copy ul,
.ipc-2025-live-session-grid ul,
.ipc-2025-live-two-column ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ipc-2025-live-theme-copy li,
.ipc-2025-live-session-grid li,
.ipc-2025-live-two-column li {
  position: relative;
  padding-left: 20px;
}

.ipc-2025-live-theme-copy li::before,
.ipc-2025-live-session-grid li::before,
.ipc-2025-live-two-column li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--aqua);
}

.ipc-2025-live-split figure {
  aspect-ratio: 1.94;
}

.ipc-2025-live-highlights,
.ipc-2025-live-sessions,
.ipc-2025-live-gallery,
.ipc-2025-live-contact {
  background: #fff;
}

.ipc-2025-live-highlight-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.ipc-2025-live-highlight-grid article,
.ipc-2025-live-two-column article,
.ipc-2025-live-contact-grid article,
.ipc-2025-live-faq-list details {
  border: 1px solid rgba(0, 167, 215, 0.18);
  border-top: 4px solid var(--aqua);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 249, 253, 0.98)),
    #fff;
  box-shadow: 0 14px 30px rgba(10, 47, 96, 0.08);
}

.ipc-2025-live-highlight-grid article {
  min-height: 150px;
  padding: 20px;
}

.ipc-2025-live-highlight-grid h3,
.ipc-2025-live-feature-grid h3,
.ipc-2025-live-session-grid h3,
.ipc-2025-live-two-column h3,
.ipc-2025-live-contact-grid h3,
.ipc-2025-live-book-stall h3 {
  margin: 0;
  color: var(--blue-deep);
  font-size: 1.18rem;
  line-height: 1.2;
}

.ipc-2025-live-highlight-grid p,
.ipc-2025-live-feature-grid p {
  margin: 10px 0 0;
}

.ipc-2025-live-why,
.ipc-2025-live-feature-section,
.ipc-2025-live-delegates,
.ipc-2025-live-faq {
  background:
    linear-gradient(145deg, rgba(237, 248, 255, 0.98), rgba(211, 243, 251, 0.72) 52%, rgba(255, 255, 255, 0.96)),
    #edf9fd;
}

.ipc-2025-live-feature-grid {
  display: grid;
  gap: 18px;
}

.ipc-2025-live-feature-grid article {
  display: grid;
  grid-template-columns: minmax(220px, 0.38fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(0, 167, 215, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 30px rgba(10, 47, 96, 0.08);
}

.ipc-2025-live-feature-grid img {
  aspect-ratio: 1.95;
  border-radius: 8px;
}

.ipc-2025-live-session-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.ipc-2025-live-session-grid article {
  overflow: hidden;
  border: 1px solid rgba(0, 167, 215, 0.18);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(10, 47, 96, 0.08);
}

.ipc-2025-live-session-grid img {
  aspect-ratio: 1.26;
}

.ipc-2025-live-session-grid div {
  padding: 22px;
}

.ipc-2025-live-session-grid h3 {
  margin-bottom: 14px;
}

.ipc-2025-live-two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 20px;
}

.ipc-2025-live-two-column article {
  padding: 24px;
}

.ipc-2025-live-tag-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.ipc-2025-live-tag-grid span {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(0, 167, 215, 0.1);
  color: var(--blue-deep);
  font-size: 0.92rem;
  font-weight: 850;
}

.ipc-2025-live-exhibition-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 26px;
}

.ipc-2025-live-exhibition-list article {
  min-height: 0;
}

.ipc-2025-live-note {
  margin: 20px 0 0;
  color: var(--muted);
  font-weight: 750;
}

.ipc-2025-live-book-stall {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  align-items: center;
  margin-top: 24px;
  padding: 20px;
  border-radius: 8px;
  background: var(--blue-deep);
}

.ipc-2025-live-book-stall h3,
.ipc-2025-live-book-stall a {
  color: #fff;
}

.ipc-2025-live-book-stall a {
  font-weight: 850;
  text-decoration: underline;
}

.ipc-2025-live-partners {
  background: #fff;
}

.ipc-2025-live-partner-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.ipc-2025-live-partner-grid article {
  display: grid;
  gap: 12px;
  align-content: space-between;
  min-height: 190px;
  padding: 18px;
  border: 1px solid rgba(0, 167, 215, 0.18);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(10, 47, 96, 0.08);
}

.ipc-2025-live-partner-grid p {
  margin: 0;
  color: var(--aqua-deep);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ipc-2025-live-partner-grid img {
  width: 100%;
  height: 74px;
  object-fit: contain;
}

.ipc-2025-live-partner-grid h3 {
  margin: 0;
  color: var(--blue-deep);
  font-size: 1rem;
}

.ipc-2025-live-gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.ipc-2025-live-gallery-grid img {
  aspect-ratio: 1.18;
  border-radius: 8px;
}

.ipc-2025-live-testimonials .testimonial-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ipc-2025-live-supporting {
  background:
    linear-gradient(145deg, rgba(237, 248, 255, 0.98), rgba(211, 243, 251, 0.72) 52%, rgba(255, 255, 255, 0.96)),
    #edf9fd;
}

.ipc-2025-live-supporting > img {
  display: block;
  width: 100%;
  height: auto;
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid rgba(0, 167, 215, 0.18);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(10, 47, 96, 0.08);
}

.ipc-2025-live-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.ipc-2025-live-contact-grid article {
  display: grid;
  gap: 8px;
  padding: 24px;
}

.ipc-2025-live-contact-grid p,
.ipc-2025-live-contact-grid a {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.ipc-2025-live-contact-grid a {
  color: var(--blue);
}

.ipc-2025-live-faq-list {
  display: grid;
  gap: 12px;
}

.ipc-2025-live-faq-list details {
  padding: 18px 20px;
}

.ipc-2025-live-faq-list summary {
  cursor: pointer;
  color: var(--blue-deep);
  font-weight: 950;
}

.ipc-2025-live-faq-list p {
  margin: 12px 0 0;
  color: var(--muted);
  font-weight: 750;
  line-height: 1.6;
}

.ipc-2025-live-register {
  margin-top: 0;
  margin-bottom: 0;
}

.ipc-2025-live-overview {
  overflow: hidden;
  background:
    linear-gradient(180deg, #ffffff 0%, rgba(247, 252, 255, 0.96) 100%),
    #fff;
}

.ipc-2025-live-overview-hero {
  align-items: end;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.ipc-2025-live-overview .overview-copy {
  max-width: 940px;
}

.ipc-2025-live-overview .overview-copy h2 {
  max-width: 860px;
  color: var(--blue-deep);
  font-size: clamp(2rem, 3.8vw, 4rem);
  line-height: 1.04;
}

.ipc-2025-live-overview .overview-content {
  display: grid;
  gap: 14px;
  max-width: 920px;
}

.ipc-2025-live-overview .overview-content p {
  margin: 0;
  color: var(--muted);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.68;
}

.ipc-2025-live-overview .overview-highlight {
  align-self: end;
  gap: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(0, 167, 215, 0.24);
  border-top: 0;
  border-left: 4px solid var(--aqua);
  background: linear-gradient(145deg, #fff, rgba(238, 248, 255, 0.96));
  box-shadow: var(--shadow);
}

.ipc-2025-live-overview .highlight-item {
  display: grid;
  gap: 7px;
  padding: 22px;
  border-bottom: 1px solid rgba(0, 167, 215, 0.14);
}

.ipc-2025-live-overview .highlight-item:last-child {
  border-bottom: 0;
}

.ipc-2025-live-overview .overview-highlight strong {
  color: var(--blue);
  font-size: clamp(1.14rem, 1.8vw, 1.45rem);
  line-height: 1.2;
}

.ipc-2025-live-overview .overview-highlight span {
  order: -1;
  color: var(--aqua-deep);
  font-size: 0.78rem;
  font-weight: 950;
  line-height: 1.1;
  text-transform: uppercase;
}

.ipc-2025-live-overview .ipc-2025-live-stats {
  margin-top: 0;
}

.ipc-2025-live-reason-shell,
.ipc-2025-live-highlight-shell {
  display: grid;
  grid-template-columns: minmax(240px, 0.36fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 68px);
  align-items: start;
}

.ipc-2025-live-reason-shell .section-heading,
.ipc-2025-live-highlight-shell .section-heading {
  position: sticky;
  top: 96px;
  margin-bottom: 0;
}

.ipc-2025-live-reason-grid,
.ipc-2025-live-highlight-river {
  display: grid;
  gap: 14px;
}

.ipc-2025-live-reason-grid article,
.ipc-2025-live-highlight-river article {
  position: relative;
  min-height: 104px;
  padding: 22px 24px 22px 32px;
  border: 1px solid rgba(0, 167, 215, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 32px rgba(10, 47, 96, 0.08);
}

.ipc-2025-live-reason-grid article::before,
.ipc-2025-live-highlight-river article::before {
  content: "";
  position: absolute;
  top: 22px;
  bottom: 22px;
  left: 14px;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--aqua), var(--blue));
}

.ipc-2025-live-reason-grid p,
.ipc-2025-live-highlight-river p {
  margin: 0;
  color: var(--muted);
  font-weight: 780;
  line-height: 1.55;
}

.ipc-2025-live-highlight-river article {
  display: grid;
  grid-template-columns: minmax(150px, 0.3fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.ipc-2025-live-highlight-river h3 {
  margin: 0;
  color: var(--blue-deep);
  font-size: 1.22rem;
}

.ipc-2025-live-theme-card {
  display: grid;
  gap: 24px;
}

.ipc-2025-live-theme-card > ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ipc-2025-live-theme-card > ul li {
  min-height: 78px;
  padding: 16px 18px 16px 34px;
  border: 1px solid rgba(0, 167, 215, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 24px rgba(10, 47, 96, 0.06);
}

.ipc-2025-live-partners > .section-heading,
.ipc-2025-live-partners > .partner-slider,
.ipc-2025-live-supporting > .section-heading,
.ipc-2025-live-supporting > .partner-slider,
.ipc-2025-live-testimonials > .section-heading,
.ipc-2025-live-testimonials > .testimonial-slider {
  max-width: var(--content-width);
  margin-right: auto;
  margin-left: auto;
}

.ipc-2025-live-partner-card {
  flex-basis: calc((100% - 54px) / 4);
}

.ipc-2025-live-partner-card .partner-logo-frame {
  height: 150px;
}

.ipc-2025-live-testimonials .testimonial-card {
  min-height: 330px;
}

.ipc-2025-live-supporting .supporting-card {
  min-width: 180px;
}

.ipc-2025-live-contact-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  max-width: var(--content-width);
  margin-right: auto;
  margin-left: auto;
}

.ipc-2025-live-contact-panel article {
  display: grid;
  gap: 14px;
}

.ipc-2025-live-contact-panel .supporting-contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}

.ipc-2025-live-faq-list details {
  border-top: 0;
}

.ipc-2025-live-faq-list summary {
  position: relative;
  padding-right: 34px;
  list-style: none;
}

.ipc-2025-live-faq-list summary::-webkit-details-marker {
  display: none;
}

.ipc-2025-live-faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 0;
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 50%;
  background: rgba(0, 167, 215, 0.12);
  color: var(--blue);
  transform: translateY(-50%);
}

.ipc-2025-live-faq-list details[open] summary::after {
  content: "-";
  background: var(--blue);
  color: #fff;
}

.ipc-2025-live-video-section,
.ipc-2025-live-media,
.ipc-2025-live-why,
.ipc-2025-live-split,
.ipc-2025-live-highlights,
.ipc-2025-live-feature-section,
.ipc-2025-live-sessions,
.ipc-2025-live-delegates,
.ipc-2025-live-partners,
.ipc-2025-live-gallery,
.ipc-2025-live-testimonials,
.ipc-2025-live-supporting,
.ipc-2025-live-contact,
.ipc-2025-live-faq {
  background:
    linear-gradient(180deg, #f6fbff 0%, #ffffff 42%, #edf8fd 100%),
    #f7fcff;
}

.ipc-2025-live-video-section .simple-live-grid,
.ipc-2025-live-reason-shell,
.ipc-2025-live-highlight-shell,
.ipc-2025-live-feature-grid,
.ipc-2025-live-session-grid,
.ipc-2025-live-two-column,
.ipc-2025-live-partners > .partner-slider,
.ipc-2025-live-supporting > .partner-slider,
.ipc-2025-live-testimonials > .testimonial-slider,
.contact-section-wrapper,
.faq-section-wrapper {
  border: 1px solid rgba(20, 83, 161, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(247, 252, 255, 0.99)),
    #fff;
  box-shadow: 0 16px 38px rgba(10, 47, 96, 0.08);
}

.ipc-2025-live-video-section .simple-live-grid,
.ipc-2025-live-reason-shell,
.ipc-2025-live-highlight-shell,
.ipc-2025-live-feature-grid,
.ipc-2025-live-session-grid,
.ipc-2025-live-two-column,
.contact-section-wrapper,
.faq-section-wrapper {
  padding: clamp(24px, 4vw, 42px);
}

.ipc-2025-live-partners > .partner-slider,
.ipc-2025-live-supporting > .partner-slider,
.ipc-2025-live-testimonials > .testimonial-slider {
  padding: clamp(18px, 3vw, 28px);
}

.ipc-2025-live-feature-grid {
  display: grid;
  gap: 18px;
}

.ipc-2025-live-feature-grid article,
.ipc-2025-live-session-grid article,
.ipc-2025-live-two-column article,
.reason-card,
.highlight-card,
.contact-card,
.faq-item {
  box-shadow: none;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.ipc-2025-live-feature-grid article:hover,
.ipc-2025-live-session-grid article:hover,
.ipc-2025-live-two-column article:hover,
.reason-card:hover,
.highlight-card:hover,
.contact-card:hover,
.faq-item:hover {
  border-color: rgba(0, 167, 215, 0.38);
  box-shadow: 0 12px 28px rgba(10, 47, 96, 0.08);
  transform: translateY(-2px);
}

.ipc-2025-exhibitors {
  margin-top: 0;
  margin-bottom: 0;
  border-top: 1px solid rgba(139, 220, 255, 0.3);
  border-bottom: 1px solid rgba(139, 220, 255, 0.3);
}

.ipc-2025-exhibitor-head {
  margin-bottom: 0;
}

.ipc-2025-exhibitor-head h2 {
  margin: 0;
  color: var(--blue-deep);
  font-size: clamp(2.25rem, 4vw, 4.2rem);
  line-height: 0.98;
}

.ipc-2025-exhibitor-note {
  align-self: stretch;
  align-content: center;
}

.ipc-2025-exhibitors .exhibitor-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.ipc-2025-exhibitors .exhibitor-grid article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 96px;
  padding: 18px;
  border: 1px solid rgba(0, 167, 215, 0.18);
  border-top: 4px solid var(--aqua);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 30px rgba(10, 47, 96, 0.08);
}

.ipc-2025-exhibitors .exhibitor-grid span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  background: var(--blue);
  color: #fff;
}

.ipc-2025-exhibitors .exhibitor-grid svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.ipc-2025-exhibitors .exhibitor-grid strong {
  display: block;
  min-height: 0;
  margin: 0;
  padding: 0;
  background: transparent;
  color: var(--blue-deep);
  font-size: clamp(0.95rem, 1vw, 1.06rem);
  font-weight: 900;
  line-height: 1.28;
  clip-path: none;
}

.ipc-2025-schedule {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(139, 220, 255, 0.32);
  border-bottom: 1px solid rgba(139, 220, 255, 0.32);
  background:
    linear-gradient(180deg, rgba(247, 252, 255, 0.98), rgba(255, 255, 255, 0.98) 42%, rgba(239, 249, 253, 0.98)),
    #f7fcff;
}

.ipc-2025-schedule::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(139, 220, 255, 0.18), transparent 34%),
    repeating-linear-gradient(135deg, rgba(0, 109, 168, 0.045) 0 1px, transparent 1px 26px);
  pointer-events: none;
}

.ipc-2025-schedule > .ipc-2025-session-stack {
  position: relative;
}

.ipc-2025-session-stack {
  display: grid;
  gap: 0;
  padding: 0;
}

.ipc-2025-session {
  position: relative;
  padding: clamp(34px, 5vw, 64px) 0;
  border-bottom: 1px solid rgba(20, 83, 161, 0.14);
}

.ipc-2025-session:first-child {
  padding-top: 0;
}

.ipc-2025-session:first-child::before {
  top: 0;
}

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

.ipc-2025-session::before {
  content: "";
  position: absolute;
  top: clamp(34px, 5vw, 64px);
  left: 0;
  width: 58px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--aqua), rgba(0, 167, 215, 0));
}

.ipc-2025-session-body {
  position: relative;
  min-width: 0;
  padding-left: clamp(0px, 6vw, 88px);
}

.ipc-2025-session-body > p {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  margin: 0 0 12px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--aqua-deep);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ipc-2025-session h3 {
  position: relative;
  max-width: 940px;
  margin: 0 0 clamp(20px, 2.8vw, 32px);
  color: var(--blue-deep);
  font-size: clamp(1.5rem, 3vw, 2.35rem);
  line-height: 1.12;
}

.ipc-2025-speaker-slider {
  margin-top: clamp(18px, 2.4vw, 28px);
}

.ipc-2025-speaker-slider .testimonial-slider-controls {
  justify-content: flex-start;
  margin-bottom: 16px;
}

.ipc-2025-speaker-track {
  padding: 4px 2px 28px;
}

.ipc-2025-speaker-card {
  display: flex;
  align-items: center;
  min-height: 178px;
  padding: clamp(24px, 3vw, 32px);
}

.ipc-2025-speaker-card::before {
  content: none;
}

.ipc-2025-speaker-card figcaption {
  width: 100%;
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.ipc-2025-speaker-card img {
  width: 92px;
  height: 92px;
  flex: 0 0 92px;
  object-position: top center;
}

.ipc-2025-speaker-card strong {
  font-size: 1.05rem;
}

.ipc-2025-speaker-card small {
  color: #33495f;
  font-weight: 720;
}

.ipc-2025-session ul {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 clamp(28px, 4vw, 52px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.ipc-2025-session li {
  position: relative;
  min-height: 0;
  padding: 13px 0 13px 24px;
  border-bottom: 1px solid rgba(217, 228, 238, 0.84);
  border-radius: 0;
  background: transparent;
  color: #33495f;
  font-size: 0.97rem;
  font-weight: 700;
  line-height: 1.42;
}

.ipc-2025-session li::before {
  content: "";
  position: absolute;
  top: 21px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--aqua);
}

.ipc-2025-partners .event-partner-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ipc-2025-supporting-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.ipc-2025-supporting-grid article {
  display: flex;
  align-items: center;
  min-height: 88px;
  padding: 18px;
  border: 1px solid rgba(0, 167, 215, 0.14);
  border-left: 4px solid var(--aqua);
  border-radius: 8px;
  background: #fff;
  color: var(--blue-deep);
  font-weight: 900;
  line-height: 1.35;
  box-shadow: 0 12px 30px rgba(10, 47, 96, 0.07);
}

.ipc-2025-web-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.ipc-2025-web-links span {
  display: inline-flex;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #fff;
  font-weight: 850;
}

.overview-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: clamp(32px, 6vw, 90px);
  padding: clamp(32px, 5vw, 64px);
  border-radius: 8px;
  background:
    linear-gradient(180deg, #fff 0%, #f7fcff 100%);
  box-shadow: 0 22px 52px rgba(10, 47, 96, 0.11);
}

.overview-panel p {
  color: var(--muted);
  font-size: 1.1rem;
}

.overview-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.overview-list div {
  min-height: 126px;
  padding: 20px;
  border: 1px solid rgba(0, 167, 215, 0.18);
  border-top: 4px solid var(--aqua);
  border-radius: 8px;
  background: #fff;
}

.overview-list span {
  display: block;
  color: var(--aqua);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.overview-list strong {
  display: block;
  margin-top: 9px;
  font-size: 1.08rem;
  line-height: 1.35;
}

.split,
.theme-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.85fr);
  gap: clamp(32px, 6vw, 90px);
  align-items: center;
}

.split p,
.theme-copy p {
  color: var(--muted);
  font-size: 1.1rem;
}

.list-panel,
.exhibition-note {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.check-list,
.profile-panel ul,
.session-card ul {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.profile-panel li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
  font-weight: 700;
}

.check-list li::before,
.profile-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--aqua);
  box-shadow: 0 0 0 5px rgba(0, 167, 215, 0.14);
}

.compact {
  gap: 10px;
}

.theme-section,
.program-section,
.profile-section,
.testimonials-section,
.testimonial-section,
.partner-logo-section {
  background:
    linear-gradient(135deg, rgba(231, 247, 255, 0.94), rgba(255, 255, 255, 0.96) 52%, rgba(213, 244, 252, 0.78)),
    #edf8fd;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.pillar-grid article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.pillar-grid h3 {
  color: var(--blue);
}

.pillar-grid p {
  margin: 10px 0 0;
  font-size: 0.96rem;
}

.theme-visual {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.theme-visual img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: contain;
}

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

.highlight-card,
.media-card,
.session-card,
.sponsor-card,
.testimonial-card,
.profile-panel,
details,
.contact-cards article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(10, 47, 96, 0.08);
}

.highlight-card {
  min-height: 168px;
  padding: 24px;
}

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

.highlight-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

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

.media-card {
  overflow: hidden;
}

.media-card img {
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: cover;
}

.media-card div {
  padding: 20px;
}

.media-card p,
.session-card p {
  color: var(--muted);
}

.session-grid,
.delegate-grid,
.profile-layout,
.testimonial-grid,
.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.program-grid .session-card {
  min-height: 100%;
}

.session-card {
  overflow: hidden;
}

.session-card img {
  width: 100%;
  aspect-ratio: 1.45;
  object-fit: contain;
  background: #eef8fd;
}

.session-card div {
  padding: 26px;
}

.delegate-section {
  background: #fff;
}

.pricing-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.pricing-row {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 1px;
  border-bottom: 1px solid var(--line);
}

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

.pricing-row > * {
  padding: 18px;
}

.pricing-row.head {
  background: var(--blue-deep);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 900;
}

.pricing-row strong {
  color: var(--blue);
  font-size: 1.35rem;
}

.pricing-row small,
.fine-print {
  color: var(--muted);
}

.profile-layout {
  align-items: start;
}

.profile-panel {
  padding: 28px;
}

.profile-panel ul {
  grid-template-columns: repeat(2, 1fr);
}

.exhibition-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 28px;
}

.exhibition-note p {
  max-width: 840px;
  color: var(--muted);
}

.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

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

.event-partner-list article {
  min-height: 132px;
  padding: 22px;
  border: 1px solid rgba(0, 167, 215, 0.18);
  border-top: 4px solid var(--aqua);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(10, 47, 96, 0.08);
}

.event-partner-list span,
.event-partner-list strong {
  display: block;
}

.event-partner-list span {
  color: var(--aqua-deep);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.event-partner-list strong {
  margin-top: 12px;
  color: var(--blue-deep);
  font-size: 1.22rem;
  line-height: 1.3;
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.quote-card {
  display: grid;
  align-content: space-between;
  min-height: 320px;
  margin: 0;
  padding: 28px;
  border: 1px solid rgba(0, 167, 215, 0.18);
  border-top: 4px solid var(--aqua);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(10, 47, 96, 0.08);
}

.quote-card blockquote {
  margin: 0;
  color: var(--ink);
  font-size: 1.06rem;
  font-weight: 760;
  line-height: 1.62;
}

.quote-card figcaption {
  display: grid;
  gap: 6px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.quote-card strong {
  color: var(--blue-deep);
  line-height: 1.25;
}

.quote-card span {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 750;
  line-height: 1.45;
}

.testimonial-slider {
  width: 100%;
}

.testimonial-slider-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 18px;
}

.testimonial-slider-controls button {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--blue-deep);
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(12, 53, 101, 0.1);
}

.testimonial-slider-controls button:hover:not(:disabled) {
  border-color: var(--aqua);
  background: var(--soft);
}

.testimonial-slider-controls button:disabled {
  cursor: default;
  opacity: 0.4;
}

.testimonial-slider-controls svg {
  width: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.25;
}

.testimonial-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 4px 2px 24px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.testimonial-track::-webkit-scrollbar {
  display: none;
}

.testimonial-slide {
  flex: 0 0 calc((100% - 36px) / 3);
  min-width: 0;
  scroll-snap-align: start;
}

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

.partner-logo-group {
  display: grid;
  gap: 18px;
  align-content: start;
  min-height: 218px;
  padding: 22px;
  border: 1px solid rgba(0, 167, 215, 0.18);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(10, 47, 96, 0.08);
}

.partner-logo-group.is-wide {
  grid-column: span 2;
}

.partner-logo-group h3 {
  color: var(--blue-deep);
  font-size: 1.16rem;
}

.partner-logo-group > div {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
  gap: 12px;
}

.partner-logo-group img {
  width: 100%;
  aspect-ratio: 2.08;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  object-fit: contain;
}

.source-event-partners {
  padding: 78px var(--page-gutter);
  background: linear-gradient(120deg, #edf4fb, #f8fbff);
}

.source-event-partners > .section-heading,
.source-event-partners > .partner-slider {
  max-width: var(--content-width);
  margin-right: auto;
  margin-left: auto;
}

.source-event-partners > .section-heading {
  margin-bottom: 36px;
}

.source-event-partners h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.partner-slider-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 18px;
}

.partner-slider-controls button {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--blue-deep);
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(12, 53, 101, 0.1);
}

.partner-slider-controls button:hover:not(:disabled) {
  border-color: var(--aqua);
  background: var(--soft);
}

.partner-slider-controls button:disabled {
  cursor: default;
  opacity: 0.4;
}

.partner-slider-controls svg {
  width: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.25;
}

.partner-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 4px 2px 24px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.partner-track::-webkit-scrollbar {
  display: none;
}

.partner-card {
  display: grid;
  grid-template-rows: auto 150px 1fr;
  flex: 0 0 calc((100% - 54px) / 4);
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(12, 53, 101, 0.1);
  text-decoration: none;
  scroll-snap-align: start;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.partner-card:hover {
  border-color: rgba(0, 167, 215, 0.55);
  box-shadow: 0 18px 38px rgba(12, 53, 101, 0.16);
  transform: translateY(-3px);
}

.partner-logo-frame {
  display: grid;
  place-items: center;
  padding: 22px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.partner-logo-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.partner-card p {
  display: grid;
  place-items: center;
  min-height: 48px;
  margin: 0;
  padding: 9px 14px;
  background: linear-gradient(90deg, var(--blue-deep) 0 72%, var(--aqua-deep));
  color: #fff;
  font-size: 0.8rem;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
}

.partner-card h3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0;
  padding: 17px 18px 20px;
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.35;
}

.partner-card h3 span {
  color: var(--aqua-dark);
  font-size: 1rem;
  line-height: 1;
}

.supporting-organisations-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(237, 248, 253, 0.9)),
    #fff;
}

.supporting-organisations-section .section-heading {
  text-align: center;
}

.supporting-organisations-section h2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 8px clamp(28px, 5vw, 64px);
  border-radius: 999px;
  background: #b9e7ff;
  color: #07192b;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  line-height: 1.15;
  text-transform: uppercase;
}

.supporting-slider {
  margin-top: 22px;
}

.supporting-card {
  grid-template-rows: 150px;
  flex-basis: calc((100% - 72px) / 5);
  min-width: 170px;
}

.supporting-logo-frame {
  height: 150px;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(20, 83, 161, 0.12);
  background: #fff;
}

.supporting-logo-frame img {
  max-width: 100%;
  max-height: 104px;
}

.supporting-contact-panel {
  max-width: var(--content-width);
  margin: 34px auto 0;
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid rgba(0, 167, 215, 0.22);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(9, 47, 96, 0.98), rgba(20, 83, 161, 0.96) 58%, rgba(0, 109, 168, 0.92)),
    var(--blue-deep);
  box-shadow: 0 24px 60px rgba(12, 53, 101, 0.18);
}

.supporting-contact-panel > p {
  margin: 0 0 24px;
  color: #fff;
  font-size: clamp(1.18rem, 2vw, 1.5rem);
  font-weight: 850;
  line-height: 1.25;
  text-align: center;
}

.supporting-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.supporting-contact-grid article {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 10px;
  min-height: 212px;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(139, 220, 255, 0.24);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 34px rgba(4, 21, 42, 0.16);
}

.supporting-contact-grid article::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--aqua), var(--accent));
}

.supporting-contact-grid article + article {
  border-left: 1px solid rgba(139, 220, 255, 0.24);
}

.supporting-contact-kicker {
  width: fit-content;
  padding: 6px 10px;
  border: 1px solid rgba(0, 167, 215, 0.22);
  border-radius: 999px;
  background: rgba(0, 167, 215, 0.08);
  color: var(--aqua-deep);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
}

.supporting-contact-grid h3 {
  margin: 2px 0 0;
  color: var(--blue-deep);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.12;
}

.supporting-contact-grid strong {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 760;
  line-height: 1.35;
}

.supporting-contact-links {
  display: grid;
  gap: 8px;
  margin-top: 6px;
}

.supporting-contact-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  max-width: 100%;
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 760;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.supporting-contact-links span {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--blue-deep);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 950;
}

.sponsor-card {
  display: grid;
  align-content: space-between;
  min-height: 160px;
  padding: 16px;
}

.sponsor-card span {
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.sponsor-card img {
  width: 100%;
  height: 82px;
  object-fit: contain;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1.55;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  object-fit: contain;
}

.image-text-section {
  padding-top: clamp(72px, 8vw, 110px);
  padding-bottom: clamp(72px, 8vw, 110px);
  background:
    linear-gradient(180deg, rgba(239, 249, 253, 0.92), rgba(255, 255, 255, 0.98)),
    #fff;
}

.ipc-highlight-shell {
  overflow: hidden;
  max-width: var(--content-width);
  margin: 0 auto;
  border: 1px solid rgba(0, 167, 215, 0.18);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(10, 47, 96, 0.12);
}

.ipc-highlight-heading {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 4vw, 46px);
  background:
    linear-gradient(135deg, rgba(7, 43, 86, 0.98), rgba(20, 83, 161, 0.96) 58%, rgba(0, 167, 215, 0.92)),
    var(--blue-deep);
  color: #fff;
}

.ipc-highlight-heading::after {
  content: attr(data-year);
  position: absolute;
  right: clamp(18px, 4vw, 48px);
  bottom: -0.18em;
  color: rgba(255, 255, 255, 0.08);
  font-size: clamp(5rem, 13vw, 11rem);
  font-weight: 950;
  line-height: 0.8;
}

.ipc-highlight-heading .eyebrow {
  position: relative;
  z-index: 1;
  margin-bottom: 12px;
  color: var(--blue-ice);
}

.ipc-highlight-heading h2 {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.08;
}

.image-text-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  padding: clamp(20px, 3vw, 34px);
}

.image-text-card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 18px;
  align-content: start;
  min-height: 100%;
  padding: clamp(18px, 2.5vw, 28px);
  border: 1px solid rgba(0, 167, 215, 0.18);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(10, 47, 96, 0.08);
}

.image-text-card-theme {
  grid-column: 1 / -1;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 44px);
  align-items: center;
  padding: clamp(26px, 4vw, 46px);
  background:
    linear-gradient(135deg, rgba(242, 252, 248, 0.96), rgba(255, 255, 255, 1) 46%, rgba(239, 249, 253, 0.96)),
    #fff;
  text-align: left;
}

.net-zero-mark {
  width: 100%;
  padding: clamp(12px, 2vw, 18px);
  border: 1px solid rgba(0, 167, 215, 0.24);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(239, 249, 253, 0.96)),
    #fff;
  box-shadow: 0 18px 38px rgba(10, 47, 96, 0.12);
}

.net-zero-mark img {
  display: block;
  width: 100%;
  height: auto;
}

.image-text-media {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(20, 83, 161, 0.12);
  border-radius: 8px;
  background: #fff;
}

.image-text-media img {
  display: block;
  width: 100%;
  aspect-ratio: 0.82;
  object-fit: cover;
  object-position: center top;
}

.image-text-card-person {
  grid-template-columns: 128px minmax(0, 1fr);
  gap: clamp(18px, 2.4vw, 26px);
  align-items: center;
  border-top: 0;
  background:
    linear-gradient(135deg, rgba(239, 249, 253, 0.96), rgba(255, 255, 255, 0.98) 42%, rgba(255, 255, 255, 1)),
    #fff;
}

.image-text-card-person::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--aqua), var(--blue-deep));
}

.image-text-card-person .image-text-media {
  position: relative;
  width: 122px;
  height: 122px;
  justify-self: center;
  padding: 6px;
  border: 1px solid rgba(0, 167, 215, 0.28);
  border-radius: 50%;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, rgba(0, 167, 215, 0.65), rgba(20, 83, 161, 0.65)) border-box;
  box-shadow: 0 14px 30px rgba(10, 47, 96, 0.14);
}

.image-text-card-person .image-text-media img {
  height: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
}

.image-text-copy h3 {
  margin: 0 0 10px;
  color: var(--blue-deep);
  font-size: clamp(1.25rem, 1.8vw, 1.65rem);
  line-height: 1.14;
}

.image-text-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 720;
  line-height: 1.72;
}

.image-text-role {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 12px !important;
  padding: 7px 11px;
  border: 1px solid rgba(0, 167, 215, 0.2);
  border-radius: 999px;
  background: rgba(0, 167, 215, 0.08);
  color: var(--aqua-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.image-text-card-person .image-text-copy p:not(.image-text-role) {
  font-size: 0.96rem;
  line-height: 1.58;
}

.image-text-card-person .image-text-copy h3 {
  margin-bottom: 8px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

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

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

.testimonial-card {
  position: relative;
  overflow: hidden;
  margin: 0;
  min-height: 330px;
  padding: 34px;
  border-color: rgba(0, 167, 215, 0.18);
  border-top: 4px solid var(--aqua);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 249, 253, 0.98)),
    #fff;
  box-shadow: 0 18px 40px rgba(10, 47, 96, 0.1);
}

.testimonial-card::before {
  content: "“";
  position: absolute;
  top: 12px;
  left: 28px;
  color: rgba(0, 167, 215, 0.18);
  font-family: Georgia, serif;
  font-size: 7.5rem;
  line-height: 1;
}

.testimonial-card blockquote {
  position: relative;
  z-index: 1;
  margin: 58px 0 0;
  color: var(--ink);
  font-size: 1.18rem;
  font-weight: 760;
  line-height: 1.65;
}

.testimonial-card figcaption {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(20, 83, 161, 0.12);
}

.testimonial-slide figcaption {
  align-items: flex-start;
}

.testimonial-card img {
  width: 72px;
  height: 72px;
  flex: 0 0 72px;
  border: 4px solid #fff;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(10, 47, 96, 0.14);
}

.testimonial-card strong,
.testimonial-card small {
  display: block;
}

.testimonial-card strong {
  color: var(--blue-deep);
  font-size: 1.1rem;
  line-height: 1.25;
}

.testimonial-card small {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.45;
}

.ipc-quote-section {
  background:
    linear-gradient(135deg, rgba(237, 248, 253, 0.96), rgba(255, 255, 255, 0.98) 58%, rgba(219, 244, 241, 0.72)),
    #f7fcff;
}

.ipc-quote-section .section-heading {
  max-width: 980px;
}

.ipc-quote-track {
  overflow-x: auto;
  padding: 4px 2px 26px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.ipc-quote-track::-webkit-scrollbar {
  display: none;
}

.ipc-quote-card {
  position: relative;
  display: grid;
  align-content: space-between;
  flex: 0 0 calc((100% - 18px) / 2);
  min-height: 390px;
  margin: 0;
  padding: clamp(26px, 3vw, 38px);
  border: 1px solid rgba(0, 167, 215, 0.22);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(238, 250, 251, 0.98)),
    #fff;
  box-shadow: 0 18px 42px rgba(10, 47, 96, 0.12);
  scroll-snap-align: start;
}

.ipc-quote-card::before {
  content: "“";
  position: absolute;
  top: 10px;
  left: 24px;
  color: rgba(0, 167, 215, 0.2);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 7rem;
  line-height: 1;
}

.ipc-quote-card blockquote {
  position: relative;
  z-index: 1;
  margin: 38px 0 28px;
  color: var(--ink);
  font-size: clamp(1.08rem, 1.45vw, 1.32rem);
  font-weight: 760;
  line-height: 1.58;
}

.ipc-quote-card figcaption {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(20, 83, 161, 0.14);
}

.ipc-quote-card img {
  width: 86px;
  height: 86px;
  border: 5px solid #fff;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 12px 26px rgba(10, 47, 96, 0.16);
}

.ipc-quote-card strong,
.ipc-quote-card small {
  display: block;
}

.ipc-quote-card strong {
  color: var(--blue-deep);
  font-size: clamp(1.08rem, 1.5vw, 1.3rem);
  line-height: 1.18;
}

.ipc-quote-card small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 720;
  line-height: 1.42;
}

.support-section img {
  width: 100%;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  padding: 20px 24px;
}

summary {
  cursor: pointer;
  color: var(--blue-deep);
  font-weight: 900;
}

details p {
  margin: 12px 0 0;
  color: var(--muted);
}

.prefooter-cta {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(390px, 0.78fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
  margin-bottom: 0;
  padding: clamp(72px, 8vw, 112px) var(--page-gutter);
  background:
    linear-gradient(125deg, rgba(7, 31, 61, 0.98), rgba(9, 47, 96, 0.96) 48%, rgba(0, 109, 168, 0.93)),
    var(--blue-deep);
  color: #fff;
}

.prefooter-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(139, 220, 255, 0.12), transparent 34%);
  opacity: 0.32;
}

.prefooter-cta::after {
  content: "";
  position: absolute;
  right: var(--page-gutter);
  bottom: -96px;
  width: min(460px, 42vw);
  aspect-ratio: 1;
  border: 1px solid rgba(139, 220, 255, 0.24);
  border-radius: 50%;
  opacity: 0.5;
}

.prefooter-cta > * {
  position: relative;
  z-index: 1;
}

.prefooter-copy {
  max-width: 820px;
}

.prefooter-cta p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.16rem;
}

.contact-paths {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.contact-paths span {
  min-height: 118px;
  padding: 18px;
  border: 1px solid rgba(139, 220, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.45;
  backdrop-filter: blur(12px);
}

.contact-paths strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-size: 1.04rem;
  font-weight: 950;
}

.contact-actions {
  margin-top: 30px;
}

.contact-primary {
  background: #fff;
  color: var(--blue-deep);
  box-shadow: 0 16px 34px rgba(3, 20, 42, 0.2);
}

.contact-primary:hover {
  background: var(--blue-ice);
  color: var(--blue-deep);
}

.contact-cards article {
  padding: 24px;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: none;
}

.prefooter-cta .contact-cards {
  grid-template-columns: 1fr;
  gap: 16px;
}

.prefooter-cta .contact-card {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  padding: 30px;
  border-color: rgba(139, 220, 255, 0.24);
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  box-shadow: 0 24px 54px rgba(3, 20, 42, 0.22);
}

.prefooter-cta .contact-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: var(--aqua);
}

.prefooter-cta .contact-card-accent {
  margin-left: clamp(0px, 4vw, 52px);
  background: linear-gradient(135deg, #ffffff, #edfaff);
}

.contact-card-label {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0, 167, 215, 0.12);
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.prefooter-cta .contact-card h3 {
  color: var(--blue-deep);
}

.prefooter-cta .contact-card p {
  margin: 12px 0 18px;
  color: var(--muted);
  font-size: 1.02rem;
}

.contact-cards a {
  display: block;
  color: #fff;
  font-size: 1.04rem;
  font-weight: 800;
}

.prefooter-cta .contact-card a {
  width: fit-content;
  color: var(--blue);
}

.prefooter-cta .contact-card a + a {
  margin-top: 7px;
}

.site-footer {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(6, 27, 55, 0.98), rgba(9, 47, 96, 0.97) 52%, rgba(0, 109, 168, 0.92)),
    #071f3d;
  color: #dce9f5;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(139, 220, 255, 0.1), transparent 38%);
  opacity: 0.18;
}

.site-footer::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139, 220, 255, 0.55), transparent);
}

.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 1.02fr) minmax(260px, 0.78fr) minmax(300px, 0.9fr);
  gap: clamp(28px, 4vw, 64px);
  padding: clamp(58px, 7vw, 88px) var(--page-gutter) clamp(34px, 5vw, 58px);
}

.footer-about,
.footer-nav,
.footer-contact {
  min-height: 100%;
}

.footer-about {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-brand {
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  padding-bottom: 6px;
}

.footer-brand img:first-child {
  width: 82px;
}

.footer-brand img:last-child {
  width: 188px;
  padding: 10px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(3, 20, 42, 0.16);
}

.footer-about p {
  max-width: 520px;
  margin: 26px 0 0;
  color: rgba(238, 248, 253, 0.9);
  font-size: 1.05rem;
  line-height: 1.65;
}

.footer-grid h2 {
  margin: 0 0 20px;
  color: #fff;
  font-size: 1.16rem;
  text-transform: uppercase;
}

.footer-nav {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 4px 0 0;
}

.footer-link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 18px;
}

.footer-nav a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 5px 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.03rem;
  font-weight: 850;
  line-height: 1.25;
}

.footer-nav a::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-right: 2px solid var(--blue-ice);
  border-bottom: 2px solid var(--blue-ice);
  transform: rotate(-45deg);
}

.footer-nav a:hover {
  color: #fff;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.footer-grid a {
  color: #fff;
  font-weight: 800;
}

.footer-contact {
  padding: 4px 0 0;
  color: #dce9f5;
}

.footer-contact h2 {
  color: #fff;
}

.footer-contact p {
  max-width: 390px;
  margin: 12px 0 0;
  color: rgba(238, 248, 253, 0.88);
  font-size: 1rem;
  line-height: 1.62;
}

.footer-contact a {
  color: #fff;
}

.footer-connect {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  margin-top: 28px;
  padding: 12px 18px;
  border: 1px solid rgba(139, 220, 255, 0.45);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-weight: 900;
}

.footer-connect:hover {
  background: rgba(139, 220, 255, 0.16);
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.footer-social a {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(139, 220, 255, 0.32);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  line-height: 1;
}

.footer-social svg {
  width: 18px;
  height: 18px;
}

.footer-social a:hover {
  border-color: var(--blue-ice);
  background: var(--aqua-deep);
}

.footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px var(--page-gutter);
  border-top: 1px solid rgba(139, 220, 255, 0.18);
  background: rgba(3, 20, 42, 0.3);
  color: rgba(220, 233, 245, 0.84);
  font-size: 0.96rem;
}

.footer-policy {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-policy a {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
}

.footer-policy a:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 1180px) {
  .desktop-nav {
    display: none;
  }

  .mobile-toggle {
    display: block !important;
    margin-left: auto;
  }

  .mobile-nav:not([hidden]) {
    display: block;
  }

  .hero,
  .split,
  .theme-section,
  .simple-live-grid,
  .overview-panel,
  .overview-hero,
  .about-page-hero-inner,
  .about-page-overview-grid,
  .about-page-detail-panel,
  .ipa-closing-section,
  .prefooter-cta {
    grid-template-columns: 1fr;
  }

  .about-page-heading {
    position: static;
  }

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

  .prefooter-cta .contact-card-accent {
    margin-left: 0;
  }

  .home-story-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .home-story-card {
    min-height: 430px;
  }

  .home-banner-slide > img {
    width: 100%;
  }

  .home-banner-content {
    width: min(720px, 68%);
  }

  .home-event-card {
    flex-basis: calc((100% - 20px) / 2);
  }

  .event-panel {
    justify-self: start;
    margin-left: var(--page-gutter);
    margin-bottom: 130px;
  }

  .stats-band,
  .edition-grid,
  .ipa-highlight-grid,
  .event-editions-grid,
  .program-grid,
  .sponsor-grid,
  .event-partner-list,
  .partner-logo-grid,
  .quote-grid,
  .home-testimonial-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .partner-logo-group.is-wide {
    grid-column: span 1;
  }

  .partner-card {
    flex-basis: calc((100% - 18px) / 2);
  }

  .ipc-quote-card {
    flex-basis: min(82vw, 520px);
  }

  .testimonial-slide {
    flex-basis: calc((100% - 18px) / 2);
  }

  .takeaway-card-grid {
    grid-template-columns: 1fr;
  }

  .conference-copy-grid {
    grid-template-columns: 1fr;
  }

  .ipc-2024-highlights,
  .green-credit-panel,
  .ipc-2024-recognition-grid {
    grid-template-columns: 1fr;
  }

  .ipc-2024-side-title {
    display: block;
    font-size: clamp(2rem, 6vw, 3.4rem);
    line-height: 1;
    text-align: left;
    writing-mode: horizontal-tb;
    transform: none;
  }

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

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

  .conference-copy-grid article {
    min-height: auto;
  }

  .image-text-card-theme,
  .image-text-grid {
    grid-template-columns: 1fr;
  }

  .event-year-card {
    grid-template-columns: 1fr;
  }

  .event-year-card > img {
    min-height: 320px;
    aspect-ratio: 1.8;
  }

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

  .footer-nav {
    padding: 0;
  }

  .footer-nav a {
    display: inline-flex;
    min-width: 180px;
    margin-right: 8px;
  }

}

@media (max-width: 760px) {
  body {
    font-size: 17px;
    line-height: 1.68;
  }

  .about-page-hero {
    padding-top: 74px;
    padding-bottom: 74px;
  }

  .about-page-hero h1 {
    font-size: clamp(2.4rem, 14vw, 4rem);
  }

  .about-page-story,
  .about-page-detail-panel {
    padding: 20px;
  }

  .about-page-milestones article {
    padding: 16px 16px 16px 20px;
  }

  .top-strip {
    padding-top: 8px;
    padding-bottom: 8px;
    font-size: 0.78rem;
  }

  .top-strip-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .top-contact {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
    max-width: 100%;
  }

  .top-contact-link {
    gap: 6px;
    min-height: 22px;
    max-width: 100%;
  }

  .top-contact-link span {
    overflow-wrap: anywhere;
  }

  .top-contact-link svg {
    width: 15px;
    height: 15px;
  }

  .top-social {
    margin-left: 0;
  }

  .top-social a {
    width: 25px;
    height: 25px;
    font-size: 0.64rem;
  }

  .brand {
    gap: 8px;
  }

  .brand img:first-child {
    width: auto;
    height: 34px;
  }

  .brand img:last-child {
    width: 112px;
  }

  .brand-divider {
    height: 34px;
  }

  .nav-shell {
    align-items: center;
    flex-direction: row;
    position: relative;
    width: 100%;
    max-width: 100%;
  }

  .nav-shell .brand {
    flex: 1 1 auto;
    max-width: calc(100% - 58px);
    overflow: hidden;
    padding-right: 0;
  }

  .mobile-toggle {
    display: grid !important;
    place-items: center;
    position: fixed;
    top: 116px;
    right: var(--page-gutter);
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    margin-left: 10px;
    background: var(--blue) !important;
    color: #fff !important;
    z-index: 100;
    transform: none;
  }

  .mobile-registration-cta {
    position: fixed;
    top: 116px;
    right: auto;
    left: 250px;
    z-index: 101;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    width: 118px;
    padding: 10px 14px;
    border-radius: 7px;
    background: var(--blue);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 900;
    line-height: 1.2;
    box-shadow: 0 12px 26px rgba(20, 83, 161, 0.2);
  }

  @media (max-width: 380px) {
    .mobile-registration-cta {
      left: 210px;
      width: 108px;
      padding-right: 10px;
      padding-left: 10px;
      font-size: 0.82rem;
    }
  }

  .nav-cta {
    width: 100%;
  }

  .hero {
    min-height: auto;
  }

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

  .hero-media img:last-child {
    display: none;
  }

  .hero-content {
    width: 100%;
    max-width: 100vw;
    padding-top: 84px;
    padding-bottom: 34px;
  }

  .events-hero {
    min-height: auto;
  }

  .events-hero-content {
    padding-top: 84px;
    padding-bottom: 84px;
  }

  .events-hero p {
    font-size: 1.08rem;
  }

  .home-banner-slider {
    min-height: 620px;
  }

  .home-banner-slide > img {
    width: 100%;
    opacity: 0.56;
  }

  .home-banner-overlay {
    width: 100%;
    background: linear-gradient(180deg, rgba(7, 31, 61, 0.86), rgba(7, 31, 61, 0.72));
  }

  .home-banner-content {
    width: 100%;
    padding: 72px var(--page-gutter) 112px;
  }

  .home-banner-content h1,
  .home-banner-content h2 {
    max-width: 340px;
    font-size: 2.12rem;
  }

  .home-banner-description {
    max-width: 330px;
    font-size: 1.08rem;
  }

  .home-banner-arrow {
    display: none;
  }

  .home-banner-dots {
    bottom: 44px;
  }

  .home-events {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .home-events-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-event-card {
    flex-basis: min(86vw, 340px);
  }

  .partner-slider-controls {
    justify-content: flex-start;
  }

  .testimonial-slider-controls {
    justify-content: flex-start;
  }

  .partner-card {
    flex-basis: 100%;
  }

  .testimonial-slide {
    flex-basis: 100%;
  }

  .takeaway-card-head {
    align-items: flex-start;
  }

  .takeaway-list {
    grid-template-columns: 1fr;
  }

  .takeaway-list li {
    min-height: auto;
  }

  .hero-lede,
  .hero .eyebrow {
    width: min(100%, 300px);
    max-width: calc(100vw - (var(--page-gutter) * 2));
    overflow-wrap: normal;
    word-break: normal;
  }

  .hero-content h1 {
    max-width: 330px;
  }

  .ipc-event-hero .hero-content h1 {
    max-width: min(100%, 350px);
  }

  .ipc-event-hero .hero-lede {
    max-width: min(100%, 340px);
  }

  .ipc-event-hero .hero-actions {
    width: min(100%, 340px);
  }

  h1 {
    font-size: 2.2rem;
    line-height: 1.08;
  }

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

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

  .event-panel {
    justify-self: start;
    width: min(100%, calc(100vw - (var(--page-gutter) * 2)));
    max-width: none;
    margin: 0 var(--page-gutter) 34px;
  }

  .ipc-event-hero .event-panel {
    display: none;
  }

  .stats-band {
    grid-template-columns: 1fr;
    transform: none;
    padding-top: 20px;
  }

  .event-facts {
    margin-bottom: 0;
  }

  .event-facts div {
    min-height: auto;
  }

  .event-facts strong {
    font-size: 2rem;
  }

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

  .simple-live-copy,
  .simple-live-image {
    width: 100%;
    max-width: 100%;
  }

  .simple-live-copy h2,
  .simple-live-copy p,
  .quote-card blockquote,
  .quote-card strong {
    overflow-wrap: anywhere;
  }

  .section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .highlight-grid,
  .edition-grid,
  .ipa-highlight-grid,
  .event-editions-grid,
  .program-grid,
  .session-grid,
  .delegate-grid,
  .profile-layout,
  .home-testimonial-grid,
  .overview-list,
  .pillar-grid,
  .sponsor-grid,
  .event-partner-list,
  .partner-logo-grid,
  .supporting-contact-grid,
  .quote-grid,
  .gallery-grid,
  .testimonial-grid,
  .contact-cards,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .image-text-grid,
  .image-text-card-person {
    grid-template-columns: 1fr;
  }

  .ipc-highlight-shell {
    border-radius: 10px;
  }

  .ipc-highlight-heading {
    padding: 24px;
  }

  .ipc-highlight-heading::after {
    right: 12px;
    font-size: 5.5rem;
  }

  .image-text-grid {
    padding: 16px;
  }

  .image-text-card-theme {
    padding: 20px;
    text-align: center;
  }

  .image-text-card-person {
    justify-items: center;
    text-align: center;
  }

  .image-text-role {
    margin-right: auto;
    margin-left: auto;
  }

  .supporting-contact-grid article + article {
    border-top: 1px solid rgba(139, 220, 255, 0.24);
    border-left: 1px solid rgba(139, 220, 255, 0.24);
  }

  .ipc-quote-card {
    min-height: auto;
  }

  .ipc-quote-card figcaption {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .ipc-quote-card img {
    width: 72px;
    height: 72px;
  }

  .home-story-card {
    min-height: 390px;
  }

  .home-profile-layout .profile-panel ul {
    grid-template-columns: 1fr;
  }

  .ipa-closing-points {
    grid-template-columns: repeat(2, 1fr);
  }

  .ipa-closing-logo {
    justify-self: start;
    width: min(100%, 260px);
  }

  .ipa-closing-logo img {
    max-height: 220px;
  }

  .overview-pillar-grid {
    grid-template-columns: 1fr;
  }

  .overview-pillar {
    min-height: auto;
  }

  .prefooter-cta::after {
    width: 280px;
    right: -100px;
  }

  .contact-paths {
    grid-template-columns: 1fr;
  }

  .contact-paths span {
    min-height: auto;
  }

  .prefooter-cta .contact-card {
    min-height: auto;
    padding: 24px;
  }

  .profile-panel ul {
    grid-template-columns: 1fr;
  }

  .pricing-table {
    overflow-x: auto;
  }

  .ipc-2024-detail-block {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .ipc-2024-highlight-pill {
    min-height: auto;
    border-radius: 8px;
  }

  .ipc-2024-highlight-stack {
    grid-template-columns: 1fr;
  }

  .green-credit-visual {
    min-height: 210px;
  }

  .ipc-recognition-card {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .ipc-recognition-card img {
    max-width: 240px;
  }

  .delegate-orbit-grid,
  .profile-chevron-grid,
  .exhibitor-grid {
    grid-template-columns: 1fr;
  }

  .delegate-orbit {
    width: min(100%, 280px);
    margin: 0 auto;
  }

  .profile-chevron,
  .exhibitor-grid article {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .profile-chevron span {
    width: 72px;
    height: 72px;
  }

  .profile-chevron strong,
  .exhibitor-grid strong {
    min-height: 66px;
    font-size: 0.95rem;
  }

  .exhibitor-grid span {
    width: 78px;
    min-height: 78px;
  }

  .registration-panel {
    border-radius: 18px;
  }

  .registration-table {
    min-width: 0;
  }

  .registration-head {
    display: none;
  }

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

  .registration-row + .registration-row {
    border-top: 1px solid #2454a5;
  }

  .registration-row div {
    display: grid;
    gap: 4px;
    align-content: center;
    min-height: 58px;
    border-left: 0;
    border-top: 1px solid #9fc5ef;
    font-size: 0.95rem;
  }

  .registration-row div:first-child {
    grid-column: 1 / -1;
    border-top: 0;
    background: #f7fbff;
    font-weight: 950;
    text-align: center;
  }

  .registration-row div:nth-child(2)::before,
  .registration-row div:nth-child(3)::before {
    color: var(--blue);
    font-size: 0.7rem;
    font-weight: 950;
    line-height: 1.15;
    text-transform: uppercase;
  }

  .registration-row div:nth-child(2)::before {
    content: "IPA / Supporting";
  }

  .registration-row div:nth-child(3)::before {
    content: "Non Members";
  }

  .ipc-ribbon-heading h2 {
    max-width: calc(100vw - (var(--page-gutter) * 2) - 34px);
    padding-right: 16px;
    padding-left: 16px;
    font-size: 1.08rem;
  }

  .ipc-2024-exhibition-highlights {
    border-radius: 22px;
  }

  .ipc-2024-highlights,
  .ipc-2024-green-card,
  .ipc-2024-recognition-grid,
  .ipc-2024-orbit-section,
  .ipc-2024-profile-section,
  .ipc-2024-registration,
  .ipc-2024-exhibitors,
  .ipc-2024-exhibition-highlights {
    padding: 18px;
    border-radius: 8px;
  }

  .ipc-2024-side-title,
  .ipc-ribbon-heading h2 {
    max-width: 100%;
    padding-left: 12px;
    font-size: clamp(1.5rem, 7vw, 2rem);
  }

  .ipc-2024-highlight-pill,
  .ipc-recognition-card,
  .delegate-orbit,
  .profile-chevron,
  .exhibitor-grid article,
  .ipc-2024-exhibition-highlights li {
    transform: none;
  }

  .green-credit-panel {
    gap: 0;
  }

  .green-credit-visual {
    min-height: 180px;
    padding: 20px;
  }

  .green-credit-panel ul,
  .registration-panel ol {
    padding: 18px;
  }

  .ipc-recognition-card {
    min-height: auto;
    padding: 18px;
  }

  .delegate-orbit {
    width: 100%;
    min-height: auto;
  }

  .profile-chevron,
  .exhibitor-grid article {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
  }

  .profile-chevron span,
  .exhibitor-grid span {
    width: 42px;
    height: 42px;
    min-height: 42px;
  }

  .profile-chevron svg,
  .exhibitor-grid svg {
    width: 23px;
    height: 23px;
  }

  .profile-chevron strong,
  .exhibitor-grid strong {
    min-height: auto;
    font-size: 0.94rem;
  }

  .registration-row + .registration-row,
  .registration-row div {
    border-color: var(--line);
  }

  .ipc-2024-exhibition-highlights ul {
    grid-template-columns: 1fr;
  }

  .pricing-row {
    min-width: 720px;
  }

  .footer-about,
  .footer-contact {
    padding: 0;
  }

  .footer-brand img:first-child {
    width: 62px;
  }

  .footer-brand img:last-child {
    width: 154px;
  }

  .footer-nav {
    display: grid;
  }

  .footer-nav h2 {
    margin-bottom: 8px;
  }

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

  .footer-nav a {
    min-width: 0;
    margin: 0;
    background: transparent;
  }

  .exhibition-note,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-policy {
    gap: 12px 18px;
  }

  .event-year-card > img {
    min-height: 240px;
  }

  .event-year-card > div > span {
    min-width: 72px;
    min-height: 72px;
    font-size: 1.55rem;
  }

  .ipc-2024-highlight-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .ipc-2024-highlight-head .ipc-2024-side-title {
    font-size: 1.55rem;
    line-height: 1.12;
  }

  .ipc-2024-highlight-controls button {
    width: 42px;
    height: 42px;
  }

  .ipc-2024-highlight-slider {
    margin-right: -18px;
  }

  .ipc-2024-highlight-slider .ipc-2024-highlight-stack {
    padding-right: 18px;
  }

  .ipc-2024-highlight-slider .ipc-2024-highlight-pill,
  .ipc-2024-highlight-slider .ipc-2024-highlight-pill.tone-1,
  .ipc-2024-highlight-slider .ipc-2024-highlight-pill.tone-2,
  .ipc-2024-highlight-slider .ipc-2024-highlight-pill.tone-3,
  .ipc-2024-highlight-slider .ipc-2024-highlight-pill.tone-4,
  .ipc-2024-highlight-slider .ipc-2024-highlight-pill.tone-5,
  .ipc-2024-highlight-slider .ipc-2024-highlight-pill.tone-6 {
    flex-basis: min(82vw, 320px);
    min-height: 260px;
    padding: 18px;
  }

  .visitor-profile-head {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .visitor-profile-head h2 {
    font-size: clamp(1.6rem, 8vw, 2.1rem);
  }

  .visitor-profile-head p:not(.eyebrow) {
    font-size: 0.98rem;
  }

  .visitor-profile-head > strong {
    justify-items: start;
    min-height: auto;
    padding: 18px;
    font-size: 2.2rem;
  }

  .visitor-profile-head > strong span {
    text-align: left;
  }

  .ipc-2024-profile-section .profile-chevron-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .ipc-2024-profile-section .profile-chevron {
    grid-template-columns: 46px minmax(0, 1fr);
    min-height: 88px;
    padding: 14px 14px 14px 16px;
  }

  .ipc-2024-profile-section .profile-chevron span {
    width: 46px;
    height: 46px;
  }

  .ipc-2024-profile-section .profile-chevron svg {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 980px) {
  .ipc-2025-live-banner-grid,
  .ipc-2025-live-split,
  .ipc-2025-live-reason-shell,
  .ipc-2025-live-highlight-shell,
  .ipc-2025-live-feature-grid article,
  .ipc-2025-live-session-grid,
  .ipc-2025-live-two-column,
  .ipc-2025-live-contact-panel {
    grid-template-columns: 1fr;
  }

  .ipc-2025-live-reason-shell .section-heading,
  .ipc-2025-live-highlight-shell .section-heading {
    position: static;
  }

  .ipc-2025-live-highlight-river article,
  .ipc-2025-live-theme-card > ul {
    grid-template-columns: 1fr;
  }

  .ipc-2025-live-stats,
  .ipc-2025-live-highlight-grid,
  .ipc-2025-live-exhibition-list,
  .ipc-2025-live-partner-grid,
  .ipc-2025-live-testimonials .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ipc-2025-live-gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ipc-2025-copy-block,
  .ipc-2025-exhibitors {
    grid-template-columns: 1fr;
  }

  .ipc-2025-copy-block .section-heading.centered,
  .ipc-2025-exhibitor-head {
    position: static;
  }

  .ipc-2025-exhibitors .exhibitor-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ipc-2025-partners .event-partner-list,
  .ipc-2025-supporting-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .ipc-2025-live-stats,
  .ipc-2025-live-highlight-grid,
  .ipc-2025-live-exhibition-list,
  .ipc-2025-live-partner-grid,
  .ipc-2025-live-contact-grid,
  .ipc-2025-live-testimonials .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .ipc-2025-live-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ipc-2025-live-theme-copy h2 {
    font-size: clamp(1.9rem, 11vw, 3rem);
  }

  .ipc-2025-live-overview-hero,
  .ipc-2025-live-reason-grid article,
  .ipc-2025-live-highlight-river article {
    padding-right: 18px;
    padding-left: 24px;
  }

  .ipc-2025-live-overview-hero {
    padding-right: 0;
    padding-left: 0;
  }

  .ipc-2025-live-overview .overview-copy h2,
  .ipc-2025-live-why h2,
  .ipc-2025-live-highlights h2,
  .ipc-2025-live-testimonials h2,
  .ipc-2025-live-supporting h2,
  .ipc-2025-live-contact h2,
  .ipc-2025-live-faq h2 {
    max-width: 100%;
    font-size: clamp(1.72rem, 8.6vw, 2.35rem);
    overflow-wrap: anywhere;
  }

  .ipc-2025-live-why h2 {
    max-width: 10.5ch;
  }

  .ipc-2025-live-partner-card,
  .ipc-2025-live-testimonials .testimonial-slide {
    flex-basis: min(82vw, 320px);
  }

  .ipc-2025-live-contact-panel {
    padding: 24px 18px;
  }

  .ipc-2025-copy-block {
    border-radius: 8px;
  }

  .ipc-2025-overview .simple-live-copy h2,
  .ipc-2025-copy-block .section-heading.centered h2,
  .ipc-2025-exhibitor-head h2 {
    font-size: clamp(1.72rem, 9vw, 2.35rem);
  }

  .ipc-2025-overview-facts,
  .ipc-2025-exhibitors .exhibitor-grid {
    grid-template-columns: 1fr;
  }

  .ipc-2025-text-flow {
    padding-right: var(--page-gutter);
    padding-left: var(--page-gutter);
  }

  .ipc-2025-copy-block,
  .ipc-2025-exhibitors {
    gap: 22px;
  }

  .ipc-2025-copy-block {
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .ipc-2025-copy-block:first-child {
    padding-top: 0;
  }

  .ipc-2025-exhibitors .exhibitor-grid article {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .ipc-2025-session {
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .ipc-2025-session::before {
    top: 34px;
    width: 42px;
  }

  .ipc-2025-session-body {
    padding-left: 0;
    padding-top: 18px;
  }

  .ipc-2025-session h3 {
    font-size: clamp(1.22rem, 7vw, 1.58rem);
  }

  .ipc-2025-speaker-card {
    min-height: 0;
  }

  .ipc-2025-speaker-card figcaption {
    align-items: flex-start;
    gap: 14px;
  }

  .ipc-2025-speaker-card img {
    width: 74px;
    height: 74px;
    flex-basis: 74px;
  }

  .ipc-2025-session ul,
  .ipc-2025-partners .event-partner-list,
  .ipc-2025-supporting-grid {
    grid-template-columns: 1fr;
  }

  .ipc-2025-session li,
  .ipc-2025-supporting-grid article {
    min-height: auto;
  }

  .ipc-2025-web-links {
    align-items: stretch;
    flex-direction: column;
  }

  .ipc-2025-web-links span {
    justify-content: center;
  }
}

/* ========================================
   REDESIGNED SECTION STYLES (IPC 2025)
   ======================================== */

/* Conference Highlights Grid */
.ipc-2025-highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.highlight-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 16px;
  min-height: 220px;
  padding: 24px;
  border: 1px solid rgba(0, 167, 215, 0.18);
  border-top: 4px solid var(--aqua);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(10, 47, 96, 0.08);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.highlight-card:hover {
  border-color: rgba(0, 167, 215, 0.38);
  box-shadow: 0 12px 28px rgba(10, 47, 96, 0.12);
  transform: translateY(-2px);
}

.highlight-card-1 {
  border-top-color: var(--blue);
}

.highlight-card-2 {
  border-top-color: var(--accent);
}

.highlight-card-3 {
  border-top-color: var(--aqua-deep);
}

.highlight-card-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--blue), var(--aqua-deep));
  color: #fff;
  font-size: 0.9rem;
  font-weight: 950;
  line-height: 1;
}

.highlight-card-content h3 {
  margin: 0 0 8px;
  color: var(--blue-deep);
  font-size: 1.15rem;
  line-height: 1.3;
}

.highlight-card-content p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 720;
  line-height: 1.6;
}

/* Theme Section (Sustainable Smart Water Management) */
.ipc-2025-theme-container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.52fr);
  gap: clamp(26px, 4vw, 48px);
  align-items: start;
}

.ipc-2025-live-split .ipc-2025-theme-container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.52fr);
  gap: clamp(26px, 4vw, 48px);
  margin: 0;
  padding: 0;
}

.ipc-2025-theme-content {
  display: grid;
  gap: clamp(20px, 3vw, 34px);
  min-width: 0;
}

.theme-header {
  display: grid;
  gap: 10px;
  max-width: 860px;
}

.theme-header .eyebrow {
  margin: 0;
  color: var(--aqua-deep);
}

.theme-header h2 {
  margin: 0;
  color: var(--blue-deep);
  font-size: clamp(2rem, 3.8vw, 4rem);
  line-height: 1.04;
  text-transform: none;
}

.theme-copy-panel {
  display: grid;
  gap: 14px;
  max-width: 820px;
  padding: clamp(22px, 3vw, 28px);
  border: 1px solid rgba(0, 167, 215, 0.24);
  border-top: 4px solid var(--aqua);
  border-radius: 8px;
  background: linear-gradient(145deg, #fff, rgba(238, 248, 255, 0.96));
  box-shadow: var(--shadow);
}

.theme-intro {
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 720;
  line-height: 1.68;
}

.theme-subheading {
  max-width: 760px;
  color: var(--blue);
}

.theme-subheading h3 {
  margin: 0;
  font-size: clamp(1.14rem, 1.55vw, 1.38rem);
  font-weight: 950;
  line-height: 1.28;
}

.theme-topics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.theme-topics li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 13px;
  align-items: start;
  min-height: 104px;
  padding: 18px;
  border: 1px solid rgba(0, 167, 215, 0.18);
  border-top: 4px solid var(--aqua);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 38px rgba(10, 47, 96, 0.1);
  color: var(--ink);
  font-size: 1rem;
  font-weight: 750;
  line-height: 1.42;
}

.topic-icon {
  display: inline-flex;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--blue);
  color: #fff;
  font-size: 0.86rem;
  font-weight: 950;
  line-height: 1;
}

.theme-image-container {
  position: relative;
  display: block;
  aspect-ratio: auto;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(0, 167, 215, 0.18);
  border-radius: 8px;
  background: var(--blue-deep);
  box-shadow: 0 14px 34px rgba(10, 47, 96, 0.08);
}

.theme-image-container img {
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: cover;
}

.theme-image-container figcaption {
  position: absolute;
  inset: auto 14px 14px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 52px;
  padding: 10px 12px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--blue), var(--aqua-deep));
  color: #fff;
  box-shadow: 0 14px 28px rgba(20, 83, 161, 0.22);
}

.theme-image-container figcaption span {
  color: var(--blue-ice);
  font-size: 0.76rem;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.theme-image-container figcaption strong {
  max-width: 18rem;
  font-size: 0.92rem;
  line-height: 1.28;
}

/* Why Attend Section */
.ipc-2025-reasons-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.reason-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  min-height: 140px;
  padding: 24px;
  border: 1px solid rgba(0, 167, 215, 0.18);
  border-top: 4px solid var(--aqua);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(10, 47, 96, 0.08);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.reason-card:hover {
  border-color: rgba(0, 167, 215, 0.38);
  box-shadow: 0 12px 28px rgba(10, 47, 96, 0.12);
  transform: translateY(-2px);
}

.reason-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--blue), var(--aqua-deep));
  color: #fff;
  font-size: 0.9rem;
  font-weight: 950;
  line-height: 1;
  flex: 0 0 auto;
}

.reason-card h3 {
  margin: 0 0 6px;
  color: var(--blue-deep);
  font-size: 1.12rem;
  line-height: 1.25;
}

.reason-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 720;
  line-height: 1.55;
}

/* Contact Section */
.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.contact-card {
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 1px solid rgba(0, 167, 215, 0.18);
  border-top: 4px solid var(--aqua);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(10, 47, 96, 0.08);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.contact-card:hover {
  border-color: rgba(0, 167, 215, 0.38);
  box-shadow: 0 12px 28px rgba(10, 47, 96, 0.12);
  transform: translateY(-2px);
}

.contact-card-header {
  display: grid;
  gap: 4px;
}

.contact-card-header strong {
  color: var(--blue-deep);
  font-size: 1.15rem;
  line-height: 1.3;
}

.contact-role {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.contact-card-body {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 8px 14px;
  border: 1px solid rgba(0, 167, 215, 0.2);
  border-radius: 6px;
  background: #f8fbfd;
  color: var(--blue-deep);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease;
}

.contact-link:hover {
  background: rgba(0, 167, 215, 0.1);
  border-color: rgba(0, 167, 215, 0.3);
}

.contact-link svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.email-link::before {
  content: "✉";
  color: var(--aqua);
  font-weight: 900;
}

.phone-link::before {
  content: "☎";
  color: var(--aqua);
  font-weight: 900;
}

/* FAQ Section */
.faq-section-wrapper {
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid rgba(0, 167, 215, 0.18);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(10, 47, 96, 0.08);
}

.ipc-2025-faq-accordion {
  display: grid;
  gap: 10px;
}

.faq-item {
  border: 1px solid rgba(0, 167, 215, 0.12);
  border-radius: 6px;
  background: #f8fbfd;
  overflow: hidden;
}

.faq-item[open] {
  border-color: rgba(0, 167, 215, 0.28);
  background: #fff;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  min-height: 60px;
  padding: 16px 20px;
  border: 0;
  background: transparent;
  color: var(--blue-deep);
  font-size: 1.05rem;
  font-weight: 850;
  cursor: pointer;
  text-align: left;
  line-height: 1.35;
}

.faq-question svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  transition: transform 200ms ease;
}

.faq-item[open] .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 20px 20px;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 720;
  line-height: 1.7;
}

/* Overview Section Enhanced Styling */
.overview-highlight {
  display: grid;
  gap: 10px;
  padding: 24px;
  border: 1px solid rgba(0, 167, 215, 0.18);
  border-top: 4px solid var(--aqua);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(10, 47, 96, 0.08);
}

.highlight-item {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0, 167, 215, 0.1);
}

.highlight-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.overview-highlight strong {
  color: var(--blue-deep);
  font-size: 1.35rem;
  line-height: 1.15;
  flex: 0 0 auto;
}

.overview-highlight span {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 750;
  line-height: 1.45;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
  .ipc-2025-theme-container {
    grid-template-columns: 1fr;
  }

  .ipc-2025-live-split .ipc-2025-theme-container {
    grid-template-columns: 1fr;
  }

  .theme-image-container img {
    width: 100%;
    min-height: 0;
    max-height: none;
  }

  .contact-cards-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .ipc-2025-theme-container,
  .ipc-2025-live-split .ipc-2025-theme-container {
    padding: 0;
  }

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

  .theme-topics li {
    min-height: 0;
  }

  .theme-copy-panel {
    padding: 20px;
  }

  .theme-image-container img {
    min-height: 0;
  }

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

  .ipc-2025-reasons-grid {
    grid-template-columns: 1fr;
  }
}

/* Contact Page */
.contact-page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(88px, 11vw, 140px) var(--page-gutter);
  background:
    linear-gradient(125deg, rgba(7, 31, 61, 0.98), rgba(9, 47, 96, 0.94) 48%, rgba(0, 109, 168, 0.9)),
    var(--blue-deep);
  color: #fff;
}

.contact-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(139, 220, 255, 0.14), transparent 38%),
    repeating-linear-gradient(135deg, rgba(139, 220, 255, 0.08) 0 1px, transparent 1px 22px);
  opacity: 0.44;
  pointer-events: none;
}

.contact-page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--content-width);
  margin: 0 auto;
}

.contact-page-hero-copy {
  max-width: 820px;
  min-width: 0;
}

.contact-page-hero .eyebrow {
  color: var(--blue-ice);
}

.contact-page-hero h1 {
  max-width: 820px;
  margin: 0;
  color: #fff;
  font-size: clamp(3rem, 6vw, 6.2rem);
  line-height: 0.98;
}

.contact-page-hero p:last-child {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.08rem, 1.45vw, 1.28rem);
  font-weight: 700;
}

.contact-page-content {
  padding-top: clamp(56px, 7vw, 96px);
  padding-bottom: clamp(56px, 7vw, 96px);
  background:
    linear-gradient(180deg, #ffffff 0%, rgba(247, 252, 255, 0.96) 100%),
    #fff;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.38fr) minmax(0, 1fr);
  gap: clamp(22px, 3vw, 36px);
  align-items: start;
}

.contact-office-panel,
.contact-team-panel {
  border: 1px solid rgba(0, 167, 215, 0.18);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(10, 47, 96, 0.08);
}

.contact-office-panel {
  display: grid;
  align-content: start;
  gap: 18px;
  min-width: 0;
  margin: 0;
  padding: clamp(26px, 4vw, 42px);
  border-top: 5px solid var(--aqua);
  font-style: normal;
}

.contact-office-panel h2,
.contact-team-heading h2 {
  margin: 0;
  color: var(--blue-deep);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.08;
}

.contact-office-panel > p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 760;
  line-height: 1.6;
}

.contact-office-actions,
.contact-person-links {
  display: grid;
  gap: 12px;
}

.contact-office-actions a,
.contact-person-links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  width: fit-content;
  max-width: 100%;
  padding: 10px 14px;
  border: 1px solid rgba(0, 167, 215, 0.2);
  border-radius: 7px;
  background: #f8fbfd;
  color: var(--blue-deep);
  font-size: 0.98rem;
  font-weight: 850;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.contact-office-actions span,
.contact-person-links a {
  min-width: 0;
}

.contact-office-actions a:hover,
.contact-person-links a:hover {
  border-color: rgba(0, 167, 215, 0.34);
  background: rgba(0, 167, 215, 0.1);
}

.contact-office-actions svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.contact-team-panel {
  min-width: 0;
  padding: clamp(26px, 4vw, 42px);
  border-left: 5px solid var(--aqua);
}

.contact-team-heading {
  display: grid;
  gap: 8px;
  margin-bottom: 24px;
}

.contact-person-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.contact-person-card {
  display: grid;
  gap: 12px;
  min-width: 0;
  min-height: 100%;
  padding: 22px;
  border: 1px solid rgba(0, 167, 215, 0.18);
  border-radius: 8px;
  background: #fff;
}

.contact-person-card h3 {
  margin: 0 0 4px;
  color: var(--blue-deep);
  font-size: 1.3rem;
  line-height: 1.22;
}

.contact-person-card p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 850;
  line-height: 1.4;
  text-transform: uppercase;
}

.contact-page-cta {
  margin-top: 0;
}

@media (max-width: 980px) {
  .contact-page-grid,
  .contact-person-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .contact-page-hero {
    padding-top: 76px;
    padding-bottom: 86px;
  }

  .contact-page-hero-inner,
  .contact-page-grid {
    width: 100%;
    max-width: 100%;
  }

  .contact-page-hero h1 {
    width: min(100%, 330px);
    max-width: 330px;
    font-size: clamp(2.45rem, 13vw, 3.15rem);
    overflow-wrap: break-word;
  }

  .contact-page-hero p:last-child {
    max-width: 330px;
  }

  .contact-office-panel,
  .contact-team-panel,
  .contact-person-card {
    width: 100%;
    max-width: 100%;
  }

  .contact-office-panel h2,
  .contact-team-heading h2 {
    max-width: 300px;
    font-size: clamp(1.75rem, 9vw, 2.25rem);
  }

  .contact-office-panel > p:not(.eyebrow),
  .contact-person-card p {
    max-width: 300px;
  }

  .contact-office-actions a,
  .contact-person-links a {
    width: 100%;
  }
}

/* Delegate Registration */
.registration-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(88px, 11vw, 138px) var(--page-gutter);
  background:
    linear-gradient(125deg, rgba(7, 31, 61, 0.98), rgba(9, 47, 96, 0.94) 48%, rgba(0, 109, 168, 0.9)),
    var(--blue-deep);
  color: #fff;
}

.registration-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(139, 220, 255, 0.14), transparent 38%),
    repeating-linear-gradient(135deg, rgba(139, 220, 255, 0.08) 0 1px, transparent 1px 22px);
  opacity: 0.44;
  pointer-events: none;
}

.registration-hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--content-width);
  margin: 0 auto;
}

.registration-hero .eyebrow {
  color: var(--blue-ice);
}

.registration-hero h1 {
  max-width: 900px;
  margin: 0;
  color: #fff;
  font-size: clamp(3rem, 6vw, 6.2rem);
  line-height: 0.98;
}

.registration-section {
  padding-top: clamp(56px, 7vw, 96px);
  padding-bottom: clamp(56px, 7vw, 96px);
}

.registration-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.32fr);
  gap: clamp(22px, 3vw, 36px);
  align-items: start;
}

.registration-main {
  display: grid;
  gap: 22px;
}

.registration-card,
.summary-card {
  border: 1px solid rgba(0, 167, 215, 0.18);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(10, 47, 96, 0.08);
}

.registration-card {
  display: grid;
  gap: 22px;
  padding: clamp(24px, 4vw, 38px);
  border-left: 5px solid var(--aqua);
}

.registration-card-heading {
  display: grid;
  gap: 6px;
}

.registration-card-heading span {
  color: var(--aqua-deep);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.registration-card-heading h2 {
  margin: 0;
  color: var(--blue-deep);
  font-size: clamp(1.65rem, 2.6vw, 2.45rem);
  line-height: 1.08;
}

.registration-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.registration-form label,
.choice-group {
  min-width: 0;
}

.registration-form label:not(.declaration-check),
.full-field {
  display: grid;
  gap: 8px;
}

.registration-form label > span,
.choice-group legend {
  color: var(--blue-deep);
  font-size: 0.96rem;
  font-weight: 900;
  line-height: 1.25;
}

.registration-form input,
.registration-form select,
.registration-form textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #f8fbfd;
  color: var(--ink);
  font: inherit;
  font-size: 1rem;
  line-height: 1.35;
  padding: 12px 14px;
}

.registration-form textarea {
  resize: vertical;
}

.registration-form input:focus,
.registration-form select:focus,
.registration-form textarea:focus {
  border-color: var(--aqua);
  outline: 3px solid rgba(0, 167, 215, 0.18);
  background: #fff;
}

.registration-form [aria-invalid="true"] {
  border-color: #b42318;
  outline-color: rgba(180, 35, 24, 0.15);
}

.field-error {
  min-height: 1.25em;
  color: #b42318;
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1.35;
}

.choice-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
  padding: 0;
  border: 0;
}

.choice-group legend {
  flex: 0 0 100%;
  margin-bottom: 2px;
}

.choice-group label,
.declaration-check {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 10px 13px;
  border: 1px solid rgba(0, 167, 215, 0.18);
  border-radius: 7px;
  background: #f8fbfd;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.35;
}

.choice-group input,
.declaration-check input {
  width: 18px;
  min-height: 18px;
  height: 18px;
  padding: 0;
  accent-color: var(--blue);
}

.conditional-field,
.billing-fields {
  display: grid;
  gap: 18px;
}

.conditional-field[hidden],
.billing-fields[hidden],
.form-message[hidden] {
  display: none;
}

.declaration-card {
  border-left-color: var(--accent);
}

.declaration-check {
  align-items: flex-start;
  padding: 16px;
}

.declaration-check span {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 850;
}

.registration-summary {
  position: sticky;
  top: 128px;
  display: grid;
  gap: 16px;
}

.summary-card {
  display: grid;
  gap: 8px;
  padding: 26px;
  border-top: 5px solid var(--aqua);
}

.summary-card span {
  color: var(--aqua-deep);
  font-size: 0.84rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.summary-card strong {
  color: var(--blue-deep);
  font-size: clamp(2.1rem, 4vw, 3rem);
  line-height: 1;
}

.summary-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 850;
}

.registration-submit {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.registration-submit:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-message {
  min-height: 48px;
  padding: 12px 14px;
  border-radius: 7px;
  background: rgba(0, 167, 215, 0.1);
  color: var(--blue-deep);
  font-size: 0.94rem;
  font-weight: 850;
  line-height: 1.35;
}

@media (max-width: 980px) {
  .registration-layout {
    grid-template-columns: 1fr;
  }

  .registration-summary {
    position: static;
  }
}

@media (max-width: 760px) {
  .registration-hero {
    padding-top: 76px;
    padding-bottom: 86px;
  }

  .registration-hero h1 {
    width: min(100%, 340px);
    max-width: 340px;
    font-size: clamp(2.45rem, 13vw, 3.15rem);
    overflow-wrap: break-word;
  }

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

  .registration-card,
  .summary-card {
    width: 100%;
    max-width: 100%;
  }

  .registration-card-heading h2 {
    max-width: 310px;
    font-size: clamp(1.65rem, 8vw, 2.15rem);
  }

  .choice-group {
    display: grid;
    grid-template-columns: 1fr;
  }

  .choice-group label {
    width: 100%;
  }
}
