/* ============================================================
   NAV
   ============================================================ */

/* ---- NAV ---- */

nav {
  position: fixed;
  top: 20px; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  pointer-events: none;
}

.nav-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 60px;
  padding: 0 30px;
  border-radius: 100px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 0.5px solid rgba(255,255,255,0.35);
  box-shadow: 0 2px 24px rgba(0,0,0,0.08), inset 0 1px 0 rgba(255,255,255,0.5);
  pointer-events: all;
}

.nav-logo {
  font-size: 13px; font-weight: 600; color: #111;
  text-decoration: none; white-space: nowrap;
}

.nav-logo-img {
  display: block;
  height: 30px;
  width: auto;
}

.nav-logo span { color: #999; font-weight: 400; }

.nav-links { display: flex; align-items: center; gap: 4px; }

.nav-link {
  font-size: 14px; color: #333; text-decoration: none;
  padding: 8px 16px; border-radius: 100px;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
}

.nav-link:hover { background: rgba(0,0,0,0.05); color: #111; }

.nav-cta {
  font-size: 13px; font-weight: 600; padding: 8px 18px;
  border-radius: 100px;
  background: #111; color: white;
  text-decoration: none; transition: opacity 0.2s;
  display: flex; align-items: center; gap: 6px;
}

.nav-cta:hover { opacity: 0.8; }

.nav-cta-arrow { font-size: 11px; }

.how-nav-arrow {
  position: absolute;
  bottom: 32px;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
  border: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.2s;
}

.how-nav-arrow:hover { background: rgba(255,255,255,0.95); }

.how-nav-arrow.prev { right: 84px; }

.how-nav-arrow.next { right: 32px; }
