:root {
  --bg: #0a0612;
  --bg-card: #16102a;
  --border: rgba(168, 85, 247, 0.18);
  --border-strong: rgba(255, 42, 146, 0.45);
  --text: #f3eefb;
  --text-dim: #b6a8d4;
  --text-mute: #7e7099;

  --magenta: #ff2a92;
  --cyan: #00e5ff;
  --purple: #a855f7;

  --grad: linear-gradient(90deg, #ff2a92 0%, #a855f7 50%, #00e5ff 100%);
  --ease: cubic-bezier(0.2, 0.7, 0.1, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 40% at 15% 0%, rgba(168, 85, 247, 0.18), transparent 60%),
    radial-gradient(ellipse 50% 35% at 85% 10%, rgba(255, 42, 146, 0.14), transparent 60%),
    radial-gradient(ellipse 80% 50% at 50% 100%, rgba(0, 229, 255, 0.08), transparent 60%);
  z-index: -1;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
  border-radius: 6px;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

section { padding: 4.5rem 0; }

.section-head { text-align: center; margin-bottom: 3rem; }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cyan);
  font-weight: 600;
  margin-bottom: 0.85rem;
}

.section-title {
  font-family: 'Bebas Neue', 'Oswald', sans-serif;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  letter-spacing: 0.04em;
  line-height: 1.05;
}

.section-sub {
  color: var(--text-dim);
  margin: 0.85rem auto 0;
  max-width: 620px;
}


.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 6, 18, 0.94);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.nav, .mobile-menu { position: relative; z-index: 1; }

.lasers {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.laser {
  position: absolute;
  left: 0;
  height: 1px;
  width: 260px;
  background: linear-gradient(90deg, transparent, var(--lc), transparent);
  box-shadow: 0 0 6px var(--lc), 0 0 14px var(--lc);
  mix-blend-mode: screen;
  opacity: 0.85;
  will-change: transform;
}

.laser:nth-child(1) {
  top: 24%;
  --lc: #00e5ff;
  animation: laserSweep 5s linear infinite;
  animation-delay: 0s;
}
.laser:nth-child(2) {
  top: 55%;
  --lc: #ff2a92;
  animation: laserSweepReverse 7s linear infinite;
  animation-delay: 1.8s;
}
.laser:nth-child(3) {
  top: 82%;
  --lc: #a855f7;
  animation: laserSweep 4.5s linear infinite;
  animation-delay: 3.4s;
}

@keyframes laserSweep {
  0%   { transform: translateX(-280px); }
  100% { transform: translateX(100vw); }
}

@keyframes laserSweepReverse {
  0%   { transform: translateX(100vw); }
  100% { transform: translateX(-280px); }
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  transition: filter 0.3s var(--ease);
}

.wordmark img {
  height: 42px;
  width: auto;
  display: block;
}

.wordmark:hover {
  filter: drop-shadow(0 0 14px rgba(255, 42, 146, 0.55));
}

.nav-links {
  display: none;
  list-style: none;
  gap: 2.25rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  position: relative;
  padding: 0.4rem 0;
  transition: color 0.25s var(--ease);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: var(--grad);
  transition: width 0.3s var(--ease);
}

.nav-links a:hover,
.nav-links a:focus-visible { color: var(--text); }

.nav-links a:hover::after,
.nav-links a:focus-visible::after { width: 100%; }

.nav-links a.nav-cta {
  padding: 0.6rem 1.1rem;
  font-size: 0.74rem;
  color: #0a0612;
}

.nav-links a.nav-cta::after { display: none; }

.nav-links a.nav-cta:hover,
.nav-links a.nav-cta:focus-visible { color: #0a0612; }

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  padding: 0.6rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}

.nav-toggle:hover {
  border-color: var(--border-strong);
  background: rgba(255, 42, 146, 0.06);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  border-top: 1px solid var(--border);
  background: rgba(10, 6, 18, 0.95);
}
.mobile-menu.open { display: block; }

.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  padding: 0.5rem 0;
}

.mobile-menu a {
  display: block;
  padding: 0.95rem 1.25rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-dim);
  border-bottom: 1px solid rgba(168, 85, 247, 0.08);
}

