:host{
  --pn-yellow:#FFF200;
  --pn-black:#000;
  --pn-white:#fff;
}

/* sticky */
.pn-header{
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(0,0,0,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,242,0,0.7);
  font-family: "Inter", sans-serif;
  min-height: 80px;
}

.pn-container{
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 50px;
}
.pn-bar{ height: 80px; display:flex; align-items:center; justify-content:space-between; gap:16px; }

.pn-left{ display:flex; align-items:center; gap:24px; }
.pn-brand{ display:inline-flex; align-items:center; text-decoration:none; }
.pn-logo{ user-select:none; display:inline-flex; align-items:center; }
.pn-logoImg{ width:136px; height:auto; display:block; }

.pn-btnOutline{
  display:inline-flex; align-items:center; justify-content:center;
  border:1px solid rgba(255,255,255,0.7);
  color: rgba(255,255,255,0.9);
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 600;
  text-decoration:none;
  user-select:none;
  transition: border-color .15s ease, color .15s ease;
}
.pn-btnOutline:hover{
  border-color:#fff;
  color:#000;
  background:#fff;
}

.pn-nav{ display:flex; align-items:center; gap:30px; }
.pn-link{
  color: rgba(255,255,255,0.9);
  text-decoration:none;
  font-size: 14px;
  transition: color .15s ease;
}
.pn-link:hover{ color:#fff; font-weight:700; }

.pn-dropBtn{
  display:inline-flex; align-items:center; gap:6px;
  background: transparent; border:0; cursor:pointer;
  color: rgba(255,255,255,0.9);
  font-size: 14px;
  padding: 0;
  /*font-weight: 600;*/
}
.pn-dropBtn:hover{ color:#fff; font-weight:700; }
.pn-dropBtn--active{ font-weight:800; color:#fff; }
.pn-chevron{ transition: transform .15s ease; }
.pn-chevron--up{ transform: rotate(180deg); }

.pn-cta{
  display:inline-flex; align-items:center; justify-content:center;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 700;
  text-decoration:none;
  background:#000;
  color: var(--pn-yellow);
  border:1px solid var(--pn-yellow);
  box-shadow: -4px 4px 0 0 var(--pn-yellow);
  transform: translate(4px,-4px);
  user-select:none;
  transition: transform .15s ease, box-shadow .15s ease;
}
.pn-cta:hover{
  transform: translate(1px,-1px);
  box-shadow: -1px 1px 0 0 var(--pn-yellow);
}
.pn-cta--full{ width:auto; align-self:flex-start; margin-top: 18px; }

.pn-iconBtn{
  height:40px; width:40px;
  display:inline-flex; align-items:center; justify-content:center;
  background: transparent; border:0; cursor:pointer;
  color: var(--pn-yellow);
}

.pn-mega{
  position:absolute;
  left:0; right:0;
  top: 100%;
  background:#000;
  border-top: 1px solid var(--pn-yellow);
  box-shadow: 0 20px 60px -30px rgba(0,0,0,0.8);
}
.pn-megaWrap{ position: relative; }

.pn-megaInner{ max-width: 1200px; margin:0 auto; padding: 40px 32px; }
.pn-megaGrid{ display:grid; gap: 30px; }
.pn-megaGrid--3{ grid-template-columns: repeat(3, minmax(0,1fr)); }
.pn-megaGrid--4{ grid-template-columns: repeat(4, minmax(0,1fr)); }

.pn-chip{
  display:inline-block;
  background: var(--pn-yellow);
  color:#000;
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 14px;
}
.pn-megaList{ list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap: 12px; }
.pn-megaLink{ color: rgba(255,255,255,0.9); text-decoration:none; font-size: 14px; transition: color .15s ease, font-weight .15s ease; }
.pn-megaLink:hover{ color:#fff; font-weight:700; }

/* Mobile drawer */
.pn-drawer{
  position:fixed; inset:0;
  z-index: 90;
  background: linear-gradient(180deg, rgba(0,0,0,0.96) 0%, rgba(0,0,0,0.98) 100%);
  font-family: "Inter", sans-serif;
  overflow-y: auto;
}
.pn-drawerTop{
  height:80px;
  display:flex; align-items:center; justify-content:space-between;
  padding: 0 20px;
  border-bottom: 1px solid rgba(255,242,0,0.7);
}
.pn-drawerBody{ padding: 24px 20px; }
.pn-drawerBlock{ margin-bottom: 40px; }

.pn-pillLink,
.pn-accBtn{
  background: var(--pn-yellow);
  color:#000;
  font-family: inherit;
  font-weight: 900;
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.pn-pillLink{
  display:inline-flex;
  padding: 12px 20px;
  text-decoration:none;
  align-self:flex-start;
}

.pn-mobileList{ display:flex; flex-direction:column; gap: 30px; align-items:flex-start; }

.pn-accBtn{
  width:auto;
  display:inline-flex; align-items:center; gap: 12px;
  border:0;
  padding: 12px 20px;
  cursor:pointer;
  align-self:flex-start;
}
.pn-accPanel{ overflow:hidden; }
.pn-accInner{ padding: 20px 16px; display:flex; flex-direction:column; gap: 30px; }
.pn-mobileSubLink{ color: rgba(255,255,255,0.9); text-decoration:none; font-size: 18px; }
.pn-mobileSubLink:hover{ color:#fff; }

.pn-cta--full{ margin-top: 40px; }

/* Responsive: mobile/tablet use drawer */
.pn-mobileOnly{ display:none; }
.pn-desktopOnly{ display:block; }
.pn-desktopOnlyFlex{ display:flex; }

@media (max-width: 1023px){
  .pn-desktopOnly, .pn-desktopOnlyFlex{ display:none; }
  .pn-mobileOnly{ display:flex; order:1; }
  .pn-left{
    order:2;
    margin-left:auto;
    justify-content:flex-end;
  }
  .pn-left .pn-brand{ margin-left:auto; }
  .pn-mega{ display:none; }
  .pn-container{
    padding: 0 16px;
  }
}

