@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&display=swap");

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "DM Sans";
}

body {
  display: block;
  background: linear-gradient(180.05deg, #164272 -2.66%, #080b2a 9.15%);
  font-family: "DM Sans", Arial, sans-serif;
  font-family: "DM Sans";
}

body.site-popup-open {
  overflow: hidden;
}

.site-popup.hidden {
  display: none;
}

.site-popup {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.site-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 10, 25, 0.72);
  backdrop-filter: blur(5px);
}

.site-popup-card {
  position: relative;
  z-index: 1;
  width: min(1000px, calc(100vw - 48px));
  min-height: 0;
  display: grid;
  grid-template-columns: 44% 55%;
  background: #fff;
  border-radius: 35px;
  overflow: hidden;
  box-shadow: 2px 8px 23px 3px rgba(0, 0, 0, 0.2);
}

.site-popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  width: auto;
  height: auto;
  border: none;
  background: transparent;
  color: #222;
  font-size: 29px;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  box-shadow: none;
}

.site-popup-media {
  position: relative;
  min-height: 100%;
  overflow: hidden;
}

.site-popup-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  border-radius: 35px;
}

.site-popup-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 12px;
  padding: 120px 0 12px 0;
  color: #102a56;
}

.site-popup-kicker {
  margin: 0;
  color: #cc1020;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-popup-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  color: #14429a;
  font-size: 18px;
  font-weight: 500;
  order: -1;
}

.site-popup-tags span {
  position: relative;
  padding: 0 16px 0 0;
  margin-right: 14px;
}

.site-popup-tags span:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 2px;
  height: 30px;
  background: #ffcc00;
  transform: translateY(-50%);
}

.site-popup-body h2 {
  margin: 0;
  color: #0f2e63;
  font-size: 44px;
  font-weight: 400;
  line-height: 50px;
  letter-spacing: -0.04em;
  max-width: 520px;
}

.site-popup-description {
  margin: 0;
  color: #44516d;
  font-size: 18px;
  line-height: 1.6;
  max-width: 520px;
}

.site-popup-meta {
  margin: -2px 0 0;
  color: #434343;
  font-size: 17px;
  font-weight: 500;
  text-shadow: -7px 6px 6px rgba(0, 0, 0, 0.3);
}

