/* Canonical netray.info suite navigation — single source of truth.
   Every static page links here: <link rel="stylesheet" href="/suite-nav.css">
   Do NOT copy-paste these rules into individual pages.
   See CLAUDE.md §Rules for the authoritative token list. */

:root {
  --sn-bg:     #ffffff;
  --sn-border: #e4e8ee;
  --sn-muted:  #4a4a6a;
  --sn-text:   #1a1a2e;
  --sn-sep:    #d0d4dc;
}

@media (prefers-color-scheme: dark) {
  :root {
    --sn-bg:     #16213e;
    --sn-border: #222240;
    --sn-muted:  #a0a0a0;
    --sn-text:   #e0e0e0;
    --sn-sep:    #2a2a4a;
  }
}

.suite-nav {
  width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  row-gap: 0.25rem;
  padding: 0.5rem 1.5rem;
  background: var(--sn-bg);
  border-bottom: 1px solid var(--sn-border);
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 0.8rem;
}

.suite-nav__brand {
  color: var(--sn-muted);
  text-decoration: none;
  padding: 0.2rem 0.5rem 0.2rem 0;
  letter-spacing: -0.01em;
  white-space: nowrap;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.suite-nav__brand:hover { color: var(--sn-text); text-decoration: none; }

.suite-nav__sep {
  color: var(--sn-sep);
  padding: 0 0.5rem;
  user-select: none;
}

.suite-nav__link {
  color: var(--sn-muted);
  text-decoration: none;
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  white-space: nowrap;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  transition: color 150ms ease;
}

.suite-nav__link:hover { color: var(--sn-text); text-decoration: none; }

.suite-nav [aria-current="page"] {
  color: var(--sn-text);
  font-weight: 600;
}

@media (max-width: 400px) {
  .suite-nav { padding: 0.4rem 1rem; font-size: 0.75rem; }
}
