/* ==========================================================
   CIRCUS TORONTO – Galaxy Theme Stylesheet
   ========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600;700&family=Open+Sans:wght@300;400;600&display=swap');

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --nebula:  #7b2fff;   /* vivid cosmic violet */
  --red:     #7b2fff;   /* alias → nebula (backward compat) */
  --cosmic:  #00d4ff;   /* electric cyan */
  --gold:    #f0c040;   /* stardust gold */
  --dark:    #03030d;   /* deep space black */
  --space:   #07071a;   /* slightly lighter space */
  --card:    #0d0d24;   /* card background */
  --border:  #1a1a3a;   /* subtle border */
  --text:    #e8e8ff;   /* cool white text */
  --muted:   #8888bb;   /* muted lavender */
  --white:   #ffffff;
  --max:     1200px;
  --glow-nebula: 0 0 24px rgba(123,47,255,.45);
  --glow-cosmic: 0 0 20px rgba(0,212,255,.4);
  --glow-gold:   0 0 18px rgba(240,192,64,.4);
}

html { scroll-behavior: smooth; }

/* ─── STARFIELD BACKGROUND ─────────────────────────────── */
body {
  font-family: 'Open Sans', sans-serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  position: relative;
  overflow-x: hidden;
}

/* Layered star particles via box-shadow on ::before */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    radial-gradient(1px 1px at 12% 8%,  rgba(255,255,255,.9) 0%, transparent 100%),
    radial-gradient(1px 1px at 34% 19%, rgba(255,255,255,.7) 0%, transparent 100%),
    radial-gradient(1px 1px at 56% 4%,  rgba(200,200,255,.8) 0%, transparent 100%),
    radial-gradient(1px 1px at 78% 14%, rgba(255,255,255,.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 91% 31%, rgba(255,255,255,.9) 0%, transparent 100%),
    radial-gradient(1px 1px at 7%  45%, rgba(200,200,255,.7) 0%, transparent 100%),
    radial-gradient(1px 1px at 23% 55%, rgba(255,255,255,.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 45% 67%, rgba(255,255,255,.8) 0%, transparent 100%),
    radial-gradient(1px 1px at 67% 78%, rgba(200,200,255,.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 85% 89%, rgba(255,255,255,.7) 0%, transparent 100%),
    radial-gradient(1px 1px at 19% 83%, rgba(255,255,255,.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 52% 92%, rgba(200,200,255,.8) 0%, transparent 100%),
    radial-gradient(1px 1px at 3%  71%, rgba(255,255,255,.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 72% 52%, rgba(255,255,255,.9) 0%, transparent 100%),
    radial-gradient(1px 1px at 96% 63%, rgba(200,200,255,.7) 0%, transparent 100%),
    radial-gradient(2px 2px at 28% 37%, rgba(255,255,255,.5) 0%, transparent 100%),
    radial-gradient(2px 2px at 64% 28%, rgba(200,200,255,.4) 0%, transparent 100%),
    radial-gradient(2px 2px at 88% 47%, rgba(255,255,255,.5) 0%, transparent 100%),
    radial-gradient(2px 2px at 41% 81%, rgba(255,255,255,.4) 0%, transparent 100%),
    radial-gradient(2px 2px at 16% 95%, rgba(200,200,255,.5) 0%, transparent 100%);
  background-size: 100% 100%;
}

/* Twinkling animation layer */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    radial-gradient(1px 1px at 38% 12%, rgba(255,255,255,.8) 0%, transparent 100%),
    radial-gradient(1px 1px at 61% 41%, rgba(200,200,255,.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 82% 22%, rgba(255,255,255,.7) 0%, transparent 100%),
    radial-gradient(1px 1px at 9%  59%, rgba(255,255,255,.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 47% 73%, rgba(200,200,255,.8) 0%, transparent 100%),
    radial-gradient(1px 1px at 75% 86%, rgba(255,255,255,.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 22% 29%, rgba(255,255,255,.9) 0%, transparent 100%),
    radial-gradient(1px 1px at 93% 7%,  rgba(200,200,255,.7) 0%, transparent 100%);
  animation: twinkle 6s ease-in-out infinite alternate;
}

@keyframes twinkle {
  0%   { opacity: 0.4; }
  50%  { opacity: 1;   }
  100% { opacity: 0.5; }
}

/* Ensure all visible content sits above stars */
header, .topbar, main, section, footer, .mobile-nav {
  position: relative;
  z-index: 1;
}

a { color: var(--cosmic); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold); }

img { max-width: 100%; display: block; }
h1,h2,h3,h4,h5 { font-family: 'Oswald', sans-serif; font-weight: 600; line-height: 1.2; }

/* ---------- Utility ---------- */
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.section    { padding: 80px 0; }
.section-alt {
  background: linear-gradient(180deg, #070716 0%, #0a0a22 100%);
}
.text-center { text-align: center; }
.text-gold   { color: var(--gold); }
.text-nebula { color: var(--nebula); }
.text-cosmic { color: var(--cosmic); }

.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all .25s;
  border-radius: 3px;
  position: relative;
  overflow: hidden;
}
.btn-red {
  background: linear-gradient(135deg, var(--nebula) 0%, #5a1ecc 100%);
  color: #fff;
  box-shadow: var(--glow-nebula);
}
.btn-red:hover {
  background: linear-gradient(135deg, #9b4fff 0%, var(--nebula) 100%);
  color: #fff;
  box-shadow: 0 0 32px rgba(123,47,255,.65);
  transform: translateY(-1px);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, #d4a020 100%);
  color: #000;
  box-shadow: var(--glow-gold);
}
.btn-gold:hover {
  background: linear-gradient(135deg, #ffe060 0%, var(--gold) 100%);
  color: #000;
  box-shadow: 0 0 28px rgba(240,192,64,.65);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--cosmic);
  border: 2px solid var(--cosmic);
  box-shadow: var(--glow-cosmic);
}
.btn-outline:hover {
  background: var(--cosmic);
  color: #000;
  box-shadow: 0 0 28px rgba(0,212,255,.6);
  transform: translateY(-1px);
}

.section-tag {
  font-family: 'Oswald', sans-serif;
  font-size: .75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--cosmic);
  display: block;
  margin-bottom: 12px;
  text-shadow: var(--glow-cosmic);
}
.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 20px;
}
.section-subtitle {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 640px;
  margin: 0 auto 48px;
}

/* ---------- Image Placeholder ---------- */
.img-placeholder {
  background: linear-gradient(135deg, #0d0d24 0%, #12083a 50%, #0a1a2e 100%);
  border: 2px dashed #2a1a5a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #445;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: .8rem;
  gap: 8px;
}
.img-placeholder svg { opacity: .25; }

/* ---------- Top Bar ---------- */
.topbar {
  background: rgba(3,3,13,.98);
  padding: 8px 0;
  font-size: .82rem;
  border-bottom: 1px solid var(--border);
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar a { color: var(--muted); }
.topbar a:hover { color: var(--cosmic); }
.topbar-contact { display: flex; gap: 24px; }

/* ---------- Header / Nav ---------- */
header {
  background: rgba(5,5,20,.97);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  font-family: 'Oswald', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 2px;
  line-height: 1;
  text-shadow: 0 0 20px rgba(123,47,255,.5);
}
.logo span { color: var(--nebula); }

nav { display: flex; align-items: center; gap: 4px; }
.nav-link {
  font-family: 'Oswald', sans-serif;
  font-size: .92rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text);
  padding: 8px 14px;
  border-radius: 2px;
  transition: color .2s;
  position: relative;
}
.nav-link:hover { color: var(--cosmic); }

/* Dropdown – click-based */
.has-dropdown { position: relative; }

.nav-link-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Oswald', sans-serif;
  font-size: .95rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text);
  padding: 6px 4px;
  border-bottom: 2px solid transparent;
  transition: color .2s;
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link-btn:hover,
.nav-link-btn[aria-expanded="true"] { color: var(--cosmic); }

.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(7,7,26,.98);
  border: 1px solid var(--border);
  min-width: 680px;
  z-index: 200;
  box-shadow: 0 12px 40px rgba(0,0,0,.8), 0 0 20px rgba(123,47,255,.15);
  backdrop-filter: blur(8px);
  border-radius: 4px;
}
.dropdown.open { display: block; }
.dropdown-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; }
.dropdown-col { padding: 18px 20px; }
.dropdown-col h4 {
  font-size: .68rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cosmic);
  margin-bottom: 10px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 6px;
}
.dropdown-col a {
  display: block;
  padding: 5px 0;
  color: var(--muted);
  font-size: .88rem;
  transition: color .15s;
}
.dropdown-col a:hover { color: var(--gold); padding-left: 4px; }

@media (hover: hover) {
  .has-dropdown:hover .dropdown { display: block; }
}

.nav-cta { margin-left: 12px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text);
  transition: all .3s;
}
.mobile-nav {
  display: none;
  background: rgba(7,7,26,.98);
  border-top: 1px solid var(--border);
  padding: 12px 0;
}
.mobile-nav.open { display: block; }

.mob-link {
  display: block;
  padding: 12px 24px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  font-family: 'Oswald', sans-serif;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: .9rem;
  transition: color .2s;
}
.mob-link:hover { color: var(--cosmic); }

.mob-section { border-bottom: 1px solid var(--border); }
.mob-section-hd {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px 24px;
  color: var(--text);
  font-family: 'Oswald', sans-serif;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: .9rem;
  transition: color .2s;
}
.mob-section-hd::after { content: '▾'; font-size: .7rem; transition: transform .25s; }
.mob-section-hd[aria-expanded="true"] { color: var(--cosmic); }
.mob-section-hd[aria-expanded="true"]::after { transform: rotate(180deg); }
.mob-section-body {
  display: none;
  background: rgba(0,0,0,.25);
  padding: 4px 0 8px;
}
.mob-section-body.open { display: block; }
.mob-section-body a {
  display: block;
  padding: 8px 36px;
  color: var(--muted);
  font-size: .88rem;
  transition: color .15s;
}
.mob-section-body a:hover { color: var(--gold); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(123,47,255,.25) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 75% 30%, rgba(0,212,255,.15) 0%, transparent 55%),
    radial-gradient(ellipse 100% 80% at 50% 100%, rgba(5,0,30,.9) 0%, transparent 70%),
    linear-gradient(135deg, #03030d 0%, #08032a 45%, #03102a 100%);
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: .35;
  mix-blend-mode: luminosity;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(3,3,13,.88) 38%, rgba(3,3,13,.25) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--nebula) 0%, #5a1ecc 100%);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: .72rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  padding: 6px 16px;
  margin-bottom: 24px;
  border-radius: 2px;
  box-shadow: var(--glow-nebula);
}
.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.05;
  text-shadow: 0 0 40px rgba(123,47,255,.3);
}
.hero h1 em { font-style: normal; color: var(--cosmic); text-shadow: var(--glow-cosmic); }
.hero p {
  font-size: 1.15rem;
  color: #aab;
  margin-bottom: 36px;
  max-width: 560px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* Hero video placeholder */
.hero-video-box {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 48%;
  aspect-ratio: 16/9;
  z-index: 1;
}

/* ---------- Stats Bar ---------- */
.stats-bar {
  background: linear-gradient(90deg, #1a0050 0%, #0a003a 50%, #001a40 100%);
  border-top: 1px solid rgba(123,47,255,.3);
  border-bottom: 1px solid rgba(0,212,255,.2);
  padding: 24px 0;
  box-shadow: 0 0 40px rgba(123,47,255,.2);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}
.stat-item {
  border-right: 1px solid rgba(255,255,255,.1);
  padding: 8px 16px;
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Oswald', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--cosmic);
  line-height: 1;
  text-shadow: var(--glow-cosmic);
}
.stat-label {
  font-size: .78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-top: 4px;
}

/* ---------- Services Grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2px;
}
.service-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}
.service-card .img-placeholder { width: 100%; height: 100%; position: absolute; inset: 0; }
.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3,3,13,.95) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  z-index: 2;
  transition: background .3s;
}
.service-card:hover .service-card-overlay {
  background: linear-gradient(to top, rgba(123,47,255,.88) 0%, rgba(0,0,10,.15) 60%);
}
.service-card h3 {
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 6px;
}
.service-card p { font-size: .85rem; color: rgba(255,255,255,.75); }
.service-card .card-link {
  display: inline-block;
  margin-top: 12px;
  font-family: 'Oswald', sans-serif;
  font-size: .75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cosmic);
  border-bottom: 1px solid var(--cosmic);
  padding-bottom: 2px;
  text-shadow: var(--glow-cosmic);
}

/* ---------- Feature Section ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.feature-grid.reverse .feature-img { order: 2; }
.feature-grid.reverse .feature-text { order: 1; }
.feature-img .img-placeholder { width: 100%; aspect-ratio: 4/3; border-radius: 4px; }
.feature-text h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 20px; }
.feature-text p { color: var(--muted); margin-bottom: 20px; }
.feature-list { list-style: none; margin-bottom: 32px; }
.feature-list li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  font-size: .95rem;
  display: flex;
  align-items: center;
  gap: 12px;
}
.feature-list li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background: var(--cosmic);
  border-radius: 50%;
  box-shadow: var(--glow-cosmic);
  flex-shrink: 0;
}

/* ---------- Performer Cards ---------- */
.performer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.performer-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.performer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,.6), 0 0 20px rgba(123,47,255,.25);
}
.performer-card .img-placeholder { width: 100%; aspect-ratio: 3/4; }
.performer-card-body { padding: 16px; }
.performer-card h3 { font-size: 1.05rem; margin-bottom: 6px; }
.performer-card p { font-size: .82rem; color: var(--muted); margin-bottom: 12px; }
.performer-card .btn { font-size: .75rem; padding: 8px 20px; letter-spacing: 1.5px; }

