/* DNS Proxyon — public pricing (9proxy-inspired pack cards) */
.px2 {
  --ink: #eef5ff;
  --muted: #93a7c0;
  --line: rgba(140, 175, 220, .16);
  --cyan: #2f8cff;
  --cyan2: #1a6fd6;
  --lime: #6dff5c;
  --card: #141c2b;
  --bg0: #070b14;
  position: relative;
  overflow: hidden;
  padding: 0 0 96px;
  font-family: "DM Sans", system-ui, sans-serif;
  background:
    radial-gradient(1100px 520px at 50% -12%, rgba(47,140,255,.28), transparent 58%),
    radial-gradient(700px 420px at 8% 40%, rgba(109,255,92,.08), transparent 55%),
    linear-gradient(180deg, #060a12 0%, #0b1220 50%, #060a12 100%);
  color: var(--ink);
}
.px2 * { box-sizing: border-box; }
.px2 h1, .px2 h2, .px2 .px2-logo {
  font-family: Sora, "DM Sans", system-ui, sans-serif;
}

/* visible floating lights */
.px2-float {
  position: absolute; inset: 0; pointer-events: none; z-index: 0; overflow: hidden;
}
.px2-float span {
  position: absolute; width: 10px; height: 10px; border-radius: 50%;
  background: rgba(47,140,255,.55);
  box-shadow: 0 0 18px rgba(47,140,255,.65);
  animation: px2Rise 9s linear infinite;
  opacity: .55;
}
.px2-float span:nth-child(1) { left: 8%; animation-duration: 11s; animation-delay: 0s; }
.px2-float span:nth-child(2) { left: 22%; width: 7px; height: 7px; background: rgba(109,255,92,.55); box-shadow: 0 0 14px rgba(109,255,92,.5); animation-duration: 13s; animation-delay: -2s; }
.px2-float span:nth-child(3) { left: 48%; animation-duration: 10s; animation-delay: -4s; }
.px2-float span:nth-child(4) { left: 68%; width: 8px; height: 8px; background: rgba(255,120,180,.5); animation-duration: 12s; animation-delay: -1s; }
.px2-float span:nth-child(5) { left: 86%; animation-duration: 14s; animation-delay: -6s; }
.px2-float span:nth-child(6) { left: 35%; width: 6px; height: 6px; animation-duration: 15s; animation-delay: -8s; }
@keyframes px2Rise {
  0% { transform: translateY(100vh) scale(.6); opacity: 0; }
  12% { opacity: .7; }
  100% { transform: translateY(-40px) scale(1); opacity: 0; }
}

.px2-glow {
  position: absolute; width: 340px; height: 340px; border-radius: 50%;
  filter: blur(50px); pointer-events: none; z-index: 0;
  animation: px2Bob 8s ease-in-out infinite;
}
.px2-glow.a { left: -80px; top: 160px; background: rgba(47,140,255,.22); }
.px2-glow.b { right: -60px; top: 420px; background: rgba(109,255,92,.14); animation-delay: -3s; }
@keyframes px2Bob {
  0%,100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(24px,-30px) scale(1.12); }
}

.px2 .container { position: relative; z-index: 1; }

