/* Demo top-bar nav — applied across all pages.
   Hides the icon rail + tool nav from moonquake.css, replaces with a single
   horizontal sticky bar containing logo + nav links + client meta. */

.app { grid-template-columns: 1fr !important; }
.app > .app-content { grid-column: 1 / -1 !important; min-width: 0; }
.tool-rail, .tool-nav { display: none !important; }

body { padding-top: 64px; }
main.app-content { padding: 32px 32px 64px !important; }

.demo-bar {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 64px;
  padding: 0 24px;
  border-bottom: 1px solid var(--border);
  background: var(--surface-1);
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
}
.demo-bar-logo {
  height: 36px;
  width: auto;
  flex-shrink: 0;
}
.demo-bar-nav {
  display: flex;
  gap: 4px;
  flex: 1;
}
.demo-bar-link {
  padding: 8px 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dim);
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
}
.demo-bar-link:hover {
  color: var(--text-bright);
  background: var(--surface-2);
}
.demo-bar-link.is-active {
  color: var(--accent);
  background: rgba(255, 255, 255, 0.04);
}

.demo-bar-meta {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  text-align: right;
  flex-shrink: 0;
}
.demo-bar-client {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--text-bright);
  font-weight: 500;
}
.demo-bar-sat {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--text-dim);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