.mobile-menu a:hover {
  color: var(--text);
  background: rgba(255, 42, 146, 0.05);
}


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.6rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
  border-radius: 999px;
  transition: transform 0.25s var(--ease), box-shadow 0.3s var(--ease), color 0.25s var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: var(--grad);
  color: #0a0612;
  box-shadow: 0 10px 30px -10px rgba(255, 42, 146, 0.6);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px -10px rgba(255, 42, 146, 0.8), 0 0 24px rgba(168, 85, 247, 0.45);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-strong);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  transform: translateY(-2px);
  border-color: var(--cyan);
  box-shadow: 0 0 24px rgba(0, 229, 255, 0.3);
  color: var(--cyan);
}


/* Hero */

.hero {
  position: relative;
  min-height: calc(100vh - 70px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 0;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 40%, rgba(168, 85, 247, 0.22), transparent 55%),
    radial-gradient(circle at 50% 80%, rgba(255, 42, 146, 0.15), transparent 55%);
  pointer-events: none;
  z-index: 1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(168, 85, 247, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168, 85, 247, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  pointer-events: none;
  z-index: 1;
}

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-slides .slide {
  position: absolute;
  inset: 0;
  display: block;
  opacity: 0;
  transform: scale(1.04) translateZ(0);
  will-change: opacity, transform;
  animation: slideCycle 21s ease-in-out infinite;
}

.hero-slides .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-slides .slide:nth-child(1) { animation-delay: 0s; }
.hero-slides .slide:nth-child(2) { animation-delay: 7s; }
.hero-slides .slide:nth-child(3) { animation-delay: 14s; }

@keyframes slideCycle {
  0%   { opacity: 0;    transform: scale(1.04) translateZ(0); }
  10%  { opacity: 0.2;  }
  33%  { opacity: 0.2;  transform: scale(1.10) translateZ(0); }
  43%  { opacity: 0;    }
  100% { opacity: 0;    transform: scale(1.04) translateZ(0); }
}

.hero-inner {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 880px;
}

.hero-inner > * {
  opacity: 0;
  transform: translateY(14px);
  animation: fadeUp 0.9s var(--ease) forwards;
}

.hero-inner > .hero-tag   { animation-delay: 0.4s; }
.hero-inner > h1          { animation-delay: 0.7s; }
.hero-inner > .lead       { animation-delay: 1.1s; }
.hero-inner > .hero-ctas  { animation-delay: 1.4s; }
.hero-inner > .hero-stats { animation-delay: 1.7s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 0.95rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 1.75rem;
}

.hero-tag .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
  animation: pulse 2.2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.85); }
}

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.75rem, 9vw, 6rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin-bottom: 1.25rem;
}

.hero h1 .accent {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 24px rgba(255, 42, 146, 0.35));
}

.hero p.lead {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: var(--text-dim);
  max-width: 640px;
  margin: 0 auto 2.25rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: center;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  max-width: 620px;
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.hero-stats .stat strong {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  letter-spacing: 0.04em;
}

.hero-stats .stat span {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mute);
}


.stage-lights {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
}

.light {
  position: absolute;
  top: -90px;
  width: 38px;
  height: 26px;
  border-radius: 5px 5px 2px 2px;
  background: linear-gradient(180deg, #1d1235 0%, #0a0612 100%);
  border: 1px solid rgba(168, 85, 247, 0.4);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
  transform: translateY(-180px);
  animation: drop 1.1s var(--ease) forwards;
}

.light::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  width: 1px;
  height: 200px;
  background: linear-gradient(180deg, transparent, rgba(168, 85, 247, 0.35));
  transform: translateX(-50%);
}

.light::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 3px;
  width: 22px;
  height: 7px;
  border-radius: 50%;
  background: var(--c);
  box-shadow: 0 0 14px var(--c), 0 0 28px var(--c);
  transform: translateX(-50%);
  opacity: 0;
  animation: bulbOn 0.5s ease-out forwards;
}

