/* Next Gen Procurement Summit — dark theme + premium gradients
   Brand: #8ac53e (primary), #00aced (secondary) */

:root {
  --color-primary: #8ac53e;
  --color-secondary: #00aced;
  --color-bg: #07090e;
  --color-bg-elevated: #10141c;
  --color-bg-card: #121822;
  --color-border: rgba(255, 255, 255, 0.07);
  --color-text: #eef1f6;
  --color-muted: #94a0b4;
  --font-sans: "Gotham", "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  --radius: 16px;
  --radius-sm: 12px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
  --shadow-glow-green: 0 0 80px rgba(138, 197, 62, 0.22);
  --shadow-glow-blue: 0 0 80px rgba(0, 172, 237, 0.2);
  --accent: var(--color-primary);
  --accent-2: var(--color-secondary);
  --grad-brand: linear-gradient(125deg, #8ac53e 0%, #5a9e2e 40%, #00aced 100%);
  --grad-brand-soft: linear-gradient(
    135deg,
    rgba(138, 197, 62, 0.35) 0%,
    rgba(0, 172, 237, 0.25) 55%,
    rgba(138, 197, 62, 0.12) 100%
  );
  --grad-mesh: radial-gradient(ellipse 100% 80% at 15% -10%, rgba(138, 197, 62, 0.28) 0%, transparent 52%),
    radial-gradient(ellipse 90% 70% at 95% 5%, rgba(0, 172, 237, 0.22) 0%, transparent 48%),
    radial-gradient(ellipse 70% 50% at 50% 105%, rgba(0, 172, 237, 0.12) 0%, transparent 45%),
    linear-gradient(180deg, #05060a 0%, #0a0d14 38%, #07090e 100%);
}

body[data-city="dubai"] {
  --accent: var(--color-secondary);
  --accent-2: var(--color-primary);
  --grad-mesh: radial-gradient(ellipse 100% 80% at 85% -10%, rgba(0, 172, 237, 0.3) 0%, transparent 52%),
    radial-gradient(ellipse 90% 70% at 5% 10%, rgba(138, 197, 62, 0.18) 0%, transparent 48%),
    radial-gradient(ellipse 70% 50% at 50% 105%, rgba(138, 197, 62, 0.1) 0%, transparent 45%),
    linear-gradient(180deg, #05060a 0%, #0a0d14 38%, #07090e 100%);
}

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

html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  background-color: var(--color-bg);
  background-image: var(--grad-mesh);
  min-height: 100vh;
}

/* Inner pages: same fixed header stack as home (topbar + main nav) */
body.page-inner {
  --home-topbar-h: 52px;
  --home-nav-outer: 96px;
  --home-header-offset: calc(var(--home-topbar-h) + var(--home-nav-outer));
  padding-top: var(--home-header-offset);
  transition: padding-top 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-inner .home-site-header .navbar-main-header {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1030;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4);
  transform: translate3d(0, var(--home-topbar-h), 0);
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  will-change: transform;
}

.page-inner-main {
  padding-top: clamp(2rem, 5vw, 3.5rem);
  padding-bottom: clamp(2.5rem, 7vw, 4.5rem);
}

.coming-soon-section .btn-brand {
  min-width: 14rem;
}

a {
  color: var(--accent-2);
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover {
  color: var(--accent);
}

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

/* Gradient headline */
/* Static gradient text — animating background-position on clipped text repaints every frame and causes jank */
.text-gradient-hero {
  background-image: linear-gradient(
    118deg,
    #ffffff 0%,
    #d4f0ff 24%,
    #5ecfff 42%,
    var(--color-secondary) 55%,
    #a8e85c 78%,
    #f2fff0 100%
  );
  background-size: 100% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Typography */
.display-title {
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.text-muted-custom {
  color: var(--color-muted);
}

/* Intro header — main logo + tools rail */
.intro-header {
  background: rgba(5, 7, 10, 0.97);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
}

/* Intro index: header scrolls with the page on small screens; fixed from md up */
.page-intro .intro-header--gateway {
  position: static;
  width: 100%;
}

@media (min-width: 768px) {
  .page-intro .intro-header--gateway {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
  }
}

.intro-header__logo {
  flex-shrink: 0;
  display: block;
  height: auto;
  max-height: 52px;
  width: auto;
  max-width: min(240px, 42vw);
  border-radius: 10px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.06);
  object-fit: contain;
}

.intro-header__wordmark {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.25;
}

.intro-header__wordmark-sub {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.55);
}

.intro-header__tools {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.65rem 0.85rem;
  padding: 0.35rem 0.5rem 0.35rem 0.85rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.intro-header__mail-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.intro-header__mail-icon {
  display: flex;
  color: var(--color-secondary);
  opacity: 0.95;
}

.intro-header__mail-text {
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .intro-header__mail-text {
    max-width: 260px;
  }
}

.intro-header__mail-pill:hover {
  color: #fff;
  border-color: rgba(0, 172, 237, 0.45);
  box-shadow: 0 0 0 1px rgba(138, 197, 62, 0.15), 0 8px 24px rgba(0, 172, 237, 0.12);
  background: rgba(0, 172, 237, 0.08);
}

.intro-header__socials {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.intro-header__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.intro-header__social-link:hover {
  color: #fff;
  border-color: rgba(138, 197, 62, 0.45);
  background: linear-gradient(145deg, rgba(138, 197, 62, 0.18), rgba(0, 172, 237, 0.12));
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.intro-header__social-link:focus-visible {
  outline: 2px solid var(--color-secondary);
  outline-offset: 2px;
}

.intro-header__lang {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding-left: 0.35rem;
  margin-left: 0.15rem;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.intro-social {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.intro-social__link {
  display: inline-flex;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.2s ease;
}

.intro-social__link:hover {
  color: var(--color-primary);
}

.intro-lang__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 32px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(12, 16, 24, 0.95);
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.intro-lang__btn img {
  border-radius: 2px;
  display: block;
}

.intro-lang__btn.active {
  border-color: rgba(0, 172, 237, 0.55);
  box-shadow: 0 0 0 1px rgba(0, 172, 237, 0.2);
  background: rgba(0, 172, 237, 0.1);
}

.intro-lang__btn--soon {
  opacity: 0.5;
  cursor: not-allowed;
}

.intro-lang__btn:not(:disabled):hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
}

/* Navbar */
.navbar-dark-custom {
  position: relative;
  background: rgba(7, 9, 13, 0.97) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.navbar-dark-custom::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(138, 197, 62, 0.45), rgba(0, 172, 237, 0.45), transparent);
  opacity: 0.65;
  pointer-events: none;
}

.navbar-dark-custom .nav-link {
  color: var(--color-text) !important;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.5rem 0.75rem !important;
  border-radius: 8px;
  transition: background 0.2s ease, color 0.2s ease;
}

.navbar-dark-custom .nav-link:hover,
.navbar-dark-custom .nav-link:focus {
  color: var(--accent) !important;
  background: linear-gradient(135deg, rgba(138, 197, 62, 0.08), rgba(0, 172, 237, 0.06));
}

.navbar-brand img {
  height: 40px;
  width: auto;
  filter: drop-shadow(0 4px 20px rgba(0, 172, 237, 0.15));
}

.page-home .navbar-main-header .navbar-brand img {
  height: 62px;
  max-height: 72px;
  width: auto;
  max-width: min(340px, 68vw);
  object-fit: contain;
}

.navbar-main-header--large.navbar {
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
}

.navbar-main-header--large .navbar-nav .nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.55rem 0.85rem !important;
}

.navbar-main-header__cta.btn-sm {
  padding: 0.55rem 1.15rem;
  font-size: 0.82rem;
}

/* Home — double header (newlevelegypt-style): fixed top strip + fixed nav below it.
   Hide: top strip translateY(-100%), nav top animates 0; body padding matches nav offset. */
body.page-home {
  --home-topbar-h: 52px;
  --home-nav-outer: 96px;
  --home-header-offset: calc(var(--home-topbar-h) + var(--home-nav-outer));
  /* Matches footer CTA negative margin so the strip sits in this space, not over section content */
  --footer-cta-overlap: clamp(5rem, 10vw + 1.75rem, 7.5rem);
  /* Extra space between "What You'll Learn" content and the CTA strip */
  --footer-cta-gap: 4.25rem;
  padding-top: var(--home-header-offset);
  transition: padding-top 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

body.page-home.site-topbar-hidden {
  padding-top: var(--home-nav-outer);
}

.home-site-header {
  position: relative;
  z-index: auto;
}

.home-topbar-slot {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1031;
  overflow: visible;
  opacity: 1;
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  will-change: transform;
}

body.page-home.site-topbar-hidden .home-topbar-slot {
  transform: translate3d(0, -100%, 0);
  pointer-events: none;
}

.home-topbar {
  background: rgba(4, 6, 9, 0.98);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transform: translateZ(0);
  transition: border-color 0.2s ease;
}

body.page-home.site-topbar-hidden .home-topbar {
  border-bottom-color: transparent;
}

/* Main nav: translateY (compositor) instead of animating `top` — avoids layout jitter with ::after / shadows */
.page-home .home-site-header .navbar-main-header {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1030;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4);
  transform: translate3d(0, var(--home-topbar-h), 0);
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  will-change: transform;
}

body.page-home.site-topbar-hidden .home-site-header .navbar-main-header {
  transform: translate3d(0, 0, 0);
}

.home-topbar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem 1rem;
  padding: 0.5rem 0;
}

.home-topbar__left {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 0.85rem;
}

.home-topbar__right {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 0.85rem;
}

@media (min-width: 992px) {
  .home-topbar__left {
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 1rem;
  }

  .home-topbar__right {
    justify-content: flex-end;
    margin-left: auto;
    flex-wrap: nowrap;
    gap: 0.65rem;
  }
}

.home-topbar__mail {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  max-width: 100%;
}

.home-topbar__mail:hover {
  color: var(--color-secondary);
}

.home-topbar__mail-icon {
  display: flex;
  color: var(--color-secondary);
  flex-shrink: 0;
}

.home-topbar__mail-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 200px;
}

@media (min-width: 768px) {
  .home-topbar__mail-text {
    max-width: 260px;
  }
}

.home-topbar__socials {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.home-topbar__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.home-topbar__social:hover {
  color: #fff;
  border-color: rgba(138, 197, 62, 0.4);
  background: rgba(138, 197, 62, 0.1);
}

.home-topbar__lang.intro-header__lang {
  padding-left: 0.35rem;
  margin-left: 0.15rem;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.intro-lang__btn--compact {
  width: 36px;
  height: 28px;
}

.home-topbar__summit-strip {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  line-height: 1.25;
}

.home-topbar__summit-date {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.home-topbar__summit-sep {
  color: rgba(255, 255, 255, 0.35);
  font-weight: 700;
  user-select: none;
}

.home-topbar__days-left {
  color: rgba(138, 197, 62, 0.95);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.68rem;
  white-space: nowrap;
}

body[data-city="dubai"] .home-topbar__days-left {
  color: rgba(230, 194, 0, 0.95);
}

.home-topbar__left .home-topbar__phone {
  padding-left: 0.85rem;
  margin-left: 0.35rem;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  padding-right: 0;
  border-right: none;
  justify-content: flex-start;
}

.home-topbar__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  flex-wrap: wrap;
  justify-content: flex-end;
  color: rgba(255, 255, 255, 0.72);
}

.home-topbar__phone-icon {
  display: flex;
  color: rgba(0, 172, 237, 0.85);
}

.home-topbar__phone-region {
  color: rgba(255, 255, 255, 0.45);
}

.home-topbar__phone-num {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-weight: 700;
}

.home-topbar__phone-num:hover {
  color: var(--color-secondary);
}

.summit-countdown--fancy {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  padding: 0.4rem 0.65rem 0.45rem 0.75rem;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(12, 18, 28, 0.95) 0%, rgba(6, 10, 16, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.hero-countdown-slot {
  max-width: 100%;
}

/* Hero — larger card (classic row + colons), content centered */
.summit-countdown--hero {
  width: 100%;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
  align-items: center;
  text-align: center;
  padding: 0.95rem 1.35rem 1.05rem;
  border-radius: 18px;
  gap: 0;
  box-shadow:
    0 6px 32px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.summit-countdown--hero .summit-countdown__grid {
  justify-content: center;
  width: 100%;
  gap: 0.45rem;
  align-items: flex-end;
}

.summit-countdown--hero .summit-countdown__cell {
  min-width: 3.15rem;
  align-items: center;
}

.summit-countdown--hero .summit-countdown__value {
  font-size: clamp(1.45rem, 3.2vw, 2.15rem);
}

.summit-countdown--hero .summit-countdown__unit {
  font-size: 0.68rem;
  margin-top: 0.22rem;
}

.summit-countdown--hero .summit-countdown__sep {
  font-size: 1.2rem;
  padding-bottom: 0.55rem;
}

.summit-countdown__glow {
  position: absolute;
  inset: -40% -20%;
  background: radial-gradient(ellipse at 30% 20%, rgba(138, 197, 62, 0.22), transparent 55%),
    radial-gradient(ellipse at 80% 60%, rgba(0, 172, 237, 0.18), transparent 50%);
  pointer-events: none;
  opacity: 0.9;
}

body[data-city="dubai"] .summit-countdown__glow {
  background: radial-gradient(ellipse at 25% 25%, rgba(230, 194, 0, 0.2), transparent 55%),
    radial-gradient(ellipse at 75% 55%, rgba(0, 172, 237, 0.2), transparent 50%);
}

.summit-countdown__eyebrow {
  position: relative;
  z-index: 1;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}

.summit-countdown__grid {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-end;
  gap: 0.15rem;
}

.summit-countdown__cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 2.15rem;
}

.summit-countdown__value {
  font-size: 0.95rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
  background: linear-gradient(180deg, #f4fff0 0%, #8ac53e 45%, #5a9a2e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 12px rgba(138, 197, 62, 0.35));
}

body[data-city="dubai"] .summit-countdown__value {
  background: linear-gradient(180deg, #fff9e6 0%, #e6c200 42%, #a8860a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 0 12px rgba(230, 194, 0, 0.3));
}

.summit-countdown__unit {
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  margin-top: 0.12rem;
}

.summit-countdown__sep {
  font-weight: 800;
  font-size: 0.85rem;
  color: rgba(0, 172, 237, 0.55);
  padding-bottom: 0.35rem;
  opacity: 0.85;
}

.summit-countdown--live #cd-seconds {
  animation: countdownPulse 1.15s ease-in-out infinite;
}

@keyframes countdownPulse {
  0%,
  100% {
    filter: drop-shadow(0 0 8px rgba(138, 197, 62, 0.4));
  }
  50% {
    filter: drop-shadow(0 0 14px rgba(0, 172, 237, 0.45));
  }
}

body[data-city="dubai"] .summit-countdown--live #cd-seconds {
  animation: countdownPulseDubai 1.15s ease-in-out infinite;
}

@keyframes countdownPulseDubai {
  0%,
  100% {
    filter: drop-shadow(0 0 8px rgba(230, 194, 0, 0.4));
  }
  50% {
    filter: drop-shadow(0 0 14px rgba(0, 172, 237, 0.45));
  }
}

.summit-countdown--ended .summit-countdown__eyebrow {
  color: rgba(138, 197, 62, 0.85);
}

@media (prefers-reduced-motion: reduce) {
  body.page-home,
  body.page-inner {
    transition: none;
  }

  .home-topbar-slot,
  .page-home .home-site-header .navbar-main-header,
  .page-inner .home-site-header .navbar-main-header {
    transition: none;
    will-change: auto;
  }

  .page-home .hero-wrap.home-hero {
    transition: none;
  }

  .summit-countdown--live #cd-seconds {
    animation: none;
  }
}

.navbar-main-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.navbar-main-header::after {
  opacity: 0.85;
}

.navbar-main-header .dropdown-menu {
  z-index: 1040;
}

@media (max-width: 991.98px) {
  .home-topbar__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
  }

  .home-topbar__left {
    width: 100%;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.65rem;
  }

  .home-topbar__left .home-topbar__phone {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    margin-left: 0;
    padding-left: 0.65rem;
    flex: 1 1 auto;
    min-width: 0;
    justify-content: flex-end;
  }

  .home-topbar__right {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem 0.85rem;
  }
}

@media (min-width: 992px) {
  .page-home .navbar-collapse#mainNav,
  .page-inner .navbar-collapse#mainNav {
    flex-wrap: nowrap;
    justify-content: flex-end;
  }

  .navbar-hover-dropdowns .nav-item.dropdown {
    position: relative;
  }

  .navbar-hover-dropdowns .nav-item.dropdown > .dropdown-menu {
    margin-top: 0 !important;
    top: 100%;
  }

  .navbar-hover-dropdowns .nav-item.dropdown:hover > .dropdown-menu {
    display: block !important;
  }

  .navbar-hover-dropdowns .nav-item.dropdown:hover > .nav-link.dropdown-toggle {
    color: var(--accent) !important;
  }
}

.navbar-dark-custom .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 1px rgba(138, 197, 62, 0.12);
}

body.mobile-nav-open {
  overflow: hidden;
}

@media (max-width: 767.98px) {
  .home-topbar__inner {
    padding: 0.3rem 0;
    gap: 0.45rem;
  }

  .home-topbar__mail-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .home-topbar__mail {
    padding: 0.4rem 0.55rem;
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.06);
  }

  .home-topbar__mail-icon svg {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 575.98px) {
  .site-footer__contact-lines > li:first-child > a[href^="mailto:"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    font-size: 0;
    line-height: 0;
    letter-spacing: 0;
    color: transparent;
    overflow: hidden;
    vertical-align: middle;
  }

  .site-footer__contact-lines > li:first-child > a[href^="mailto:"]::after {
    content: "";
    display: block;
    width: 20px;
    height: 16px;
    background: no-repeat center / contain
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%2394a0b4' d='M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.89 2 1.99 2H20c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4-8 5L4 8V6l8 5 8-5v2z'/%3E%3C/svg%3E");
  }

  .site-footer__contact-lines > li:first-child > a[href^="mailto:"]:hover::after {
    filter: brightness(1.25);
  }
}

/* Full-screen nav: slide in from left (mobile / tablet < lg) */
@media (max-width: 991.98px) {
  .page-home .navbar > .container-xxl,
  .page-inner .navbar > .container-xxl {
    position: static;
  }

  .page-home #mainNav.navbar-collapse,
  .page-inner #mainNav.navbar-collapse {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100vh !important;
    min-height: 100vh !important;
    max-height: none !important;
    margin: 0 !important;
    padding: calc(var(--home-header-offset, 148px) + 0.35rem) 1.15rem 2rem !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
    background: linear-gradient(185deg, #0c1018 0%, #07090e 55%, #05060a 100%) !important;
    border: none !important;
    box-shadow: none !important;
    z-index: 1045 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    transform: translate3d(-100%, 0, 0) !important;
    visibility: visible !important;
    transition: transform 0.36s cubic-bezier(0.32, 0.72, 0, 1) !important;
    will-change: transform;
  }

  .page-home #mainNav.navbar-collapse.show,
  .page-inner #mainNav.navbar-collapse.show {
    transform: translate3d(0, 0, 0) !important;
  }

  .page-home #mainNav.navbar-collapse.collapsing,
  .page-inner #mainNav.navbar-collapse.collapsing {
    height: 100vh !important;
    min-height: 100vh !important;
    transition: transform 0.36s cubic-bezier(0.32, 0.72, 0, 1) !important;
  }

  .page-home .navbar-collapse .navbar-nav,
  .page-inner .navbar-collapse .navbar-nav {
    gap: 0.15rem;
    width: 100%;
  }

  .page-home .navbar-collapse .nav-link,
  .page-inner .navbar-collapse .nav-link {
    padding: 0.65rem 0.25rem;
    font-size: 1.05rem;
  }

  .page-home .navbar-collapse .dropdown-menu,
  .page-inner .navbar-collapse .dropdown-menu {
    position: static !important;
    transform: none !important;
    width: 100%;
    margin-top: 0.35rem !important;
    margin-bottom: 0.5rem !important;
    border-radius: 12px;
  }

  .page-home .navbar-collapse .navbar-main-header__cta,
  .page-inner .navbar-collapse .navbar-main-header__cta {
    width: 100%;
    text-align: center;
    margin-top: 0.75rem !important;
  }

  .page-home .navbar .container-xxl .navbar-brand,
  .page-inner .navbar .container-xxl .navbar-brand,
  .page-home .navbar-dark-custom .navbar-toggler,
  .page-inner .navbar-dark-custom .navbar-toggler {
    position: relative;
    z-index: 1060;
  }

  .page-home .navbar-dark-custom .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon,
  .page-inner .navbar-dark-custom .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    opacity: 0;
  }

  .page-home .navbar-dark-custom .navbar-toggler[aria-expanded="true"],
  .page-inner .navbar-dark-custom .navbar-toggler[aria-expanded="true"] {
    border-color: rgba(255, 255, 255, 0.28);
  }

  .page-home .navbar-dark-custom .navbar-toggler[aria-expanded="true"]::before,
  .page-home .navbar-dark-custom .navbar-toggler[aria-expanded="true"]::after,
  .page-inner .navbar-dark-custom .navbar-toggler[aria-expanded="true"]::before,
  .page-inner .navbar-dark-custom .navbar-toggler[aria-expanded="true"]::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 1.15rem;
    height: 2px;
    background: #fff;
    border-radius: 1px;
    pointer-events: none;
  }

  .page-home .navbar-dark-custom .navbar-toggler[aria-expanded="true"]::before,
  .page-inner .navbar-dark-custom .navbar-toggler[aria-expanded="true"]::before {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .page-home .navbar-dark-custom .navbar-toggler[aria-expanded="true"]::after,
  .page-inner .navbar-dark-custom .navbar-toggler[aria-expanded="true"]::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(145deg, rgba(30, 36, 48, 0.95), rgba(18, 22, 30, 0.9));
  padding: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lang-btn img {
  width: 22px;
  height: auto;
  border-radius: 2px;
}

.lang-btn.active {
  border-color: color-mix(in srgb, var(--accent) 65%, transparent);
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--accent) 45%, transparent), var(--shadow-glow-green);
}