.site-popup-cta {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 0;
  padding: 12px 28px;
  border-radius: 999px;
  background: #c41122;
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  font-weight: 700;
  margin: 20px 0 50px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.site-popup-cta:hover {
  background: #a90f1d;
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(196, 17, 34, 0.25);
}

.section-titles {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  align-self: stretch;
  align-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

@media (max-width: 900px) {
  .site-popup {
    padding: 16px;
  }

  .site-popup-card {
    grid-template-columns: 1fr;
    min-height: 0;
    max-height: calc(100vh - 32px);
    overflow-y: auto;
  }

  .site-popup-media {
    min-height: auto;
  }

  .site-popup-body {
    align-items: center;
    padding: 30px;
  }

  .site-popup-body h2 {
    font-size: 27px;
    line-height: 32px;
    text-align: center;
  }

  .site-popup-description,
  .site-popup-meta {
    font-size: 15px;
    text-align: center;
  }

  .site-popup-close {
    top: 49%;
    right: 30%;
    font-size: 24px;
  }

  .site-popup-tags {
    justify-content: center;
    font-size: 14px;
  }

  .site-popup-cta {
    align-self: center;
  }
}

@media (max-width: 767px) {
  .site-popup-card {
    width: min(305px, calc(100vw - 32px));
  }

  .site-popup-body {
    padding: 10px 10px 17px;
    gap: 0;
  }

  .site-popup-tags {
    margin: 10px 0;
  }

  .site-popup-close {
    top: 47%;
    right: 7%;
    font-size: 20px;
  }
}
.section-titles h4 {
  color: #fc0;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 24px */
  letter-spacing: 2.56px;
  text-transform: uppercase;
  display: flex;
  padding: 4px 0;
  align-items: center;
  gap: 8px;
  margin: 0;
}
.section-titles h2 {
  display: flex;
  align-items: center;
  gap: 8px;
  align-self: stretch;

  color: #fff;
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 115%; /* 55.2px */
  letter-spacing: -0.96px;
  margin: 0;
}
.section-titles.left-align {
  align-items: flex-start;
  justify-content: flex-start;
  align-content: flex-start;
}
.section-titles p {
  color: #fff;
  leading-trim: both;
  text-edge: cap;
  font-feature-settings:
    "liga" off,
    "clig" off;
  font-family: "DM Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
}
.home-page {
  width: 100%;
  min-height: 100vh;
  opacity: 1;
  background: transparent;
  overflow-x: hidden;
}

.hero {
  position: relative;
  width: 100%;
  height: calc(100vh - 50px);
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(270deg, rgba(10, 13, 45, 0) 0%, rgba(9, 12, 44, 0.86) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  /* padding: 104px 48px 0; */
  color: #fff;
}

.home-page .top-nav {
  position: fixed;
  top: 0;
  left: 50%;
  right: auto;
  width: 100%;
  transform: translateX(-50%);
  z-index: 120;
  padding: 20px 30px 12px;
  backdrop-filter: blur(10px);
}

.top-nav {
  min-height: 60px;
  height: auto;
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 20px;
}

.schedule-header,
.speakers-header,
.projects-header,
.sponsors-header,
.news-header,
.logistics-header,
.faq-header,
.contact-header,
.register-header {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: #132170;
  box-shadow: 0 3px 12px rgba(5, 10, 36, 0.22);
}

.schedule-header-inner,
.speakers-header-inner,
.projects-header-inner,
.sponsors-header-inner,
.news-header-inner,
.logistics-header-inner,
.faq-header-inner,
.contact-header-inner,
.register-header-inner {
  width: 1326px;
  max-width: calc(100% - 36px);
  margin: 0 auto;
  padding: 14px 0;
}

.brand img {
  width: 150px;
  height: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 22px;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  min-width: 0;
}

.nav-links a {
  color: #f8f9fc;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  line-height: 1;
  letter-spacing: -0.02em;
  text-align: center;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
}

.nav-links a.active {
  color: #ffcc00;
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 10px;
  background: rgba(11, 24, 68, 0.72);
  padding: 9px 8px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  display: block;
}

.request-btn {
  border: none;
  background: #ffcc00;
  color: #111125;
  width: 180px;
  height: 46px;
  border-radius: 54px;
  padding: 14px 24px;
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: -0.02em;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  font-family: "DM Sans";
}

.bell-btn {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: none;
  background: transparent;
  position: relative;
  padding: 0;
  display: grid;
  place-items: center;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.23);
}

.bell-btn img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  display: block;
}

.bell-dot {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: #ff4b5c;
  color: #fff;
  font-size: 10px;
  display: grid;
  place-items: center;
}

.hero-stack {
  position: absolute;
  bottom: 0;
  left: 3rem;
  /* left: 111px; */
  /* width: 969px; */
  height: auto;
  display: grid;
  grid-template-rows: auto auto auto;
  align-content: start;
  /*gap: 24px;*/
}

.hero-text-block h1 {
  margin: 0;
  font-size: 80px;
  line-height: 80px;
  font-weight: 700;
  letter-spacing: -1.92px;
}

.hero-text-block p {
  margin: 25px 0 0;
  max-width: 900px;
  font-size: 22px;
  line-height: 140%;
  font-weight: 400;
  letter-spacing: 1px;
}

.hero-actions {
  margin-top: 24px;
}

.hero-request-btn {
  min-width: 210px;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(7, 14, 48, 0.28);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.hero-request-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(7, 14, 48, 0.34);
}

.date-chip {
  display: flex;
  padding: 4.865px 17.757px 3.135px 18.243px;
  justify-content: flex-start;
  align-items: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 33.081px; /* 206.757% */
  border-radius: 83px;
  background: rgba(255, 255, 255, 0.1);
  margin-top: 12px;
  max-width: fit-content;
}

.counter-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 25px 0 18px 0;
  align-self: start;
}

