/* ── LIFE STRATEGICS V2 STANDARDIZED NAVBAR ── */
.ls-nav-container {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 92%;
  max-width: 900px;
  z-index: 300;
  background: rgba(24, 24, 26, .55);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 9999px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, .55), inset 0 1px 0 rgba(255, 255, 255, .06);
  height: 54px;
  display: flex;
  align-items: center;
  padding: 0 20px;
  gap: 14px;
  font-family: 'Wix Madefor Display', sans-serif;
  box-sizing: border-box;
}

.ls-nav-container * {
  box-sizing: border-box;
}

.ls-nav-container .mobile-burger {
  display: none;
}

/* ── Logo image ── */
.ls-nav-container .nav-logo-wrap {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  line-height: 1;
}

.ls-nav-container .nav-logo-wrap img {
  height: 22px;
  width: auto;
  display: block;
  opacity: 0.9;
}

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

/* ── Nav links: plain text, no pills ── */
.ls-nav-container .nav-links {
  display: flex;
  gap: 0;
  margin-left: auto;
  overflow: hidden;
  align-items: center;
  justify-content: flex-end;
}

.ls-nav-container .nav-links a {
  white-space: nowrap;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .05em;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  padding: 4px 10px;
  background: none;
  border: none;
  border-radius: 0;
  transition: color .18s;
}

.ls-nav-container .nav-links a:hover {
  color: rgba(255, 255, 255, 0.9);
  background: none;
}

/* ── Pipe separator ── */
.ls-nav-container .nav-pipe {
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

/* ── OCULUX brand-animated gradient ── */
@keyframes brand-pulse {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.ls-nav-container .nav-links a.nav-oculux {
  background: linear-gradient(90deg, #4A9EFF 0%, #FFD84A 50%, #FF4A4A 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: brand-pulse 6s ease-in-out infinite alternate;
  font-weight: 600;
  letter-spacing: .08em;
  opacity: 1;
}

.ls-nav-container .nav-links a.nav-oculux:hover {
  opacity: 0.85;
  background: linear-gradient(90deg, #4A9EFF 0%, #FFD84A 50%, #FF4A4A 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ls-nav-container .mobile-only-link {
  display: none !important;
}

/* ── Mobile ── */
@media (max-width: 900px) {
  .ls-nav-container .mobile-burger {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
  }

  .ls-nav-container .mobile-burger svg {
    display: block;
  }

  .ls-nav-container .nav-divider {
    display: none;
  }

  .ls-nav-container {
    justify-content: space-between;
  }

  .ls-nav-container.active {
    flex-wrap: wrap;
    border-radius: 16px;
    height: auto;
    padding: 16px 20px 20px;
    background: rgba(24, 24, 26, .97);
    overflow: visible;
  }

  .ls-nav-container.active .nav-links {
    display: flex;
    flex-direction: column;
    width: 100%;
    flex-basis: 100%;
    gap: 2px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 8px;
    align-items: flex-start;
  }

  .ls-nav-container.active .nav-links .nav-pipe {
    display: none;
  }

  .ls-nav-container.active .nav-links a {
    padding: 7px 4px;
    color: rgba(255,255,255,0.7);
    font-size: .8rem;
  }

  .ls-nav-container.active .nav-links .mobile-only-link {
    display: block !important;
  }

  .ls-nav-container .nav-links {
    display: none;
  }
}