/* ---------- Testimonials ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.testimonial-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--nebula);
  padding: 28px;
  border-radius: 2px;
  box-shadow: inset 0 0 30px rgba(123,47,255,.05);
  transition: border-color .2s, box-shadow .2s;
}
.testimonial-card:hover {
  border-left-color: var(--cosmic);
  box-shadow: inset 0 0 30px rgba(0,212,255,.06), 0 0 20px rgba(0,212,255,.1);
}
.testimonial-card p { color: var(--muted); font-style: italic; margin-bottom: 20px; line-height: 1.8; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-author .avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--nebula) 0%, #3a0a8f 100%);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: var(--glow-nebula);
}
.testimonial-author strong { display: block; font-size: .92rem; color: var(--text); }
.testimonial-author span { font-size: .78rem; color: var(--muted); }
.stars { color: var(--gold); letter-spacing: 2px; font-size: .9rem; margin-bottom: 12px; text-shadow: var(--glow-gold); }

/* ---------- Clients ---------- */
.clients-strip {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.client-logo {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #2a2a4a;
  transition: color .2s, text-shadow .2s;
  font-weight: 700;
}
.client-logo:hover { color: var(--cosmic); text-shadow: var(--glow-cosmic); }

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 30% 50%, rgba(123,47,255,.2) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 80% 20%, rgba(0,212,255,.12) 0%, transparent 55%),
    linear-gradient(135deg, #03030d 0%, #08032a 50%, #020d1a 100%);
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(3,3,13,.5);
}
.page-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .22;
  mix-blend-mode: luminosity;
}
.page-hero-content { position: relative; z-index: 2; }
.breadcrumb {
  font-size: .8rem;
  color: var(--muted);
  margin-bottom: 16px;
  letter-spacing: 1px;
}
.breadcrumb a { color: var(--cosmic); }
.breadcrumb span { margin: 0 8px; }
.page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: #fff;
  margin-bottom: 16px;
  text-shadow: 0 0 30px rgba(123,47,255,.35);
}
.page-hero .lead { font-size: 1.15rem; color: #aab; max-width: 600px; }

/* ---------- Content Body ---------- */
.content-body h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 48px 0 16px;
  color: var(--white);
}
.content-body h3 {
  font-size: 1.3rem;
  margin: 32px 0 12px;
  color: var(--cosmic);
}
.content-body p { color: var(--muted); margin-bottom: 16px; line-height: 1.85; }
.content-body ul {
  list-style: none;
  margin-bottom: 20px;
}
.content-body ul li {
  padding: 6px 0 6px 20px;
  position: relative;
  color: var(--muted);
}
.content-body ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--cosmic);
}