.counter-card {
  width: 174px;
  height: 151px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  position: relative;
  background-color: rgba(12, 59, 230, 0.18);
  border-radius: 12px;
  color: white;
  padding: 32px 16px;
}

.counter-card::before {
  content: "";
  position: absolute;
  inset: 0; /* Matches the size of the card */
  border-radius: 12px;
  padding: 1px; /* This controls the border thickness */
  background: linear-gradient(to bottom, #ffcc00, #4e3f02);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.counter-card strong {
  font-size: 62px;
  line-height: 115%;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-align: center;
}

.counter-card span {
  font-size: 20px;
  line-height: 115%;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-align: center;
  color: #f2f4fc;
}

/* --- NEWS TICKER (AUTO-ROTATE) --- */
.news-ticker-component {
  display: flex;
  align-items: center;
  background: #14216a;
  width: 100%;
  height: 50px;
  position: relative;
  overflow: hidden;
  z-index: 0;
}

.ticker-content-wrapper {
  flex: 1;
  overflow: hidden;
  display: flex;
}

.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: scroll 30s linear infinite;
  gap: 28px;
}

.news-text {
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
  text-decoration: none;
}

.news-ticker-media-button-background {
  height: 50px;
  padding: 0 30px;
  border-radius: 12px 0 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.41);
  border-radius: 12px 0 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.41);
  background:
    linear-gradient(0deg, rgba(12, 59, 230, 0.2) 0%, rgba(12, 59, 230, 0.2) 100%),
    linear-gradient(0deg, rgba(12, 59, 230, 0.2) 0%, rgba(12, 59, 230, 0.2) 100%),
    linear-gradient(0deg, rgba(12, 59, 230, 0.2) 0%, rgba(12, 59, 230, 0.2) 100%),
    linear-gradient(0deg, rgba(12, 59, 230, 0.2) 0%, rgba(12, 59, 230, 0.2) 100%), #14216a;
  color: #fff;
  cursor: pointer;
  flex-shrink: 0;
  z-index: 11;
  color: #fff;
  font-family: "DM Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 171.429% */
  text-transform: capitalize;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.attend {
  width: 100%;
  padding: 62px 0 72px;
  background: transparent;
}

.attend-inner {
  width: 1312px;
  max-width: 100%;
  margin: 0 auto;
}