body[data-city="dubai"] .lang-btn.active {
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--accent) 45%, transparent), var(--shadow-glow-blue);
}

.lang-btn[disabled],
.lang-btn.lang-soon {
  opacity: 0.55;
  cursor: not-allowed;
}

.lang-btn:not([disabled]):hover {
  border-color: color-mix(in srgb, var(--accent-2) 55%, transparent);
}

/* Hero */
.hero-wrap {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.page-home .hero-wrap.home-hero {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  min-height: calc(100vh - var(--home-topbar-h) - var(--home-nav-outer));
  max-height: none;
  transition: min-height 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

body.page-home.site-topbar-hidden .hero-wrap.home-hero {
  min-height: calc(100vh - var(--home-nav-outer));
}

.home-hero__banner {
  position: relative;
  z-index: 2;
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  min-height: 0;
}

.page-home .home-hero .hero-content {
  padding-top: 2.5rem;
  padding-bottom: 2rem;
}

.home-hero__layout {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
  grid-template-areas:
    "intro"
    "countdown"
    "meta"
    "cta";
}

.home-hero__intro {
  grid-area: intro;
}

.home-hero__title-track {
  margin-bottom: 1rem;
  transform: translate3d(0, 0, 0);
  will-change: transform;
  transition: transform 0.2s ease-out;
}

@media (prefers-reduced-motion: reduce) {
  .home-hero__title-track {
    transition: none;
    will-change: auto;
  }
}

.home-hero__countdown {
  grid-area: countdown;
}

.home-hero__meta {
  grid-area: meta;
}

.home-hero__cta {
  grid-area: cta;
}

.home-hero__countdown .hero-countdown-slot {
  display: flex;
  justify-content: center;
}

@media (min-width: 992px) {
  .home-hero__layout {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 400px);
    column-gap: clamp(1.5rem, 4vw, 3rem);
    row-gap: 1rem;
    align-items: start;
    grid-template-areas:
      "intro countdown"
      "meta countdown"
      "cta countdown";
  }

  .home-hero__countdown {
    justify-self: stretch;
    align-self: center;
  }

  .home-hero__countdown .hero-countdown-slot {
    justify-content: center;
  }

  .home-hero__meta {
    margin-top: 0.15rem;
  }
}

.hero-stats-strip {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  margin-top: auto;
  background: linear-gradient(180deg, rgba(5, 8, 12, 0.2) 0%, rgba(4, 7, 11, 0.92) 45%, rgba(3, 5, 9, 0.98) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.35);
}

.hero-stats-strip__row {
  padding: 1.35rem 0 1.5rem;
}

.hero-stat-item {
  padding: 0.75rem 1rem;
}

@media (min-width: 768px) {
  .hero-stat-item--border {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }
}

@media (max-width: 767.98px) {
  .hero-stat-item + .hero-stat-item {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
}

.hero-stat-item__value {
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #fff;
  font-variant-numeric: tabular-nums;
}

.hero-stat-item__suffix {
  font-weight: 800;
  color: var(--color-secondary);
  margin-left: 1px;
}

.hero-stat-item__label {
  margin-top: 0.35rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.48);
}

/* Post-hero — “What awaits you” stats + “Why participate” (inspired by procurement summit format) */
.summit-preview-section .summit-preview-stat {
  padding: 0.5rem 0.25rem;
}

.summit-preview-stat__value {
  font-size: clamp(2rem, 5vw, 2.85rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}

.summit-preview-stat__figure {
  background: linear-gradient(180deg, #ffffff 0%, #c8f0a8 38%, var(--color-secondary) 72%, #5a9a2e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

body[data-city="dubai"] .summit-preview-stat__figure {
  background: linear-gradient(180deg, #fff9e6 0%, #f5e6a8 35%, #e6c200 70%, #a8860a 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.summit-preview-stat__suffix {
  font-weight: 800;
  color: var(--color-secondary);
  margin-left: 2px;
  font-size: 0.55em;
  vertical-align: super;
}

body[data-city="dubai"] .summit-preview-stat__suffix {
  color: #e6c200;
}

.summit-preview-stat__label {
  margin-top: 0.65rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.35;
}

.partners-section #partners-heading {
  max-width: 52rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.25;
}

.summit-why-row {
  align-items: stretch;
}

.summit-why-card-v2 {
  position: relative;
  height: 100%;
  border-radius: 18px;
  padding: 1.45rem 1.35rem 1.5rem;
  background: linear-gradient(
    155deg,
    rgba(255, 255, 255, 0.09) 0%,
    rgba(255, 255, 255, 0.02) 48%,
    rgba(0, 0, 0, 0.12) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.11);
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.28);
  transition: transform 0.38s ease, border-color 0.38s ease, box-shadow 0.38s ease;
  overflow: hidden;
}

.summit-why-card-v2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-secondary) 0%, rgba(0, 172, 237, 0.75) 55%, rgba(138, 197, 62, 0.35) 100%);
  opacity: 0.95;
}

