/* SpinRev Shared Top Bar Styles */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 3rem;
  background: rgba(12, 12, 14, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: padding 0.3s, box-shadow 0.3s;
  font-family: 'Cabinet Grotesk', sans-serif;
}
nav.scrolled {
  padding: 0.8rem 3rem;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.4);
}
.logo {
  font-weight: 900;
  font-size: 1.35rem;
  letter-spacing: -0.04em;
  color: #f1f0ee;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 7px;
}
.logo-mark {
  width: 26px;
  height: 26px;
  background: #7c6fff;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-mark svg {
  width: 15px;
  height: 15px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: #9998a3;
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: #f1f0ee;
}
.btn-nav-primary {
  background: #7c6fff;
  color: white;
  padding: 0.55rem 1.3rem;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.btn-nav-primary:hover {
  background: #6558ee;
  transform: translateY(-1px);
}
.nav-cta {
  display: flex;
  align-items: center;
}
@media (max-width: 960px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
}