.section-kicker {
  margin: 0;
  color: #ffcc00;
  text-align: center;
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.attend-grid {
  display: grid;
  grid-template-columns: 600px 632px;
  gap: 80px;
  align-items: stretch;
  justify-content: center;
}

.attend-cards {
  display: grid;
  gap: 14px;
}

.attend-card {
  width: 600px;
  height: 130px;
  padding: 16px 16px 16px 32px;
  display: grid;
  grid-template-columns: 42px 1fr;
  column-gap: 24px;
  row-gap: 8px;
  align-content: center;
  color: #f2f4fc;
  background:
    linear-gradient(0deg, #041938, #041938), linear-gradient(0deg, rgba(12, 59, 230, 0.18), rgba(12, 59, 230, 0.18));
  border-left: 6px solid #ffcc00;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
}

.card-icon {
  width: 42px;
  height: 42px;
  border-radius: 9.47px;
  background: #ffcc00;
  object-fit: contain;
  /*padding: 8px;*/
  display: block;
}

.attend-card h3 {
  margin: 0;
  align-self: center;
  color: #f8f9fc;
  font-weight: 600;
  font-size: 24px;
  line-height: 115%;
  letter-spacing: -0.02em;
}

.attend-card p {
  grid-column: 1 / -1;
  margin: 0;
  color: #f2f4fc;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: -0.02em;
}

.attend-image {
  margin: 0;
  width: 632px;
  height: 556px;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(180deg, #3968a7 0%, #234987 100%);
}

.attend-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sectors {
  width: 100%;
  padding: 20px 0 48px;
}

.sectors-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.sectors-nav-bottom {
  margin-top: 0;
}

.sectors-footer {
  width: 1312px;
  max-width: calc(100% - 40px);
  margin: 14px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 0 4px;
}

.sectors-footer .sectors-nav {
  justify-content: flex-start;
  /* margin: 0;
  flex: 0 0 auto; */
}

.sectors-arrow {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(10, 21, 74, 0.72);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease,
    opacity 0.2s ease;
}

.sectors-learn-more {
  min-width: 180px;
  height: 46px;
  border-radius: 54px;
  padding: 14px 24px;
  border: none;
  background: #ffcc00;
  color: #111125;
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: -0.02em;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
  flex: 0 0 auto;
}

.sectors-learn-more:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(8, 16, 54, 0.22);
}

.sectors-arrow span {
  font-size: 20px;
  line-height: 1;
}

.sectors-arrow:hover {
  background: rgba(26, 71, 163, 0.9);
  border-color: rgba(255, 204, 0, 0.65);
  transform: translateY(-1px);
}

.sectors-arrow.swiper-button-disabled {
  opacity: 0.4;
  cursor: default;
  transform: none;
}

.sectors-head {
  width: 1312px;
  max-width: 100%;
  margin: 0 auto 24px;
  text-align: center;
}

.sectors-scroll {
  width: 100%;
  display: flex;
  gap: 0;
  /* overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.35) transparent; */
}

/* .sectors-scroll::-webkit-scrollbar {
  height: 8px;
}

.sectors-scroll::-webkit-scrollbar-track {
  background: transparent;
}

.sectors-scroll::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.35);
  border-radius: 999px;
} */

.sector-card {
  position: relative;
  flex: 0 0 457px;
  /*width: 457px;*/
  height: 420px;
  overflow: hidden;
  scroll-snap-align: start;
  min-width: 457px;
  min-height: 420px;
}

.sector-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sector-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  display: flex;
  background: linear-gradient(
    to bottom,
    rgba(7, 46, 131, 0) 0%,
    /* #072E83 at 0% */ rgba(7, 46, 131, 0.8) 100% /* #072E83 at 80% */
  );
}
.sector-card:hover .sector-overlay {
  background: rgba(25, 71, 148, 0.92);
}
.sectors-swiper {
  width: 100%;
  padding: 50px 0; /* Extra space for shadows or pagination */
}

/* Swiper needs slides to have a specific height behavior */
.sector-card.swiper-slide {
  height: auto;
  display: flex; /* Keeps your flex layout working */
  /* Remove any hard-coded 'margin' you had before; Swiper uses 'spaceBetween' */
  position: relative;
}

/* Make sure images stay contained */
.sector-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 1 / 1;
}
.sector-card:hover .sector-overlay,
.sector-card:focus-within .sector-overlay,
.sector-card.is-active .sector-overlay,
.sector-card:hover p {
  opacity: 1;
  transition: all 0.3s ease;
}

/* .sector-card:hover .sector-bottom-title,
.sector-card:focus-within .sector-bottom-title,
.sector-card.is-active .sector-bottom-title {
  opacity: 0;
} */
.sector-bottom-title {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 52px 54px;
  z-index: 1;
  height: 135px;
  box-sizing: border-box;
  overflow: hidden;
  transition: all 0.3s ease;
}
.sector-card:hover .sector-bottom-title {
  height: auto;
  box-sizing: border-box;
  overflow: auto;
  transition: all 0.3s ease;
}

.sector-bottom-title h3 {
  color: #fff;
  font-family: "DM Sans";
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px; /* 116.667% */
  position: relative;
  margin: 0;
  transition: all 0.3s ease;
}
.sector-bottom-title::before {
  content: "";
  position: absolute;
  left: 45px;
  top: 50%;
  width: 4px;
  height: 42px;
  background: #ffcc00;
  transform: translateY(-50%);
  padding-left: 0;
}
.sector-card:hover .sector-bottom-title:before {
  background: transparent;
  color: #ffcc00;
}
.sector-card:hover .sector-bottom-title h3 {
  color: #ffcc00;
  transition: all 0.3s ease;
}
.sector-bottom-title p {
  color: #fff;
  font-feature-settings:
    "liga" off,
    "clig" off;
  font-family: "DM Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  opacity: 0;
  transition: all 0.3s ease;
  text-align: justify;
}
.hero,
.news-ticker-component,
.attend,
.about-conference,
.sectors,
.bridge-section,
.advantage,
.conversation {
  position: relative;
}

