/* Cleaned & structured CSS (auto) */

:root {
  --brand-accent: #ffffff;
  --brand-pink: #E91E63;
  --bg-900: #000000;
  --bg-800: #12151A;
  --card-800: #141821;
  --border-700: #232938;
  --text-100: #E7ECF3;
  --muted-400: #9AA3AE;
  --bs-body-font-size: 1.2rem;
  --scroll: 0;
  --grad-angle: 248.72deg;
}

body {
  background: linear-gradient(90deg, #06051F 66.24%, #5F68DE 165.69%);
  color: var(--text-100);
  font-family: "Manrope", sans-serif;
}



html, body {
  height: 100%;
}

body {
  /* */
  /* */
  background-attachment: scroll;
}

/* */
body::after{
  content:"";
  position: fixed;
  inset: auto 0 0 0;
  height: env(safe-area-inset-bottom);
  background: inherit;   /* */
  z-index: -1;
}

.absolute {
  position: absolute!important;
}

.navbar-nav {
  background: #06051F80;
  border-radius: 2rem;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.navbar-collapse {
  margin-top: 1rem;
}

.logo-img {
  height: 50px;
  width: auto;
  display: block;
  object-fit: contain;
}

.btn {
  border-radius: 2em;
}

.btn-accent {
  --bs-btn-bg: var(--brand-accent);
  --bs-btn-border-color: var(--brand-accent);
  --bs-btn-color: #0b0d10;
  --bs-btn-hover-bg: #00000000;
  --bs-btn-hover-border-color: #ffffff;
}

.btn-outline-accent {
  --bs-btn-color: var(--brand-accent);
  --bs-btn-border-color: var(--brand-accent);
  --bs-btn-hover-bg: var(--brand-accent);
  --bs-btn-hover-color: #0b0d10;
}

.btn-mf {
  background: linear-gradient(137.41deg, #13BCFE 0.01%, #4285F4 50.01%, #A274DB 100.01%);
  color: #ffffff;
  border: none;
}

@media (max-width: 576px) {
  .btn-mf {
    width:100%;
  }

}

.hero video.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 1;
  pointer-events: none;
  object-position: left center;
  filter: blur(0);
  left: 55vw;
}

.hero h1 {
  line-height: 1;
  white-space: nowrap;
  font-size: clamp(2rem, 4vw, 4rem);
}

.hero-logo {
  max-width: 200px;
}

.hero {
  display: flex;
  align-items: flex-end;
  position: relative;
  min-height: 100vh;
  background: linear-gradient(248.72deg, #1BC2FF -21.8%, #6661F4 20.86%, #06051F 74.65%);
  overflow: hidden;
}

.text-blue {
  color: #4285F4!important;
}

.text-purple {
  color: #5F68DE!important;
}

.section-title {
  font-weight: 800;
  letter-spacing: .3px;
}

.lead-muted {
  color: #e4e4e4;
}

.card {
  border-radius: 1.5em;
}

.card-dark {
  background: none!important;
  border: 1px solid rgb(255 255 255);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(12px);
  border-radius: 1.5em;
}

.card-elevated {
  position: relative;
  border-radius: 28px;
  background: rgba(16, 18, 26, 0.85);
  border: 1px solid rgba(255, 255, 255, .06);
  box-shadow: 0 24px 60px rgba(0,0,0,.45),          
    inset 0 1px 0 rgba(255,255,255,.06);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  overflow: hidden;
}

.card-elevated::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: linear-gradient(90deg,
    rgba(149,117,205,.55),
    rgba(19,188,254,.55),
    rgba(149,117,205,.40)
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: .75;
}

.card-elevated::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120px 60px at 18% 0,
      rgba(255,255,255,.12), transparent 70%)
    ,
    radial-gradient(120px 60px at 82% 0,
      rgba(255,255,255,.08), transparent 70%);
  pointer-events: none;
}

.about-card p, .about-card li {
  color: var(--text-100);
}

.card-dark::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: radial-gradient(120px 60px at 18% 0, rgb(255 255 255 / 5%), transparent 70%), radial-gradient(120px 60px at 82% 0, rgb(255 255 255 / 3%), transparent 70%);
}

