/* ═══════════════════════════════════════════
   NAV — bottom floating pill
═══════════════════════════════════════════ */

#pill-nav {
  position: fixed;
  bottom: 1.6rem;
  left: 0;
  right: 0;
  width: max-content;
  margin-inline: auto;
  transform: none;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: .2rem;
  background: var(--bg-dark);
  border-radius: 100px;
  padding: .5rem .6rem;
  box-shadow: 0 8px 32px rgba(0,0,0,.22);
  opacity: 0;
  animation: fadeUp .6s 2s ease forwards;
  white-space: nowrap;
}

#pill-nav a {
  display: flex;
  align-items: center;
  gap: .4rem;
  padding: .5rem 1rem;
  border-radius: 100px;
  font-size: .82rem;
  font-weight: 500;
  color: rgba(255,255,255,.55);
  transition: background var(--transition), color var(--transition);
}
#pill-nav a:hover,
#pill-nav a.active {
  background: rgba(255,255,255,.1);
  color: #fff;
}

.nav-home {
  padding: .5rem .75rem !important;
}
.nav-home svg { display: block; }

.nav-cta {
  background: var(--accent) !important;
  color: var(--bg-dark) !important;
  font-weight: 600 !important;
  padding: .5rem 1.2rem !important;
  transition: background var(--transition), transform var(--transition) !important;
}
.nav-cta:hover {
  background: var(--accent-dark) !important;
  transform: scale(1.04);
}

/* ─── Responsive ─── */
@media (max-width: 480px) {
  #pill-nav { bottom: 1rem; gap: 0; padding: .4rem .4rem; }
  #pill-nav a { padding: .45rem .7rem; font-size: .76rem; }
  .nav-home { padding: .45rem .6rem !important; }
  .nav-cta  { padding: .45rem .9rem !important; }
}
