:root {
  --bg: #071018;
  --bg-2: #0d1a28;
  --panel: rgba(14, 28, 42, 0.92);
  --line: rgba(0, 200, 232, 0.22);
  --text: #e8f4fb;
  --muted: #8aa3b8;
  --cyan: #00c8e8;
  --magenta: #ff2d95;
  --gold: #f0c14a;
  --teal: #2ad4a8;
  --violet: #8b7cff;
  --danger: #ff6b7a;
  --ok: #3dd68c;
  --rail: 236px;
  --radius: 18px;
  --font: "Outfit", system-ui, sans-serif;
  --display: "Space Grotesk", "Outfit", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(900px 480px at 12% -10%, rgba(0, 200, 232, 0.18), transparent 60%),
    radial-gradient(700px 420px at 100% 8%, rgba(255, 45, 149, 0.16), transparent 55%),
    linear-gradient(160deg, #050b12 0%, #0a1520 45%, #081018 100%);
  min-height: 100vh;
  line-height: 1.55;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--cyan); text-decoration: none; }
a:hover { color: #7ae7ff; }
h1, h2, h3 { font-family: var(--display); line-height: 1.15; margin: 0 0 0.55em; }
p { margin: 0 0 1em; color: var(--muted); }

.pn-shell {
  display: grid;
  grid-template-columns: var(--rail) minmax(0, 1fr);
  min-height: 100vh;
}

.pn-rail {
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 22px 16px;
  border-right: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(8, 18, 28, 0.98), rgba(10, 22, 34, 0.96));
  display: flex;
  flex-direction: column;
  gap: 28px;
  z-index: 40;
}

.pn-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: inherit;
}
.pn-brand img {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(0, 200, 232, 0.35), 0 8px 24px rgba(0, 0, 0, 0.35);
}
.pn-brand strong {
  display: block;
  font-size: 15px;
  letter-spacing: 0.04em;
}
.pn-brand em {
  display: block;
  font-style: normal;
  font-size: 12px;
  color: var(--muted);
}

.pn-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pn-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  color: var(--text);
  border: 1px solid transparent;
  transition: 0.2s ease;
  font-weight: 600;
  font-size: 14px;
}
.pn-link i { width: 18px; text-align: center; opacity: 0.85; }
.pn-link:hover { background: rgba(255, 255, 255, 0.04); color: #fff; }
.pn-link.is-on:not(.pn-link-shop) {
  background: rgba(0, 200, 232, 0.12);
  border-color: rgba(0, 200, 232, 0.35);
  color: #fff;
}
.pn-link.pn-link-shop {
  margin-top: 10px;
  background: linear-gradient(120deg, #ff2d95, #ff7a3d 55%, #f0c14a);
  color: #120814 !important;
  border: 1px solid transparent;
  box-shadow: 0 10px 28px rgba(255, 45, 149, 0.28);
  font-weight: 800;
  justify-content: center;
}
.pn-link.pn-link-shop i {
  opacity: 1;
  color: #120814;
}
.pn-link.pn-link-shop:hover {
  filter: brightness(1.06);
  color: #120814 !important;
  background: linear-gradient(120deg, #ff2d95, #ff7a3d 55%, #f0c14a);
}
.pn-link.pn-link-shop.is-on {
  background: linear-gradient(120deg, #ff2d95, #ff7a3d 55%, #f0c14a);
  color: #120814 !important;
  border-color: rgba(255, 255, 255, 0.55);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.35), 0 10px 28px rgba(255, 45, 149, 0.32);
  outline: none;
  filter: none;
}

.pn-menu-corp .pn-link-violet.is-on { background: rgba(139, 124, 255, 0.15); border-color: rgba(139, 124, 255, 0.4); }
.pn-menu-veyra .pn-link-magenta.is-on { background: rgba(255, 45, 149, 0.14); border-color: rgba(255, 45, 149, 0.4); }
.pn-menu-contact .pn-link-teal.is-on { background: rgba(42, 212, 168, 0.12); border-color: rgba(42, 212, 168, 0.4); }

.pn-stage { min-width: 0; display: flex; flex-direction: column; }
.pn-mobile-bar {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  background: rgba(7, 16, 24, 0.92);
  position: sticky;
  top: 0;
  z-index: 30;
}
.pn-burger {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--text);
  cursor: pointer;
}
.pn-main {
  width: min(1080px, calc(100% - 48px));
  margin: 0 auto;
  padding: 36px 0 64px;
  flex: 1;
}

.pn-kicker {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  font-weight: 700;
  margin-bottom: 10px;
}
.pn-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: #fff;
}
.pn-lead {
  font-size: 1.05rem;
  max-width: 58ch;
}

.pn-spotlight {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: center;
  margin-bottom: 48px;
  padding: 8px 0 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.pn-spotlight-art {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}
.pn-spotlight-art img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.pn-spotlight-art::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 40%;
  background: linear-gradient(transparent, rgba(7, 16, 24, 0.75));
  pointer-events: none;
}

.pn-play-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 22px 0 8px;
}
.pn-store-btn img {
  height: 52px;
  width: auto;
  transition: transform 0.2s ease, filter 0.2s ease;
}
.pn-store-btn:hover img { transform: translateY(-2px); filter: brightness(1.08); }
.pn-store-btn.is-disabled { opacity: 0.55; pointer-events: none; }