.table-dark.table-striped > tbody > tr:nth-of-type(odd) > * {
  color: var(--text-100);
  box-shadow: none;
}

.table>:not(caption)>*>* {
  background-color: #21252900;
}

.table-striped>tbody>tr:nth-of-type(odd)>* {
  --bs-table-bg-type: #ffffff0a;
}

.table.table-dark {
  border-collapse: separate !important;
  border-spacing: 0 .75rem;
}

.table.table-dark td, .table.table-dark th {
  padding-top: .9rem;
  padding-bottom: .9rem;
  border: none;
}

.table.table-dark tbody tr {
  border-radius: 1em;
  overflow: hidden;
}

tbody, td, tfoot, th, thead, tr {
  border-color: inherit;
  border-style: none;
  border-width: 0;
}

.program-toggle {
  font-weight: 500;
  text-decoration: none;
}

.program-toggle .toggle-icon {
  display: inline-block;
  transition: transform .25s ease;
  border: 1px solid rgb(255 255 255);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  line-height: 38px;
  text-align: center;
  color: #ffffff;
}

.program-toggle[aria-expanded="true"] .toggle-icon {
  transform: rotate(180deg);
}

#program .collapsing {
  transition: height .55s cubic-bezier(.22,.61,.36,1);
}

#program #program-more {
  opacity: 0;
  transition: opacity .45s ease;
}

#program #program-more.show {
  opacity: 1;
}

#program #program-more.collapsing {
  opacity: 0;
}

#program #program-more.fade-rows tr {
  opacity: 0;
  transform: translateY(6px);
  animation: rowIn .35s ease forwards;
}

#program #program-more.fade-rows tr:nth-child(1) {
  animation-delay: .02s;
}

#program #program-more.fade-rows tr:nth-child(2) {
  animation-delay: .05s;
}

#program #program-more.fade-rows tr:nth-child(3) {
  animation-delay: .08s;
}

#program #program-more.fade-rows tr:nth-child(4) {
  animation-delay: .11s;
}

@keyframes rowIn {
  to { opacity: 1;
  transform: none;
}

} .map-placeholder {
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 1em;
  background: #0f141c;
  min-height: 320px;
  display: grid;
  place-items: center;
  padding: .5rem;
  box-shadow: 0 24px 64px rgba(0,0,0,.4), inset 0 1px 0 rgba(255,255,255,.06);
}

.map-wrapper {
  border-radius: 1.5em !important;
  overflow: hidden;
  width: 100%;
  max-width: 800px;
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
}

.back-to-top {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 1030;
  opacity: .85;
}

.map-placeholder iframe {
  filter: brightness(1.02) contrast(1.02);
}

.anchor-offset {
  scroll-margin-top: 5rem;
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(149,117,205,.4), rgba(19,188,254,.4));
  opacity: .5;
}

/* */
.divider-hor {
  position: relative;
  width: 100%;
  height: 1px;
  margin: 2.5rem auto;
  background: linear-gradient(180deg, rgb(255 255 255 / 69%), rgb(255 255 255 / 40%));
}

.divider-hor::after {
  content:"+";
  position: absolute;
  
  left: 50%;
  transform: translate(-50%, -25px);
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: #fff;
  font-weight: 100;
  font-size: 2rem;
  background: linear-gradient(180deg, #2dd1ff 0%, #6a74ff 55%, #6b57d3 100%);
  box-shadow: 0 12px 24px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.35);
}

/* */
@media (hover: hover) {
  .divider-hor::after:hover {
    background: rgba(19, 188, 254, 0.15);
    transform: translate(-50%, -50%) scale(1.1);
  }
}

/* */
@media (min-width: 992px) {
  .divider-hor {
    display: none;
  }
}


.pink {
  color: var(--brand-pink);
}

.text-secondary {
  color: #e4e4e4!important;
}

.hamburger {
  border-radius: 2em;
  width: 50px;
  height: 50px;
  border: 0.72px solid #494DBF;
  background: #00000080;
}

