/* =========================================
   TRANSFORMATION WORKS – HEADER NAV
   ========================================= */

.nav {
  position: absolute;
  top: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: 92%;
  max-width: 1400px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  z-index: 100;
}

/* LOGO – larger, brand-forward */
.nav-logo {
  height: 96px;
  display: block;
}

/* NAV PILL – grounded & editorial */
.nav-pill {
  display: flex;
  align-items: center;
  gap: 2px;

  padding: 8px;
  border-radius: 18px;

  background: rgba(20, 20, 22, 0.85);
  border: 1px solid rgba(255,255,255,0.06);
}

/* REMOVE OLD TOGGLE */
.nav-toggle-bg {
  display: none;
}

/* LINKS */
.nav-pill a {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 10px 18px;
  border-radius: 14px;

  font-size: 14px;
  font-weight: 500;

  color: rgba(255,255,255,0.65);
  text-decoration: none;

  transition: background .2s ease, color .2s ease;
}

/* ICONS */
.nav-pill i {
  font-size: 13px;
  opacity: 0.5;
}

/* HOVER */
.nav-pill a:hover {
  background: rgba(255,255,255,0.06);
  color: white;
}

/* ACTIVE */
.nav-pill a.is-active {
  background: rgba(255,255,255,0.14);
  color: white;
}

.nav-pill a.is-active i {
  opacity: 1;
}

/* CTA – quiet but clear */
.nav-cta {
  padding: 12px 20px;
  border-radius: 999px;

  border: 1px solid rgba(255,255,255,0.18);
  background: transparent;

  font-size: 14px;
  font-weight: 600;

  color: white;
  cursor: pointer;

  transition: background .2s ease, transform .2s ease;
}

.nav-cta:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-1px);
}

.nav-cta:active {
  transform: translateY(0);
}
