/* Helose Ops Hub — layout chrome (works with Tailwind CDN) */
.hub-shell { display: flex; min-height: 100vh; }
.hub-sidebar {
  width: 15.5rem;
  flex-shrink: 0;
  background: rgba(6, 6, 11, 0.92);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 40;
  transform: translateX(-100%);
  transition: transform 0.2s ease;
}
.hub-sidebar.open { transform: translateX(0); }
@media (min-width: 1024px) {
  .hub-sidebar { transform: none; position: sticky; top: 0; height: 100vh; }
  .hub-backdrop { display: none !important; }
}
.hub-main { flex: 1; min-width: 0; margin-left: 0; }
@media (min-width: 1024px) {
  .hub-main { margin-left: 0; }
}
.hub-topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(10, 10, 20, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.nav-section-label {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  padding: 1rem 1rem 0.35rem;
  font-weight: 600;
}
.nav-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 0.85rem;
  margin: 0 0.5rem;
  border-radius: 10px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.62);
  transition: background 0.12s, color 0.12s;
}
.nav-link:hover { background: rgba(255, 255, 255, 0.05); color: #fff; }
.nav-link.active {
  background: rgba(155, 92, 255, 0.15);
  color: #fff;
  border: 1px solid rgba(155, 92, 255, 0.25);
}
.funnel-bar {
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}
.funnel-bar > span {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff5c9c, #9b5cff, #3fb8ff);
}
.hub-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 35;
}
.hub-backdrop.show { display: block; }
.kbd {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
}
