.pf-nav {
  position: fixed;
  top: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 9999;
  display: flex;
  justify-content: center;
}

.pf-nav-pill {
  width: 100%;
  max-width: 64rem;
  background: rgba(10,20,40,0.40);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0,87,168,0.20);
  border-radius: 1rem;
  overflow: hidden;
}

.pf-nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.25rem;
  gap: 1rem;
}

.pf-nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.pf-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.pf-logo-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}

.pf-logo-sub {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.03em;
}

.pf-desktop-nav {
  display: none;
  align-items: center;
  gap: 0.25rem;
  flex: 1;
  justify-content: center;
}

.pf-desktop-nav a {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  padding: 0.4rem 0.75rem;
  border-radius: 0.5rem;
  transition: color 0.2s, background 0.2s;
}

.pf-desktop-nav a:hover {
  color: #fff;
  background: rgba(255,255,255,0.06);
}

.pf-desktop-ctas {
  display: none;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.pf-mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  color: rgba(255,255,255,0.8);
  flex-shrink: 0;
}

.pf-mobile-menu {
  display: none;
  flex-direction: column;
  padding: 0.5rem 1.25rem 1rem;
  gap: 0.25rem;
  border-top: 1px solid rgba(0,87,168,0.15);
}

.pf-mobile-menu.open {
  display: flex !important;
}

.pf-mobile-menu a {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  padding: 0.6rem 0.75rem;
  border-radius: 0.5rem;
  transition: color 0.2s, background 0.2s;
}

.pf-mobile-menu a:hover {
  color: #fff;
  background: rgba(255,255,255,0.06);
}

.pf-mobile-menu .pf-anim-btn {
  margin-top: 0.5rem;
  width: 100%;
  justify-content: center;
}

#pf-icon-close { display: none; }

@media (min-width: 1024px) {
  .pf-desktop-nav { display: flex; }
  .pf-desktop-ctas { display: flex; }
  .pf-mobile-toggle { display: none; }
}
