.plPremiumPage {
  --plBg: #0b0c10;
  --plPanel: rgba(255, 255, 255, 0.06);
  --plPanel2: rgba(255, 255, 255, 0.085);
  --plText: rgba(255, 255, 255, 0.92);
  --plText2: rgba(255, 255, 255, 0.72);
  --plText3: rgba(255, 255, 255, 0.58);
  --plLine: rgba(255, 255, 255, 0.12);
  --plShadow: 0 18px 60px rgba(0, 0, 0, 0.45);
  --plShadow2: 0 10px 34px rgba(0, 0, 0, 0.35);
  --plRadius: 22px;
  --plRadius2: 28px;
  --plMax: 1040px;

  background: radial-gradient(1200px 700px at 15% 5%, rgba(255, 220, 120, 0.16), transparent 55%),
    radial-gradient(900px 520px at 90% 20%, rgba(150, 200, 255, 0.12), transparent 60%),
    radial-gradient(900px 520px at 60% 90%, rgba(190, 120, 255, 0.10), transparent 60%),
    var(--plBg);
  color: var(--plText);
  min-height: 100vh;
}

.plWrap {
  max-width: var(--plMax);
  margin: 0 auto;
  padding: 0 18px;
}

.plPremiumPage h1,
.plPremiumPage h2,
.plPremiumPage h3 {
  letter-spacing: -0.02em;
}

.plPremiumPage h1 {
  font-size: clamp(34px, 4.4vw, 54px);
  line-height: 1.06;
  margin: 0 0 12px 0;
}

.plPremiumPage h2 {
  font-size: clamp(22px, 2.7vw, 30px);
  line-height: 1.15;
  margin: 0 0 10px 0;
}

.plPremiumPage h3 {
  font-size: 20px;
  line-height: 1.2;
  margin: 0 0 8px 0;
}

.plHeroPremium {
  padding: 76px 0 36px 0;
}

.plHeroSub {
  color: var(--plText2);
  font-size: 18px;
  line-height: 1.55;
  max-width: 720px;
  margin: 0 0 20px 0;
}

.plHeroFast {
  display: inline-flex;
  align-items: center;
  margin: 0 0 20px 0;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 214, 102, 0.35);
  background: rgba(255, 214, 102, 0.14);
  color: rgba(255, 235, 185, 0.98);
  font-weight: 650;
}

.plHeroCtas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.plBtnPrimary,
.plBtnSecondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 650;
  line-height: 1;
  border: 1px solid transparent;
  box-shadow: var(--plShadow2);
  transform: translateZ(0);
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease, border-color 220ms ease, color 220ms ease;
  will-change: transform;
}

.plBtnPrimary {
  background: linear-gradient(135deg, rgba(255, 214, 102, 0.95), rgba(255, 154, 82, 0.90));
  color: rgba(15, 10, 6, 0.92);
}

.plBtnSecondary {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
  color: var(--plText);
}

.plBtnPrimary:hover,
.plBtnSecondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.45);
}

.plBtnPrimary:active,
.plBtnSecondary:active {
  transform: translateY(0px) scale(0.99);
}

.plSectionPremium {
  padding: 34px 0;
}

.plSectionIntro {
  color: var(--plText2);
  line-height: 1.65;
  max-width: 860px;
  margin: 0 0 18px 0;
}

.plCardsGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 840px) {
  .plCardsGrid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}

.plPremiumCard {
  background: linear-gradient(180deg, var(--plPanel), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--plRadius);
  padding: 18px 18px 16px 18px;
  box-shadow: var(--plShadow2);
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
  transition: transform 240ms ease, border-color 240ms ease, background 240ms ease, box-shadow 240ms ease;
}

.plCardVisual {
  display: flex;
  justify-content: center;
  gap: 0;
  margin: 4px 0 14px;
  padding: 6px 0;
}

.plCardVisual img {
  width: 72px;
  height: 108px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.42);
}

.plCardVisual img:nth-child(1) {
  transform: translateX(12px) rotate(-8deg);
  opacity: 0.9;
}

.plCardVisual img:nth-child(2) {
  position: relative;
  z-index: 2;
}

.plCardVisual img:nth-child(3) {
  transform: translateX(-12px) rotate(8deg);
  opacity: 0.9;
}

.plCardVisual--wave img:nth-child(1) {
  transform: translateX(16px) translateY(4px) rotate(-11deg);
}

.plCardVisual--wave img:nth-child(2) {
  transform: translateY(-6px) rotate(-1deg);
}

.plCardVisual--wave img:nth-child(3) {
  transform: translateX(-16px) translateY(4px) rotate(11deg);
}

.plCardVisual--stack {
  gap: 10px;
}

.plCardVisual--stack img:nth-child(1),
.plCardVisual--stack img:nth-child(2),
.plCardVisual--stack img:nth-child(3) {
  transform: none;
  opacity: 1;
}

.plCardVisual--stack img:nth-child(2) {
  transform: translateY(-8px);
}

.plCardVisual--compat {
  align-items: center;
  gap: 8px;
}

