/* ============================================================
   PREMIUM FLOATING PILL NAV — shared across all pages
   ============================================================ */

nav.pn,
nav#premiumNav {
  --pn-x: 50%;
  --pn-y: 50%;
  position: fixed;
  top: 18px;
  left: 0; right: 0;
  margin: 0 auto;
  width: min(1240px, calc(100% - 32px));
  height: 68px;
  padding: 0 8px 0 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(20, 28, 48, 0.52), rgba(5, 10, 24, 0.42)),
    rgba(6, 11, 26, 0.38);
  backdrop-filter: blur(22px) saturate(145%);
  -webkit-backdrop-filter: blur(22px) saturate(145%);
  border: 1px solid rgba(204, 225, 255, 0.18);
  border-radius: 999px;
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.13),
    inset 0 -1px 0 rgba(255, 255, 255, 0.035);
  z-index: 1000;
  transform: translateY(-150%);
  transition:
    top 0.4s ease,
    background 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s ease,
    width 0.4s ease;
}

nav.pn::before,
nav#premiumNav::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: 0;
  border-radius: inherit;
  background:
    radial-gradient(
      280px circle at var(--pn-x) var(--pn-y),
      rgba(255, 255, 255, 0.07),
      transparent 66%
    );
  pointer-events: none;
  opacity: 0.8;
  transition: opacity 240ms ease;
}

nav.pn > *,
nav#premiumNav > * {
  z-index: 1;
}

nav.pn.is-ready,
nav#premiumNav.is-ready { transform: translateY(0); }
nav.pn.is-scrolled,
nav#premiumNav.is-scrolled {
  top: 18px;
  background:
    linear-gradient(180deg, rgba(16, 23, 42, 0.6), rgba(3, 7, 18, 0.5)),
    rgba(4, 7, 16, 0.44);
  border-color: rgba(204, 225, 255, 0.2);
  box-shadow:
    0 20px 52px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    inset 0 -1px 0 rgba(255, 255, 255, 0.04);
}
nav.pn.is-hidden,
nav#premiumNav.is-hidden { transform: translateY(-150%); }

nav#premiumNav.pn-stable,
nav#premiumNav.pn-stable.is-scrolled,
nav#premiumNav.pn-stable.is-hidden {
  top: 18px;
  transform: translateY(0);
}

/* Scroll progress bar */
.pn-progress {
  display: none;
}
.pn-progress::after {
  content: none;
}

/* Logo */
.pn-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 800;
  color: #f4f8ff;
  text-decoration: none;
  flex-shrink: 0;
  position: relative;
  padding-right: 14px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  letter-spacing: -0.02em;
  transition: color 220ms ease;
}
.pn-brand img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(76, 201, 255, 0.4));
  transition: transform 380ms cubic-bezier(0.22, 1, 0.36, 1), filter 380ms ease;
}
.pn-brand:hover img {
  transform: translateY(-1px) scale(1.06);
  filter: drop-shadow(0 0 15px rgba(76, 201, 255, 0.64));
}
.pn-brand .pn-accent { color: #4cc9ff; }
.pn-brand::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 22px;
  background: linear-gradient(180deg, transparent, rgba(118, 164, 255, 0.25), transparent);
}
.pn-brand .pn-live {
  position: absolute;
  top: 50%;
  right: -2px;
  transform: translate(0, -50%);
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #4cc9ff;
  box-shadow: 0 0 10px #4cc9ff;
  animation: pnLive 2s ease-in-out infinite;
}
@keyframes pnLive {
  0%, 100% { opacity: 1; transform: translate(0, -50%) scale(1); }
  50% { opacity: 0.4; transform: translate(0, -50%) scale(1.4); }
}

