/* ===== NAV ===== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px;
  background: linear-gradient(to bottom, rgba(7,9,10,0.9), rgba(7,9,10,0));
  backdrop-filter: blur(6px);
}
nav .brand {
  display: flex; align-items: center; gap: 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px; font-weight: 500; letter-spacing: -0.01em;
}
nav .brand svg { display: block; }
nav .links { display: flex; gap: 24px; font-size: 12px; color: var(--fg-dim); }
nav .links a:hover { color: var(--accent); }
nav .nav-cta {
  border: 1px solid var(--accent-dim);
  color: var(--accent);
  padding: 7px 14px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  background: rgba(74,222,128,0.05);
  cursor: pointer;
  transition: all 0.15s ease;
  font-family: inherit;
}
nav .nav-cta:hover { background: rgba(74,222,128,0.12); border-color: var(--accent); }
@media (max-width: 720px) { nav .links { display: none; } }

/* ===== STATUS BAR ===== */
.statusbar {
  position: fixed; top: 58px; left: 0; right: 0; z-index: 40;
  display: flex; justify-content: space-between; align-items: center;
  padding: 6px 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(12,16,18,0.6);
  backdrop-filter: blur(6px);
  font-size: 10.5px;
  color: var(--fg-dim);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.statusbar .dot {
  display: inline-block; width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); margin-right: 8px;
  box-shadow: 0 0 8px var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }
.statusbar .sep { color: var(--fg-dimmer); margin: 0 12px; }
@media (max-width: 720px) { .statusbar .hide-sm { display: none; } }