.plCardVisual--compat img:nth-child(1) {
  transform: rotate(-15deg) translateY(10px);
  opacity: 0.86;
}

.plCardVisual--compat img:nth-child(2) {
  transform: translateY(-6px) scale(1.04);
}

.plCardVisual--compat img:nth-child(3) {
  transform: rotate(15deg) translateY(10px);
  opacity: 0.86;
}

.plCardVisual--highlight {
  margin-top: 22px;
}

.plSectionUpcoming {
  padding-top: 8px;
}

.plUpcomingGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 840px) {
  .plUpcomingGrid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}

.plPremiumCard--comingSoon {
  border-color: rgba(255, 214, 102, 0.25);
  background: linear-gradient(180deg, rgba(255, 214, 102, 0.08), rgba(255, 255, 255, 0.04));
}

.plComingSoonBadge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 214, 102, 0.35);
  background: rgba(255, 214, 102, 0.14);
  color: rgba(255, 235, 185, 0.95);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.plEnergyCorner {
  padding: 4px 0 22px;
}

.plPremiumCard--energy {
  max-width: 520px;
  margin-left: auto;
  border-color: rgba(191, 157, 255, 0.3);
  background: linear-gradient(180deg, rgba(191, 157, 255, 0.12), rgba(255, 255, 255, 0.04));
}

@media (max-width: 840px) {
  .plPremiumCard--energy {
    margin-left: 0;
    max-width: none;
  }
}

.plPremiumCard::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(closest-side, rgba(255, 214, 102, 0.16), transparent 65%);
  transform: translate3d(0, 0, 0);
  opacity: 0.0;
  transition: opacity 260ms ease;
  pointer-events: none;
}

.plPremiumCard:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.18);
  background: linear-gradient(180deg, var(--plPanel2), rgba(255, 255, 255, 0.05));
  box-shadow: var(--plShadow);
}

.plPremiumCard:hover::before {
  opacity: 1;
}

.plPremiumCard p {
  color: var(--plText2);
  line-height: 1.6;
  margin: 0 0 12px 0;
}

.plPremiumCard ul {
  margin: 0 0 14px 18px;
  padding: 0;
  color: var(--plText2);
  line-height: 1.55;
}

.plPremiumCard li {
  margin: 6px 0;
}

.plPrice {
  font-weight: 750;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 10px 0;
}

.plTransitionPremium {
  padding: 22px 0 10px 0;
}

.plTransitionPremium p {
  margin: 0;
  padding: 18px 18px;
  border-radius: var(--plRadius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: var(--plText2);
  box-shadow: var(--plShadow2);
}

.plSectionHighlight {
  padding: 38px 0 44px 0;
}

.plSectionHighlight .plWrap {
  background: linear-gradient(180deg, rgba(255, 214, 102, 0.10), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--plRadius2);
  padding: 22px 18px;
  box-shadow: var(--plShadow);
  position: relative;
  overflow: hidden;
}

@media (min-width: 840px) {
  .plSectionHighlight .plWrap {
    padding: 28px 26px;
  }
}

.plPriceLarge {
  font-weight: 800;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.94);
  margin: 8px 0 14px 0;
}

.plPremiumList {
  margin: 0 0 18px 18px;
  padding: 0;
  color: var(--plText2);
  line-height: 1.6;
}

.plBtnLarge {
  padding: 14px 18px;
  font-size: 16px;
}

.plDecisionPremium {
  padding: 34px 0 70px 0;
}

.plDecisionPremium h3 {
  font-size: 22px;
  margin: 0 0 10px 0;
}

.plDecisionPremium p {
  margin: 0 0 14px 0;
  color: var(--plText2);
  line-height: 1.6;
}

/* Animations on load and on reveal */
@keyframes plFadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
    filter: blur(2px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.plHeroPremium .plWrap > * {
  animation: plFadeUp 700ms ease both;
}

.plHeroPremium .plWrap > :nth-child(1) { animation-delay: 0ms; }
.plHeroPremium .plWrap > :nth-child(2) { animation-delay: 90ms; }
.plHeroPremium .plWrap > :nth-child(3) { animation-delay: 160ms; }
.plHeroPremium .plWrap > :nth-child(4) { animation-delay: 220ms; }

/* Scroll reveal support via JS adding .isVisible */
.plReveal {
  opacity: 0;
  transform: translateY(14px);
  filter: blur(2px);
  transition: opacity 520ms ease, transform 520ms ease, filter 520ms ease;
  will-change: opacity, transform;
}

.plReveal.isVisible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* Focus styles */
.plBtnPrimary:focus-visible,
.plBtnSecondary:focus-visible {
  outline: 3px solid rgba(255, 214, 102, 0.55);
  outline-offset: 3px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .plBtnPrimary,
  .plBtnSecondary,
  .plPremiumCard,
  .plHeroPremium .plWrap > * {
    animation: none !important;
    transition: none !important;
  }
  .plReveal {
    opacity: 1;
    transform: none;
    filter: none;
  }
}
