@font-face {
  font-family: "Satoshi";
  src: url("roots/satoshi/fonts/web/fonts/Satoshi-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Satoshi";
  src: url("roots/satoshi/fonts/web/fonts/Satoshi-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Satoshi";
  src: url("roots/satoshi/fonts/web/fonts/Satoshi-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #f3f4f5;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-solid: #ffffff;
  --surface-soft: #f7f8f9;
  --surface-strong: #eef2f4;
  --text: #173f50;
  --text-strong: #0a546d;
  --text-soft: #456c7b;
  --line: rgba(20, 76, 95, 0.08);
  --line-strong: rgba(20, 76, 95, 0.14);
  --shadow-sm: 0 8px 22px rgba(10, 55, 73, 0.05);
  --shadow-md: 0 18px 44px rgba(10, 55, 73, 0.08);
  --shadow-lg: 0 26px 70px rgba(10, 55, 73, 0.12);
  --radius-2xl: 28px;
  --radius-xl: 22px;
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 10px;
  --container: 1280px;
  --blue: #11a2e8;
  --blue-dark: #065b78;
  --green: #11a51f;
  --lime: #b5ca00;
  --btn-dark: #6f7174;
  --btn-muted: #a4a6a9;
  --footer: #12a0df;
  --focus: 0 0 0 3px rgba(17, 162, 232, 0.2);
  --logo-desktop-height: 100px;
  --logo-tablet-height: 72px;
  --logo-mobile-height: 60px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Satoshi", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:#f3f5f5;
  line-height: 1.45;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

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

.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 1200;
  padding: 12px 14px;
  border-radius: 12px;
  background: #fff;
  color: var(--blue-dark);
  box-shadow: var(--shadow-md);
}

.skip-link:focus {
  top: 12px;
}

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

.site-wrap {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-header {
  position: relative;
  top: 0;
  z-index: 50;
  padding: 16px 0 12px;
  overflow: visible;
}

.top-badges-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 90;
  pointer-events: none;
}

.top-badges-inner {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 12px;
  pointer-events: none;
}

.brand-europe {
  min-width: 0;
}

.brand-bottom-europe {
  letter-spacing: 0.22em;
  font-size: clamp(1.25rem, 1.7vw, 1.8rem);
  color: var(--blue-dark);
}

.top-badge {
  --badge-peek: 28px;
  position: relative;
  width: 118px;
  height: 70px;
  margin-top: 0;
  padding: 10px 10px 12px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  border-radius: 0 0 16px 16px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 28px rgba(10, 55, 73, 0.12);
  transform: translateY(calc(-100% + var(--badge-peek)));
  opacity: 0.98;
  pointer-events: auto;
  transition:
    transform 280ms cubic-bezier(0.2, 0.9, 0.25, 1.15),
    box-shadow 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease,
    filter 220ms ease;
  will-change: transform;
}

.top-badge:hover,
.top-badge:focus-within {
  transform: translateY(0);
  box-shadow: 0 22px 40px rgba(10, 55, 73, 0.16);
  background: rgba(255, 255, 255, 0.96);
}

.top-badge::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 34px;
  height: 11px;
  transform: translateX(-50%);
  background: inherit;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}

.top-badge .region-logo {
  width: 100%;
  min-height: 92px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}

.brand-top.small.mini {
  font-size: 1.58rem;
}

.brand-bottom.small.mini {
  margin-top: 3px;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
}

.region-name.mini {
  margin-top: 6px;
  min-height: 1.2em;
  font-size: 0.52rem;
  letter-spacing: 0.12em;
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 0;
  padding: 18px 32px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: var(--radius-2xl);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
    margin-top:50px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  flex: 0 0 auto;
  min-width: 0;
  line-height: 0;
}

.brand-logo {
  display: block;
  width: auto;
  height: var(--logo-desktop-height);
  max-height: var(--logo-desktop-height);
  max-width: none;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand-top {
  display: flex;
  align-items: baseline;
  gap: 2px;
  font-size: clamp(2.75rem, 4vw, 4.4rem);
  line-height: 0.8;
  font-weight: 700;
  letter-spacing: 0.015em;
}

.brand-top.small {
  justify-content: center;
  font-size: 2.8rem;
}

.brand-p,
.brand-c1 {
  color: var(--blue-dark);
}

.brand-i {
  color: var(--green);
}

.brand-c2 {
  color: var(--lime);
}

.brand-bottom {
  margin-top: 6px;
  color: var(--blue);
  font-size: clamp(1.45rem, 2vw, 2.35rem);
  font-weight: 400;
  letter-spacing: 0.32em;
  line-height: 1;
}

.brand-bottom.small {
  font-size: 1.5rem;
  text-align: center;
}

.top-nav {
  display: grid;
  grid-template-columns: repeat(4, max-content);
  justify-content: end;
  align-items: center;
  column-gap: 18px;
  row-gap: 10px;
}

.nav-item {
  position: relative;
}

.nav-pill--trigger {
  border: 1px solid var(--line);
  cursor: pointer;
}

.nav-pill--trigger[aria-expanded="true"] {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-sm);
  border-color: var(--line-strong);
}

.conference-flyout-wrap {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  width: 100vw;
  min-height: 120px;
  transform: translateX(-50%);
  z-index: 250;
  pointer-events: none;
}

.conference-flyout {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 120px;
  padding: 18px 0 34px;
  background: #f3f5f5;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(0, 18px, 0);
  filter: blur(8px);
  transition:
    opacity 320ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 320ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 420ms;
  will-change: opacity, transform, filter;
}

.conference-flyout.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
  transition:
    opacity 320ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 320ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 0s;
}

.conference-flyout__inner {
  width: min(1300px, calc(100% - 40px));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  min-height: 54px;
  padding: 0 12px;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
}

.conference-flyout__inner > .nav-pill {
  opacity: 0;
  transform: translate3d(0, 12px, 0);
  transition:
    opacity 240ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.conference-flyout.is-open .conference-flyout__inner > .nav-pill {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.conference-flyout.is-open .conference-flyout__inner > .nav-pill:nth-child(1) { transition-delay: 40ms; }
.conference-flyout.is-open .conference-flyout__inner > .nav-pill:nth-child(2) { transition-delay: 80ms; }
.conference-flyout.is-open .conference-flyout__inner > .nav-pill:nth-child(3) { transition-delay: 120ms; }
.conference-flyout.is-open .conference-flyout__inner > .nav-pill:nth-child(4) { transition-delay: 160ms; }
.conference-flyout.is-open .conference-flyout__inner > .nav-pill:nth-child(5) { transition-delay: 200ms; }

.conference-flyout__inner::-webkit-scrollbar {
  display: none;
}

.nav-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--blue-dark);
  font-size: 0.96rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.nav-pill:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-sm);
  border-color: var(--line-strong);
}