.beam {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 380px;
  height: 720px;
  background: linear-gradient(180deg, var(--c) 0%, transparent 78%);
  clip-path: polygon(44% 0, 56% 0, 100% 100%, 0 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 38%, #000 62%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0%, #000 38%, #000 62%, transparent 100%);
  mix-blend-mode: screen;
  filter: blur(5px);
  opacity: 0;
  transform: translateX(-50%) scaleY(0);
  transform-origin: top center;
  animation:
    beamOn 0.9s var(--ease) forwards,
    beamPulse 4s ease-in-out infinite,
    beamSway 9s ease-in-out infinite;
}

.light:nth-child(1) {
  left: 8%; --c: rgba(0, 229, 255, 0.32); animation-delay: 0.05s;
}
.light:nth-child(2) {
  left: 27%; --c: rgba(255, 42, 146, 0.32); animation-delay: 0.22s;
}
.light:nth-child(3) {
  left: 50%; --c: rgba(255, 255, 255, 0.30); animation-delay: 0.12s;
  transform: translate(-50%, -180px);
}
.light:nth-child(4) {
  left: 73%; --c: rgba(168, 85, 247, 0.32); animation-delay: 0.28s;
}
.light:nth-child(5) {
  left: 92%; --c: rgba(0, 229, 255, 0.32); animation-delay: 0.09s;
}

.light:nth-child(3) { animation-name: dropCenter; }

/* delays apply in order: beamOn, beamPulse, beamSway */
.light:nth-child(1) .beam {
  animation-delay: 1.0s, 2.0s, 2.0s;
  --sway-a: -22deg; --sway-b: -6deg; --sway-c: -16deg;
}
.light:nth-child(2) .beam {
  animation-delay: 1.2s, 2.3s, 4.4s;
  animation-duration: 0.9s, 4s, 11s;
  --sway-a: -14deg; --sway-b: 18deg; --sway-c: -4deg;
}
.light:nth-child(3) .beam {
  animation-delay: 1.05s, 2.1s, 3.2s;
  animation-duration: 0.9s, 4s, 8s;
  --sway-a: 16deg; --sway-b: -18deg; --sway-c: 6deg;
}
.light:nth-child(4) .beam {
  animation-delay: 1.2s, 2.3s, 5.6s;
  animation-duration: 0.9s, 4s, 12s;
  --sway-a: 14deg; --sway-b: -10deg; --sway-c: 5deg;
}
.light:nth-child(5) .beam {
  animation-delay: 1.0s, 2.0s, 6.0s;
  animation-duration: 0.9s, 4s, 10s;
  --sway-a: 24deg; --sway-b: 6deg; --sway-c: 18deg;
}

@keyframes drop {
  0%   { transform: translateY(-180px); }
  70%  { transform: translateY(12px); }
  85%  { transform: translateY(-4px); }
  100% { transform: translateY(0); }
}

@keyframes dropCenter {
  0%   { transform: translate(-50%, -180px); }
  70%  { transform: translate(-50%, 12px); }
  85%  { transform: translate(-50%, -4px); }
  100% { transform: translate(-50%, 0); }
}

@keyframes bulbOn {
  to { opacity: 1; }
}

@keyframes beamOn {
  0%   { opacity: 0; transform: translateX(-50%) scaleY(0); }
  30%  { opacity: 0.55; }
  100% { opacity: 0.5; transform: translateX(-50%) scaleY(1); }
}

/* opacity only — animating filter was destroying frame budget */
@keyframes beamPulse {
  0%, 100% { opacity: 0.45; }
  50%      { opacity: 0.62; }
}

@keyframes beamSway {
  0%   { transform: translateX(-50%) scaleY(1) rotate(0deg); }
  25%  { transform: translateX(-50%) scaleY(1) rotate(var(--sway-a, 14deg)); }
  50%  { transform: translateX(-50%) scaleY(1) rotate(var(--sway-b, -10deg)); }
  75%  { transform: translateX(-50%) scaleY(1) rotate(var(--sway-c, 18deg)); }
  100% { transform: translateX(-50%) scaleY(1) rotate(0deg); }
}

.light:nth-child(1)::after { animation-delay: 1.0s; }
.light:nth-child(2)::after { animation-delay: 1.2s; }
.light:nth-child(3)::after { animation-delay: 1.05s; }
.light:nth-child(4)::after { animation-delay: 1.2s; }
.light:nth-child(5)::after { animation-delay: 1.0s; }


/* Packages */

.packages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.pkg {
  position: relative;
  background: var(--bg-card);
  background-image: linear-gradient(160deg, rgba(168, 85, 247, 0.10) 0%, rgba(255, 42, 146, 0.04) 100%);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 2rem 1.75rem 2.25rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 18px 48px -20px rgba(168, 85, 247, 0.45);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
  overflow: hidden;
}

.pkg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad);
  opacity: 0.55;
  z-index: 2;
  transition: opacity 0.3s var(--ease);
}

