/* Shared Command Bar + nav tabs chrome (legal/static pages). Matches markets.html header. */
:root { --ngrn: #27c93f; }

@keyframes pulse-dot {
  0%,100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.7); opacity: .35; }
}

.navbar {
  display: flex;
  flex-direction: column;
  background: #050508;
  border-bottom: 1px solid rgba(30,144,255,.14);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.nav-row-1 {
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
}
.nav-row-2 {
  height: 44px;
  display: flex;
  align-items: center;
  padding: 0 18px;
  border-top: 1px solid rgba(30,144,255,.08);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: 24px;
  flex-shrink: 0;
  cursor: pointer;
  text-decoration: none;
}
.logo-stack {
  display: flex;
  flex-direction: column;
  gap: 3px;
  filter: drop-shadow(0 0 8px rgba(30,144,255,.6));
  position: relative;
}
.logo-pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #00D4FF;
  position: absolute;
  top: -5px;
  left: 100%;
  margin-left: 3px;
  animation: pulse-dot 2.2s infinite;
}
.wordmark {
  font-family: 'Inter', sans-serif;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -.03em;
  position: relative;
  display: inline-block;
}
.w-deep { color: #1E90FF; }
.w-tape { color: #fff; position: relative; }
.nav-links { display: flex; gap: 22px; flex-wrap: wrap; }
.nav-link {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  padding: 5px 10px;
  border-radius: 4px;
  letter-spacing: .06em;
  transition: all .15s;
  text-decoration: none;
}
.nav-link:hover { background: rgba(255,255,255,.05); }
.nav-link.active { color: #1E90FF; }
.nav-right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.live-ind { display: flex; align-items: center; gap: 5px; }
.live-dot-nav {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ngrn);
  animation: pulse-dot 1.8s infinite;
}
.live-lbl { font-size: 10px; font-weight: 700; color: #fff; letter-spacing: .08em; }
.sess-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  padding: 4px 10px;
  border-radius: 4px;
}
.sess-mkt { font-size: 10px; font-weight: 700; color: #fff; letter-spacing: .06em; }
.sess-open { font-size: 10px; font-weight: 800; color: #00e060; letter-spacing: .06em; }
