/* Page Navigator - Floating dock for switching between landing pages */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap');

.page-navigator {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: rgba(18, 18, 18, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255,255,255,0.05) inset;
  font-family: 'DM Sans', sans-serif;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.page-navigator:hover {
  background: rgba(18, 18, 18, 0.95);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255,255,255,0.08) inset;
}

.page-nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 40px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  position: relative;
}

.page-nav-link:hover {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
}

.page-nav-link.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  font-weight: 700;
}

.page-nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: #fff;
  border-radius: 50%;
}

.page-nav-divider {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .page-navigator {
    bottom: 12px;
    padding: 6px 8px;
    gap: 2px;
    max-width: 95vw;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .page-navigator::-webkit-scrollbar {
    display: none;
  }
  .page-nav-link {
    padding: 6px 10px;
    font-size: 11px;
  }
  .page-nav-divider {
    height: 16px;
  }
}

/* Entrance animation */
@keyframes navSlideUp {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.page-navigator {
  animation: navSlideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
}