.pkg-media {
  position: relative;
  margin: -2rem -1.75rem 1.5rem;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  width: auto;
  padding: 0;
  border: 0;
  background: transparent;
  font: inherit;
  color: inherit;
  cursor: zoom-in;
  display: block;
}

.pkg-media-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: linear-gradient(180deg, rgba(10, 6, 18, 0.1), rgba(10, 6, 18, 0.55));
  opacity: 0;
  transition: opacity 0.3s var(--ease);
  pointer-events: none;
}

.pkg-media-overlay .ic-expand {
  width: 28px;
  height: 28px;
  color: var(--text);
  filter: drop-shadow(0 0 12px var(--magenta));
}

.pkg-media-overlay span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.22em;
  color: var(--text);
  text-shadow: 0 0 14px var(--magenta);
}

.pkg-media:hover .pkg-media-overlay,
.pkg-media:focus-visible .pkg-media-overlay { opacity: 1; }

/* corner badge — affordance for touch (no hover) */
.pkg-media::after {
  content: "";
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(10, 6, 18, 0.6) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='%23f3eefb' d='M3 3h7v2H5v5H3V3zm11 0h7v7h-2V5h-5V3zM3 14h2v5h5v2H3v-7zm16 0h2v7h-7v-2h5v-5z'/></svg>") center / 14px 14px no-repeat;
  border: 1px solid rgba(255, 42, 146, 0.45);
  opacity: 0.7;
  transition: opacity 0.25s var(--ease), background-color 0.25s var(--ease);
  pointer-events: none;
}

.pkg-media:hover::after,
.pkg-media:focus-visible::after { opacity: 0; }

.pkg-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 62%, transparent 100%);
          mask-image: linear-gradient(180deg, #000 0%, #000 62%, transparent 100%);
}

.pkg:hover .pkg-media img { transform: scale(1.06); }

.pkg:hover {
  transform: translateY(-6px);
  box-shadow:
    0 18px 50px -14px rgba(168, 85, 247, 0.38),
    0 0 40px -6px rgba(255, 42, 146, 0.22);
  border-color: var(--border-strong);
}

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

.pkg-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.18em;
  color: var(--text-dim);
  margin-bottom: 0.75rem;
}

.pkg-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.4rem);
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 20px rgba(255, 42, 146, 0.25));
  margin-bottom: 0.4rem;
}

.pkg-tagline {
  color: var(--text-dim);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.pkg-features {
  list-style: none;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  flex: 1;
}

.pkg-features li {
  position: relative;
  padding-left: 1.65rem;
  font-size: 0.94rem;
  color: var(--text-dim);
}

.pkg-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
}

.pkg-features li.everything {
  font-weight: 600;
  color: var(--text);
}

.pkg-features li.everything::before {
  background: var(--magenta);
  box-shadow: 0 0 10px var(--magenta);
}

.pkg .btn { width: 100%; }

.pkg.featured {
  background-image: linear-gradient(160deg, rgba(255, 42, 146, 0.18) 0%, rgba(168, 85, 247, 0.10) 60%, rgba(0, 229, 255, 0.08) 100%);
  border-color: var(--border-strong);
  box-shadow: 0 24px 60px -18px rgba(255, 42, 146, 0.5);
}

.pkg.featured::before { opacity: 1; height: 4px; }
.pkg.featured .pkg-name { color: var(--magenta); }

.pkg-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 3;
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: var(--grad);
  color: #0a0612;
  box-shadow: 0 6px 18px -6px rgba(255, 42, 146, 0.7);
}


