.gd-title {
  background: linear-gradient(104.04deg,
      #1472ff -4%,
      #47a9ff 23%,
      #adc3ff 50%,
      #ff6d38 77%,
      #ff4400 104%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  max-width: fit-content;
}

@keyframes slides {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

.animate-slides {
  animation: slides 30s infinite linear;
}

.hero-brand {
  mask-image: linear-gradient(to right,
      rgba(0, 0, 0, 0) 0%,
      rgb(0, 0, 0) 25%,
      rgb(0, 0, 0) 75%,
      rgba(0, 0, 0, 0) 100%);
}

.hero-brand:hover .animate-slides {
  animation-play-state: paused;
}

.b-active {
  background-image: linear-gradient(180deg, rgba(152, 161, 174, 0.08) 0%, rgba(152, 161, 174, 0.08) 0.01%, rgba(20, 114, 255, 0) 100%);
  border: 1px solid #98a1ae14;
  color: #47a9ff;
}

@media screen and (max-width: 991px) {
  .hero-brand .inline-flex.logo_items.animate-slides:first-child {
    display: none;
  }
}

.accordion-content {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease-out;
}

.accordion-content.show {
  max-height: auto;
}

.accordion-header svg {
  transition: transform 0.5s ease;
  -webkit-transition: transform 0.5s ease;
  -moz-transition: transform 0.5s ease;
  -ms-transition: transform 0.5s ease;
  -o-transition: transform 0.5s ease;
}

.accordion-header svg {
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
}

.accordion-header svg.rotate-180 {
  transform: rotate(0);
  -webkit-transform: rotate(0);
  -moz-transform: rotate(0);
  -ms-transform: rotate(0);
  -o-transform: rotate(0);
}

.glowing-button-gradient {
  animation: spin 4s linear infinite;
  background: conic-gradient(rgb(20, 114, 255) 0deg,
      rgb(71, 169, 255) 60deg,
      rgb(173, 195, 255) 120deg,
      rgb(255, 173, 201) 180deg,
      rgb(255, 71, 107) 240deg,
      rgb(20, 114, 255) 300deg);
  z-index: 1;
  height: 500%;
  width: 120%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -10%;
  right: 0;
}

.glowing-button-inner {
  z-index: 3;
}

.glowing-button {
  z-index: 4;
}

.glowing-button-inner-overlay {
  z-index: 1;
  width: 99%;
  height: 99%;
  position: absolute;
}



/* ---------- Features dropdown (final) ---------- */

/* Hide hairline by default, show on hover/focus/active for any nav item */
.site-nav .nav-list li > .nav-hairline { display: none; }
.site-nav .nav-list li:hover > .nav-hairline,
.site-nav .nav-list li:focus-within > .nav-hairline,
.site-nav .nav-list li.active > .nav-hairline { display: inline-block; }

/* Ensure nav-features sits above neighbours */
.nav-features { position: relative; z-index: 1200; }

/* dropdown card styling */
.dropdown-menu {
  position: absolute;
  left: 50%;
  top: calc(100% + 1px);                 /* push 1px below nav hairline */
  transform: translateX(-50%) translateY(6px);
  min-width: 220px;
  padding: 12px;
  background: #000130;                   /* dropdown background */
  color: #ffffff;
  border-radius: 12px;
  border: 1px solid rgba(15,25,45,0.06);
  box-shadow: 0 20px 40px rgba(2,6,20,0.75);
  transition: opacity .24s ease, transform .24s ease;
  opacity: 0;
  pointer-events: none;
  z-index: 1250;
}

/* pointer triangle matching dropdown */
.dropdown-menu::after {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 6px;
  background: #000130;
  clip-path: polygon(50% 0, 0% 100%, 100% 100%);
}

/* items */
.dropdown-item {
  display: block;
  padding: 12px 16px;
  color: #ffffff;
  font-size: 15px;
  text-decoration: none;
  border-radius: 8px;
  transition: background .16s ease, color .16s ease, transform .12s ease;
}
.dropdown-item + .dropdown-item { margin-top: 6px; }
.dropdown-item:hover {
  background: linear-gradient(104.04deg, rgba(20,114,255,0.08) -4%, rgba(71,169,255,0.06) 23%);
  color: #ffffff;
  transform: translateX(4px);
}

/* show dropdown on hover / focus-within / open class */
.nav-features:hover .dropdown-menu,
.nav-features:focus-within .dropdown-menu,
.nav-features.open .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* hide hairline span for Features while dropdown visible */
.nav-features:hover > .nav-hairline,
.nav-features.open > .nav-hairline,
.nav-features:focus-within > .nav-hairline { display: none; }

/* mute left/right borders while dropdown visible */
.nav-features:hover,
.nav-features.open,
.nav-features:focus-within {
  border-left-color: transparent !important;
  border-right-color: transparent !important;
}

/* keep trigg*




@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