.nav-pill:focus-visible,
.btn:focus-visible,
.menu-toggle:focus-visible,
.footer-links a:focus-visible,
.linkedin:focus-visible,
.linkedin-bullet:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}

.menu-toggle {
  display: none;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--blue-dark);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 4px 0;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  padding: 51px 0 54px;
}


.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(300px, 0.78fr);
  gap: 56px;
  align-items: center;
}

.hero-copy h1 {
  margin: 0 0 12px;
  color: var(--blue);
  line-height: 1.08;
  font-weight: 500;
}
.hero-title {
  overflow: hidden;
}

.hero-title span {
  display: inline-block;
  will-change: transform, opacity;
}

.hero-title--slide span {
  animation: heroTitleSlide 900ms cubic-bezier(0.22, 1, 0.36, 1) 180ms both;
}

@keyframes heroTitleSlide {
  from {
    opacity: 0;
    transform: translate3d(56px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}


.hero-text {
  margin: 0;
  color: var(--text-strong);
  font-size: clamp(1.26rem, 1.5vw, 1.6rem);
  line-height: 1.34;
}

.hero-badges {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.region-card {
  position: relative;
  width: 140px;
  padding: 22px 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.region-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.region-card::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -11px;
  width: 60px;
  height: 20px;
  transform: translateX(-50%);
  background: inherit;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}

.region-logo {
  position: relative;
  z-index: 1;
}

.region-name {
  display: block;
  margin-top: 10px;
  color: var(--blue);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.28em;
}

.region-name-green {
  color: #79b200;
  letter-spacing: 0.04em;
}

.events-section {
  padding: 44px 0 64px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84) 0%, #ffffff 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.75);
}

.section-heading {
  margin-bottom: 28px;
}

.section-heading h2 {
  margin: 0;
  color: var(--blue-dark);
  font-size: clamp(1.65rem, 2.5vw, 1.6rem);
  line-height: 1.1;
    padding-left:32px;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
  align-items: start;
}

.event-card {
  padding: 30px 28px 26px;
  border: 1px solid rgba(10, 55, 73, 0.05);
  border-radius: 24px;
  background: var(--surface-soft);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.event-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 18px;
}

.pin {
  position: relative;
  flex: 0 0 auto;
  width: 35px;
  height: 35px;
  margin-top: 4px;
  border: 3px solid currentColor;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.pin::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 10px;
  width: 8px;
  height: 8px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.pin-blue {
  color: var(--blue);
}

.pin-green {
  color: var(--green);
}

.event-header h3 {
  margin: 0;
  color: var(--blue-dark);
  font-size: clamp(1.35rem, 2.5vw, 1.6rem);
  line-height: 1.18;
  font-weight: 500;
}

sup {
  text-transform: none;
}

.event-date {
  margin: 4px 0 0;
  color: var(--text-soft);
  font-size: 1rem;
}

.event-title {
  margin: 0 0 12px;
  color: var(--blue-dark);
  font-size: 1.03rem;
  line-height: 1.34;
  font-weight: 700;
  text-transform: uppercase;
}

.event-highlight {
  margin: 0 0 4px;
  font-size: 1.05rem;
  font-weight: 700;
}

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

.highlight-green {
  color: var(--green);
}

.event-text {
  margin: 0 0 24px;
  color: #2c5262;
  font-size: 1rem;
  line-height: 1.48;
}

.event-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 10px;
  color: #fff;
  font-size: 0.98rem;
  font-weight: 700;
  transition: transform 180ms ease, opacity 180ms ease, box-shadow 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
  opacity: 0.95;
  box-shadow: var(--shadow-sm);
}

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

.btn-dark {
  background: var(--btn-dark);
}

.btn-muted {
  background: var(--btn-muted);
}

.btn-success {
  background: var(--green);
}

.supporters-zone {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(10, 55, 73, 0.08);
}

.supporters-title {
  margin: 0 0 18px;
  color: var(--blue-dark);
  font-size: 1rem;
  line-height: 1.45;
  font-weight: 700;
  text-transform: none;
}

.supporters-logos {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(8px, 1.4vw, 16px);
  align-items: stretch;
  width: 100%;
}

.supporter-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  aspect-ratio: 1 / 1;
  padding: clamp(6px, 1vw, 14px);
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(10, 55, 73, 0.08);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.supporter-logo:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(10, 55, 73, 0.12);
  border-color: rgba(10, 55, 73, 0.18);
}

.supporter-logo img {
  display: block;
  width: min(100%, 100px);
  max-width: 100%;
  height: auto;
  max-height: min(100%, 100px);
  object-fit: contain;
}

/* --- Carte premium de bienvenue : uniquement 2e article --- */

.welcome {
  position: relative;
}

.welcome-title {
margin: 0 0 18px;
/* max-width: 16ch; */
color: var(--blue-dark);
font-size: clamp(1.7rem, 2.4vw, 0.8rem);
line-height: 1.05;
font-weight: 500;
letter-spacing: -0.02em;
text-transform: none;
}

.welcome-card {
  position: relative;
  overflow: visible;
  padding: 32px 32px 30px 32px;
  border-radius: 28px;
  border: 1px solid rgba(10, 55, 73, 0.08);


}

.welcome-card::before {
  content: "“";
  position: absolute;
  top: 14px;
  left: -16px;
  z-index: 2;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 7rem;
  line-height: 0.8;
  color: rgba(17, 162, 232, 0.22);
  pointer-events: none;
}

.welcome-card .event-text {
  position: relative;
  z-index: 3;
  margin-bottom: 18px;
  color: #315464;
  font-size: 1.04rem;
  line-height: 1.75;
}

.welcome-card .event-text:last-child {
  margin-bottom: 0;
}

.welcome-intro {
  color: var(--blue-dark);
  font-size: 1.08rem;
}

.welcome-card i {
  font-style: italic;
}

.welcome-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 24px 54px rgba(10, 55, 73, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.welcome-cardd {
  position: relative;
  overflow: visible;
  padding: 32px 32px 18px 32px;
  border-radius: 28px;
  border: 1px solid rgba(10, 55, 73, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 249, 251, 0.98) 100%);

    margin-top:20px;
}

.welcome-cardd::before {
  content: "";
  position: absolute;
  top: 14px;
  left: -16px;
  z-index: 2;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 7rem;
  line-height: 0.8;
  color: rgba(17, 162, 232, 0.22);
  pointer-events: none;
}

.welcome-cardd .event-text {
  position: relative;
  z-index: 3;
  margin-bottom: 18px;
  color: #315464;
  font-size: 1.04rem;
  line-height: 1.75;
}

.welcome-cardd .event-text:last-child {
  margin-bottom: 0;
}

.welcome-introd {
  color: var(--blue-dark);
  font-size: 1.08rem;
}

.welcome-cardd i {
  font-style: italic;
}

.welcome-cardd:hover {
  transform: translateY(-4px);
  box-shadow:
    0 24px 54px rgba(10, 55, 73, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.linkedin-section {
  padding: 44px 0 64px;
  background: var(--surface-soft);
  overflow: hidden;
}

.linkedin-heading {
  text-align: center;
}

.linkedin-heading h2 {
  text-align: center;
}

.linkedin-carousel {
  overflow: hidden;
}

.linkedin-track {
  display: flex;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.linkedin-track .linkedin-card {
  flex: 0 0 calc((100% - 48px) / 3);
  margin-right: 24px;
}

.linkedin-track .linkedin-card:nth-child(3),
.linkedin-track .linkedin-card:nth-child(6) {
  margin-right: 0;
}

.linkedin-card {
  padding: 24px;
  border-radius: 24px;
  background: var(--surface-soft);
  border: 1px solid rgba(10, 55, 73, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.linkedin-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.linkedin-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.linkedin-badge {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: grey;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
}

.linkedin-meta {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.95rem;
  font-weight: 500;
}

.linkedin-text {
  margin: 0 0 18px;
  color: slategrey;
  line-height: 1.5;
}

.linkedin-link {
  display: inline-flex;
  align-items: center;
  font-weight: 400;
  color: grey;
}

.linkedin-link:hover {
  text-decoration: underline;
}

.linkedin-bullets {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
}

.linkedin-bullet {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 999px;
  background: rgba(6, 91, 120, 0.22);
  cursor: pointer;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.linkedin-bullet:hover {
  transform: scale(1.08);
}

.linkedin-bullet.is-active {
  background: var(--blue);
}

.linkedin-reveal {
  opacity: 0;
  transform: translate3d(0, 42px, 0) scale(0.985);
  filter: blur(8px);
  will-change: opacity, transform, filter;
  transition:
    opacity 800ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 1000ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 800ms cubic-bezier(0.22, 1, 0.36, 1);
}

.linkedin-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.site-footer {
  margin-top: auto;
  background: var(--footer);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.site-footer::before,
.site-footer::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -180px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.4;
}

.site-footer::before {
  width: 820px;
  height: 260px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  transform: translateX(-52%) rotate(-8deg);
  animation: ellipseOne 16s ease-in-out infinite alternate;
}

.site-footer::after {
  width: 720px;
  height: 220px;
  border: 1px solid rgba(200, 200, 200, 0.25);
  transform: translateX(-48%) rotate(8deg);
  animation: ellipseTwo 18s ease-in-out infinite alternate;
}

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

.footer-inner p {
  margin: 0;
  font-size: 0.96rem;
}

.footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.footer-links a {
  opacity: 0.96;
}

.linkedin {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 4px;
  background: rgba(9, 54, 79, 0.42);
  font-size: 1.1rem;
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes ellipseOne {
  from {
    transform: translateX(calc(-52% - 12px)) rotate(-10deg);
  }
  to {
    transform: translateX(calc(-52% + 12px)) rotate(-4deg);
  }
}

@keyframes ellipseTwo {
  from {
    transform: translateX(calc(-48% + 10px)) rotate(6deg);
  }
  to {
    transform: translateX(calc(-48% - 10px)) rotate(12deg);
  }
}

.next-conferences .events-grid .event-card,
.hero-badges .region-card {
  transform-origin: center bottom;
  opacity: 0;
  transform: translate3d(0, 50px, 0) scale(0.98);
  filter: blur(6px);
  will-change: opacity, transform, filter;
  transition:
    opacity 800ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 1000ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 800ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.next-conferences .events-grid .event-card.is-visible,
.hero-badges .region-card.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.next-conferences .events-grid .event-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(10, 55, 73, 0.09);
}

.next-conferences .events-grid .event-card:nth-child(1) {
  transition-delay: 0ms;
}

.next-conferences .events-grid .event-card:nth-child(2) {
  transition-delay: 120ms;
}

.next-conferences .events-grid .event-card:nth-child(3) {
  transition-delay: 240ms;
}

.next-conferences .events-grid .event-card:nth-child(4) {
  transition-delay: 360ms;
}

.next-conferences .events-grid .event-card:nth-child(5) {
  transition-delay: 480ms;
}

.next-conferences .events-grid .event-card:nth-child(6) {
  transition-delay: 600ms;
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .site-footer::before,
  .site-footer::after {
    animation: none !important;
  }

  .reveal,
  .linkedin-reveal,
  .next-conferences .events-grid .event-card,
  .hero-badges .region-card {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }

  .linkedin-track {
    transform: none !important;
  }
}

@media (max-width: 1100px) {
  .top-badges-inner {
    gap: 10px;
  }

  .top-badge {
    width: 112px;
  }

  .header-shell {
    align-items: center;
    flex-wrap: wrap;
  }

  .top-nav {
    width: 100%;
    justify-content: flex-start;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero-copy h1,
  .hero-text {
    max-width: 100%;
  }

  .linkedin-track .linkedin-card {
    flex: 0 0 calc((100% - 24px) / 2);
  }

  .linkedin-track .linkedin-card:nth-child(2),
  .linkedin-track .linkedin-card:nth-child(5) {
    margin-right: 0;
  }

  .linkedin-track .linkedin-card:nth-child(3),
  .linkedin-track .linkedin-card:nth-child(6) {
    margin-right: 24px;
  }
}

/* ===== Mobile navigation - production reset ===== */
.nav-trigger-label {
  flex: 1 1 auto;
}

.nav-trigger-icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  margin-left: 12px;
}

.nav-trigger-icon::before,
.nav-trigger-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
  transition: transform 220ms ease, opacity 220ms ease;
}

.nav-trigger-icon::before {
  transform: translate(-50%, -50%) rotate(0deg);
}

.nav-trigger-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.nav-pill--trigger[aria-expanded="true"] .nav-trigger-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(0deg);
}

.conference-submenu-mobile {
  display: none;
}

@media (min-width: 841px) {
  .conference-submenu-mobile {
    display: none !important;
  }
}

@media (min-width: 500px) {
  .hero-copy {
    padding-left: 2em;
  }
}

@media (max-width: 840px) {
  :root {
    --mobile-header-height: 84px;
  }

  html,
  body {
    overflow-x: hidden;
  }

  body.nav-open {
    overflow: hidden;
  }

  .top-badges-bar {
    display: none;
  }

  .container {
    width: min(var(--container), calc(100% - 24px));
  }

  .site-header {
    position: sticky;
    top: 0;
    z-index: 10000;
    padding: 0;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(20, 76, 95, 0.08);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    overflow: visible;
  }

  .site-header::before {
    content: none;
  }

  .header-shell {
    min-height: var(--mobile-header-height);
    margin-top: 0;
    padding: 10px 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .brand-logo {
    height: var(--logo-tablet-height);
    max-height: var(--logo-tablet-height);
  }

  .menu-toggle {
    position: relative;
    z-index: 10002;
    display: inline-grid;
    margin-left: auto;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 10px 26px rgba(10, 55, 73, 0.1);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .top-nav {
    position: fixed;
    top: var(--mobile-header-height);
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10001;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 12px;
    width: 100%;
    padding: 18px 16px calc(28px + env(safe-area-inset-bottom));
    background:
      radial-gradient(circle at 20% 0%, rgba(17, 162, 232, 0.08), transparent 34%),
      linear-gradient(180deg, #ffffff 0%, #f4f7f8 100%);
    box-shadow: 0 28px 70px rgba(10, 55, 73, 0.18);
    overflow-y: auto;
    overscroll-behavior: contain;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate3d(0, -14px, 0);
    transition:
      opacity 220ms ease,
      transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0s linear 260ms;
  }

  .top-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate3d(0, 0, 0);
    transition:
      opacity 220ms ease,
      transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0s linear 0s;
  }

  .nav-item,
  .nav-item--has-submenu {
    width: 100%;
  }

  .nav-item--has-submenu {
    overflow: hidden;
    border: 1px solid rgba(20, 76, 95, 0.09);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 12px 32px rgba(10, 55, 73, 0.07);
  }

  .top-nav > .nav-pill,
  .nav-item--has-submenu > .nav-pill--trigger {
    width: 100%;
    min-height: 68px;
    justify-content: space-between;
    padding: 18px 20px;
    border: 0;
    border-radius: 24px;
    background: transparent;
    box-shadow: none;
    color: var(--blue-dark);
    font-size: 1.02rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    line-height: 1.2;
    text-align: left;
    white-space: normal;
  }

  .top-nav > .nav-pill {
    border: 1px solid rgba(20, 76, 95, 0.09);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 12px 32px rgba(10, 55, 73, 0.07);
  }

  .top-nav > .nav-pill:hover,
  .nav-item--has-submenu > .nav-pill--trigger:hover {
    transform: none;
  }

  .nav-item--has-submenu > .nav-pill--trigger[aria-expanded="true"] {
    color: var(--blue);
  }

  .conference-flyout-wrap,
  .conference-flyout--desktop {
    display: none !important;
  }

  .conference-submenu-mobile {
    display: block;
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    border-top: 1px solid transparent;
    background: rgba(246, 249, 251, 0.98);
    transition:
      max-height 300ms cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0s linear 300ms,
      border-color 180ms ease;
  }

  .conference-submenu-mobile.is-open {
    max-height: 520px;
    visibility: visible;
    border-top-color: rgba(20, 76, 95, 0.08);
    transition:
      max-height 340ms cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0s linear 0s,
      border-color 180ms ease;
  }

  .conference-submenu-mobile > .nav-pill {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 52px;
    margin: 0 14px 10px;
    padding: 0 16px;
    border: 1px solid rgba(20, 76, 95, 0.08);
    border-radius: 16px;
    background: #ffffff;
    color: #234f60;
    box-shadow: none;
    font-size: 0.94rem;
    font-weight: 650;
    text-align: left;
    white-space: normal;
  }

  .conference-submenu-mobile > .nav-pill:first-child {
    margin-top: 14px;
  }

  .conference-submenu-mobile > .nav-pill:last-child {
    margin-bottom: 14px;
  }

  .nav-pill--submenu::before {
    content: "";
    width: 6px;
    height: 6px;
    margin-right: 12px;
    border-radius: 999px;
    background: var(--blue);
    flex: 0 0 6px;
  }

  .hero {
    padding: 34px 0 42px;
  }

  .hero-grid,
  .events-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero-copy h1,
  .hero-text {
    max-width: 100%;
  }

  .event-actions {
    flex-direction: column;
  }

  .event-actions .btn {
    width: 100%;
  }

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

  .linkedin-track {
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    transform: none !important;
    padding-bottom: 6px;
  }

  .linkedin-track .linkedin-card {
    flex: 0 0 84%;
    margin-right: 0;
    scroll-snap-align: start;
  }

  .linkedin-bullets {
    display: none;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 0;
  }
}

@media (max-width: 560px) {
  .brand {
    min-width: 0;
  }

  .brand-logo {
    height: var(--logo-mobile-height);
    max-height: var(--logo-mobile-height);
  }

  .brand-bottom-europe {
    letter-spacing: 0.14em;
    font-size: 1.2rem;
  }

  .brand-top {
    font-size: 2.72rem;
  }

  .brand-bottom {
    font-size: 1.42rem;
    letter-spacing: 0.15em;
  }

  .brand-top.small {
    font-size: 3rem;
  }

  .brand-bottom.small {
    font-size: 1.54rem;
  }

  .top-nav {
    padding-inline: 14px;
  }

  .top-nav > .nav-pill,
  .nav-item--has-submenu > .nav-pill--trigger {
    min-height: 64px;
    padding: 16px 18px;
  }

  .hero-copy h1 {
    font-size: 1.82rem;
  }

  .hero-text {
    font-size: 1.14rem;
  }

  .region-card {
    width: 140px;
  }

  .event-card,
  .linkedin-card {
    padding: 22px 18px;
  }

  .welcome-card {
    padding-left: 40px;
  }
}


/* ===== Page detail: Next Conference ===== */
.conference-detail {
  padding-top: 42px;
}

.conference-detail__heading {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.section-kicker {
  margin: 0;
  padding-left: 32px;
  color: var(--blue);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.conference-hero-card {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: 28px;
  align-items: stretch;
  margin-bottom: 34px;
  padding: 26px;
  border: 1px solid rgba(10, 55, 73, 0.06);
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(255,255,255,0.96) 0%, rgba(247,248,249,0.98) 100%);
  box-shadow: var(--shadow-sm);
}

.conference-hero-card__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
  min-width: 0;
}

.conference-lead {
  margin: 0;
  color: var(--blue-dark);
  font-size: clamp(1.15rem, 1.8vw, 1.55rem);
  line-height: 1.42;
  font-weight: 500;
}

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

.conference-meta__item {
  min-height: 138px;
  padding: 18px;
  border: 1px solid rgba(10, 55, 73, 0.07);
  border-radius: 20px;
  background: rgba(255,255,255,0.76);
}

.conference-meta__label {
  display: block;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.conference-meta__item strong,
.conference-meta__item span:last-child {
  display: block;
}

.conference-meta__item strong {
  margin-bottom: 6px;
  color: var(--blue-dark);
  font-size: 1.02rem;
  line-height: 1.32;
}

.conference-meta__item span:last-child {
  color: var(--text-soft);
  line-height: 1.45;
}

.conference-banner {
  position: relative;
  align-self: center;
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 18px 42px rgba(10, 55, 73, 0.1);
}

.conference-banner img {
  width: 100%;
  height: auto;
  max-height: 300px;
  object-fit: cover;
}

.conference-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.38fr) minmax(280px, 0.62fr);
  gap: 28px;
  align-items: start;
}

.conference-description-card h3,
.conference-side-card h3 {
  margin: 0 0 16px;
  color: var(--blue-dark);
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1.16;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.conference-description-card p,
.conference-side-card p {
  margin: 0 0 18px;
  color: #315464;
  font-size: 1.03rem;
  line-height: 1.72;
}

.conference-description-card p:last-child,
.conference-side-card p:last-child {
  margin-bottom: 0;
}

.conference-side-card {
  background: linear-gradient(180deg, rgba(17,162,232,0.08) 0%, rgba(255,255,255,0.98) 100%);
}

.conference-side-card__eyebrow {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(17, 162, 232, 0.12);
  color: var(--blue-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .conference-hero-card,
  .conference-content-grid {
    grid-template-columns: 1fr;
  }

  .conference-banner img {
    max-height: 260px;
  }
}

@media (max-width: 640px) {
  .section-kicker {
    padding-left: 0;
  }

  .conference-hero-card {
    padding: 18px;
    border-radius: 24px;
  }

  .conference-meta {
    grid-template-columns: 1fr;
  }

  .conference-banner {
    border-radius: 18px;
  }

  .conference-banner img {
    max-height: 210px;
  }
}


/* ===== Page detail: Accommodation booking ===== */
.accommodation-section {
  padding-top: 48px;
}

.accommodation-heading {
  max-width: 820px;
}

.accommodation-heading h2 {
  padding-left: 32px;
}

.accommodation-card {
  display: grid;
  gap: 26px;
  padding: 30px;
  border: 1px solid rgba(10, 55, 73, 0.06);
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(255,255,255,0.98) 0%, rgba(247,248,249,0.98) 100%);
  box-shadow: var(--shadow-sm);
}

.accommodation-card__intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(10, 55, 73, 0.08);
}

.accommodation-lead {
  margin: 0;
  color: var(--blue-dark);
  font-size: clamp(1.2rem, 2vw, 1.62rem);
  line-height: 1.42;
  font-weight: 500;
}

.hotel-address {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 360px;
  padding: 14px 16px;
  border: 1px solid rgba(17, 162, 232, 0.16);
  border-radius: 999px;
  background: rgba(17, 162, 232, 0.08);
  color: var(--blue-dark);
  font-weight: 700;
  line-height: 1.35;
}

.hotel-address__icon {
  display: inline-flex;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  color: var(--blue);
}

.booking-panel {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 0.66fr);
  gap: 24px;
  align-items: stretch;
}

.booking-code-box,
.note-card {
  border: 1px solid rgba(10, 55, 73, 0.07);
  border-radius: 22px;
  background: rgba(255,255,255,0.82);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.75);
}

.booking-code-box {
  display: flex;
  min-height: 190px;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
  background: linear-gradient(180deg, rgba(17,162,232,0.12) 0%, rgba(255,255,255,0.96) 100%);
}

.booking-code-box__label,
.note-card__label {
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.booking-code-box strong {
  color: var(--blue-dark);
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1;
  letter-spacing: 0.04em;
}

.booking-steps {
  padding: 24px 26px;
  border-radius: 22px;
  background: var(--surface-soft);
}

.booking-steps h3 {
  margin: 0 0 16px;
  color: var(--blue-dark);
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  line-height: 1.2;
  font-weight: 500;
}

.booking-steps ul {
  display: grid;
  gap: 12px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.booking-steps li {
  position: relative;
  padding-left: 26px;
  color: #315464;
  font-size: 1.03rem;
  line-height: 1.58;
}

.booking-steps li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
}

.booking-cta {
  width: fit-content;
}

.accommodation-notes {
  display: grid;
  grid-template-columns: 0.9fr 1.05fr 1.05fr;
  gap: 18px;
}

.note-card {
  padding: 20px;
}

.note-card p {
  margin: 0;
  color: #315464;
  font-size: 0.99rem;
  line-height: 1.62;
}

.note-card strong {
  display: block;
  color: var(--blue-dark);
  font-size: 1.45rem;
  line-height: 1.2;
}

.note-card--highlight {
  background: linear-gradient(180deg, rgba(181,202,0,0.16) 0%, rgba(255,255,255,0.94) 100%);
}

@media (max-width: 980px) {
  .accommodation-card__intro,
  .booking-panel,
  .accommodation-notes {
    grid-template-columns: 1fr;
  }

  .hotel-address {
    max-width: none;
    border-radius: 18px;
  }
}

@media (max-width: 640px) {
  .accommodation-heading h2 {
    padding-left: 0;
  }

  .accommodation-card {
    gap: 20px;
    padding: 18px;
    border-radius: 24px;
  }

  .accommodation-card__intro {
    gap: 16px;
    padding-bottom: 20px;
  }

  .booking-code-box,
  .booking-steps,
  .note-card {
    padding: 18px;
    border-radius: 18px;
  }

  .booking-code-box {
    min-height: auto;
  }

  .booking-cta {
    width: 100%;
  }
}


/* Past conferences cards and pop-ups */
.past-conferences-section {
  padding-top: 48px;
}

.past-heading .section-kicker {
  max-width: 720px;
  margin: 10px 0 0;
  padding-left: 32px;
  color: var(--text-soft);
  font-size: 1.05rem;
  line-height: 1.55;
}

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

.past-card {
  display: flex;
  min-height: 230px;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  border: 1px solid rgba(10, 55, 73, 0.06);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(247,248,249,0.98) 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.75), var(--shadow-sm);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.past-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(10, 55, 73, 0.12);
}

.past-card__eyebrow {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(17, 162, 232, 0.11);
  color: var(--blue-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.past-card h3 {
  margin: 0 0 8px;
  color: var(--blue-dark);
  font-size: clamp(1.28rem, 2vw, 1.62rem);
  line-height: 1.14;
  font-weight: 600;
}

.past-card__date {
  margin: 0;
  color: var(--text-soft);
  font-size: 1rem;
  font-weight: 600;
}

.past-card__cta {
  align-self: flex-start;
  border: 0;
  cursor: pointer;
}

body.modal-open {
  overflow: hidden;
}

.past-modal {
  position: fixed;
  inset: 0;
  z-index: 20000;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.past-modal[aria-hidden="false"] {
  opacity: 1;
  pointer-events: auto;
}

.past-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 44, 58, 0.48);
  backdrop-filter: blur(8px);
}

.past-modal__panel {
  position: relative;
  width: min(880px, 100%);
  max-height: min(86vh, 760px);
  overflow: auto;
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow-lg);
  transform: translateY(12px) scale(0.985);
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.past-modal[aria-hidden="false"] .past-modal__panel {
  transform: translateY(0) scale(1);
}

.past-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  color: var(--blue-dark);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.past-modal__media {
  margin: 0;
  max-height: 290px;
  overflow: hidden;
  background: var(--surface-soft);
}

.past-modal__media img {
  width: 100%;
  height: 100%;
  max-height: 290px;
  object-fit: cover;
}

.past-modal__content {
  padding: 30px;
}

.past-modal__content h3 {
  margin: 0 0 8px;
  color: var(--blue-dark);
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  line-height: 1.08;
  font-weight: 600;
}

.past-modal__content p:last-child {
  margin: 18px 0 0;
  color: #315464;
  font-size: 1.04rem;
  line-height: 1.7;
}

@media (max-width: 980px) {
  .past-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .past-heading .section-kicker {
    padding-left: 0;
  }

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

  .past-card {
    min-height: 210px;
    padding: 22px 18px;
  }

  .past-modal {
    padding: 14px;
  }

  .past-modal__content {
    padding: 24px 20px;
  }
}

/* 2026 Sponsors page */
.sponsors-showcase-section {
  padding-top: 56px;
  background:
    radial-gradient(circle at 12% 10%, rgba(17, 162, 232, 0.10), transparent 32%),
    radial-gradient(circle at 88% 18%, rgba(181, 202, 0, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,0.94) 0%, #ffffff 100%);
}

.sponsors-heading {
  max-width: 780px;
  margin-bottom: 36px;
}

.sponsors-heading .eyebrow {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.sponsors-heading h2 {
  padding-left: 0;
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.sponsors-intro {
  margin: 14px 0 0;
  color: var(--text-soft);
  font-size: clamp(1rem, 1.6vw, 1.14rem);
  line-height: 1.7;
}

.sponsor-tier {
  position: relative;
  margin-top: 26px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(10, 55, 73, 0.08);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.sponsor-tier::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 7px;
  background: var(--blue);
}

.sponsor-tier--platinum::before { background: linear-gradient(180deg, #d8dde3, #ffffff, #aeb7c1); }
.sponsor-tier--gold::before { background: linear-gradient(180deg, #f2c94c, #fff4bc, #c8971f); }
.sponsor-tier--silver::before { background: linear-gradient(180deg, #c8d0d8, #f7f9fb, #8f9ba7); }

.sponsor-tier__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.sponsor-tier__kicker {
  color: var(--text-soft);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.sponsor-tier__header h3 {
  margin: 4px 0 0;
  color: var(--blue-dark);
  font-size: clamp(1.65rem, 3vw, 2.4rem);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.sponsor-grid {
  display: grid;
  gap: 20px;
}

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

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

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

.sponsor-card {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  min-height: 150px;
  padding: 22px;
  border: 1px solid rgba(10, 55, 73, 0.08);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.sponsor-card:hover {
  transform: translateY(-3px);
  border-color: rgba(17, 162, 232, 0.22);
  box-shadow: var(--shadow-md);
}

.sponsor-card--featured {
  grid-template-columns: minmax(180px, 260px) minmax(0, 1fr);
  min-height: 190px;
  padding: clamp(24px, 3vw, 34px);
  background: linear-gradient(135deg, rgba(255,255,255,0.96), rgba(241, 247, 250, 0.92));
}

.sponsor-card--compact {
  grid-template-columns: 1fr;
  min-height: 180px;
  text-align: center;
}

.sponsor-card__logo {
  display: grid;
  place-items: center;
  min-height: 106px;
  padding: 18px;
  border: 1px dashed rgba(10, 55, 73, 0.18);
  border-radius: 20px;
  background: linear-gradient(180deg, #fff, #f5f8f9);
  color: rgba(10, 84, 109, 0.44);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sponsor-card--featured .sponsor-card__logo {
  min-height: 132px;
  font-size: 1.18rem;
}

.sponsor-card h4 {
  margin: 0;
  color: var(--blue-dark);
  font-size: clamp(1.08rem, 1.7vw, 1.36rem);
  line-height: 1.2;
}

.sponsor-card p {
  margin: 8px 0 0;
  color: var(--text-soft);
  line-height: 1.62;
}

.sponsor-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 32px;
  padding: clamp(22px, 3vw, 30px);
  border-radius: 28px;
  background: linear-gradient(135deg, var(--blue-dark), #087ca0 55%, var(--blue));
  color: #fff;
  box-shadow: var(--shadow-md);
}

.sponsor-cta h3 {
  margin: 0;
  font-size: clamp(1.2rem, 2.4vw, 1.8rem);
}

.sponsor-cta p {
  margin: 8px 0 0;
  color: rgba(255,255,255,0.86);
  line-height: 1.6;
}

.sponsor-cta__link {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  background: #fff;
  color: var(--blue-dark);
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(0,0,0,0.14);
}

@media (max-width: 900px) {
  .sponsor-grid--medium,
  .sponsor-grid--compact {
    grid-template-columns: 1fr;
  }

  .sponsor-card,
  .sponsor-card--featured {
    grid-template-columns: 1fr;
  }

  .sponsor-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .sponsors-showcase-section {
    padding-top: 34px;
  }

  .sponsor-tier {
    border-radius: 24px;
    padding: 20px 18px 22px 24px;
  }

  .sponsor-tier__header {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .sponsor-card,
  .sponsor-card--featured,
  .sponsor-card--compact {
    min-height: 0;
    padding: 18px;
    border-radius: 22px;
  }

  .sponsor-card__logo {
    min-height: 94px;
  }

  .sponsor-cta__link {
    width: 100%;
  }
}


/* Take a sponsorship page */
.sponsorship-section {
  padding-top: 56px;
  background:
    radial-gradient(circle at 10% 8%, rgba(17, 162, 232, 0.11), transparent 30%),
    radial-gradient(circle at 92% 12%, rgba(181, 202, 0, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,0.96) 0%, #ffffff 100%);
}

.sponsorship-heading {
  max-width: 860px;
  margin-bottom: 30px;
}

.sponsorship-heading .eyebrow {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.sponsorship-heading h2 {
  padding-left: 0;
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.sponsorship-intro {
  margin: 14px 0 0;
  color: var(--text-soft);
  font-size: clamp(1rem, 1.6vw, 1.14rem);
  line-height: 1.7;
}

.sponsorship-hero-card,
.sponsorship-contact-card,
.sponsorship-delegate-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 28px;
  padding: clamp(24px, 4vw, 38px);
  border-radius: 32px;
  background: linear-gradient(135deg, var(--blue-dark), #087ca0 55%, var(--blue));
  color: #fff;
  box-shadow: var(--shadow-md);
}

.sponsorship-hero-card h3,
.sponsorship-contact-card h3,
.sponsorship-delegate-card h3 {
  margin: 12px 0 8px;
  font-size: clamp(1.45rem, 3vw, 2.25rem);
  line-height: 1.08;
}

.sponsorship-hero-card p,
.sponsorship-contact-card p,
.sponsorship-delegate-card p {
  max-width: 760px;
  margin: 0;
  color: rgba(255,255,255,0.86);
  line-height: 1.7;
}

.sponsorship-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sponsorship-primary-link,
.sponsorship-contact-actions .sponsor-cta__link {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  background: #fff;
  color: var(--blue-dark);
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(0,0,0,0.14);
}

.sponsorship-alert {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 18px;
  margin-top: 24px;
  padding: 20px 22px;
  border: 1px solid rgba(242, 201, 76, 0.36);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 250, 230, 0.96), rgba(255, 255, 255, 0.92));
  color: var(--blue-dark);
  box-shadow: var(--shadow-sm);
}

.sponsorship-alert strong {
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sponsorship-alert span {
  color: var(--text-soft);
  line-height: 1.6;
}

.sponsorship-levels,
.sponsorship-content-grid,
.sponsorship-options-grid {
  display: grid;
  gap: 22px;
  margin-top: 28px;
}

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

.sponsorship-content-grid {
  grid-template-columns: 0.85fr 1.15fr;
}

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

.sponsorship-level,
.sponsorship-card,
.sponsorship-option {
  position: relative;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(10, 55, 73, 0.08);
  border-radius: 28px;
  background: rgba(255,255,255,0.88);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.sponsorship-level::before,
.sponsorship-card::before,
.sponsorship-option::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 6px;
  background: var(--blue);
}

.sponsorship-level--silver::before { background: linear-gradient(90deg, #8f9ba7, #f7f9fb, #c8d0d8); }
.sponsorship-level--gold::before { background: linear-gradient(90deg, #c8971f, #fff4bc, #f2c94c); }
.sponsorship-level--platinum::before { background: linear-gradient(90deg, #aeb7c1, #ffffff, #d8dde3); }

.sponsorship-level__label {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.sponsorship-level strong,
.sponsorship-price {
  display: block;
  margin: 12px 0;
  color: var(--blue-dark);
  font-size: clamp(1.65rem, 3vw, 2.5rem);
  line-height: 1;
}

.sponsorship-level p,
.sponsorship-card p,
.sponsorship-option p,
.sponsorship-footer-note {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.65;
}

.sponsorship-card h3,
.sponsorship-option h3 {
  margin: 0 0 12px;
  color: var(--blue-dark);
  font-size: clamp(1.18rem, 2vw, 1.55rem);
}

.sponsorship-card--highlight {
  background: linear-gradient(135deg, rgba(255,255,255,0.96), rgba(241,247,250,0.92));
}

.sponsorship-muted {
  color: rgba(10, 55, 73, 0.62) !important;
  font-size: 0.95rem;
}

.sponsorship-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sponsorship-list li {
  position: relative;
  padding-left: 22px;
  color: var(--text-soft);
  line-height: 1.55;
}

.sponsorship-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.sponsorship-list.compact {
  margin-top: 14px;
}

.sponsorship-table-wrap {
  margin-top: 30px;
  overflow-x: auto;
  border: 1px solid rgba(10, 55, 73, 0.08);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.sponsorship-table {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
}

.sponsorship-table th,
.sponsorship-table td {
  padding: 17px 18px;
  border-bottom: 1px solid rgba(10, 55, 73, 0.08);
  text-align: left;
  vertical-align: top;
}

.sponsorship-table th {
  background: rgba(10, 84, 109, 0.06);
  color: var(--blue-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sponsorship-table td {
  color: var(--text-soft);
  line-height: 1.45;
}

.sponsorship-table td:first-child {
  color: var(--blue-dark);
  font-weight: 700;
}

.sponsorship-table tbody tr:last-child td {
  border-bottom: 0;
}

.sponsorship-option__number {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 14px;
  background: rgba(17, 162, 232, 0.12);
  color: var(--blue-dark);
  font-weight: 800;
}

.sponsorship-mini-price {
  display: inline-flex;
  margin: 16px 0 12px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(181, 202, 0, 0.14);
  color: var(--blue-dark);
  font-weight: 800;
}

.sponsorship-delegate-card {
  align-items: flex-start;
  background: linear-gradient(135deg, rgba(10,55,73,0.96), rgba(10,84,109,0.94));
}

.delegate-rate-list {
  flex: 0 0 min(440px, 100%);
  display: grid;
  gap: 10px;
}

.delegate-rate-list div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.12);
}

.delegate-rate-list span {
  color: rgba(255,255,255,0.82);
}

.delegate-rate-list strong {
  color: #fff;
  white-space: nowrap;
}

.sponsorship-contact-card {
  align-items: flex-start;
}

.sponsorship-contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.sponsor-cta__link--outline {
  background: rgba(255,255,255,0.14) !important;
  color: #fff !important;
  outline: 1px solid rgba(255,255,255,0.28);
}

.sponsorship-footer-note {
  margin-top: 24px;
  padding: 20px 22px;
  border-radius: 22px;
  background: rgba(10, 84, 109, 0.06);
}

@media (max-width: 980px) {
  .sponsorship-levels,
  .sponsorship-content-grid,
  .sponsorship-options-grid {
    grid-template-columns: 1fr;
  }

  .sponsorship-hero-card,
  .sponsorship-contact-card,
  .sponsorship-delegate-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .sponsorship-contact-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .sponsorship-section {
    padding-top: 34px;
  }

  .sponsorship-alert {
    grid-template-columns: 1fr;
  }

  .sponsorship-hero-card,
  .sponsorship-contact-card,
  .sponsorship-delegate-card,
  .sponsorship-level,
  .sponsorship-card,
  .sponsorship-option {
    border-radius: 24px;
  }

  .sponsorship-primary-link,
  .sponsorship-contact-actions,
  .sponsorship-contact-actions .sponsor-cta__link {
    width: 100%;
  }

  .delegate-rate-list div {
    flex-direction: column;
    gap: 6px;
  }
}

/* Partners page */
.partners-showcase-section {
  padding: clamp(3rem, 6vw, 6rem) 0;
  background:
    radial-gradient(circle at 10% 0%, rgba(0, 159, 227, 0.12), transparent 32rem),
    linear-gradient(180deg, #f7fbfd 0%, #ffffff 62%);
}

.partners-showcase {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.partners-heading {
  max-width: 780px;
}

.partners-heading .eyebrow,
.partner-card__category {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  background: rgba(0, 159, 227, 0.1);
  color: #006f9f;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1;
  padding: 0.55rem 0.75rem;
  text-transform: uppercase;
}

.partners-heading h2 {
  margin: 1rem 0 0.8rem;
  font-size: clamp(2rem, 5vw, 3.6rem);
  letter-spacing: -0.04em;
  color: #063a52;
}

.partners-intro {
  margin: 0;
  color: #4f6570;
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  line-height: 1.7;
}

.partners-featured-grid,
.partners-grid {
  display: grid;
  gap: clamp(1rem, 2vw, 1.5rem);
}

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

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

.partner-card,
.partner-patronage-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(6, 58, 82, 0.1);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 22px 52px rgba(6, 58, 82, 0.08);
}

.partner-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.partner-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 159, 227, 0.28);
  box-shadow: 0 28px 64px rgba(6, 58, 82, 0.12);
}

.partner-card--featured {
  min-height: 330px;
}

.partner-card__logo-link {
  display: grid;
  min-height: 170px;
  place-items: center;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: linear-gradient(180deg, #ffffff, #f5f9fb);
}

.partner-card--featured .partner-card__logo-link {
  min-height: 220px;
}

.partner-card__logo {
  display: block;
  max-width: min(100%, 320px);
  max-height: 132px;
  object-fit: contain;
}

.partner-card--featured .partner-card__logo {
  max-height: 185px;
}

.partner-card__logo--compact {
  max-height: 116px;
}

.partner-card__body {
  display: grid;
  gap: 0.7rem;
  padding: 1.35rem clamp(1.25rem, 2.5vw, 1.75rem) 1.65rem;
}

.partner-card h3,
.partner-patronage-card h3 {
  margin: 0;
  color: #063a52;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  letter-spacing: -0.02em;
}

.partner-card__link {
  color: #007fb5;
  font-weight: 800;
  overflow-wrap: anywhere;
  text-decoration: none;
}

.partner-card__link:hover {
  text-decoration: underline;
}

.partner-patronage-card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  align-items: center;
  gap: clamp(1rem, 3vw, 2rem);
  padding: clamp(1.4rem, 3vw, 2.4rem);
}

.partner-patronage-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 8px;
  background: linear-gradient(180deg, #009fe3, #8cc63f);
}

.partner-patronage-card__content {
  display: grid;
  gap: 0.85rem;
  padding-left: 0.5rem;
}

.partner-patronage-card__content p {
  margin: 0;
  color: #4f6570;
  line-height: 1.6;
}

.partner-patronage-card__logo {
  display: grid;
  min-height: 170px;
  place-items: center;
  border-radius: 22px;
  background: #ffffff;
  padding: 1.5rem;
}

.partner-patronage-card__logo img {
  width: 100%;
  max-height: 150px;
  object-fit: contain;
}

@media (max-width: 980px) {
  .partners-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .partner-patronage-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .partners-featured-grid,
  .partners-grid {
    grid-template-columns: 1fr;
  }

  .partner-card--featured {
    min-height: 0;
  }

  .partner-card__logo-link,
  .partner-card--featured .partner-card__logo-link {
    min-height: 150px;
  }

  .partner-card__logo,
  .partner-card--featured .partner-card__logo {
    max-height: 125px;
  }

  .partner-patronage-card {
    border-radius: 22px;
    padding: 1.15rem;
  }
}