.navbar-toggler-icon {
  width: 1.2em;
  height: 1.2em;
}

.of-on-btn {
  border-radius: 222px;
  border-width: 1px;
  border: 1px solid #494DBF;
  padding: 0.2rem 0.7rem;
  display: inline-block;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: .95;
  pointer-events: none;
}

.hero .col-lg-6 {
  margin-top: auto;
  height: 75vh;
}

.badge {
  --bs-badge-font-size: 1.25em;
}

.badge-soft {
  background: rgba(19,188,254,.12);
  border: 1px solid rgba(19,188,254,.35);
  color: var(--brand-accent);
}

.products::before {
  content: "";
  display: none;
  background: url("../assets/Ellipse2.svg") no-repeat center/contain;
  position: absolute;
  top: -20%;
  right: 10%;
  width: 441px;
  height: 441px;
}

.products::after {
  content: "";
  display: none;
  background: url("../assets/Ellipse1.svg") no-repeat center/contain;
  position: absolute;
  z-index: -100;
  bottom: 35px;
  left: 30%;
  width: 148px;
  height: 148px;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all .8s cubic-bezier(.3,.1,.3,1);
  will-change: opacity, transform;
}

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

.speaker-unit {
  /* padding: 1rem; */
}

footer {
  border: 0!important;
}

h2, .h2 {
  font-weight: 800;
}

.section-title.h1 {
  letter-spacing: -0.02em;
}

#hero-col {
  margin-bottom: 3.5rem;
}

@media (max-width: 991px) {

  #hero-col {
    margin-bottom: 2rem;
  }

}
#sur1 {
  margin-top:auto;
}


@media (min-width: 991px) {

  #sur2 {
    margin-bottom: auto;
  }

}
#sur3 {
  align-items: center;
  justify-content: flex-start;
  gap: 1.5rem;
}

#sur3 a:last-child {
  margin-left: auto;
}

.audience-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(240px, 1fr));
  gap: 6rem 6rem;
}

.aud-item {
  display: flex;
  gap: 1rem;
  color: var(--text-100);
  font-size: clamp(1rem, 0.9rem + 0.5vw, 1.25rem);
  line-height: 150%;
  max-width: 34ch;
}

.aud-icon {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: block;
  object-fit: contain;
}

#Whom .section-title {
  font-weight: 800;
  letter-spacing: -0.02em;
}

.about-video {
  max-width: 400px;
  height: auto;
  background: none!important;
}


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

.talk-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: clamp(1rem, 0.95rem + 0.35vw, 1.2rem);
  line-height: 150%;
  color: var(--text-100);
  max-width: 36ch;
}

.talk-icon {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 12px;
  background: linear-gradient(180deg, #2dd1ff 0%, #6a74ff 55%, #6b57d3 100%);
  box-shadow: 0 12px 24px rgba(20, 24, 33, .35),
    inset 0 1px 0 rgba(255,255,255,.35);
  position: relative;
}

.talk-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: radial-gradient(120% 80% at 30% 0%, rgba(255,255,255,.35), transparent 60%),
    radial-gradient(100% 80% at 80% 10%, rgba(255,255,255,.15), transparent 70%);
}

.talk-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 8px;
  border: 3px solid #fff;
  border-top: 0;
  border-right: 0;
  transform: translate(-50%, -50%) rotate(-45deg);
  border-radius: 2px;
  box-shadow: 0 0 1px rgba(0, 0, 0, .2);
}

.talk-image {
  max-width: 280px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, .35));
  opacity: 0.95;
  transition: transform 0.8s ease, opacity 0.8s ease;
}

.talk-image:hover {
  transform: scale(1.03);
  opacity: 1;
}

#footer-video {
  width: 100%;
  height: 20vh;
  overflow: hidden;
  position: relative;
  background: #000;
}

#footer-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

#ecosystem {
  position: relative;
  z-index: 1;
}

.roadmap-head .overline {
  font-size: .9rem;
  opacity: .85;
  color: var(--text-100);
}

