/* ============================================================
   ECOSYSTEM BAR — shared across all pages of vexastartup.com
   A thin global strip that lets every page navigate the rest
   of the ecosystem without replacing each page's own navbar.
   ============================================================ */

.eco-bar {
  display: block;
  padding: 0;
  position: relative;
  z-index: 120;
  background: rgba(5, 6, 10, 0.92);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.eco-bar-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.eco-brand {
  font-family: 'JetBrains Mono', ui-monospace, 'Fira Code', monospace;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  gap: 9px;
}

.eco-brand:hover {
  color: #ffffff;
}

.eco-brand .eco-brand-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #8b7cf6;
  box-shadow: 0 0 8px rgba(139, 124, 246, 0.8);
}

.eco-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 28px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.eco-links::-webkit-scrollbar {
  display: none;
}

.eco-links a {
  font-family: 'JetBrains Mono', ui-monospace, 'Fira Code', monospace;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.eco-links a:hover {
  color: #ffffff;
}

.eco-links .eco-active {
  color: #a899ff;
  font-weight: 500;
}

@media (max-width: 640px) {
  .eco-brand {
    display: none;
  }

  .eco-bar-inner {
    padding: 0 20px;
    justify-content: flex-start;
  }

  .eco-links {
    gap: 18px;
    width: 100%;
    min-width: 0;
  }

  .eco-links a {
    font-size: 12px;
  }
}