.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(21, 21, 24, .88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 15px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 29px;
  line-height: 1;
  color: #fff;
  letter-spacing: -.5px;
  text-decoration: none;
}
.wordmark .p-tight { letter-spacing: -1px; }
.wordmark svg { margin: 0 1px 0 -1px; transform: translateY(2px); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 15px;
  font-weight: 500;
}
.nav-links a {
  color: rgba(255, 255, 255, .72);
  text-decoration: none;
  transition: color .15s ease;
}
.nav-links a:hover { color: #fff; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-signin {
  color: rgba(255, 255, 255, .8);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
}
.nav-cta {
  flex: none;
  white-space: nowrap;
  padding: 11px 20px;
  font-size: 14.5px;
}