.pn-mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  margin: 36px 0;
}
.pn-tile {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  grid-column: span 6;
}
.pn-tile.wide { grid-column: span 8; }
.pn-tile.narrow { grid-column: span 4; }
.pn-tile h2, .pn-tile h3 { color: #fff; font-size: 1.25rem; }
.pn-tile i {
  color: var(--cyan);
  margin-bottom: 12px;
  font-size: 1.25rem;
}
.pn-tile-magenta i { color: var(--magenta); }
.pn-tile-gold i { color: var(--gold); }

.pn-shot-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 28px 0;
}
.pn-shot-strip img {
  border-radius: 14px;
  border: 1px solid var(--line);
  aspect-ratio: 1;
  object-fit: cover;
  width: 100%;
}

.pn-band {
  margin: 40px 0;
  padding: 28px;
  border-radius: 22px;
  background: linear-gradient(120deg, rgba(0, 200, 232, 0.1), rgba(255, 45, 149, 0.08));
  border: 1px solid var(--line);
}
.pn-band h2 { color: #fff; }

.pn-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
  margin: 28px 0;
}
.pn-split img {
  border-radius: 20px;
  border: 1px solid var(--line);
  width: 100%;
  object-fit: cover;
}

.pn-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.pn-points li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--muted);
}
.pn-points li i {
  color: var(--cyan);
  margin-top: 3px;
}
.pn-points strong { color: #fff; display: block; margin-bottom: 2px; }

.pn-contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  margin-top: 24px;
}
.pn-contact-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 14px;
}
.pn-contact-card i {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(0, 200, 232, 0.12);
  color: var(--cyan);
  flex-shrink: 0;
}
.pn-contact-card strong { display: block; color: #fff; margin-bottom: 4px; }
.pn-contact-card a, .pn-contact-card span { color: var(--muted); word-break: break-word; }
.pn-contact-art {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 280px;
}
.pn-contact-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
}

.pn-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
}
.pn-btn-cyan {
  background: linear-gradient(120deg, var(--cyan), #2ad4a8);
  color: #041018;
}
.pn-btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--text);
}
.pn-btn-magenta {
  background: linear-gradient(120deg, var(--magenta), #ff7a3d);
  color: #1a0610;
}
.pn-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }

.pn-alert {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255, 107, 122, 0.12);
  border: 1px solid rgba(255, 107, 122, 0.35);
  color: #ffd0d5;
  margin: 16px 0;
}
.pn-alert i { color: var(--danger); margin-top: 2px; }

.pn-notes {
  list-style: none;
  margin: 18px 0 28px;
  padding: 0;
  display: grid;
  gap: 10px;
}
.pn-notes li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  color: var(--muted);
  font-size: 0.95rem;
}
.pn-notes i { color: var(--gold); margin-top: 3px; }

.pn-money-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 20px;
}
.pn-money-btn {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  border-radius: 999px;
  padding: 8px 14px;
  cursor: pointer;
  font-weight: 700;
  font-family: inherit;
}
.pn-money-btn.is-on {
  background: rgba(0, 200, 232, 0.16);
  border-color: rgba(0, 200, 232, 0.5);
  color: #fff;
}