.summit-why-card-v2:hover {
  transform: translateY(-5px);
  border-color: rgba(138, 197, 62, 0.32);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.38);
}

body[data-city="dubai"] .summit-why-card-v2::before {
  background: linear-gradient(90deg, #e6c200 0%, rgba(0, 172, 237, 0.55) 100%);
}

body[data-city="dubai"] .summit-why-card-v2:hover {
  border-color: rgba(230, 194, 0, 0.35);
}

.summit-why-card-v2__icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.05rem;
  background: radial-gradient(circle at 32% 28%, rgba(138, 197, 62, 0.28), transparent 62%),
    linear-gradient(145deg, rgba(0, 0, 0, 0.35), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--color-secondary);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

body[data-city="dubai"] .summit-why-card-v2__icon {
  color: #f0e090;
  background: radial-gradient(circle at 32% 28%, rgba(230, 194, 0, 0.22), transparent 62%),
    linear-gradient(145deg, rgba(0, 0, 0, 0.4), rgba(255, 255, 255, 0.05));
}

.summit-why-card-v2__title {
  font-size: 1.06rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.7rem;
  letter-spacing: -0.02em;
  line-height: 1.28;
}

.summit-why-card-v2__text {
  font-size: 0.93rem;
  line-height: 1.58;
  color: rgba(255, 255, 255, 0.64);
  margin: 0;
}

/* Our partners — responsive grid; logos loaded from _sources/partners (see home.html) */
.partners-section .partners-grid-shell {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.partners-logo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.65rem, 2vw, 1rem);
}