.roadmap-head .title {
  margin: .25rem 0;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.roadmap-head .title .accent {
  background: linear-gradient(90deg, #13BCFE 0%, #9575CD 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.roadmap-head .subtitle {
  color: rgba(255,255,255,.8);
  font-size: 1rem;
}

.roadmap-divider {
  position: relative;
  height: 100%;
  min-height: 540px;
}

.roadmap-divider::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgb(255 255 255 / 69%), rgb(255 255 255 / 40%));
}

.roadmap-divider .plus {
  position: sticky;
  top: 30%;
  left: 50%;
  transform: translate(-50%, 0);
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: #fff;
  font-weight: 100;
  font-size: 2rem;
  background: linear-gradient(180deg, #2dd1ff 0%, #6a74ff 55%, #6b57d3 100%);
  box-shadow: 0 12px 24px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.35);
}

.badge-new {
  display: inline-block;
  font-size: .8rem;
  line-height: 1;
  padding: .45rem .6rem;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(90deg, #13BCFE 0%, #A274DB 100%);
  margin-left: .5rem;
  vertical-align: middle;
}

.app-grid {
  --tile: 44px;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(7, var(--tile));
  gap: 0.5rem;
}

@media (max-width:390px) {
  .app-grid {
    grid-template-columns: repeat(5, var(--tile));
  }
}

@media (min-width:992px) {
  .app-grid {
    grid-template-columns: repeat(5, var(--tile));
  }
}

@media (min-width:1200px) {
  .app-grid {
    grid-template-columns: repeat(6, var(--tile));
  }
}

.app-tile {
  width: 44px;
  height: 44px;
  background-color: rgba(255,255,255,0.04);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-tile img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .9rem 1rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: var(--text-100);
  line-height: 1.35;
}

.feature-icon {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: #fff;
  background: rgba(255,255,255,.06);
  /* border: 1px solid rgba(255,255,255,.2); */
  font-weight: 700;
}

.feature-icon-img {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  object-fit: contain;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
  display: block;
}

.feature-icon-img img {
  width: 100%;
  height: 100%;
}

.product-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .85rem 1rem;
}

.product-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: var(--text-100);
  line-height: 1.35;
}

.product-icon {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: #fff;
  /* background: rgba(255,255,255,.06); */
  /* border: 1px solid rgba(255,255,255,.2); */
  font-weight: 700;
}

#ecosystem .ecosystem-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  z-index: 0;
  pointer-events: none;
}

#ecosystem .container {
  position: relative;
  z-index: 1;
}

.hero-pill {
  position: absolute;
  right: 0;
  bottom: 3.5rem;
  z-index: 3;
  border-radius: 2rem;
  font-weight: 800;
  color: #fff;
  background: #06051F80;
  border: none;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.hero-pill-mobile {
  z-index: 3;
  border-radius: 2rem;
  font-weight: 800;
  color: #fff;
  background: #06051F80;
  border: none;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.new-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-weight: 800;
  font-size: 0.8rem;
  color: #fff;
  background: radial-gradient(circle at 30% 30%, #a274db, #5f68de 90%);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-left: 0.5rem;
}

#line-video {
  width: 100%;
  height: 20vh;
  overflow: hidden;
  position: relative;
}

#line-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}


/* ===== Fullscreen mobile menu ===== */
.fullscreen-menu {
  position: fixed;
  inset: 0;
  z-index: 1050; /* */
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}

.fullscreen-menu.active {
  opacity: 1;
  pointer-events: auto;
}

.fullscreen-menu .menu-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(12px);
  transition: opacity .35s ease;
}

.fullscreen-menu .menu-content {
  position: relative;
  height: 100%;
  display: grid;
  place-items: center;
  padding: 2rem;
}

.fullscreen-menu .fs-link {
  color: #fff;
  text-decoration: none;
  display: inline-block;
  margin: 1rem 0;
  font-size: clamp(1.4rem, 5.5vw, 2rem);
  font-weight: 500;
  letter-spacing: .02em;
  opacity: 0;
  transform: translateY(12px);
  transition: color .2s ease;
}

