/* Apeiron Ecosystem — Shared Global Navigation Styles */
#apeiron-global-nav {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 12px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.apeiron-nav-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: #111827;
  letter-spacing: 0.5px;
  text-decoration: none;
}

.apeiron-nav-brand-badge {
  background: #fff7ed;
  color: #c2410c;
  border: 1px solid #ffedd5;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.apeiron-nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.apeiron-nav-item a {
  color: #4b5563;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.15s ease;
}

.apeiron-nav-item a:hover,
.apeiron-nav-item a.active {
  color: #c2410c;
  font-weight: 600;
}