/* ---------- CTA Band ---------- */
.cta-band {
  background:
    radial-gradient(ellipse 80% 100% at 50% 120%, rgba(0,212,255,.08) 0%, transparent 70%),
    linear-gradient(135deg, #160048 0%, #0a0030 50%, #001040 100%);
  border-top: 1px solid rgba(123,47,255,.3);
  border-bottom: 1px solid rgba(0,212,255,.2);
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 25% 50%, rgba(123,47,255,.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 75% 50%, rgba(0,212,255,.08) 0%, transparent 60%);
}
.cta-band h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); color: #fff; margin-bottom: 16px; position: relative; z-index: 1; text-shadow: 0 0 30px rgba(123,47,255,.4); }
.cta-band p { color: rgba(200,200,255,.8); max-width: 520px; margin: 0 auto 32px; position: relative; z-index: 1; }
.cta-band .btn { position: relative; z-index: 1; }

/* ---------- Contact Section ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.contact-info h3 { font-size: 1.4rem; margin-bottom: 24px; }
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.contact-icon {
  width: 44px; height: 44px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  color: var(--cosmic);
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: var(--glow-cosmic);
}
.contact-item strong { display: block; font-size: .85rem; color: var(--muted); margin-bottom: 2px; }
.contact-item p { margin: 0; font-size: .95rem; }
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 14px 16px;
  font-family: 'Open Sans', sans-serif;
  font-size: .95rem;
  border-radius: 2px;
  margin-bottom: 16px;
  transition: border-color .2s, box-shadow .2s;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--cosmic);
  box-shadow: 0 0 12px rgba(0,212,255,.2);
}
.contact-form textarea { height: 140px; resize: vertical; }
.contact-form label { display: block; font-size: .82rem; color: var(--muted); margin-bottom: 6px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ---------- Info Cards ---------- */
.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.info-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-top: 3px solid var(--nebula);
  padding: 28px;
  border-radius: 2px;
  transition: box-shadow .25s, border-top-color .25s;
}
.info-card:hover {
  box-shadow: 0 0 24px rgba(123,47,255,.2);
  border-top-color: var(--cosmic);
}
.info-card .icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}
.info-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.info-card p { font-size: .88rem; color: var(--muted); margin: 0; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.faq-item summary {
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--white);
}
.faq-item summary::after { content: '+'; color: var(--cosmic); font-size: 1.4rem; }
.faq-item[open] summary::after { content: '−'; }
.faq-item p { margin-top: 12px; color: var(--muted); font-size: .92rem; line-height: 1.8; }