@media (min-width: 576px) {
  .partners-logo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .partners-logo-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 992px) {
  .partners-logo-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

.partners-logo-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 4.5rem;
  width: 100%;
  margin: 0;
  padding: clamp(0.55rem, 1.4vw, 0.9rem);
  border-radius: 14px;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.partners-logo-cell img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 52px;
  object-fit: contain;
  object-position: center;
}

.partners-logo-cell:hover {
  transform: translateY(-3px);
  border-color: rgba(138, 197, 62, 0.35);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

body[data-city="dubai"] .partners-logo-cell:hover {
  border-color: rgba(230, 194, 0, 0.4);
}

@media (prefers-reduced-motion: reduce) {
  .partners-logo-cell {
    transition: none;
  }

  .partners-logo-cell:hover {
    transform: none;
  }
}

/* Who should attend — section header matches Agenda-style block; then two columns (list | portraits) */
.who-attend-panel {
  position: relative;
  padding: 1.65rem 1.75rem 1.85rem;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.09) 0%,
    rgba(255, 255, 255, 0.03) 42%,
    rgba(6, 10, 16, 0.55) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

.who-attend-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-secondary) 0%, rgba(0, 172, 237, 0.75) 100%);
  opacity: 0.95;
}

body[data-city="dubai"] .who-attend-panel::before {
  background: linear-gradient(90deg, #e6c200 0%, rgba(0, 172, 237, 0.5) 100%);
}

.who-attend-list {
  padding-top: 0;
}

.who-attend-list__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.42rem 0;
  font-size: 0.94rem;
  line-height: 1.45;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.who-attend-list__item::before {
  content: "✓";
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  margin-top: 0.12rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.62rem;
  font-weight: 800;
  line-height: 1;
  color: #07090e;
  background: linear-gradient(145deg, var(--color-secondary) 0%, #5a9a2e 100%);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.who-attend-list__item--more::before {
  background: linear-gradient(145deg, rgba(0, 172, 237, 0.95) 0%, var(--color-secondary) 100%);
}

body[data-city="dubai"] .who-attend-list__item::before {
  background: linear-gradient(145deg, #f0e090 0%, #e6c200 55%, #a8860a 100%);
  color: #0a0c10;
}

/* Two layered portraits + pointer parallax (pattern: dm hero portraits) */
.who-attend-portraits-shell {
  position: relative;
  min-height: 280px;
}

.who-attend-portraits {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: center;
  gap: 0;
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  isolation: isolate;
  min-height: min(52vh, 480px);
  padding: 0.5rem 0 0.75rem;
}

.who-attend-portrait {
  position: relative;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.who-attend-portrait__inner {
  position: relative;
  z-index: 1;
  overflow: hidden;
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.12);
  width: 100%;
}

.who-attend-portrait--secondary .who-attend-portrait__inner {
  border-radius: 18px;
  aspect-ratio: 4 / 5;
  max-height: min(34vh, 300px);
}

.who-attend-portrait--primary .who-attend-portrait__inner {
  border-radius: 18px;
  aspect-ratio: 4 / 5;
  max-height: min(68vh, 520px);
}

.who-attend-portrait__img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.who-attend-portrait--primary .who-attend-portrait__img,
.who-attend-portrait--secondary .who-attend-portrait__img {
  object-position: center 30%;
}

.who-attend-portrait__ring {
  position: absolute;
  inset: -8px;
  border-radius: 20px;
  border: 1px solid rgba(138, 197, 62, 0.35);
  transform: rotate(-2.5deg);
  pointer-events: none;
  z-index: 0;
  transition:
    border-color 0.45s ease,
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.who-attend-portrait--primary .who-attend-portrait__ring {
  inset: -10px;
  border-radius: 22px;
  transform: rotate(2deg);
  border-color: rgba(0, 172, 237, 0.28);
}

.who-attend-portrait--secondary .who-attend-portrait__ring {
  border-radius: 20px;
  inset: -8px;
}

.who-attend-portrait--secondary {
  flex: 0 1 auto;
  min-width: 0;
  width: clamp(150px, 32vw, 240px);
  z-index: 2;
  margin-right: clamp(-4.5rem, -12vw, -1.75rem);
}

.who-attend-portrait--primary {
  flex: 0 1 auto;
  min-width: 0;
  width: clamp(200px, 38vw, 360px);
  z-index: 1;
  margin-left: clamp(-3.5rem, -10vw, -1.25rem);
}


body[data-city="dubai"] .who-attend-portrait__ring {
  border-color: rgba(230, 194, 0, 0.4);
}

.summit-why-card__ref {
  color: rgba(0, 172, 237, 0.88);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(0, 172, 237, 0.45);
}

.summit-why-card__ref:hover {
  color: var(--color-secondary);
  text-decoration-color: color-mix(in srgb, var(--color-secondary) 55%, transparent);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.38) contrast(1.05) saturate(1.08);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
      115deg,
      rgba(5, 7, 11, 0.94) 0%,
      rgba(8, 12, 20, 0.72) 38%,
      rgba(10, 14, 22, 0.45) 62%,
      rgba(0, 172, 237, 0.14) 100%
    ),
    radial-gradient(ellipse 80% 60% at 20% 30%, rgba(138, 197, 62, 0.18), transparent 55%);
}

body[data-city="dubai"] .hero-bg::after {
  background: linear-gradient(
      115deg,
      rgba(5, 7, 11, 0.94) 0%,
      rgba(8, 12, 20, 0.72) 38%,
      rgba(10, 14, 22, 0.45) 62%,
      rgba(138, 197, 62, 0.12) 100%
    ),
    radial-gradient(ellipse 80% 60% at 75% 25%, rgba(0, 172, 237, 0.22), transparent 55%);
}

/* Blurred orbs removed — large filter:blur layers cause scroll/layout glitches on many GPUs */

.hero-fx {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 4rem 0 3rem;
}

.hero-dates {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.35;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-dates--cairo {
  background-image: linear-gradient(105deg, #e8ffd0 0%, #8ac53e 45%, #5cb85c 100%);
}

.hero-dates--dubai {
  background-image: linear-gradient(105deg, #fff8e1 0%, #e6c200 40%, #c9a227 70%, #f0d78c 100%);
}

.hero-glow {
  display: none;
}

.btn.btn-brand {
  --bs-btn-color: #06110a;
  --bs-btn-bg: transparent !important;
  --bs-btn-border-color: transparent !important;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.72rem 1.5rem;
  border-radius: 999px;
  border: none !important;
  background-color: transparent !important;
  background-image: linear-gradient(
    135deg,
    color-mix(in srgb, var(--accent) 92%, #fff) 0%,
    var(--accent) 48%,
    color-mix(in srgb, var(--accent) 75%, #000) 100%
  );
  background-size: 100% 100%;
  box-shadow: 0 8px 32px color-mix(in srgb, var(--accent) 35%, transparent), inset 0 1px 0 rgba(255, 255, 255, 0.22);
  transition: box-shadow 0.2s ease;
}

.btn.btn-brand:hover {
  box-shadow: 0 12px 36px color-mix(in srgb, var(--accent) 42%, transparent), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.btn.btn-brand:active {
  box-shadow: 0 4px 20px color-mix(in srgb, var(--accent) 30%, transparent);
}

.btn.btn-outline-brand {
  --bs-btn-color: var(--color-text);
  --bs-btn-bg: transparent !important;
  --bs-btn-border-color: transparent !important;
  font-weight: 600;
  border-radius: 999px;
  padding: 0.72rem 1.45rem;
  background: linear-gradient(var(--color-bg-card), var(--color-bg-card)) padding-box,
    linear-gradient(135deg, rgba(138, 197, 62, 0.55), rgba(0, 172, 237, 0.45)) border-box !important;
  border: 1px solid transparent !important;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  transition: box-shadow 0.2s ease;
}

.btn.btn-outline-brand:hover {
  box-shadow: 0 8px 28px rgba(0, 172, 237, 0.14), inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.btn.btn-brand-secondary {
  --bs-btn-color: #031018;
  background-image: linear-gradient(135deg, #4bdcff 0%, #00aced 45%, #0086b8 100%) !important;
  box-shadow: 0 8px 32px rgba(0, 172, 237, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.btn.btn-brand-secondary:hover {
  box-shadow: 0 14px 44px rgba(0, 172, 237, 0.45);
}

/* Cards & blocks */
.glass-card {
  position: relative;
  background: linear-gradient(155deg, rgba(24, 30, 42, 0.92) 0%, rgba(14, 17, 24, 0.88) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

/* About section — image-only card with hover */
.about-summit-card {
  transition:
    border-color 0.35s ease,
    box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-summit-card:hover {
  border-color: color-mix(in srgb, var(--accent) 38%, rgba(255, 255, 255, 0.1));
  box-shadow:
    var(--shadow),
    0 0 0 1px color-mix(in srgb, var(--accent) 22%, transparent),
    0 28px 64px rgba(0, 0, 0, 0.55);
}

.about-summit-photo {
  position: relative;
  overflow: hidden;
  max-height: 440px;
}

.about-summit-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 40%,
    color-mix(in srgb, var(--color-bg) 55%, transparent) 100%
  );
  opacity: 0.85;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.about-summit-card:hover .about-summit-photo::after {
  opacity: 0.55;
}

.about-summit-photo img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 440px;
  object-fit: cover;
  transform: scale(1.001);
  transition:
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.45s ease;
}

.about-summit-card:hover .about-summit-photo img {
  transform: scale(1.06);
  filter: brightness(1.08) saturate(1.05);
}

@media (prefers-reduced-motion: reduce) {
  .about-summit-card,
  .about-summit-photo img,
  .about-summit-photo::after {
    transition: none;
  }

  .about-summit-card:hover .about-summit-photo img {
    transform: none;
    filter: none;
  }
}

/* Gradient border mask removed — mask-composite can flicker during paint */

.glass-card--glow::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(
    circle at 30% 20%,
    color-mix(in srgb, var(--card-accent, var(--accent)) 22%, transparent),
    transparent 55%
  );
  pointer-events: none;
  opacity: 0.7;
  transition: opacity 0.4s ease;
}

.city-pick-card:hover::after {
  opacity: 1;
}

.city-pick-card {
  cursor: pointer;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  height: 100%;
}

.city-pick-card:hover {
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.45), 0 0 0 1px color-mix(in srgb, var(--card-accent, var(--accent)) 35%, transparent);
}

.city-pick-card:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: 4px;
}

.city-pick-card .card-body {
  position: relative;
  z-index: 1;
  padding: 2rem 1.75rem;
}

.city-pick-card .logo-slot {
  height: 56px;
  display: flex;
  align-items: center;
}

.city-pick-card .logo-slot img {
  max-height: 48px;
  width: auto;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.35));
}

.badge-city {
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border: 1px solid transparent;
}

.badge-city--cairo {
  color: #d8ff9a;
  background: linear-gradient(135deg, rgba(138, 197, 62, 0.35), rgba(60, 120, 40, 0.25));
  border-color: rgba(138, 197, 62, 0.45);
  box-shadow: 0 0 24px rgba(138, 197, 62, 0.15);
}

.badge-city--dubai {
  color: #b8ecff;
  background: linear-gradient(135deg, rgba(0, 172, 237, 0.35), rgba(0, 100, 160, 0.25));
  border-color: rgba(0, 172, 237, 0.45);
  box-shadow: 0 0 24px rgba(0, 172, 237, 0.15);
}

/* Home — scroll-reveal (IntersectionObserver in main.js) */
.page-home .animate-on-scroll {
  opacity: 0;
  transform: translate3d(0, 28px, 0) scale(0.99);
  transition: opacity 0.48s cubic-bezier(0.22, 1, 0.36, 1), transform 0.52s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.page-home .animate-on-scroll.is-inview {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.page-home #speakers .speaker-card.animate-on-scroll {
  transition:
    opacity 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (prefers-reduced-motion: reduce) {
  .page-home .animate-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
  }
}

.page-home .glass-card.animate-on-scroll.is-inview,
.page-home .theme-pill.animate-on-scroll.is-inview,
.page-home .speaker-card.animate-on-scroll.is-inview {
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(138, 197, 62, 0.12), 0 0 48px rgba(0, 172, 237, 0.07);
}

.page-home .footer-cta.animate-on-scroll.is-inview {
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(138, 197, 62, 0.15);
}

.animate-on-scroll {
  opacity: 1;
}

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

.section-block {
  padding: 5rem 0;
  position: relative;
}

.section-block.alt {
  background: linear-gradient(
      180deg,
      rgba(138, 197, 62, 0.04) 0%,
      rgba(0, 172, 237, 0.03) 50%,
      transparent 100%
    ),
    linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.02) 50%, transparent 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.section-block.alt::before {
  content: "";
  position: absolute;
  top: 0;
  left: 5%;
  right: 5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(138, 197, 62, 0.35), rgba(0, 172, 237, 0.35), transparent);
  opacity: 0.7;
}

/* Home — sections alternate: .alt = brand gradient wash, plain = flat solid band */
.page-home .section-block:not(.alt) {
  background-color: var(--color-bg-elevated);
  background-image: none;
  border-top: 1px solid rgba(255, 255, 255, 0.055);
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
}

.theme-pill {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1.1rem 1.2rem;
  border-radius: var(--radius-sm);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.07);
  height: 100%;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.25);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.theme-pill:hover {
  border-color: color-mix(in srgb, var(--accent) 35%, transparent);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.32);
}

.theme-pill .num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.88rem;
  background: linear-gradient(145deg, color-mix(in srgb, var(--accent) 45%, transparent), color-mix(in srgb, var(--accent-2) 25%, transparent));
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* What You'll Learn — aligned with Keynotion WPE Summit learning pillars */
.learn-pillar-card {
  height: 100%;
  padding: 1.35rem 1.4rem 1.45rem;
  border-radius: var(--radius-sm);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 45%, rgba(6, 10, 16, 0.5) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.28);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.learn-pillar-card:hover {
  border-color: color-mix(in srgb, var(--accent) 28%, transparent);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34);
}

.learn-pillar-card__title {
  margin: 0 0 0.85rem;
  font-size: 1.02rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  letter-spacing: 0.01em;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.learn-pillar-card__list {
  margin: 0;
  padding-left: 1.1rem;
  color: rgba(220, 228, 236, 0.88);
  font-size: 0.9rem;
  line-height: 1.55;
}

.learn-pillar-card__list li {
  margin-bottom: 0.55rem;
}

.learn-pillar-card__list li:last-child {
  margin-bottom: 0;
}

.learn-pillar-card__list li::marker {
  color: var(--color-secondary);
}

.page-home .learn-pillar-card.animate-on-scroll.is-inview {
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.32), 0 0 0 1px rgba(138, 197, 62, 0.1);
}

.speaker-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.06) 0%, rgba(14, 18, 25, 0.98) 55%, #0a0d12 100%);
  position: relative;
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s ease;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

.speaker-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.07) 0%,
    transparent 42%,
    rgba(0, 172, 237, 0.08) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 2;
}

.speaker-card:hover,
.speaker-card:focus-within {
  transform: translateY(-6px);
  border-color: color-mix(in srgb, var(--accent) 42%, rgba(255, 255, 255, 0.12));
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.48),
    0 0 0 1px rgba(0, 172, 237, 0.12),
    0 0 40px rgba(138, 197, 62, 0.08);
}

.speaker-card:hover::before,
.speaker-card:focus-within::before {
  opacity: 1;
}

.speaker-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  flex-shrink: 0;
}

