/* ═══════════════════════════════════════════════
   ECOSYSTEM BAR — shared across all verticals
   ═══════════════════════════════════════════════ */
.ecosystem-bar {
    background: #0c1220;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 8px 0;
    font-size: 13px;
}
.ecosystem-bar-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.ecosystem-bar-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    font-family: inherit;
    transition: color 0.2s ease;
}
.ecosystem-bar-brand:hover {
    color: #ffffff;
}
.ecosystem-bar-brand svg {
    opacity: 0.6;
}
.ecosystem-bar-links {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.ecosystem-bar-link {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-family: inherit;
    transition: color 0.2s ease;
    white-space: nowrap;
}
.ecosystem-bar-link:hover {
    color: #ffffff;
}
.ecosystem-bar-link--all {
    color: #f59e0b;
    font-weight: 600;
}
.ecosystem-bar-link--all:hover {
    color: #ffffff;
}
@media (max-width: 768px) {
    .ecosystem-bar-links { display: none; }
    .ecosystem-bar-inner { justify-content: center; }
}