/* ---------- Nebula Divider ---------- */
.nebula-divider {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--nebula) 30%, var(--cosmic) 70%, transparent 100%);
  box-shadow: 0 0 12px rgba(123,47,255,.4);
  border: none;
  margin: 0;
}

/* ---------- Footer ---------- */
footer {
  background: linear-gradient(180deg, #050515 0%, #03030d 100%);
  border-top: 1px solid var(--border);
  padding: 64px 0 0;
  position: relative;
}
footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--nebula) 40%, var(--cosmic) 60%, transparent 100%);
  box-shadow: 0 0 12px rgba(123,47,255,.5);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand .logo { font-size: 1.4rem; margin-bottom: 16px; display: block; }
.footer-brand p { font-size: .88rem; color: var(--muted); max-width: 280px; line-height: 1.8; }
.footer-socials { display: flex; gap: 12px; margin-top: 20px; }
.social-btn {
  width: 36px; height: 36px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  font-size: .9rem;
  transition: all .2s;
}
.social-btn:hover {
  background: var(--nebula);
  color: #fff;
  border-color: var(--nebula);
  box-shadow: var(--glow-nebula);
}
footer h4 {
  font-family: 'Oswald', sans-serif;
  font-size: .8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cosmic);
  margin-bottom: 20px;
  text-shadow: var(--glow-cosmic);
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { font-size: .88rem; color: var(--muted); }
.footer-links a:hover { color: var(--cosmic); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .8rem;
  color: var(--muted);
}

/* ---------- Schema / Hidden SEO ---------- */
.seo-text {
  font-size: .78rem;
  color: #0a0a1a;
  padding: 8px 0;
  line-height: 1.6;
}

/* ---------- Glow Pulse animation (for hero badge etc) ---------- */
@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 16px rgba(123,47,255,.4); }
  50%       { box-shadow: 0 0 32px rgba(123,47,255,.75); }
}
.hero-badge { animation: glow-pulse 3s ease-in-out infinite; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .feature-grid { grid-template-columns: 1fr; gap: 40px; }
  .feature-grid.reverse .feature-img,
  .feature-grid.reverse .feature-text { order: unset; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  nav { display: none; }
  .hamburger { display: flex; }
  .mobile-nav.open { display: block; }
  .hero-video-box { display: none; }
  .hero { min-height: 70vh; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .section { padding: 56px 0; }
  .performer-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .performer-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .btn { text-align: center; }
}