.speaker-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(5, 8, 12, 0.5) 100%);
  opacity: 0.85;
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.speaker-card:hover .speaker-card__media::after,
.speaker-card:focus-within .speaker-card__media::after {
  opacity: 0.45;
}

.speaker-card .thumb {
  aspect-ratio: 1;
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.speaker-card:hover .thumb,
.speaker-card:focus-within .thumb {
  transform: scale(1.05);
}

.speaker-card .caption {
  position: relative;
  z-index: 3;
  padding: 0.85rem 1rem 1.1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.speaker-card__name {
  line-height: 1.25;
  letter-spacing: 0.01em;
}

.speaker-card__role {
  font-size: 0.72rem;
  margin-top: -0.25rem;
}

.speaker-card__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  margin-top: auto;
  padding-top: 0.15rem;
}

.speaker-card__icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.82);
  transition:
    background 0.28s ease,
    border-color 0.28s ease,
    color 0.28s ease,
    transform 0.28s ease,
    box-shadow 0.28s ease;
}

.speaker-card__icon-btn:hover {
  color: #fff;
  border-color: rgba(0, 172, 237, 0.45);
  background: rgba(0, 172, 237, 0.12);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}

.speaker-card__icon-btn--in:hover {
  border-color: rgba(10, 102, 194, 0.55);
  background: rgba(10, 102, 194, 0.18);
}

