:root {
  --bg: #10081f;
  --bg-2: #1e1238;
  --text: #1b1230;
  --muted: #6b6378;
  --white: #ffffff;
  --pink: #ff2ea6;
  --purple: #7c3cff;
  --gold: #ffd166;
  --cyan: #00d4ff;
  --border: rgba(255,255,255,.16);
  --shadow: 0 24px 80px rgba(17, 8, 31, .22);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: #fff;
}
a { color: inherit; text-decoration: none; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px clamp(20px, 5vw, 72px);
  background: rgba(16, 8, 31, .92);
  backdrop-filter: blur(14px);
  color: white;
  border-bottom: 1px solid var(--border);
}
.brand { display: flex; gap: 10px; align-items: center; font-weight: 900; letter-spacing: -.02em; }
.brand-icon { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg, var(--pink), var(--purple)); }
.site-nav { display: flex; gap: 22px; align-items: center; font-weight: 800; font-size: 14px; }
.site-nav a { opacity: .9; }
.site-nav a:hover { opacity: 1; color: var(--gold); }
.nav-cta { padding: 10px 16px; border-radius: 999px; background: var(--white); color: var(--bg); }
.menu-toggle { display: none; background: transparent; color: white; border: 0; font-size: 28px; }
.section-pad { padding: 92px clamp(20px, 6vw, 92px); }
.hero {
  min-height: 82vh;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
  color: white;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,46,166,.35), transparent 28%),
    radial-gradient(circle at 85% 25%, rgba(0,212,255,.25), transparent 30%),
    linear-gradient(135deg, #10081f 0%, #231048 50%, #0c0620 100%);
}
.eyebrow { margin: 0 0 12px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; color: var(--pink); font-size: 13px; }
.hero h1, h2 { margin: 0; font-family: "Bebas Neue", Inter, sans-serif; letter-spacing: .02em; line-height: .9; }
.hero h1 { font-size: clamp(68px, 10vw, 132px); text-shadow: 0 0 34px rgba(255,46,166,.35); }
h2 { font-size: clamp(44px, 6vw, 78px); color: var(--text); }
.hero-text { font-size: clamp(20px, 2.8vw, 30px); line-height: 1.25; max-width: 760px; margin: 28px 0 12px; font-weight: 800; }
.hero-subtext { color: #e9defb; font-size: 18px; margin-bottom: 28px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.button { display: inline-flex; justify-content: center; align-items: center; min-height: 48px; padding: 14px 22px; border-radius: 999px; font-weight: 900; border: 0; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease; }
.button:hover { transform: translateY(-2px); }
.primary { background: linear-gradient(135deg, var(--pink), var(--purple)); color: white; box-shadow: 0 14px 30px rgba(255,46,166,.28); }
.secondary { background: white; color: var(--bg); border: 1px solid rgba(16,8,31,.12); }
.full { width: 100%; }
.hero-art { position: relative; min-height: 480px; display: grid; place-items: center; overflow: hidden; border-radius: 36px; border: 1px solid var(--border); background: rgba(255,255,255,.06); box-shadow: var(--shadow); }
.spotlight { position: absolute; width: 220px; height: 520px; top: -80px; opacity: .55; filter: blur(2px); transform-origin: top center; clip-path: polygon(42% 0, 58% 0, 100% 100%, 0 100%); }
.spotlight-one { background: var(--pink); left: 40px; transform: rotate(18deg); }
.spotlight-two { background: var(--cyan); right: 40px; transform: rotate(-18deg); }
.stage-card { position: relative; width: min(410px, 84%); height: 330px; border-radius: 34px; background: linear-gradient(160deg, rgba(255,255,255,.92), rgba(255,255,255,.72)); box-shadow: 0 30px 80px rgba(0,0,0,.32); display: grid; place-items: center; overflow: hidden; }
.record { position: absolute; width: 180px; height: 180px; border-radius: 50%; background: repeating-radial-gradient(circle, #191026 0 13px, #2e1a52 14px 17px); top: 30px; right: 24px; opacity: .95; }
.mic-stand { position: relative; width: 170px; height: 260px; transform: rotate(-13deg); }
.mic-head { position: absolute; width: 86px; height: 114px; background: linear-gradient(135deg, #111, #444); border-radius: 48px; left: 34px; top: 0; box-shadow: inset 0 0 0 8px rgba(255,255,255,.08); }
.mic-body { position: absolute; width: 90px; height: 42px; border-radius: 999px; background: var(--pink); left: 32px; top: 96px; }
.mic-pole { position: absolute; width: 16px; height: 150px; background: #18111f; left: 70px; top: 126px; border-radius: 999px; }
.mic-base { position: absolute; width: 120px; height: 18px; border-radius: 999px; background: #18111f; left: 18px; bottom: 0; }
.equalizer { position: absolute; left: 28px; bottom: 30px; display: flex; gap: 8px; align-items: end; }
.equalizer span { width: 13px; border-radius: 999px 999px 0 0; background: linear-gradient(var(--gold), var(--pink)); }
.equalizer span:nth-child(1){height: 36px}.equalizer span:nth-child(2){height: 72px}.equalizer span:nth-child(3){height: 52px}.equalizer span:nth-child(4){height: 96px}.equalizer span:nth-child(5){height: 44px}
.light-section { background: #f8f5ff; }
.section-heading { text-align: center; max-width: 820px; margin: 0 auto 44px; }
.section-heading.left { text-align: left; margin-left: 0; }
.steps-grid, .pricing-grid, .testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step-card, .price-card, blockquote, .booking-card { background: white; border: 1px solid rgba(27,18,48,.08); border-radius: 28px; padding: 30px; box-shadow: 0 18px 48px rgba(27,18,48,.08); }
.step-number { width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; background: linear-gradient(135deg, var(--pink), var(--purple)); color: white; font-weight: 900; margin-bottom: 18px; }
h3 { margin: 0 0 10px; font-size: 24px; }
p { line-height: 1.6; }
.card-subtitle, .price-label, blockquote span, .form-note { color: var(--muted); }
.price-card { position: relative; display: flex; flex-direction: column; }
.price-card ul { list-style: none; padding: 0; margin: 20px 0; display: grid; gap: 12px; }
.price-card li::before { content: "✓"; color: var(--pink); font-weight: 900; margin-right: 10px; }
.featured { transform: translateY(-16px); border: 2px solid var(--pink); }
.badge { position: absolute; top: 18px; right: 18px; background: var(--gold); color: var(--bg); font-size: 12px; font-weight: 900; text-transform: uppercase; padding: 8px 12px; border-radius: 999px; }
.price-label { margin-top: auto; margin-bottom: 0; font-weight: 700; }
.price { font-size: 48px; line-height: 1; margin: 4px 0 24px; font-weight: 900; color: var(--purple); }
.split-section { display: grid; grid-template-columns: .9fr 1.1fr; gap: 42px; align-items: center; background: linear-gradient(135deg, #fff, #f8f5ff); }
.event-tags { display: flex; gap: 14px; flex-wrap: wrap; }
.event-tags span { padding: 14px 18px; border-radius: 999px; background: white; border: 1px solid rgba(27,18,48,.1); box-shadow: 0 12px 28px rgba(27,18,48,.06); font-weight: 900; }
blockquote { margin: 0; }
blockquote p { font-size: 17px; }
blockquote footer { font-weight: 900; margin-top: 20px; }
blockquote span { display: block; font-weight: 600; margin-top: 4px; }
.booking-section { background: var(--bg); }
.booking-card { max-width: 980px; margin: auto; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
label { display: grid; gap: 8px; font-weight: 800; }
input, select, textarea { width: 100%; border: 1px solid rgba(27,18,48,.16); border-radius: 16px; min-height: 48px; padding: 12px 14px; font: inherit; background: white; }
textarea { resize: vertical; }
.full-span { grid-column: 1 / -1; }
form .button { margin-top: 20px; }
#form-status { font-weight: 900; }
.site-footer { background: #0b0616; color: white; padding: 44px clamp(20px, 6vw, 92px); display: grid; gap: 18px; text-align: center; }
.site-footer h3 { margin: 0; }
.site-footer nav { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.copyright { color: #c7bde0; }
@media (max-width: 860px) {
  .menu-toggle { display: block; }
  .site-nav { position: absolute; top: 72px; left: 0; right: 0; background: var(--bg); padding: 20px; flex-direction: column; display: none; }
  .site-nav.open { display: flex; }
  .hero, .split-section { grid-template-columns: 1fr; }
  .hero-art { min-height: 360px; }
  .steps-grid, .pricing-grid, .testimonial-grid, .form-grid { grid-template-columns: 1fr; }
  .featured { transform: none; }
  .full-span { grid-column: auto; }
}

.hidden-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
}