.pn-shop-stack {
  display: grid;
  gap: 28px;
}
.pn-pack-rail {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 14px;
}
.pn-pack {
  background: linear-gradient(165deg, rgba(18, 36, 52, 0.95), rgba(10, 22, 34, 0.98));
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  cursor: pointer;
  transition: 0.18s ease;
  text-align: center;
}
.pn-pack:hover { border-color: rgba(0, 200, 232, 0.5); transform: translateY(-2px); }
.pn-pack.is-on {
  border-color: var(--magenta);
  box-shadow: 0 0 0 1px rgba(255, 45, 149, 0.35), 0 12px 28px rgba(255, 45, 149, 0.15);
}
.pn-pack img {
  width: 64px;
  height: 64px;
  margin: 0 auto 10px;
  object-fit: contain;
}
.pn-pack-title { color: #fff; font-weight: 700; margin-bottom: 6px; }
.pn-pack-price { color: var(--gold); font-weight: 800; font-size: 1.05rem; }
.pn-load, .pn-empty {
  padding: 28px;
  text-align: center;
  color: var(--muted);
  border: 1px dashed var(--line);
  border-radius: 16px;
  grid-column: 1 / -1;
}

.pn-order-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 24px;
}
.pn-order-panel h2 { color: #fff; margin-bottom: 18px; }
.pn-field { margin-bottom: 16px; }
.pn-field label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #cfe4f2;
  margin-bottom: 8px;
}
.pn-field input[type="text"],
.pn-field input[type="email"] {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.28);
  color: #fff;
  font-family: inherit;
  font-size: 15px;
}
.pn-field input[readonly] { opacity: 0.85; }
.pn-err {
  display: block;
  color: var(--danger);
  font-size: 12px;
  margin-top: 6px;
  min-height: 16px;
}
.pn-picked {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px;
  border-radius: 12px;
  background: rgba(0, 200, 232, 0.08);
  border: 1px solid rgba(0, 200, 232, 0.2);
}
.pn-picked-name { color: #fff; font-weight: 700; }
.pn-picked-price { color: var(--gold); font-weight: 800; }
.pn-pay-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 10px;
}
.pn-pay {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
  cursor: pointer;
  color: var(--muted);
}
.pn-pay input { accent-color: var(--cyan); }
.pn-pay.is-on {
  border-color: rgba(0, 200, 232, 0.5);
  color: #fff;
  background: rgba(0, 200, 232, 0.1);
}
.pn-pay[data-show-only] { opacity: 0.55; cursor: default; }
.pn-agree {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--muted);
  font-size: 13px;
}
.pn-agree a { color: var(--cyan); }
.pn-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}
#submitBtn {
  width: 100%;
  margin-top: 8px;
  padding: 14px;
  border: none;
  border-radius: 14px;
  background: linear-gradient(120deg, #ff2d95, #f0c14a);
  color: #140812;
  font-weight: 800;
  font-size: 15px;
  cursor: pointer;
  font-family: inherit;
}

.pn-receipt {
  max-width: 560px;
  margin: 20px auto;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px;
  text-align: center;
}
.pn-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  text-align: left;
}
.pn-table th, .pn-table td {
  padding: 10px 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 14px;
}
.pn-table th { color: var(--muted); font-weight: 600; width: 38%; }
.pn-table td { color: #fff; }
.pn-total { color: var(--gold) !important; font-weight: 800; }
.pn-count {
  font-size: 42px;
  font-weight: 800;
  color: var(--cyan);
  margin: 12px 0;
}

.pn-status {
  max-width: 560px;
  margin: 24px auto;
  text-align: center;
  padding: 36px 28px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: var(--panel);
}
.pn-status i { font-size: 48px; margin-bottom: 14px; }
.pn-status.ok i { color: var(--ok); }
.pn-status.bad i { color: var(--danger); }
.pn-status.bad { border-style: dashed; border-color: rgba(255, 107, 122, 0.45); }

.pn-foot {
  border-top: 1px solid var(--line);
  padding: 28px 24px 36px;
  background: rgba(5, 11, 18, 0.85);
}
.pn-foot-grid {
  width: min(1080px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 18px;
}
.pn-foot-brand {
  display: flex;
  gap: 14px;
  align-items: center;
}
.pn-foot-brand img {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: cover;
}
.pn-foot-brand strong { display: block; color: #fff; }
.pn-foot-brand span { display: block; color: var(--muted); font-size: 13px; }
.pn-foot-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}
.pn-foot-nav a { color: var(--muted); font-size: 13px; }
.pn-foot-nav a:hover { color: var(--cyan); }
.pn-foot-copy { color: #6d8498; font-size: 12px; margin: 0; }

.pn-legal {
  max-width: 860px;
  margin: 0 auto;
  color: #d5e4ef;
  background: rgba(255, 255, 255, 0.97);
  color: #333;
  padding: 32px 28px;
  border-radius: 16px;
}
.pn-legal h1, .pn-legal h2, .pn-legal h3 { color: #222; }
.pn-legal p, .pn-legal li { color: #444; }

@media (max-width: 980px) {
  .pn-shell { grid-template-columns: 1fr; }
  .pn-rail {
    position: fixed;
    inset: 0 auto 0 0;
    width: min(280px, 86vw);
    transform: translateX(-105%);
    transition: transform 0.25s ease;
    box-shadow: 18px 0 40px rgba(0, 0, 0, 0.4);
  }
  body.pn-nav-open .pn-rail { transform: translateX(0); }
  .pn-mobile-bar { display: flex; }
  .pn-spotlight,
  .pn-split,
  .pn-contact-grid { grid-template-columns: 1fr; }
  .pn-tile, .pn-tile.wide, .pn-tile.narrow { grid-column: span 12; }
  .pn-shot-strip { grid-template-columns: repeat(2, 1fr); }
  .pn-main { width: min(100% - 32px, 1080px); padding-top: 24px; }
}

@media (max-width: 560px) {
  .pn-shot-strip { grid-template-columns: 1fr 1fr; }
  .pn-pack-rail { grid-template-columns: 1fr 1fr; }
}