.speaker-card__icon-btn svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.speaker-card__bio-btn {
  margin-left: auto;
  padding: 0.38rem 0.75rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid rgba(138, 197, 62, 0.35);
  background: linear-gradient(145deg, rgba(138, 197, 62, 0.18) 0%, rgba(0, 172, 237, 0.08) 100%);
  color: rgba(255, 255, 255, 0.95);
  cursor: pointer;
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.speaker-card__bio-btn:hover {
  border-color: rgba(138, 197, 62, 0.65);
  background: linear-gradient(145deg, rgba(138, 197, 62, 0.32) 0%, rgba(0, 172, 237, 0.15) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

@media (prefers-reduced-motion: reduce) {
  .speaker-card,
  .speaker-card::before,
  .speaker-card .thumb,
  .speaker-card__media::after,
  .speaker-card__icon-btn,
  .speaker-card__bio-btn {
    transition: none;
  }

  .speaker-card:hover,
  .speaker-card:focus-within {
    transform: none;
  }

  .speaker-card:hover .thumb,
  .speaker-card:focus-within .thumb {
    transform: none;
  }
}

/* Speaker bio — slide-in panel */
/* Keep pointer-events active while .is-open OR .speaker-bio-drawer--closing — if we drop pointer-events
   as soon as .is-open is removed, the close animation can stutter and hovers glitch (Win/Chrome). */
.speaker-bio-drawer {
  position: fixed;
  inset: 0;
  z-index: 1050;
  pointer-events: none;
}

.speaker-bio-drawer.is-open,
.speaker-bio-drawer.speaker-bio-drawer--closing {
  pointer-events: auto;
}

.speaker-bio-drawer__backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  /* No backdrop-filter here — it composites badly with sibling transform animation and causes jank */
  background: rgba(4, 6, 10, 0.82);
  opacity: 0;
  transition: opacity 0.38s ease;
}

.speaker-bio-drawer.is-open .speaker-bio-drawer__backdrop {
  opacity: 1;
}

.speaker-bio-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  width: min(100%, 480px);
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  background: linear-gradient(200deg, #141a22 0%, #0c1016 45%, #07090d 100%);
  border-left: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: -28px 0 72px rgba(0, 0, 0, 0.58);
  transform: translate3d(100%, 0, 0);
  transition: transform 0.38s cubic-bezier(0.32, 0.72, 0, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.speaker-bio-drawer.is-open .speaker-bio-drawer__panel {
  transform: translate3d(0, 0, 0);
}

.speaker-bio-drawer__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 4;
  width: 2.65rem;
  height: 2.65rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(12, 16, 22, 0.92);
  color: rgba(255, 255, 255, 0.88);
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.speaker-bio-drawer__close:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.speaker-bio-drawer__inner {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 3.5rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.speaker-bio-drawer__hero {
  text-align: center;
  padding-bottom: 1.35rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: radial-gradient(ellipse 120% 80% at 50% 0%, rgba(0, 172, 237, 0.12) 0%, transparent 62%);
}

.speaker-bio-drawer__photo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 1.1rem;
}

.speaker-bio-drawer__photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(138, 197, 62, 0.2);
}

.speaker-bio-drawer__title {
  margin: 0 0 0.5rem;
  font-size: 1.45rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  letter-spacing: 0.01em;
  padding: 0 2.5rem;
}

.speaker-bio-drawer__badge {
  display: inline-block;
  margin: 0;
  padding: 0.28rem 0.85rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(0, 172, 237, 0.95);
  background: rgba(0, 172, 237, 0.1);
  border: 1px solid rgba(0, 172, 237, 0.28);
  border-radius: 999px;
}

.speaker-bio-drawer__badge[hidden] {
  display: none !important;
}

.speaker-bio-drawer__contact {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin-bottom: 1.35rem;
}

.speaker-bio-drawer__contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.65rem;
  height: 2.65rem;
  padding: 0;
  border-radius: 12px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    color 0.2s ease;
}

.speaker-bio-drawer__contact-icon:hover {
  border-color: rgba(0, 172, 237, 0.5);
  background: rgba(0, 172, 237, 0.14);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
  color: #fff;
}

.speaker-bio-drawer__contact-icon--in:hover {
  border-color: rgba(10, 102, 194, 0.6);
  background: rgba(10, 102, 194, 0.22);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

.speaker-bio-drawer__contact-icon[hidden] {
  display: none !important;
}

.speaker-bio-drawer__section {
  flex: 1;
  min-height: 0;
}

.speaker-bio-drawer__section-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  margin-bottom: 0.85rem;
}

.speaker-bio-drawer__body {
  font-size: 0.98rem;
  line-height: 1.68;
  color: rgba(220, 228, 236, 0.88);
}

.speaker-bio-drawer__body p {
  margin-bottom: 1rem;
}

.speaker-bio-drawer__body p:last-child {
  margin-bottom: 0;
}

body.speaker-bio-drawer-open {
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .speaker-bio-drawer__backdrop,
  .speaker-bio-drawer__panel {
    transition: none;
  }

  .speaker-bio-drawer.is-open .speaker-bio-drawer__panel {
    transform: none;
  }
}

#speaker-bio-sources {
  display: none;
}

/* Agenda — rich cards (image + copy + CTA), placed after Partners on home */
.agenda-card-rich {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(
    165deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.03) 42%,
    rgba(6, 8, 14, 0.72) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.35);
  transition: transform 0.38s ease, box-shadow 0.38s ease, border-color 0.38s ease;
}

.agenda-card-rich::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 3;
  background: linear-gradient(90deg, var(--color-secondary) 0%, rgba(0, 172, 237, 0.82) 100%);
}

.agenda-card-rich--alt::before {
  background: linear-gradient(90deg, rgba(0, 172, 237, 0.65) 0%, var(--color-secondary) 55%, rgba(138, 197, 62, 0.4) 100%);
}

.agenda-card-rich:hover {
  transform: translateY(-6px);
  border-color: rgba(138, 197, 62, 0.3);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.45);
}

body[data-city="dubai"] .agenda-card-rich::before {
  background: linear-gradient(90deg, #e6c200 0%, rgba(0, 172, 237, 0.45) 100%);
}

body[data-city="dubai"] .agenda-card-rich--alt::before {
  background: linear-gradient(90deg, rgba(0, 172, 237, 0.5) 0%, #e6c200 100%);
}

.agenda-card-rich__media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.agenda-card-rich__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}

.agenda-card-rich:hover .agenda-card-rich__img {
  transform: scale(1.045);
}

.agenda-card-rich__media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(185deg, transparent 30%, rgba(5, 8, 12, 0.55) 65%, rgba(5, 8, 12, 0.88) 100%);
  pointer-events: none;
  z-index: 1;
}

.agenda-card-rich__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  padding: 0.38rem 0.95rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(8, 11, 18, 0.58);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
}

.agenda-card-rich__badge--day2 {
  border-color: rgba(138, 197, 62, 0.42);
}

.agenda-card-rich__body {
  position: relative;
  z-index: 1;
  padding: 1.45rem 1.5rem 1.6rem;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  gap: 0.4rem;
}