#addons {
  position: relative;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(255, 42, 146, 0.07), transparent 70%),
    linear-gradient(180deg, transparent 0%, rgba(168, 85, 247, 0.06) 50%, transparent 100%);
}

.addon-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.addon-card {
  position: relative;
  overflow: hidden;
  background: var(--bg-card);
  background-image: linear-gradient(160deg, rgba(168, 85, 247, 0.12) 0%, rgba(255, 42, 146, 0.05) 100%);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 2.25rem 2rem;
  display: flex;
  gap: 1.75rem;
  align-items: flex-start;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.addon-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 35%, rgba(255, 42, 146, 0.10) 50%, transparent 65%);
  transform: translateX(-110%);
  transition: transform 0.9s var(--ease);
  pointer-events: none;
}
.addon-card:hover::after { transform: translateX(110%); }

.addon-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  box-shadow: 0 24px 60px -18px rgba(255, 42, 146, 0.55);
}

.addon-icon {
  flex-shrink: 0;
  width: 84px;
  height: 84px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 42, 146, 0.22), rgba(168, 85, 247, 0.22));
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.6rem;
  color: var(--magenta);
  filter: drop-shadow(0 0 10px rgba(255, 42, 146, 0.5));
  animation: addonPulse 3.4s ease-in-out infinite;
}

@keyframes addonPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 42, 146, 0); }
  50%      { box-shadow: 0 0 28px 2px rgba(255, 42, 146, 0.22); }
}

.addon-body { flex: 1; }

.addon-eyebrow {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--magenta);
  font-weight: 600;
  margin-bottom: 0.55rem;
}

.addon-body h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.85rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.addon-body p {
  color: var(--text-dim);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.addon-price {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 3.6vw, 2.75rem);
  letter-spacing: 0.04em;
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 16px rgba(255, 42, 146, 0.22));
}

.addon-price-note {
  display: block;
  margin-top: 0.45rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mute);
}


/* Contact */

.contact-card {
  position: relative;
  overflow: hidden;
  background: var(--bg-card);
  background-image:
    radial-gradient(circle at 0% 0%, rgba(255, 42, 146, 0.12), transparent 50%),
    radial-gradient(circle at 100% 100%, rgba(0, 229, 255, 0.10), transparent 50%),
    linear-gradient(160deg, rgba(168, 85, 247, 0.10) 0%, rgba(255, 42, 146, 0.04) 100%);
  border: 1px solid var(--border-strong);
  border-radius: 22px;
  padding: 3rem 1.75rem 4.5rem;
  max-width: 820px;
  margin: 0 auto;
  box-shadow: 0 30px 80px -30px rgba(255, 42, 146, 0.45);
}

.contact-card .visualizer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  max-width: none;
  width: auto;
  height: 70px;
  margin: 0;
  padding: 0 1.5rem;
  gap: 4px;
  justify-content: flex-start;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s var(--ease);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.contact-card:hover .visualizer,
.contact-card:focus-within .visualizer { opacity: 0.32; }

/* no hover available — keep it faintly visible */
@media (hover: none) {
  .contact-card .visualizer { opacity: 0.16; }
}


.contact-card .section-head { margin-bottom: 2.5rem; }

.ic-notice {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.25rem;
  padding: 0.5rem 1.05rem;
  background: rgba(255, 42, 146, 0.08);
  border: 1px solid rgba(255, 42, 146, 0.45);
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--magenta);
  font-weight: 600;
}

.ic-notice .ic-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--magenta);
  box-shadow: 0 0 8px var(--magenta);
}

.contact-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

.contact-row {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.25rem 1.4rem;
  background: rgba(10, 6, 18, 0.5);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease), transform 0.3s var(--ease);
}

.contact-row:hover,
.contact-row:focus-within {
  border-color: var(--border-strong);
  background: rgba(255, 42, 146, 0.06);
  transform: translateY(-2px);
}

.contact-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.12em;
}

.contact-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0;
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--cyan);
  width: max-content;
  text-align: left;
  cursor: pointer;
  transition: color 0.25s var(--ease), text-shadow 0.25s var(--ease);
}