/* Nav links container */
.pn-menu {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 999px;
  position: relative;
  margin: 0 auto;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.045),
    0 8px 28px rgba(0, 0, 0, 0.12);
}
.pn-pill {
  position: absolute;
  top: 4px;
  height: calc(100% - 8px);
  background:
    linear-gradient(135deg, rgba(70, 198, 255, 0.26), rgba(122, 111, 255, 0.2));
  border: 1px solid rgba(104, 211, 255, 0.36);
  border-radius: 999px;
  transition:
    left 0.48s cubic-bezier(0.22, 1, 0.36, 1),
    width 0.48s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.25s ease;
  z-index: 0;
  box-shadow:
    0 7px 20px rgba(56, 176, 255, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  pointer-events: none;
  opacity: 0;
  will-change: left, width;
}
.pn-pill.is-ready { opacity: 1; }

/* Nav links */
.pn-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.66);
  text-decoration: none;
  background: transparent;
  border: 0;
  transition: color 0.3s ease;
  white-space: nowrap;
  font-family: inherit;
}
.pn-link:hover { color: #fff; }
.pn-link.active { color: #fff; }

.pn-special {
  gap: 6px;
  margin: 0 1px;
  padding-left: 10px;
  padding-right: 11px;
  border: 1px solid transparent;
  transition:
    color 220ms ease,
    background 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.pn-link-icon {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  border-radius: 6px;
  font-size: 0.67rem;
  transition:
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 220ms ease;
}

.pn-growth {
  min-width: 84px;
  min-height: 36px;
  overflow: hidden;
  color: rgba(255, 231, 236, 0.86);
  background: linear-gradient(135deg, rgba(255, 35, 79, 0.08), rgba(255, 83, 46, 0.035));
  border-color: rgba(255, 70, 105, 0.12);
}

.pn-growth-label {
  display: inline-block;
  animation: pnGrowthLabel 7.2s cubic-bezier(0.22, 1, 0.36, 1) infinite;
  will-change: transform, opacity;
}

.pn-growth-motion {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 54px;
  height: 24px;
  opacity: 0;
  transform: translate(-38%, -50%) scale(0.88);
  animation: pnGrowthMotion 7.2s cubic-bezier(0.22, 1, 0.36, 1) infinite;
  pointer-events: none;
  will-change: transform, opacity;
}

.pn-growth-bars {
  position: absolute;
  left: 2px;
  bottom: 2px;
  display: flex;
  align-items: flex-end;
  gap: 3px;
  width: 34px;
  height: 21px;
}

.pn-growth-bars i {
  width: 5px;
  height: var(--bar);
  border-radius: 2px 2px 1px 1px;
  background: linear-gradient(180deg, #ff785a, #ff174d);
  box-shadow: 0 0 8px rgba(255, 42, 79, 0.38);
  opacity: 0;
  transform: scaleY(0.16);
  transform-origin: bottom center;
  animation: pnGrowthBar 7.2s ease-in-out var(--delay) infinite;
}

.pn-growth-trend {
  position: absolute;
  left: 7px;
  top: 10px;
  width: 37px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffb14a, #6fe6ff);
  box-shadow: 0 0 8px rgba(111, 230, 255, 0.42);
  opacity: 0;
  transform: rotate(-23deg) scaleX(0);
  transform-origin: left center;
  animation: pnGrowthTrend 7.2s ease-in-out infinite;
}

.pn-growth-trend i {
  position: absolute;
  top: 50%;
  left: 0;
  width: 6px;
  height: 6px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  background: #69e0ff;
  box-shadow: 0 0 9px rgba(105, 224, 255, 0.9);
  transform: translate(-50%, -50%);
  animation: pnGrowthPoint 7.2s ease-in-out infinite;
}

@keyframes pnGrowthLabel {
  0%, 43% {
    opacity: 1;
    transform: translateX(0);
  }
  49%, 71% {
    opacity: 0;
    transform: translateX(-14px);
  }
  72% {
    opacity: 0;
    transform: translateX(14px);
  }
  80%, 100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pnGrowthMotion {
  0%, 46% {
    opacity: 0;
    transform: translate(-34%, -50%) scale(0.88);
  }
  53%, 70% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  77%, 100% {
    opacity: 0;
    transform: translate(-66%, -50%) scale(0.92);
  }
}

@keyframes pnGrowthBar {
  0%, 49% {
    opacity: 0;
    transform: scaleY(0.16);
  }
  55% {
    opacity: 1;
    transform: scaleY(0.35);
  }
  64%, 70% {
    opacity: 1;
    transform: scaleY(1);
  }
  76%, 100% {
    opacity: 0;
    transform: scaleY(0.3);
  }
}

@keyframes pnGrowthTrend {
  0%, 54% {
    opacity: 0;
    transform: rotate(-23deg) scaleX(0);
  }
  61%, 70% {
    opacity: 1;
    transform: rotate(-23deg) scaleX(1);
  }
  76%, 100% {
    opacity: 0;
    transform: rotate(-23deg) scaleX(1);
  }
}

@keyframes pnGrowthPoint {
  0%, 54% { left: 0; opacity: 0; }
  58% { opacity: 1; }
  68%, 70% { left: 100%; opacity: 1; }
  76%, 100% { left: 100%; opacity: 0; }
}

.pn-growth.is-hover-cycle .pn-growth-label {
  animation: pnGrowthLabelHover 3s cubic-bezier(0.22, 1, 0.36, 1) 1 both;
}

.pn-growth.is-hover-cycle .pn-growth-motion {
  animation: pnGrowthMotionHover 3s cubic-bezier(0.22, 1, 0.36, 1) 1 both;
}

.pn-growth.is-hover-cycle .pn-growth-bars i {
  animation: pnGrowthBarHover 3s ease-in-out var(--delay) 1 both;
}

.pn-growth.is-hover-cycle .pn-growth-trend {
  animation: pnGrowthTrendHover 3s ease-in-out 1 both;
}

.pn-growth.is-hover-cycle .pn-growth-trend i {
  animation: pnGrowthPointHover 3s ease-in-out 1 both;
}

@keyframes pnGrowthLabelHover {
  0%, 12% { opacity: 1; transform: translateX(0); }
  24%, 70% { opacity: 0; transform: translateX(-14px); }
  71% { opacity: 0; transform: translateX(14px); }
  84%, 100% { opacity: 1; transform: translateX(0); }
}

@keyframes pnGrowthMotionHover {
  0%, 18% { opacity: 0; transform: translate(-34%, -50%) scale(0.88); }
  32%, 68% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  80%, 100% { opacity: 0; transform: translate(-66%, -50%) scale(0.92); }
}

@keyframes pnGrowthBarHover {
  0%, 24% { opacity: 0; transform: scaleY(0.16); }
  38% { opacity: 1; transform: scaleY(0.35); }
  58%, 68% { opacity: 1; transform: scaleY(1); }
  80%, 100% { opacity: 0; transform: scaleY(0.3); }
}

@keyframes pnGrowthTrendHover {
  0%, 35% { opacity: 0; transform: rotate(-23deg) scaleX(0); }
  52%, 68% { opacity: 1; transform: rotate(-23deg) scaleX(1); }
  80%, 100% { opacity: 0; transform: rotate(-23deg) scaleX(1); }
}

@keyframes pnGrowthPointHover {
  0%, 35% { left: 0; opacity: 0; }
  43% { opacity: 1; }
  62%, 68% { left: 100%; opacity: 1; }
  80%, 100% { left: 100%; opacity: 0; }
}

.pn-editing {
  min-width: 84px;
  min-height: 36px;
  overflow: hidden;
  color: rgba(235, 236, 255, 0.86);
  background: linear-gradient(135deg, rgba(132, 100, 255, 0.09), rgba(57, 195, 255, 0.035));
  border-color: rgba(143, 124, 255, 0.13);
}

.pn-editing-label {
  display: inline-block;
  animation: pnEditingLabel 7.2s cubic-bezier(0.22, 1, 0.36, 1) 3.6s infinite;
  will-change: transform, opacity;
}

.pn-editing-motion {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 58px;
  height: 25px;
  opacity: 0;
  transform: translate(-35%, -50%) scale(0.9);
  animation: pnEditingMotion 7.2s cubic-bezier(0.22, 1, 0.36, 1) 3.6s infinite;
  pointer-events: none;
}

.pn-editing-track {
  position: absolute;
  inset: 4px 1px 3px;
  overflow: hidden;
  border: 1px solid rgba(159, 188, 255, 0.3);
  border-radius: 5px;
  background: rgba(4, 8, 24, 0.74);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.pn-editing-track::before,
.pn-editing-track::after {
  content: "";
  position: absolute;
  left: 4px;
  right: 4px;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.pn-editing-track::before { top: 4px; }
.pn-editing-track::after { bottom: 4px; }

.pn-editing-clip {
  position: absolute;
  top: 6px;
  height: 7px;
  border-radius: 2px;
  opacity: 0;
  transform: scaleX(0);
}

.pn-editing-clip.clip-a {
  left: 5px;
  width: 21px;
  background: linear-gradient(90deg, #8f6fff, #b890ff);
  transform-origin: right center;
  animation: pnEditingClipA 7.2s ease-in-out 3.6s infinite;
}

.pn-editing-clip.clip-b {
  right: 5px;
  width: 20px;
  background: linear-gradient(90deg, #27bfff, #67e0ff);
  transform-origin: left center;
  animation: pnEditingClipB 7.2s ease-in-out 3.6s infinite;
}

.pn-editing-cut {
  position: absolute;
  left: 50%;
  top: 3px;
  bottom: 3px;
  width: 1px;
  background: #fff;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.9);
  opacity: 0;
  transform: translateX(-50%) scaleY(0.2);
  animation: pnEditingCut 7.2s ease-in-out 3.6s infinite;
}

.pn-editing-playhead {
  position: absolute;
  left: 5px;
  top: 1px;
  bottom: 1px;
  width: 2px;
  border-radius: 2px;
  background: #ff466d;
  box-shadow: 0 0 8px rgba(255, 70, 109, 0.8);
  opacity: 0;
  animation: pnEditingPlayhead 7.2s ease-in-out 3.6s infinite;
}

@keyframes pnEditingLabel {
  0%, 43% { opacity: 1; transform: translateX(0); }
  49%, 71% { opacity: 0; transform: translateX(-14px); }
  72% { opacity: 0; transform: translateX(14px); }
  80%, 100% { opacity: 1; transform: translateX(0); }
}

@keyframes pnEditingMotion {
  0%, 46% { opacity: 0; transform: translate(-35%, -50%) scale(0.9); }
  53%, 70% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  77%, 100% { opacity: 0; transform: translate(-65%, -50%) scale(0.92); }
}

@keyframes pnEditingClipA {
  0%, 51% { opacity: 0; transform: scaleX(0); }
  57%, 70% { opacity: 1; transform: scaleX(1); }
  77%, 100% { opacity: 0; transform: scaleX(0.75); }
}

@keyframes pnEditingClipB {
  0%, 54% { opacity: 0; transform: scaleX(0); }
  60%, 70% { opacity: 1; transform: scaleX(1); }
  77%, 100% { opacity: 0; transform: scaleX(0.75); }
}

@keyframes pnEditingCut {
  0%, 58% { opacity: 0; transform: translateX(-50%) scaleY(0.2); }
  62%, 66% { opacity: 1; transform: translateX(-50%) scaleY(1); }
  70%, 100% { opacity: 0; transform: translateX(-50%) scaleY(0.2); }
}

@keyframes pnEditingPlayhead {
  0%, 52% { left: 5px; opacity: 0; }
  56% { opacity: 1; }
  69%, 70% { left: calc(100% - 7px); opacity: 1; }
  77%, 100% { left: calc(100% - 7px); opacity: 0; }
}

.pn-editing.is-edit-hover-cycle .pn-editing-label {
  animation: pnEditingLabelHover 3s cubic-bezier(0.22, 1, 0.36, 1) 1 both;
}

.pn-editing.is-edit-hover-cycle .pn-editing-motion {
  animation: pnEditingMotionHover 3s cubic-bezier(0.22, 1, 0.36, 1) 1 both;
}

.pn-editing.is-edit-hover-cycle .clip-a {
  animation: pnEditingClipAHover 3s ease-in-out 1 both;
}

.pn-editing.is-edit-hover-cycle .clip-b {
  animation: pnEditingClipBHover 3s ease-in-out 1 both;
}

.pn-editing.is-edit-hover-cycle .pn-editing-cut {
  animation: pnEditingCutHover 3s ease-in-out 1 both;
}

.pn-editing.is-edit-hover-cycle .pn-editing-playhead {
  animation: pnEditingPlayheadHover 3s ease-in-out 1 both;
}

@keyframes pnEditingLabelHover {
  0%, 12% { opacity: 1; transform: translateX(0); }
  24%, 70% { opacity: 0; transform: translateX(-14px); }
  71% { opacity: 0; transform: translateX(14px); }
  84%, 100% { opacity: 1; transform: translateX(0); }
}

@keyframes pnEditingMotionHover {
  0%, 18% { opacity: 0; transform: translate(-35%, -50%) scale(0.9); }
  32%, 68% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  80%, 100% { opacity: 0; transform: translate(-65%, -50%) scale(0.92); }
}

@keyframes pnEditingClipAHover {
  0%, 25% { opacity: 0; transform: scaleX(0); }
  40%, 68% { opacity: 1; transform: scaleX(1); }
  80%, 100% { opacity: 0; transform: scaleX(0.75); }
}

@keyframes pnEditingClipBHover {
  0%, 31% { opacity: 0; transform: scaleX(0); }
  46%, 68% { opacity: 1; transform: scaleX(1); }
  80%, 100% { opacity: 0; transform: scaleX(0.75); }
}

@keyframes pnEditingCutHover {
  0%, 43% { opacity: 0; transform: translateX(-50%) scaleY(0.2); }
  50%, 57% { opacity: 1; transform: translateX(-50%) scaleY(1); }
  66%, 100% { opacity: 0; transform: translateX(-50%) scaleY(0.2); }
}

@keyframes pnEditingPlayheadHover {
  0%, 29% { left: 5px; opacity: 0; }
  36% { opacity: 1; }
  65%, 68% { left: calc(100% - 7px); opacity: 1; }
  80%, 100% { left: calc(100% - 7px); opacity: 0; }
}

.pn-special:hover,
.pn-special.active {
  color: #fff;
  transform: translateY(-1px);
}

.pn-growth:hover,
.pn-growth.active {
  border-color: rgba(255, 81, 112, 0.28);
  background: linear-gradient(135deg, rgba(255, 35, 79, 0.16), rgba(255, 83, 46, 0.07));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.pn-editing:hover,
.pn-editing.active {
  border-color: rgba(136, 157, 255, 0.28);
  background: linear-gradient(135deg, rgba(132, 100, 255, 0.17), rgba(40, 191, 255, 0.07));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.pn-special:hover .pn-link-icon,
.pn-special.active .pn-link-icon {
  transform: translateY(-1px) scale(1.07);
}

/* CTA button */
.pn-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #4cc9ff, #8f7cff);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.02em;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    0 9px 26px rgba(76, 201, 255, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  font-family: inherit;
}
.pn-cta:hover {
  transform: translateY(-2px);
  box-shadow:
    0 14px 34px rgba(76, 201, 255, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
}
.pn-cta .pn-cta-arrow { transition: transform 0.3s ease; }
.pn-cta:hover .pn-cta-arrow { transform: translateX(3px); }
.pn-cta::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -100%;
  width: 60%;
  height: 200%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: skewX(-22deg);
  animation: pnCtaShine 4.5s ease-in-out infinite;
}
@keyframes pnCtaShine {
  0%, 70% { left: -100%; }
  100% { left: 200%; }
}

/* Mobile burger */
.pn-burger {
  display: none;
  width: 42px;
  height: 42px;
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-size: 0.95rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  font-family: inherit;
}

/* Responsive */
@media (max-width: 1100px) {
  nav.pn, nav#premiumNav { width: calc(100% - 24px); padding: 0 6px 0 16px; }
  .pn-link { padding: 7px 11px; font-size: 0.7rem; letter-spacing: 0.04em; }
  .pn-special { gap: 4px; padding-left: 7px; padding-right: 8px; }
  .pn-growth { min-width: 72px; }
  .pn-editing { min-width: 72px; }
  .pn-growth-motion { transform-origin: center; }
  .pn-link-icon { width: 18px; height: 18px; flex-basis: 18px; font-size: 0.6rem; }
  .pn-cta { padding: 9px 14px; font-size: 0.76rem; }
}
@media (max-width: 900px) {
  nav.pn, nav#premiumNav { height: 60px; padding: 0 6px 0 12px; top: 12px; }
  nav#premiumNav.pn-stable,
  nav#premiumNav.pn-stable.is-scrolled,
  nav#premiumNav.pn-stable.is-hidden { top: 12px; }
  .pn-menu {
    display: none;
    position: fixed;
    left: 16px; right: 16px;
    top: 80px;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border-radius: 24px;
    background: rgba(6, 11, 26, 0.78);
    border: 1px solid rgba(204, 225, 255, 0.18);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(24px) saturate(145%);
    -webkit-backdrop-filter: blur(24px) saturate(145%);
  }
  .pn-menu.is-open { display: flex; }
  .pn-link { text-align: center; padding: 12px 14px; }
  .pn-special {
    gap: 9px;
    margin: 2px 0;
    justify-content: flex-start;
    padding: 11px 14px;
  }
  .pn-growth {
    min-width: 0;
    justify-content: center;
  }
  .pn-editing {
    min-width: 0;
    justify-content: center;
  }
  .pn-link-icon {
    width: 26px;
    height: 26px;
    flex-basis: 26px;
    border-radius: 7px;
    font-size: 0.76rem;
  }
  .pn-cta { display: none; }
  .pn-burger { display: inline-flex; }
  .pn-pill { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  nav.pn,
  nav#premiumNav,
  .pn-brand img,
  .pn-pill,
  .pn-cta,
  .pn-cta::before,
  .pn-live {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }

  .pn-growth-label {
    opacity: 1 !important;
    transform: none !important;
  }

  .pn-growth-motion {
    display: none;
  }

  .pn-editing-label {
    opacity: 1 !important;
    transform: none !important;
  }

  .pn-editing-motion {
    display: none;
  }
}