.agenda-card-rich__title {
  font-size: 1.32rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.2;
  background: linear-gradient(
    165deg,
    #ffffff 0%,
    #d4f0b8 28%,
    var(--color-secondary) 55%,
    #5a9a2e 88%,
    rgba(0, 172, 237, 0.85) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.agenda-card-rich--alt .agenda-card-rich__title {
  background: linear-gradient(
    155deg,
    #ffffff 0%,
    #c8f0a8 30%,
    var(--color-secondary) 52%,
    #00aced 78%,
    #5a9a2e 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
}

body[data-city="dubai"] .agenda-card-rich__title {
  background: linear-gradient(165deg, #fff9e6 0%, #f0e6a8 28%, #e6c200 55%, #c4a010 82%, #00aced 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

body[data-city="dubai"] .agenda-card-rich--alt .agenda-card-rich__title {
  background: linear-gradient(155deg, #fffef8 0%, #f5e6a8 32%, #e6c200 58%, #a8860a 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.agenda-card-rich__lede {
  font-size: 0.94rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
}

.agenda-card-rich__bullets {
  margin: 0.35rem 0 0.75rem;
  padding-left: 1.15rem;
  font-size: 0.86rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.62);
}

.agenda-card-rich__bullets li {
  margin-bottom: 0.28rem;
}

.agenda-card-rich__bullets li:last-child {
  margin-bottom: 0;
}

.agenda-card-rich__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
  margin-top: auto;
  padding-top: 0.35rem;
}

.agenda-card-rich__cta {
  flex: 0 1 auto;
}

@media (prefers-reduced-motion: reduce) {
  .agenda-card-rich,
  .agenda-card-rich__img {
    transition: none;
  }

  .agenda-card-rich:hover {
    transform: none;
  }

  .agenda-card-rich:hover .agenda-card-rich__img {
    transform: none;
  }
}

.video-embed-slot {
  border-radius: var(--radius);
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-muted);
  font-size: 0.95rem;
  position: relative;
  overflow: hidden;
}

.video-embed-slot--fancy {
  background: linear-gradient(160deg, rgba(12, 16, 24, 0.98), rgba(8, 11, 18, 0.92));
  border: 1px solid rgba(138, 197, 62, 0.22);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05), 0 16px 40px rgba(0, 0, 0, 0.35);
}

.video-embed-slot--fancy > * {
  position: relative;
  z-index: 1;
}

.video-embed-slot code {
  color: var(--accent-2);
  font-size: 0.85rem;
}

/* Footer */
.site-footer {
  background: linear-gradient(180deg, #040508 0%, #05070b 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 3.75rem 0 2rem;
  font-size: 0.9rem;
  position: relative;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(138, 197, 62, 0.35), rgba(0, 172, 237, 0.35), transparent);
}

.site-footer__col-title {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  background-image: linear-gradient(
    118deg,
    rgba(255, 255, 255, 0.96) 0%,
    color-mix(in srgb, var(--accent) 88%, #fff) 42%,
    color-mix(in srgb, var(--accent-2) 75%, #fff) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.site-footer__brand-link:hover .site-footer__brand-logo {
  opacity: 1;
}

.site-footer__soon-tag {
  color: color-mix(in srgb, var(--accent) 78%, rgba(255, 255, 255, 0.55));
  font-size: 0.82em;
  font-weight: 500;
}

.site-footer__hub-item {
  line-height: 1.45;
}

.site-footer__hub-line {
  display: inline;
}

.site-footer__item-tag {
  display: inline;
  margin-left: 0.35rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: color-mix(in srgb, var(--accent-2) 72%, rgba(220, 240, 255, 0.5));
  white-space: normal;
}

.site-footer__contact-lines li + li {
  margin-top: 0.35rem;
}

.site-footer__contact-socials {
  justify-content: flex-start;
}

.site-footer__organizer {
  margin-top: 1.35rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.site-footer__organizer .site-footer__col-title {
  margin-bottom: 0.65rem;
}

.site-footer__organizer .intro-footer-mega__organizer-link {
  padding: 0.32rem 0.5rem 0.42rem;
  border-radius: 14px;
}

.site-footer__organizer .intro-footer-mega__organizer-logo {
  max-width: min(118px, 55vw);
  filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.6)) drop-shadow(0 1px 0 rgba(255, 255, 255, 0.05));
}

/* Footer grid (xl+): narrower Participation, wider Governance + Contact — sums to 12 cols */
@media (min-width: 1200px) {
  .site-footer .row.align-items-start > :nth-child(3) {
    flex: 0 0 auto;
    width: 12.5%;
    max-width: 12.5%;
    min-width: 0;
  }

  .site-footer .row.align-items-start > :nth-child(5) {
    flex: 0 0 auto;
    width: 16.66666667%;
    max-width: 16.66666667%;
  }

  .site-footer .row.align-items-start > .site-footer__contact-col {
    flex: 0 0 auto;
    width: 20.83333333%;
    max-width: 20.83333333%;
  }
}

.site-footer__bottom-strip.intro-footer-mega__strip {
  margin-top: 2.5rem;
  text-align: inherit;
}

.site-footer__strip-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem 1.5rem;
}

.site-footer__strip-copy {
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.38);
}

.site-footer__gateway-link {
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.38);
  transition: color 0.2s ease;
}

.site-footer__gateway-link:hover {
  color: var(--accent);
}

@media (max-width: 575.98px) {
  .site-footer__strip-inner {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer li {
  margin-bottom: 0.5rem;
}

.site-footer a {
  color: var(--color-muted);
}

.site-footer a:hover {
  color: var(--accent);
}

.footer-cta {
  background: linear-gradient(135deg, #152118 0%, #0d1f28 50%, #121a16 100%);
  border: 1px solid color-mix(in srgb, var(--accent) 35%, #1a2830);
  border-radius: var(--radius);
  padding: 2.25rem 1.75rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}

.footer-cta > * {
  position: relative;
  z-index: 1;
}

.footer-cta .btn.btn-brand {
  --bs-btn-color: #000;
  color: #000 !important;
}

.footer-cta .btn.btn-brand:hover,
.footer-cta .btn.btn-brand:focus-visible,
.footer-cta .btn.btn-brand:active {
  color: #000 !important;
}

/* Home — last section: reserve depth for footer CTA overlap + gap above strip */
.page-home .what-you-learn-section {
  padding-bottom: calc(var(--footer-cta-overlap) + var(--footer-cta-gap));
}

/* Home — CTA lives inside footer; pulled up so it straddles the section above */
.page-home .site-footer.site-footer--overlap-cta {
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 2rem;
}

.page-home .site-footer--overlap-cta .site-footer__cta-wrap {
  margin-top: calc(-1 * var(--footer-cta-overlap));
  margin-bottom: 2.35rem;
  position: relative;
  z-index: 2;
}

.page-home .site-footer--overlap-cta .site-footer__cta-wrap .footer-cta {
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .page-home .site-footer--overlap-cta .site-footer__cta-wrap {
    margin-bottom: 2.85rem;
  }
}

/* Dropdown */
.dropdown-menu-dark-custom {
  background: linear-gradient(180deg, rgba(18, 22, 32, 0.98), rgba(12, 15, 22, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 0.55rem;
  box-shadow: var(--shadow), 0 0 0 1px rgba(138, 197, 62, 0.08);
}

.dropdown-menu-dark-custom .dropdown-item {
  color: var(--color-text);
  border-radius: 10px;
  font-size: 0.9rem;
  padding: 0.5rem 0.9rem;
}

.dropdown-menu-dark-custom .dropdown-item:hover,
.dropdown-menu-dark-custom .dropdown-item:focus {
  background: linear-gradient(135deg, rgba(138, 197, 62, 0.12), rgba(0, 172, 237, 0.08));
  color: var(--accent);
}

/* Intro page — gateway + boxed summit cards */

.intro-mail {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color 0.2s ease;
}

.intro-mail:hover {
  color: var(--color-secondary);
}

.intro-page {
  /* Header is in normal flow below md — no offset; fixed bar needs space from md up */
  padding-top: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #05060a;
}

@media (min-width: 768px) {
  .intro-page {
    padding-top: clamp(5.5rem, 12vw, 6.25rem);
  }
}

@media (min-width: 992px) {
  .intro-page {
    padding-top: 5.75rem;
  }
}

.intro-prelude {
  position: relative;
  padding: clamp(2.5rem, 6vw, 4rem) 1rem clamp(2rem, 4vw, 3rem);
  overflow: hidden;
}

.intro-prelude::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 90% 80% at 50% 0%, rgba(138, 197, 62, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse 70% 60% at 100% 50%, rgba(0, 172, 237, 0.1) 0%, transparent 50%),
    linear-gradient(180deg, #0a0d14 0%, #06080d 100%);
  pointer-events: none;
}

.intro-prelude__inner {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 0 auto;
}

.intro-eyebrow {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 1rem;
}

.intro-headline {
  font-size: clamp(1.35rem, 3.8vw, 2.35rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.intro-headline--gradient {
  color: transparent;
  background: linear-gradient(
    118deg,
    #ffffff 0%,
    #c4f090 18%,
    #8ac53e 38%,
    #5ecfff 58%,
    #00aced 72%,
    #e8f8ff 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 1.5rem;
}

.intro-headline--type {
  min-height: 1.35em;
  margin-bottom: 1.5rem;
}

.intro-headline--type .intro-typewriter {
  display: inline-block;
  min-height: 1.15em;
}

.intro-headline--type .intro-headline--gradient {
  margin-bottom: 0;
}

.intro-headline__break {
  display: inline-block;
}

.intro-prelude__rule {
  width: 0;
  max-width: 120px;
  height: 3px;
  margin: 0 auto;
  border-radius: 999px;
  background: linear-gradient(90deg, #8ac53e, #00aced);
  animation: introRuleGrow 0.65s ease 0.12s forwards;
}

@keyframes introRuleGrow {
  to {
    width: 88px;
  }
}

@keyframes introLiftIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.intro-load {
  opacity: 0;
  animation: introLiftIn 0.5s ease forwards;
}

.intro-load[data-step="1"] {
  animation-delay: 0.04s;
}
.intro-load[data-step="2"] {
  animation-delay: 0.1s;
}
.intro-load[data-step="3"] {
  animation-delay: 0.16s;
}
.intro-load[data-step="4"] {
  animation-delay: 0.22s;
}
.intro-load[data-step="5"] {
  animation-delay: 0.28s;
}
.intro-load[data-step="6"] {
  animation-delay: 0.24s;
}
.intro-load[data-step="7"] {
  animation-delay: 0.32s;
}

@media (prefers-reduced-motion: reduce) {
  .intro-prelude__rule {
    animation: none;
    width: 88px;
  }

  .intro-load {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* Boxed summit cards */
.intro-summits {
  flex: 1;
  padding: 0 1rem clamp(3rem, 6vw, 4.5rem);
}

.intro-summits__container {
  max-width: 1120px;
  margin: 0 auto;
}

.summit-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(165deg, rgba(22, 28, 38, 0.98) 0%, rgba(10, 12, 18, 0.99) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.summit-card:hover {
  box-shadow: 0 32px 72px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.summit-card--cairo {
  border-top: 3px solid rgba(138, 197, 62, 0.65);
}

.summit-card--dubai {
  border-top: 3px solid rgba(212, 175, 55, 0.75);
}

.summit-card__body {
  padding: 2rem 1.75rem 2.25rem;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.summit-card__logo-wrap {
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 2;
  padding: 1.35rem 1.75rem;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(160deg, rgba(28, 32, 42, 0.98) 0%, rgba(12, 14, 20, 0.99) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 20px 48px rgba(0, 0, 0, 0.45);
  width: 100%;
  max-width: 320px;
}

.summit-card--cairo .summit-card__logo-wrap {
  border-color: rgba(200, 210, 220, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 20px 50px rgba(0, 0, 0, 0.5),
    0 0 60px rgba(138, 197, 62, 0.06);
}

.summit-card--dubai .summit-card__logo-wrap {
  border-color: rgba(212, 175, 55, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 20px 50px rgba(0, 0, 0, 0.5),
    0 0 64px rgba(212, 175, 55, 0.1);
}

.summit-card__logo {
  height: 88px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.summit-card__label {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.35rem;
}

.summit-card__title {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.summit-card__meta {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.summit-card__when {
  width: 100%;
  padding: 1rem 0.75rem;
  margin-bottom: 1.35rem;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.summit-card__dates {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-bottom: 0.35rem;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.summit-card__dates--cairo {
  background-image: linear-gradient(105deg, #e8ffd0 0%, #8ac53e 45%, #5cb85c 100%);
}

.summit-card__dates--dubai {
  background-image: linear-gradient(105deg, #fff8e1 0%, #e6c200 40%, #c9a227 70%, #f0d78c 100%);
}

.summit-card__venue {
  display: block;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
}

.summit-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  width: 100%;
}

.summit-card__btn {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.8rem 1.35rem;
  border-radius: 999px;
  border: none;
  text-decoration: none;
  transition: box-shadow 0.2s ease, filter 0.2s ease;
}

.summit-card__btn--primary {
  color: #061008;
}

.summit-card__btn--cairo {
  background: linear-gradient(180deg, #a8d95a 0%, #8ac53e 50%, #72a632 100%);
  box-shadow: 0 6px 22px rgba(138, 197, 62, 0.35);
}

.summit-card__btn--dubai {
  background: linear-gradient(180deg, #f0d78c 0%, #c9a227 45%, #a67c00 100%);
  color: #1a1204;
  box-shadow: 0 6px 22px rgba(201, 162, 39, 0.35);
}

.summit-card__btn--primary:hover {
  filter: brightness(1.06);
  color: inherit;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

.summit-card__btn--line {
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.summit-card__btn--line:hover {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}

/* Intro mega footer */
.intro-footer-mega {
  position: relative;
  margin-top: auto;
  padding: 0 1rem;
  background: linear-gradient(180deg, #010206 0%, #070a12 42%, #05060c 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.intro-footer-mega__accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(138, 197, 62, 0.7), rgba(0, 172, 237, 0.75), transparent);
  opacity: 0.85;
}

.intro-footer-mega__accent::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
}

.intro-footer-mega__main {
  padding: 2.75rem 0 2rem;
}

.intro-footer-mega__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  max-width: 420px;
}

.intro-footer-mega__logo-link {
  flex-shrink: 0;
  display: inline-block;
  padding: 0.35rem;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(40, 48, 62, 0.5), rgba(12, 16, 24, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.intro-footer-mega__logo-link:hover {
  border-color: rgba(0, 172, 237, 0.35);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45), 0 0 32px rgba(0, 172, 237, 0.08);
}

.intro-footer-mega__logo-img {
  display: block;
  height: auto;
  max-height: 80px;
  width: auto;
  max-width: 260px;
  border-radius: 12px;
  object-fit: contain;
}

.intro-footer-mega__desc {
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.52);
  margin: 0;
  max-width: 400px;
}

.intro-footer-mega__h {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  background-image: linear-gradient(
    118deg,
    rgba(255, 255, 255, 0.96) 0%,
    color-mix(in srgb, var(--accent) 88%, #fff) 42%,
    color-mix(in srgb, var(--accent-2) 75%, #fff) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.intro-footer-mega__list a {
  display: inline-block;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  transition: color 0.2s ease, padding-left 0.2s ease;
  border-left: 2px solid transparent;
  padding-left: 0;
}

.intro-footer-mega__list a:hover {
  color: var(--color-primary);
  padding-left: 0.35rem;
  border-left-color: var(--color-primary);
}

.intro-footer-mega__list li + li {
  margin-top: 0.5rem;
}

.intro-footer-mega__contact {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.78);
}

.intro-footer-mega__contact a {
  color: var(--color-secondary);
  text-decoration: none;
  font-weight: 700;
}

.intro-footer-mega__contact a:hover {
  text-decoration: underline;
  color: #5dd6ff;
}

.intro-footer-mega__contact li + li {
  margin-top: 0.5rem;
}

.intro-footer-mega__icons {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: flex-end;
}

.intro-footer-mega__icons--contact {
  margin-top: 1rem;
  justify-content: flex-start;
}

.intro-footer-mega__icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.intro-footer-mega__icon-link:hover {
  color: #fff;
  border-color: rgba(0, 172, 237, 0.4);
  background: linear-gradient(145deg, rgba(138, 197, 62, 0.15), rgba(0, 172, 237, 0.12));
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.intro-footer-mega__organizer-link {
  display: inline-block;
  margin-top: 0.35rem;
  padding: 0.4rem 0.65rem 0.5rem;
  border-radius: 18px;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.1) 0%, rgba(18, 22, 32, 0.55) 38%, rgba(4, 6, 10, 0.9) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.14) inset,
    0 -6px 14px rgba(0, 0, 0, 0.45) inset,
    0 14px 28px rgba(0, 0, 0, 0.55),
    0 4px 0 rgba(0, 0, 0, 0.35);
  transform: perspective(520px) rotateX(7deg);
  transform-origin: 50% 80%;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.2s ease;
}

.intro-footer-mega__organizer-link:hover {
  border-color: rgba(0, 172, 237, 0.35);
  transform: perspective(520px) rotateX(4deg) translateY(-3px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.16) inset,
    0 -4px 12px rgba(0, 0, 0, 0.35) inset,
    0 20px 40px rgba(0, 0, 0, 0.55),
    0 0 28px rgba(0, 172, 237, 0.12);
}

.intro-footer-mega__organizer-logo {
  display: block;
  width: auto;
  max-width: min(168px, 72vw);
  height: auto;
  filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.65)) drop-shadow(0 2px 0 rgba(255, 255, 255, 0.06));
}

@media (prefers-reduced-motion: reduce) {
  .intro-footer-mega__organizer-link,
  .intro-footer-mega__organizer-link:hover {
    transform: none;
    transition: none;
  }
}

.intro-footer-mega__strip {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 1.25rem 0.5rem 1.75rem;
  text-align: center;
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.38);
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.35));
}

@media (max-width: 991.98px) {
  .intro-footer-mega__icons {
    justify-content: flex-start;
  }
}

@media (max-width: 767.98px) {
  .intro-header--gateway .intro-header__bar {
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
    padding-top: 0.65rem;
    padding-bottom: 0.65rem;
  }

  .intro-header--gateway .intro-header__logo {
    max-height: 46px;
  }

  .intro-header--gateway .intro-header__tools {
    width: 100%;
    margin-left: 0 !important;
    justify-content: center;
    padding: 0.55rem 0.65rem;
  }
}

@media (max-width: 575.98px) {
  .intro-header__tools {
    width: 100%;
    justify-content: center;
    padding: 0.65rem;
  }

  .intro-header__mail-text {
    max-width: 160px;
  }

  .intro-footer-mega__brand {
    flex-direction: column;
    align-items: flex-start;
  }
}

.badge-summit {
  display: inline-block;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #c8d8f0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(0, 172, 237, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

