.social-row {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.2rem;
  margin-bottom: 0.5rem;
}
.social-icon {
  color: #FFD700;
  font-size: 2.2rem;
  transition: transform 0.5s cubic-bezier(.4,0,.2,1), color 0.2s, background 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  filter: drop-shadow(0 0 4px #FFD70044);
  background: #181818;
  border-radius: 50%;
  width: 3.2rem;
  height: 3.2rem;
  box-shadow: 0 2px 8px #0008;
}
.social-icon:hover {
  color: #fff;
  background: #000;
  transform: rotate(360deg) scale(1.15);
}
.roadmap-phase-slide {
  display: none;
  opacity: 0;
  transform: translateY(20px) scale(0.98);
  transition: opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1);
  font-size: 1.22rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #FFD700;
  font-family: 'Merriweather', serif;
}
.roadmap-phase-slide.active {
  display: inline-block;
  opacity: 1;
  transform: translateY(0) scale(1.04);
  filter: drop-shadow(0 2px 8px #FFD70044);
}
.featured-wrapper {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.featured-title {
  white-space: nowrap;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  margin: 0;
}
.featured-content {
  flex: 1;
}
.featured-logos {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.logos-scroll {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1rem 0;
}
.logos-scroll img {
  height: 80px;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.logos-scroll img[src="bit.png"] {
  height: 60px;
}
.logos-scroll img:hover {
  transform: scale(1.1);
}
@media (max-width: 768px) {
  .featured-wrapper {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .logos-scroll img {
    height: 60px;
  }
  .featured-logos::before,
  .featured-logos::after {
    display: block;
  }
  .logos-scroll img[src="bit.png"] {
    height: 35px;
  }
}