.fullscreen-menu.active .fs-link {
  animation: fsFadeUp .45s ease forwards;
}
.fullscreen-menu.active .fs-link:nth-child(1){ animation-delay: .05s; }
.fullscreen-menu.active .fs-link:nth-child(2){ animation-delay: .1s; }
.fullscreen-menu.active .fs-link:nth-child(3){ animation-delay: .15s; }
.fullscreen-menu.active .fs-link:nth-child(4){ animation-delay: .2s; }
.fullscreen-menu.active .fs-link:nth-child(5){ animation-delay: .25s; }

.fullscreen-menu .fs-link:hover { color: #13bcfe; }

/* */
.fs-close {
  position: absolute;
  top: calc(env(safe-area-inset-top, 0px) + 24px);
  right: 50%;
  transform: translate(50%, 0);
  width: 50px;
  height: 50px;
  border: 0;
  border-radius: 999px;
  background: rgb(255 255 255);
  color: #000;
  font-size: 2rem;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background .2s ease;
}
.fs-close:hover { background: rgb(255 255 255 / 74%); }



/* */
.body-lock { overflow: hidden; }

/* */
.navbar.absolute { filter: drop-shadow(0 2px 8px rgba(0,0,0,.25)); }

/* */
@keyframes fsFadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* Media queries */
@media (max-width: 991px) {
.navbar-nav {
    padding: 1rem;
}

}

@media (min-width: 992px) {
  .nav-item:first-child {
      padding-left: 1rem;
  }
  
  .nav-item:last-child {
      padding-right: 1rem;
  }
  
}

  
  @media (max-width: 576px) {
  .logo-img {
      height: 32px;
  }

}

@media (max-width: 1400px) {
  
    .hero {
        display: flex;
        min-height: 81vh;
    }
    
    .hero .col-lg-6 {
        margin-top: auto;
    }

    .hero p {
        font-size:0.85rem;
    }
  
}

@media (max-width: 576px) {
  
    .hero {
        min-height: 93vh;
    }
  
}

@media (min-width: 415px) and (max-width: 576px) {
  
    .hero {
        min-height: 81vh;
    }
  
}

@media (max-width: 389px) {
  
    .hero {
        min-height: 100vh;
    }
  
}

@media (min-width:1024px) and (max-width: 1400px) {
    .hero {
        min-height: 100vh;
    }

    .hero .hero-title-img{
        max-width: 50vw;
    }
  
}

@media (max-width: 1400px) {
.audience-grid {
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    gap: 2rem 4rem;
}

}

@media (max-width: 992px) {
.audience-grid {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
    gap: 1.75rem 2.5rem;
}

}

@media (max-width: 576px) {
.audience-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.aud-item {
    max-width: none;
}

}

@media (max-width: 1200px) {
.talk-list {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
    gap: 1.5rem 2rem;
}

}

@media (max-width: 576px) {
.talk-list {
    grid-template-columns: 1fr;
    gap: 1rem;
}

.talk-item {
    max-width: none;
}

.talk-image {
    display: none;
}

}




.cta-sub {
    font-size:1rem;
}

@media (max-width: 576px) {
.cta-title {
    text-align: center;
}

.cta-sub {
    text-align: center;
}

}

@media (prefers-reduced-motion: reduce){
} @media (max-width: 992px) {
    .nav-link {
        font-size: 1.2rem;
    padding-bottom: 1rem;
}

}


.speaker-unit p {
    font-size: 0.65rem;
}


.navbar-toggler,
.navbar-nav {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.nav-hidden {
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
}

/* */
.navbar-brand {
  transition: opacity 0.3s ease, transform 0.3s ease;
  will-change: opacity, transform;
}

.logo-hidden {
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
}

/* === Partners slider (JS loop) === */
.partner-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: auto;
}

.slider-track {
  display: flex;
  align-items: center;
  gap: 3rem;
  will-change: transform;
  user-select: none;
}

.slider-track-2 {
  display: flex;
  align-items: center;
  gap: 3rem;
  will-change: transform;
  user-select: none;
}

.slide {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  opacity: 0.9;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.slide:hover {
  opacity: 1;
}

.slide img {
  max-height: 80px;
  width: auto;
  filter: brightness(0) invert(1) opacity(0.85);
}

/* */
@media (max-width: 767.98px) {
  .slide {
    width: 105px;
    gap: 0.5rem;
  }

}

#program td {
  vertical-align: top;
}

@media (max-width: 992px) {

  .about-video {
    max-width: 268px;
  }

}




@media (max-width: 389px) {

  #sur1  {
    margin-bottom: 0.5rem !important;
  }
  
  #sur2 {
    margin-bottom:1rem;
  }

 
  
}