.attend::before,
.about-conference:before,
.sectors:before,
.bridge-section:before,
.advantage:before,
.conversation::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 50%;
  background: linear-gradient(160deg, #182458 36.04%, #2e56fd 86.1%);
  stroke-width: 1px;
  stroke: #000;
  filter: blur(300px);
  z-index: -1;
}
.bridge-section {
  width: 100%;
  min-height: 500px;
  padding: 82px 0 74px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.bridge-inner {
  width: 1312px;
  max-width: calc(100% - 40px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 590px) 420px;
  gap: 80px;
  align-items: end;
  justify-content: space-between;
}

.bridge-copy {
  color: #fff;
}

.bridge-copy .section-titles {
  margin-bottom: 20px;
}

.bridge-copy p {
  max-width: 560px;
  margin: 0;
  color: rgba(240, 244, 255, 0.92);
  font-size: 16px;
  text-align: justify;
  line-height: 1.65;
  text-align: justify;
}

.bridge-panel {
  justify-self: end;
  width: 100%;
  padding: 28px 26px 24px;
  border-radius: 12px;
  background: rgba(25, 50, 168, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(8px);
}

.bridge-panel h3 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 600;
}

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

.bridge-panel li {
  position: relative;
  padding-left: 16px;
  color: rgba(239, 243, 255, 0.96);
  font-size: 14px;
  line-height: 1.55;
}

.bridge-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: #ffcc00;
}