.contact-phone:hover,
.contact-phone:focus-visible {
  color: var(--text);
  text-shadow: 0 0 16px var(--cyan);
}

.contact-phone .ic-phone {
  width: 14px;
  height: 14px;
  filter: drop-shadow(0 0 6px var(--cyan));
  flex-shrink: 0;
}

.contact-phone .ic-copy {
  width: 12px;
  height: 12px;
  margin-left: 0.15rem;
  opacity: 0.45;
  transition: opacity 0.2s var(--ease);
  flex-shrink: 0;
}

.contact-phone:hover .ic-copy,
.contact-phone:focus-visible .ic-copy { opacity: 0.9; }

.contact-phone.copied {
  color: var(--magenta);
  text-shadow: 0 0 14px rgba(255, 42, 146, 0.55);
}

.contact-phone.copied .ic-phone { filter: drop-shadow(0 0 6px var(--magenta)); }
.contact-phone.copied .ic-copy { opacity: 1; }

.copy-hint {
  margin-top: 1.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  color: var(--text-mute);
}


.site-footer {
  padding: 3rem 0 2.5rem;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--text-mute);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
}

.footer-wordmark {
  display: inline-block;
  height: 36px;
  width: auto;
  margin-bottom: 0.85rem;
}

.site-footer p { margin-top: 0.2rem; }

.site-footer .tagline {
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-top: 0.4rem;
}


@media (min-width: 640px) {
  .container { padding: 0 2rem; }
  section { padding: 6rem 0; }

  .packages-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .addon-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .contact-list { grid-template-columns: repeat(3, 1fr); }
  .contact-card { padding: 3.5rem 2.5rem; }
}

@media (min-width: 1024px) {
  .nav-links { display: flex; }
  .nav-toggle { display: none; }
  .mobile-menu { display: none !important; }

  .packages-grid { grid-template-columns: repeat(4, 1fr); }

  section { padding: 7rem 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}


.cursor-spot {
  position: fixed;
  top: 0;
  left: 0;
  width: 460px;
  height: 460px;
  margin: -230px 0 0 -230px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.14), rgba(255, 42, 146, 0.05) 35%, transparent 65%);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  will-change: transform, opacity;
}
.cursor-spot.active { opacity: 1; }