.px2-hero { text-align: center; padding: 52px 0 18px; }
.px2-logo {
  margin: 0 0 12px; font-size: clamp(30px, 6vw, 46px); font-weight: 800;
  letter-spacing: -.045em; line-height: 1.05;
}
.px2-logo em {
  font-style: normal;
  background: linear-gradient(100deg, #fff 0%, #7ec4ff 40%, #6dff5c 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: px2Shine 4.5s ease-in-out infinite;
}
@keyframes px2Shine {
  0%,100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.px2-hero p { margin: 0 auto; max-width: 540px; color: var(--muted); font-size: 14.5px; line-height: 1.55; }

.px2-tabs {
  display: flex; gap: 8px; overflow-x: auto; max-width: 100%;
  padding: 7px; margin: 18px auto 26px;
  border-radius: 16px; border: 1px solid var(--line);
  background: rgba(8,12,22,.75); backdrop-filter: blur(12px);
  -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.px2-tabs::-webkit-scrollbar { display: none; }
.px2-tabs .pricing-tab {
  flex: 0 0 auto; border: 0; cursor: pointer; white-space: nowrap;
  padding: 11px 15px; border-radius: 12px;
  background: transparent; color: var(--muted);
  font: 700 13px/1 "DM Sans", system-ui, sans-serif;
  transition: .2s ease;
}
.px2-tabs .pricing-tab:hover { color: #fff; background: rgba(255,255,255,.05); }
.px2-tabs .pricing-tab.active {
  color: #041018;
  background: linear-gradient(135deg, #1f78e8, #57b0ff);
  box-shadow: 0 10px 24px rgba(47,140,255,.35);
}

.px2-panel { display: none; animation: px2In .4s ease; }
.px2-panel.is-on { display: block; }
@keyframes px2In { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

.px2-note {
  max-width: 860px; margin: 0 auto 18px; padding: 12px 14px;
  border-radius: 12px; border: 1px solid var(--line);
  background: rgba(47,140,255,.07); color: var(--muted); font-size: 13px; line-height: 1.5;
}
.px2-note strong { color: var(--ink); }

.px2-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
@media (min-width: 980px) {
  .px2-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
}
@media (max-width: 420px) {
  .px2-grid { gap: 10px; }
}

.px2-card {
  position: relative;
  display: flex; flex-direction: column;
  min-height: 100%;
  padding: 16px 13px 13px;
  border-radius: 16px;
  background: linear-gradient(165deg, #1a2436 0%, #101826 100%);
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(0,0,0,.35);
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.px2-card::after {
  content: ""; position: absolute; inset: -40% auto auto -40%;
  width: 80%; height: 50%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.07), transparent);
  transform: translateX(-30%) rotate(12deg);
  animation: px2Sweep 5.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes px2Sweep {
  0%,100% { transform: translateX(-40%) rotate(12deg); opacity: 0; }
  40% { opacity: .9; }
  70% { transform: translateX(160%) rotate(12deg); opacity: 0; }
}
.px2-card:hover {
  transform: translateY(-5px);
  border-color: rgba(47,140,255,.45);
  box-shadow: 0 18px 40px rgba(0,0,0,.45), 0 0 0 1px rgba(47,140,255,.18);
}
.px2-card.is-hot {
  border-color: rgba(47,140,255,.65);
  box-shadow: 0 0 0 1px rgba(47,140,255,.45), 0 0 34px rgba(47,140,255,.28), 0 18px 40px rgba(0,0,0,.45);
  animation: px2Pulse 2.4s ease-in-out infinite;
  padding-top: 38px;
}
@keyframes px2Pulse {
  0%,100% { box-shadow: 0 0 0 1px rgba(47,140,255,.4), 0 0 22px rgba(47,140,255,.18), 0 14px 32px rgba(0,0,0,.4); }
  50% { box-shadow: 0 0 0 1px rgba(87,176,255,.7), 0 0 42px rgba(47,140,255,.4), 0 18px 40px rgba(0,0,0,.45); }
}
.px2-ribbon {
  position: absolute; left: 0; right: 0; top: 0; height: 30px;
  display: grid; place-items: center;
  background: linear-gradient(90deg, #1763c7, #2f8cff 45%, #6bb8ff);
  color: #fff; font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  border-radius: 15px 15px 0 0;
}

.px2-title {
  margin: 0 0 8px; font-size: 13px; font-weight: 600; color: rgba(238,245,255,.9);
}
.px2-price {
  display: flex; align-items: baseline; gap: 5px; flex-wrap: wrap;
  margin: 0 0 12px; font-family: Sora, system-ui, sans-serif;
}
.px2-price b {
  font-size: clamp(23px, 5vw, 30px); font-weight: 800; letter-spacing: -.04em;
  color: #d7eaff;
  animation: px2PricePulse 3s ease-in-out infinite;
}
@keyframes px2PricePulse {
  0%,100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}
.px2-price span { font-size: 12px; color: var(--muted); font-weight: 650; }

.px2-gift {
  margin-bottom: 12px; padding: 10px;
  border-radius: 12px; background: rgba(0,0,0,.32);
  border: 1px solid rgba(255,255,255,.06);
}
.px2-gift-label {
  display: flex; align-items: center; gap: 7px;
  margin-bottom: 8px; font-size: 11px; font-weight: 800;
  letter-spacing: .07em; text-transform: uppercase; color: var(--muted);
}
.px2-fire {
  width: 15px; height: 15px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fff6a8, #ffb02e 45%, #ff5a00 80%);
  box-shadow: 0 0 12px rgba(255,160,40,.7);
  animation: px2Flicker .9s ease-in-out infinite;
}
@keyframes px2Flicker {
  0%,100% { transform: scale(1) translateY(0); }
  50% { transform: scale(1.2) translateY(-1px); }
}
.px2-gift-row {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  font-size: 12px; color: var(--muted);
}
.px2-gift-row strong { color: var(--ink); font-variant-numeric: tabular-nums; }
.px2-badge {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 44px; padding: 3px 9px; border-radius: 999px;
  background: rgba(109,255,92,.12); border: 1px solid rgba(109,255,92,.4);
  color: var(--lime); font-size: 11px; font-weight: 800;
  animation: px2Badge 1.8s ease-in-out infinite;
}
@keyframes px2Badge {
  0%,100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(109,255,92,0); }
  50% { transform: scale(1.06); box-shadow: 0 0 16px rgba(109,255,92,.35); }
}

.px2-feats { list-style: none; margin: 0 0 14px; padding: 0; flex: 1; }
.px2-feats li {
  position: relative; padding: 5px 0 5px 18px;
  color: var(--muted); font-size: 11.5px; line-height: 1.35;
}
.px2-feats li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 9px; height: 9px; border-radius: 50%;
  border: 1.5px solid rgba(47,140,255,.65);
  background: rgba(47,140,255,.12);
}

.px2-buy {
  margin-top: auto; width: 100%;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 12px; border-radius: 12px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.04);
  color: #fff !important; text-decoration: none !important;
  font-weight: 750; font-size: 13px;
  transition: .2s ease;
}
.px2-buy svg { width: 16px; height: 16px; }
.px2-buy:hover {
  background: rgba(47,140,255,.18); border-color: rgba(47,140,255,.45);
  transform: translateY(-1px);
}
.px2-card.is-hot .px2-buy {
  border: 0;
  background: linear-gradient(135deg, #1763c7, #2f8cff 55%, #57b0ff);
  box-shadow: 0 10px 22px rgba(47,140,255,.4);
}
.px2-card.is-hot .px2-buy:hover { filter: brightness(1.07); }

.px2-wide { max-width: 920px; margin: 0 auto; }
.px2-tone-lime.is-hot {
  animation: px2PulseLime 2.4s ease-in-out infinite;
  border-color: rgba(109,255,92,.55);
}
@keyframes px2PulseLime {
  0%,100% { box-shadow: 0 0 0 1px rgba(109,255,92,.3), 0 0 20px rgba(109,255,92,.12); }
  50% { box-shadow: 0 0 0 1px rgba(109,255,92,.55), 0 0 36px rgba(109,255,92,.28); }
}
.px2-tone-lime .px2-ribbon { background: linear-gradient(90deg, #2f8f22, #6dff5c); color: #06200a; }
.px2-tone-lime.is-hot .px2-buy {
  background: linear-gradient(135deg, #2f8f22, #6dff5c); color: #06200a !important;
  box-shadow: 0 10px 22px rgba(109,255,92,.3);
}

@media (prefers-reduced-motion: reduce) {
  .px2-float span, .px2-glow, .px2-card.is-hot, .px2-fire, .px2-badge, .px2-price b, .px2-card::after {
    animation: none !important;
  }
}