.bridge-cta {
  min-width: 156px;
  min-height: 42px;
  border: 0;
  border-radius: 6px;
  background: #ffcc00;
  color: #111125;
  font-family: "DM Sans";
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.about-conference {
  width: 100%;
  padding: 48px 0 72px;
  background: transparent;
}

.about-inner {
  width: 1312px;
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 600px 600px;
  gap: 32px;
  justify-content: center;
  align-items: start;
}

.about-image {
  margin: 0;
  width: 600px;
  height: 556px;
  border-radius: 4px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-content {
  width: 600px;
  min-height: 556px;
  color: #f2f4fc;
}

.about-kicker,
.advantage-kicker,
.conversation-kicker {
  color: #ffcc00;
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-kicker {
  margin: 0 0 14px;
}

.about-content p {
  margin: 0 0 18px;
  color: #f2f4fc;
  font-weight: 400;
  font-size: 16px;
  line-height: 180%;
  letter-spacing: 0;
  text-align: justify;
}

.advantage {
  width: 100%;
  padding: 78px 0 70px;
}

.advantage-inner {
  width: 1106px;
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
}

.advantage-kicker {
  margin: 0 0 8px;
}

.advantage-sub {
  margin: 0 auto 34px;
  max-width: 860px;
  color: #edf2ff;
  font-size: 16px;
  line-height: 145%;
}

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

.advantage-card {
  text-align: left;
  background:
    linear-gradient(0deg, #041938, #041938), linear-gradient(0deg, rgba(12, 59, 230, 0.18), rgba(12, 59, 230, 0.18));
  border: 1px solid rgba(255, 204, 0, 0.5);
  border-radius: 12px;
  width: 364px;
  min-height: 274px;
  padding: 16px 22px 16px;
  position: relative;
  background-color: rgba(12, 59, 230, 0.18);
}
.advantage-card:before {
  content: "";
  position: absolute;
  inset: 0; /* Matches the size of the card */
  border-radius: 12px;
  padding: 1px; /* This controls the border thickness */
  background: linear-gradient(to bottom, #ffcc00, #4e3f02);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.advantage-icon {
  width: 42px;
  height: 42px;
  border-radius: 9.47px;
  background: #ffcc00;
  /*padding: 8px;*/
  object-fit: contain;
  display: block;
  margin-bottom: 18px;
}

.advantage-card h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 36px;
  font-weight: 600;
  line-height: 115%;
}

.advantage-card ul {
  margin: 0;
  padding-left: 22px;
  color: #e6e8ec;
  font-size: 16px;
  line-height: 125%;
}

.conversation {
  width: 100%;
  padding: 28px 0 88px;
}

.conversation-inner {
  width: 1238px;
  max-width: 100%;
  margin: 0 auto;
  border-radius: 12px;
  background: #0c3be64f;
  padding: 36px 52px 38px;
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 145px;
  align-items: start;
}

.conversation-kicker {
  margin: 0 0 10px;
}

.conversation-copy .conversation-kicker {
  color: #ffcc00;
}

.conversation-copy p {
  margin: 0;
  max-width: 490px;
  color: #f2f4fc;
  font-size: 16px;
  line-height: 154%;
}

.conversation-form {
  display: grid;
  gap: 16px;
  width: 460px;
}

.contact-form-alert {
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.5;
}

.contact-form-alert-success {
  border: 1px solid rgba(74, 222, 128, 0.45);
  background: rgba(34, 197, 94, 0.16);
  color: #ebfff1;
}

.conversation-form input {
  display: flex;
  /*width: 460px;*/
  height: 42px;
  padding: 10px 16px;
  align-items: center;
  gap: 10px;
  border-radius: 4px;
  border: 1px solid #fff;
  background: transparent;

  color: #d7d7d7;
  leading-trim: both;
  text-edge: cap;
  font-family: "DM Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22.64px; /* 161.717% */
}

.conversation-form textarea {
  display: block;
  width: 100%;
  min-height: 128px;
  padding: 10px 16px;
  border-radius: 4px;
  border: 1px solid #fff;
  background: transparent;
  color: #d7d7d7;
  font-family: "DM Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22.64px;
  resize: vertical;
}

.conversation-form input::placeholder {
  color: #cfdcff;
}

.conversation-form textarea::placeholder {
  color: #cfdcff;
}

.conversation-form .two-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.conversation-form button {
  margin-top: 16px;
  height: 42px;
  width: 100%;
  border: 0;
  border-radius: 4px;
  background: #ffcc00;
  color: #111125;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  justify-self: stretch;
}

.contact-page {
  min-height: 100vh;
  color: #fff;
  background:
    radial-gradient(circle at 50% 26%, rgba(34, 76, 230, 0.4), rgba(10, 13, 45, 0) 42%),
    linear-gradient(180deg, #0b1240 0%, #071131 38%, #041938 100%);
}

.contact-main {
  padding: 72px 0 88px;
}

.contact-hero {
  width: 1326px;
  max-width: calc(100% - 36px);
  margin: 0 auto 36px;
}

.contact-hero .section-titles {
  margin-bottom: 0;
}

.contact-hero .section-titles p {
  margin: 0;
  color: #dce6ff;
  max-width: 760px;
  text-align: justify;
}

.contact-conversation {
  padding-top: 0;
}

.contact-conversation .conversation-inner {
  width: 1326px;
  max-width: calc(100% - 36px);
}

.site-footer {
  width: 100%;
  background: #0c1b63;
  margin-top: 0;
  padding-top: 72px;
}

.footer-inner {
  width: 1325px;
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 482px 412px 329px;
  gap: 51px;
}

.footer-about img {
  width: 104px;
  display: block;
  margin-bottom: 19px;
}

.footer-about h3 {
  margin: 0 0 10px;
  color: #fff;
  font-weight: 500;
  font-size: 32px;
  line-height: 112%;
}

.footer-about p {
  margin: 0;
  color: #e3ebff;
  font-size: 14px;
  line-height: 170%;
  max-width: 466px;
  text-align: justify;
}

.footer-map iframe {
  width: 100%;
  height: 251px;
  border: 0;
  border-radius: 8px;
}

.footer-contact h4 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
}

.footer-contact a {
  display: block;
  margin-bottom: 10px;
  color: #ecf2ff;
  text-decoration: underline;
  font-size: 14px;
  line-height: 155%;
}

.footer-bottom {
  width: 1326px;
  max-width: 100%;
  margin: 72px auto 0;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  padding: 22px 0 28px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: #d8e4ff;
  font-size: 12px;
}

.footer-bottom a {
  color: #d8e4ff;
}

.footer-bottom span:nth-child(2) {
  text-align: center;
}

.footer-social {
  display: flex;
  gap: 12px;
  justify-self: end;
}

.footer-social a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  text-decoration: none;
}

.footer-social a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

@media (max-width: 1200px) {
  .top-nav {
    grid-template-columns: 150px minmax(0, 1fr) auto;
    column-gap: 16px;
  }

  .nav-links {
    gap: 16px;
    flex-wrap: nowrap;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }

  .hero-stack {
    /* position: static; */
    /* width: min(100%, 940px); */
    margin: 74px auto 0;
  }

  .hero-text-block h1 {
    font-size: 72px;
    line-height: 78px;
  }

  .hero-text-block p {
    font-size: 20px;
  }

  .hero-actions {
    margin-top: 20px;
  }

  .counter-grid {
    width: 100%;
    max-width: 760px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .counter-card {
    /* width: 100%; */
  }

  .ticker-wrap {
    left: 0;
    width: 100%;
  }

  .attend-inner,
  .sectors-head,
  .sectors-nav,
  .about-inner,
  .bridge-inner,
  .advantage-inner,
  .conversation-inner {
    width: calc(100% - 40px);
  }

  .attend-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .attend-card,
  .attend-image {
    width: 100%;
  }

  .attend-image {
    height: 460px;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .bridge-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .bridge-panel {
    justify-self: stretch;
  }

  .about-image,
  .about-content {
    width: 100%;
    min-height: 0;
  }

  .about-image {
    height: 460px;
  }

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

  .advantage-card {
    width: 100%;
  }

  .conversation-inner {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 28px;
  }

  .conversation-form {
    width: 100%;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 22px;
    width: calc(100% - 40px);
  }

  .footer-about p {
    max-width: 100%;
  }

  .footer-bottom {
    width: calc(100% - 40px);
  }
}

@media (max-width: 992px) {
  .site-footer {
    padding-top: 25px;
  }
  
  .footer-bottom {
    margin: 20px auto 0;
  }
  .hero-content {
    padding-bottom: 150px;
  }

  .top-nav {
    grid-template-columns: 1fr auto;
    position: relative;
    height: auto;
    align-items: center;
  }

  .nav-links {
    display: none;
  }

  .top-actions {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .top-nav.is-open .nav-links {
    display: flex;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: min(340px, calc(100vw - 32px));
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(8, 16, 54, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 12px;
    overflow: hidden;
    z-index: 30;
    backdrop-filter: blur(6px);
  }

  .top-nav.is-open .nav-links a {
    display: block;
    text-align: left;
    padding: 12px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .top-nav.is-open .nav-links a:last-child {
    border-bottom: 0;
  }

  .hero-stack {
    margin-top: 52px;
  }

  .hero-text-block h1 {
    font-size: 56px;
    line-height: 62px;
  }

  .hero-text-block p {
    margin-top: 16px;
    font-size: 18px;
    letter-spacing: 0;
  }

  .hero-actions {
    margin-top: 18px;
  }

  .date-chip {
    font-size: 22px;
  }

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

    margin-bottom: 16px;
  }

  .counter-card {
    height: 132px;
  }

  .counter-card strong {
    font-size: 46px;
  }

  .advantage-grid {
    grid-template-columns: 1fr;
  }
  .sector-card h3 {
    color: #fc0;
    font-family: "DM Sans";
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px; /* 100% */
  }
  .sector-card p {
    color: #fff;
    font-feature-settings:
      "liga" off,
      "clig" off;
    font-family: "DM Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 12px;
    text-align: left;
  }

  .footer-bottom span:nth-child(2) {
    text-align: left;
  }

  .footer-social {
    justify-self: start;
  }
  .sectors {
    width: 90%;
    margin: 0 auto;
  }
  .section-titles {
    width: 100%;
    margin: 0 auto 24px auto;
  }
  .section-titles h2 {
    font-size: 30px;
  }
}

@media (max-width: 768px) {
  .advantage,
  .sectors,
  .about-conference,
  .attend {
    padding: 30px 0 40px;
  }
  .sector-card {
    position: relative;
    flex: 0 0 100%;
    width: 100%;
    height: 420px;
    overflow: hidden;
    scroll-snap-align: start;
    min-width: 100%;
    min-height: 420px;
  }
  .sector-bottom-title::before {
    left: 15px;
  }
  .sector-bottom-title {
    padding: 52px 30px;
  }
  .hero-content {
    padding: 16px 16px 130px;
  }

  .home-page .top-nav {
    left: 50%;
    right: auto;
    width: 100%;
    max-width: 100%;
    transform: translateX(-50%);
    padding-top: 16px;
    padding: 15px;
  }

  .brand img {
    width: 116px;
  }

  .top-actions {
    gap: 8px;
  }

  .request-btn {
    width: auto;
    height: 40px;
    padding: 10px 16px;
    font-size: 14px;
  }

  .hero-text-block h1 {
    font-size: 44px;
    line-height: 48px;
  }

  .hero-text-block p {
    font-size: 16px;
  }

  .hero-actions {
    margin-top: 16px;
  }

  .hero-request-btn {
    min-width: 0;
  }

  .date-chip {
    font-size: 16px;
    padding: 10px 16px;
  }

  .counter-grid {
    gap: 10px;
  }

  .counter-card {
    height: 116px;
  }

  .counter-card strong {
    font-size: 38px;
  }

  .counter-card span {
    font-size: 16px;
  }

  .ticker-wrap {
    height: 46px;
    grid-template-columns: 1fr;
  }

  .ticker-cta {
    display: none;
  }

  .attend,
  .sectors,
  .about-conference,
  .bridge-section,
  .advantage,
  .conversation {
    padding-left: 0;
    padding-right: 0;
  }

  .attend-inner,
  .sectors-head,
  .sectors-nav,
  .about-inner,
  .bridge-inner,
  .advantage-inner,
  .conversation-inner,
  .footer-inner,
  .footer-bottom {
    width: calc(100% - 24px);
  }

  .attend-card {
    height: auto;
    padding: 16px;
    grid-template-columns: 34px 1fr;
    column-gap: 12px;
  }

  .sectors-nav {
    margin-bottom: 0;
  }

  .sectors-nav-bottom {
    margin-top: 18px;
  }

  .sectors-footer {
    width: calc(100% - 24px);
    margin-top: 18px;
    flex-direction: column;
    align-items: center;
  }

  .sectors-footer .sectors-nav {
    justify-content: center;
  }

  .sectors-learn-more {
    width: min(100%, 260px);
  }

  .sectors-arrow {
    width: 46px;
    height: 46px;
  }

  .attend-card h3 {
    font-size: 20px;
  }

  .attend-card p {
    font-size: 14px;
  }

  .attend-image,
  .about-image {
    height: 300px;
  }

  .bridge-section {
    min-height: 0;
    padding: 56px 0 52px;
  }

  .about-content p,
  .bridge-copy p,
  .advantage-sub,
  .conversation-copy p {
    font-size: 15px;
  }

  .conversation-form .two-cols {
    grid-template-columns: 1fr;
  }

  .footer-about h3 {
    font-size: 28px;
  }

  .footer-map iframe {
    height: 220px;
  }
}

@media (max-width: 480px) {
  .hero-stack {
    left: 0;
    padding: 0 15px;
  }
  .counter-card {
    width: 140px;
  }
  .hero-text-block h1 {
    font-size: 36px;
    line-height: 40px;
  }

  .section-kicker,
  .sectors-kicker,
  .about-kicker,
  .advantage-kicker,
  .conversation-kicker {
    font-size: 13px;
  }

  .attend h2,
  .sectors-head h2,
  .about-content h2 {
    font-size: 34px;
  }

  .advantage-inner h2,
  .conversation-copy h2 {
    font-size: 34px;
  }

  .footer-social a {
    width: 30px;
    height: 30px;
  }
}