@media (min-width: 1920px) {

  .logo-img {
    height: 60px;
  }

}



:root {
  --fi-size: 44px;
  --fi-radius: 10px;
  --badge-size: 22px;
  --badge-shift: -6px;
  --badge-text-size: 14px;
  --badge-text-weight: 700;
  --badge-grad: radial-gradient(120% 120% at 30% 20%, #8EC5FF 0%, #5F68DE 45%, #6A4CFF 100%);
  --badge-border: rgba(255,255,255,.35);
  --badge-shadow: 0 4px 10px rgba(0,0,0,.25), inset 0 1px 0 rgba(255,255,255,.35);
}

.feature-item {
  position: relative;
  overflow: visible;
}

.feature-item .feature-icon {
  position: relative;
  width: var(--fi-size);
  height: var(--fi-size);
  flex: 0 0 var(--fi-size);
  display: grid;
  place-items: center;
  border-radius: var(--fi-radius);
  color: #fff;
  background: rgba(255,255,255,.06);
  /* border: 1px solid rgba(255,255,255,.2); */
  font-weight: 700;
  overflow: visible;
}

.feature-item .feature-icon-img {
  width: var(--fi-size);
  height: var(--fi-size);
  flex: 0 0 var(--fi-size);
  object-fit: contain;
  border-radius: calc(var(--fi-radius) - 1px);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
  display: block;
}

/* removed old badge target */

.feature-item .feature-icon:hover::after {
  transform: translateZ(0) scale(1.06);
  transition: transform .18s ease;
}



:root {
  --fi-size: 44px;
  --fi-radius: 10px;
  --badge-size: 22px;
  --badge-overlap: 6px; /* how much badge overlaps outside icon corner */
  --badge-text-size: 14px;
  --badge-text-weight: 700;
  --badge-grad: radial-gradient(120% 120% at 30% 20%, #8EC5FF 0%, #5F68DE 45%, #6A4CFF 100%);
  --badge-border: rgba(255,255,255,.35);
  --badge-shadow: 0 4px 10px rgba(0,0,0,.25), inset 0 1px 0 rgba(255, 255, 255, .35);
}

.feature-item {
  position: relative; /* anchor for the badge */
  overflow: visible;
  display: flex;
  align-items: center;
  gap: .75rem;
}

.feature-item .feature-icon-img {
  width: var(--fi-size);
  height: var(--fi-size);
  flex: 0 0 var(--fi-size);
  object-fit: contain;
  display: block;
  background: rgba(255, 255, 255, 0.04);
}



.feature-item:hover::after {
  transform: translateZ(0) scale(1.06);
  transition: transform .18s ease;
}

/* ==== Feature icons with individual '+' badges ==== */

.feature-item {
  position: relative;
  display: flex;
  align-items: center;
  /* flex-wrap: wrap; */
  gap: .5rem .75rem;
  overflow: visible;
}

.feature-item .feature-icon {
  position: relative;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(255,255,255,.06);
  /* border: 1px solid rgba(255,255,255,.2); */
  overflow: visible;
}

.feature-item .feature-icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 9px;
  background: rgba(255,255,255,.04);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.25);
  display: block;
}