@media (hover: none), (pointer: coarse) {
  .cursor-spot { display: none; }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
  transition-delay: var(--reveal-delay, 0s);
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

.packages-grid { perspective: 1200px; }

.visualizer {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  height: 28px;
  max-width: 320px;
  margin: 0.5rem auto 0;
}
.visualizer span {
  display: block;
  flex: 1 1 0;
  min-width: 0;
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(0deg, var(--magenta) 0%, var(--purple) 55%, transparent 100%);
  transform-origin: bottom;
  animation: barPulse 0.9s ease-in-out infinite alternate;
  --min: 0.18;
  --max: 1;
}
.visualizer span:nth-child(odd)  { background: linear-gradient(0deg, var(--cyan) 0%, var(--purple) 55%, transparent 100%); }

.visualizer span:nth-child(1)  { animation-delay: 0.00s; animation-duration: 0.85s; --min: 0.12; --max: 0.78; }
.visualizer span:nth-child(2)  { animation-delay: 0.10s; animation-duration: 1.05s; --min: 0.35; --max: 1.00; }
.visualizer span:nth-child(3)  { animation-delay: 0.30s; animation-duration: 0.95s; --min: 0.06; --max: 0.55; }
.visualizer span:nth-child(4)  { animation-delay: 0.05s; animation-duration: 0.75s; --min: 0.42; --max: 0.92; }
.visualizer span:nth-child(5)  { animation-delay: 0.20s; animation-duration: 1.10s; --min: 0.10; --max: 0.85; }
.visualizer span:nth-child(6)  { animation-delay: 0.40s; animation-duration: 0.85s; --min: 0.28; --max: 0.68; }
.visualizer span:nth-child(7)  { animation-delay: 0.15s; animation-duration: 0.95s; --min: 0.05; --max: 1.00; }
.visualizer span:nth-child(8)  { animation-delay: 0.35s; animation-duration: 1.00s; --min: 0.50; --max: 0.95; }
.visualizer span:nth-child(9)  { animation-delay: 0.05s; animation-duration: 0.80s; --min: 0.15; --max: 0.62; }
.visualizer span:nth-child(10) { animation-delay: 0.25s; animation-duration: 1.05s; --min: 0.20; --max: 0.88; }
.visualizer span:nth-child(11) { animation-delay: 0.45s; animation-duration: 0.90s; --min: 0.08; --max: 0.50; }
.visualizer span:nth-child(12) { animation-delay: 0.10s; animation-duration: 0.95s; --min: 0.32; --max: 0.95; }
.visualizer span:nth-child(13) { animation-delay: 0.30s; animation-duration: 0.85s; --min: 0.18; --max: 0.75; }
.visualizer span:nth-child(14) { animation-delay: 0.50s; animation-duration: 1.00s; --min: 0.04; --max: 0.40; }
.visualizer span:nth-child(15) { animation-delay: 0.20s; animation-duration: 0.75s; --min: 0.45; --max: 1.00; }
.visualizer span:nth-child(16) { animation-delay: 0.40s; animation-duration: 1.10s; --min: 0.14; --max: 0.82; }
.visualizer span:nth-child(17) { animation-delay: 0.05s; animation-duration: 0.95s; --min: 0.08; --max: 0.58; }
.visualizer span:nth-child(18) { animation-delay: 0.25s; animation-duration: 0.85s; --min: 0.25; --max: 0.90; }

@keyframes barPulse {
  0%   { transform: scaleY(var(--min, 0.18)); }
  100% { transform: scaleY(var(--max, 1)); }
}

.lightbox {
  border: none;
  background: transparent;
  color: var(--text);
  padding: 0;
  max-width: 100vw;
  max-height: 100vh;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  transition: opacity 0.25s var(--ease);
}
.lightbox[open] {
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox.open { opacity: 1; }

.lightbox::backdrop {
  background:
    radial-gradient(circle at 50% 50%, rgba(168, 85, 247, 0.18), transparent 60%),
    rgba(10, 6, 18, 0.92);
}

.lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 42, 146, 0.12);
  border: 1px solid rgba(255, 42, 146, 0.5);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease), border-color 0.25s var(--ease);
}
.lightbox-close:hover,
.lightbox-close:focus-visible {
  background: rgba(255, 42, 146, 0.25);
  border-color: var(--magenta);
  transform: rotate(90deg);
}
.lightbox-close svg { width: 22px; height: 22px; }

.lightbox-stage {
  width: min(92vw, 1000px);
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.85rem;
  opacity: 0;
  transform: scale(0.94) translateY(12px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
  transition-delay: 0.05s;
}
.lightbox.open .lightbox-stage {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.lightbox-eyebrow {
  font-size: 0.74rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--cyan);
  font-weight: 600;
}
.lightbox-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  letter-spacing: 0.06em;
  line-height: 0.95;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 28px rgba(255, 42, 146, 0.5));
  margin-bottom: 0.25rem;
}

.lightbox-frame {
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 30px 80px -20px rgba(255, 42, 146, 0.45),
    0 0 0 1px rgba(255, 42, 146, 0.35) inset;
}
.lightbox-frame picture,
.lightbox-frame img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 60vh;
  object-fit: cover;
}

.lightbox-flyer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.4rem 1.5rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.3rem;
  background: linear-gradient(180deg, transparent, rgba(10, 6, 18, 0.85));
  text-align: left;
}
.lightbox-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lightbox-tagline {
  color: var(--text-dim);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

.lightbox-cta {
  margin-top: 0.5rem;
}

@media (max-width: 640px) {
  .lightbox-stage { width: 94vw; }
  .lightbox-flyer { padding: 1rem 1rem 0.85rem; }
  .lightbox-close { top: 0.75rem; right: 0.75rem; }
}


.spark {
  position: fixed;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  animation: sparkOut 0.7s cubic-bezier(0.15, 0.6, 0.3, 1) forwards;
}
@keyframes sparkOut {
  0%   { transform: translate(0, 0) scale(1); opacity: 1; }
  100% { transform: translate(var(--dx, 0), var(--dy, 0)) scale(0); opacity: 0; }
}