/* Ãâ€˜ÃÂµÃÂ¹ÃÂ´ÃÂ¶ '+' ÃÂ½ÃÂ° ÃÂºÃÂ°ÃÂ¶ÃÂ´ÃÂ¾ÃÂ¹ ÃÂ¸ÃÂºÃÂ¾ÃÂ½ÃÂºÃÂµ */
.feature-item .feature-icon::after {
  content: "+";
  position: absolute;
  top: -6px;
  right: -6px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(180deg, #2dd1ff 0%, #6a74ff 55%, #6b57d3 100%);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  pointer-events: none;
  transform: translateZ(0);
}

.feature-item .feature-icon:hover::after {
  transform: translateZ(0) scale(1.06);
  transition: transform .18s ease;
}


/* ==== Ecosystem: Ã‘â‚¬ÃÂ°ÃÂ·ÃÂ´ÃÂµÃÂ»ÃÂ¸Ã‘â€šÃÂµÃÂ»Ã‘Å’-Ã‚Â«Ã‘Ë†ÃÂµÃÂ²Ã‘â‚¬ÃÂ¾ÃÂ½Ã‚Â» ==== */
:root{
  --eco-sep-width: 80px;       /* Ã‘Ë†ÃÂ¸Ã‘â‚¬ÃÂ¸ÃÂ½ÃÂ° ÃÂºÃÂ¾ÃÂ»ÃÂ¾ÃÂ½ÃÂºÃÂ¸-Ã‘â‚¬ÃÂ°ÃÂ·ÃÂ´ÃÂµÃÂ»ÃÂ¸Ã‘â€šÃÂµÃÂ»Ã‘Â */
  --eco-sep-stroke: 6px;       /* Ã‘â€šÃÂ¾ÃÂ»Ã‘â€°ÃÂ¸ÃÂ½ÃÂ° ÃÂ»ÃÂ¸ÃÂ½ÃÂ¸ÃÂ¸ ÃÂ½ÃÂ° ÃÂ´ÃÂµÃ‘ÂÃÂºÃ‘â€šÃÂ¾ÃÂ¿ÃÂµ */
  --eco-sep-stroke-m: 4px;     /* Ã‘â€šÃÂ¾ÃÂ»Ã‘â€°ÃÂ¸ÃÂ½ÃÂ° ÃÂ»ÃÂ¸ÃÂ½ÃÂ¸ÃÂ¸ ÃÂ½ÃÂ° ÃÂ¼ÃÂ¾ÃÂ±ÃÂ¸ÃÂ»ÃÂºÃÂ°Ã‘â€¦ */
  --eco-sep-color: #FFFFFF;    /* Ã‘â€ ÃÂ²ÃÂµÃ‘â€š Ã‘Ë†ÃÂµÃÂ²Ã‘â‚¬ÃÂ¾ÃÂ½ÃÂ° */
  --eco-sep-glow: 0 6px 24px rgba(255,255,255,.16);
}

.eco-separator{
  width: var(--eco-sep-width);
  min-width: var(--eco-sep-width);
  display: flex;
  align-items: stretch;
  justify-content: center;
  position: relative;
  pointer-events: none;
  user-select: none;
  /* ÃÂ§Ã‘â€šÃÂ¾ÃÂ± ÃÂ·ÃÂ°ÃÂ½ÃÂ¸ÃÂ¼ÃÂ°ÃÂ» ÃÂ²Ã‘ÂÃ‘Å½ ÃÂ²Ã‘â€¹Ã‘ÂÃÂ¾Ã‘â€šÃ‘Æ’ Ã‘ÂÃÂ¾Ã‘ÂÃÂµÃÂ´ÃÂ½ÃÂ¸Ã‘â€¦ ÃÂ±ÃÂ»ÃÂ¾ÃÂºÃÂ¾ÃÂ² */
}

.eco-separator-svg{
  display: block;
  height: 100%;
  width: 100%;
  filter: drop-shadow(var(--eco-sep-glow));
}

/* Ãâ€˜ÃÂµÃÂ»ÃÂ°Ã‘Â ÃÂ»ÃÂ¸ÃÂ½ÃÂ¸Ã‘Â Ã‘Â ÃÂ¾ÃÂºÃ‘â‚¬Ã‘Æ’ÃÂ³ÃÂ»Ã‘â€¹ÃÂ¼ÃÂ¸ ÃÂºÃÂ¾ÃÂ½Ã‘â€ ÃÂ°ÃÂ¼ÃÂ¸/Ã‘ÂÃÂ³ÃÂ¸ÃÂ±ÃÂ¾ÃÂ¼ */
.eco-separator-stroke{
  fill: none;
  stroke: var(--eco-sep-color);
  stroke-width: var(--eco-sep-stroke);
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ÃÂÃÂ´ÃÂ°ÃÂ¿Ã‘â€šÃÂ¸ÃÂ²: ÃÂ¿ÃÂ¾ÃÂ¼ÃÂµÃÂ½Ã‘Å’Ã‘Ë†ÃÂµ Ã‘â€šÃÂ¾ÃÂ»Ã‘â€°ÃÂ¸ÃÂ½ÃÂ° ÃÂ¸ Ã‘Æ’ÃÂ¶ÃÂµ ÃÂºÃÂ¾ÃÂ»ÃÂ¾ÃÂ½ÃÂºÃÂ° */
@media (max-width: 991.98px){
  :root{
    --eco-sep-width: 56px;
  }
  .eco-separator-stroke{
    stroke-width: var(--eco-sep-stroke-m);
  }
}

/* (ÃÅ¾ÃÂ¿Ã‘â€ ÃÂ¸Ã‘Â) ÃÂ»Ã‘â€˜ÃÂ³ÃÂºÃÂ°Ã‘Â Ã‚Â«ÃÂ¿Ã‘Æ’ÃÂ»Ã‘Å’Ã‘ÂÃÂ°Ã‘â€ ÃÂ¸Ã‘ÂÃ‚Â» Ã‘ÂÃÂ²ÃÂµÃ‘â€¡ÃÂµÃÂ½ÃÂ¸Ã‘Â Ã¢â‚¬â€ ÃÂ¼ÃÂ¾ÃÂ¶ÃÂ½ÃÂ¾ Ã‘Æ’ÃÂ±Ã‘â‚¬ÃÂ°Ã‘â€šÃ‘Å’ */
@media (prefers-reduced-motion: no-preference){
  .eco-separator-svg{
    animation: ecoSepGlow 4.5s ease-in-out infinite;
  }
  @keyframes ecoSepGlow{
    0%,100%{ filter: drop-shadow(0 6px 22px rgba(255,255,255,.12)); }
    50%    { filter: drop-shadow(0 8px 28px rgba(255,255,255,.22)); }
  }
}

.no-badge::after {
  content: none!important;
}


@media (max-width: 576px){
  .speaker-unit {
  padding: 0rem!important;
}
  .speaker-unit h6 {
    font-size:0.9rem;
  }
}

  .bignew {
    font-weight:700;
  }

@media (min-width: 1400px){
  .bignew {
    font-size:1.7rem;
  }
}


.divider-down {
  width: 80%;
  overflow: hidden;
  line-height: 0;
  margin: auto;
}

.divider-down-img {
  display: block;
  width: 100%;
  height: auto;         /* сохраняет пропорции SVG */
  object-fit: contain;  /* не искажает форму */
  user-select: none;
  pointer-events: none;
}


@media (min-width: 992px) and (max-width: 1200px) { 


.with-arrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem; /* расстояние между текстом и стрелкой */
}

.with-arrow::after {
  content: "";
  display: inline-block;
  width: 1.65em;     /* масштабируется вместе с размером шрифта */
  height: 1.65em;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
  transform-origin: center;
  margin-top: 0.05em; /* лёгкая коррекция по вертикали */
  position: absolute;
  right: 2rem;
}


}

.verysmall {
  font-size: 0.8rem;
}


@media (max-width: 768px){
  #program tr {
    display: grid;
  }
  #program td:first-child {
    margin-top:2rem;
    padding-bottom: 0;
  }

  .program-head {
    display: none!important;
  }
}

#speakers .ratio {
    max-width: 200px;
    margin: auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(100%);
  overflow: hidden;
  white-space: nowrap;
}