/* ==========================================================================
   style.css — Static Production CSS
   Generated from: Concert Glow Sticks (dmxfun.com)
   Includes: static Tailwind utility equivalents + original custom styles
   ========================================================================== */

/* ===== RESET ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== BASE ===== */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: #000;
  color: #fff;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ===== DISPLAY ===== */
.hidden { display: none; }
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.inline-block { display: inline-block; }
.grid { display: grid; }
.block { display: block; }
.overflow-hidden { overflow: hidden; }
.shrink-0 { flex-shrink: 0; }

/* ===== FLEXBOX ===== */
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }

/* ===== GAP ===== */
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; }
.gap-16 { gap: 4rem; }

/* ===== GRID ===== */
@media (min-width: 768px) {
  .md\:flex { display: flex; }
  .md\:inline { display: inline; }
  .md\:flex-row { flex-direction: row; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
  .md\:w-1\/2 { width: 50%; }
  .md\:h-10 { height: 2.5rem; }
  .md\:text-right { text-align: right; }
  .md\:text-4xl { font-size: 2.25rem; }
  .md\:text-5xl { font-size: 3rem; }
  .md\:text-7xl { font-size: 4.5rem; }
  .md\:text-xl { font-size: 1.25rem; }
  .md\:p-12 { padding: 3rem; }
}

/* ===== POSITION ===== */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.pointer-events-none { pointer-events: none; }

/* ===== INSET ===== */
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.top-6 { top: 1.5rem; }
.left-6 { left: 1.5rem; }
.right-6 { right: 1.5rem; }
.bottom-0 { bottom: 0; }
.bottom-8 { bottom: 2rem; }
.right-8 { right: 2rem; }
.bottom-12 { bottom: 3rem; }
.left-1\/2 { left: 50%; }

/* ===== TRANSFORM ===== */
.-translate-x-1\/2 { transform: translateX(-50%); }

/* ===== Z-INDEX ===== */
.z-10 { z-index: 10; }
.z-50 { z-index: 50; }
.z-\[100\] { z-index: 100; }
.z-\[9999\] { z-index: 9999; }

/* ===== WIDTH ===== */
.w-full { width: 100%; }
.w-auto { width: auto; }
.w-16 { width: 4rem; }
.w-14 { width: 3.5rem; }
.w-8 { width: 2rem; }
.w-7 { width: 1.75rem; }
.w-2 { width: 0.5rem; }
.min-h-screen { min-height: 100vh; }

/* ===== HEIGHT ===== */
.h-8 { height: 2rem; }
.h-14 { height: 3.5rem; }
.h-7 { height: 1.75rem; }
.h-2 { height: 0.5rem; }
.h-16 { height: 4rem; }
.h-px { height: 1px; }

/* ===== ASPECT ===== */
.aspect-square { aspect-ratio: 1 / 1; }
.aspect-video { aspect-ratio: 16 / 9; }

/* ===== CONTAINERS ===== */
.max-w-7xl { max-width: 1280px; }
.max-w-5xl { max-width: 1024px; }
.max-w-4xl { max-width: 896px; }
.max-w-3xl { max-width: 768px; }

/* ===== CENTERING ===== */
.mx-auto { margin-left: auto; margin-right: auto; }
.mx-2 { margin-left: 0.5rem; margin-right: 0.5rem; }

/* ===== SPACING (PADDING) ===== */
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-28 { padding-top: 7rem; padding-bottom: 7rem; }
.py-32 { padding-top: 8rem; padding-bottom: 8rem; }
.pt-20 { padding-top: 5rem; }
.pt-8 { padding-top: 2rem; }
.pt-12 { padding-top: 3rem; }
.pb-2 { padding-bottom: 0.5rem; }

/* ===== SPACING (MARGIN) ===== */
.mt-6 { margin-top: 1.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-2 { margin-top: 0.5rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mr-2 { margin-right: 0.5rem; }
.mt-32 { margin-top: 8rem; }

/* ===== SPACE Y ===== */
.space-y-3 > * + * { margin-top: 0.75rem; }

/* ===== TYPOGRAPHY ===== */
.text-left { text-align: left; }
.text-center { text-align: center; }

.font-extrabold { font-weight: 800; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-medium { font-weight: 500; }

.uppercase { text-transform: uppercase; }

.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }

.tracking-wide { letter-spacing: 0.025em; }
.tracking-wider { letter-spacing: 0.05em; }
.tracking-\[0\.3em\] { letter-spacing: 0.3em; }
.tracking-\[0\.5em\] { letter-spacing: 0.5em; }
.tracking-\[0\.8em\] { letter-spacing: 0.8em; }

.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; }
.text-\[9px\] { font-size: 9px; }
.text-\[8px\] { font-size: 8px; }

.font-\[Space\+Grotesk\] {
  font-family: 'Space Grotesk', sans-serif;
}

/* ===== TEXT COLORS ===== */
.text-white { color: #ffffff; }
.text-white\/90 { color: rgba(255, 255, 255, 0.9); }
.text-white\/80 { color: rgba(255, 255, 255, 0.8); }
.text-white\/70 { color: rgba(255, 255, 255, 0.7); }
.text-gray-300 { color: #d1d5db; }
.text-gray-400 { color: #9ca3af; }
.text-gray-500 { color: #6b7280; }
.text-gray-800 { color: #1f2937; }
.text-indigo-400 { color: #818cf8; }
.text-indigo-500 { color: #6366f1; }
.text-indigo-300 { color: #a5b4fc; }
.text-cyan-400 { color: #22d3ee; }
.text-cyan-300 { color: #67e8f9; }
.text-slate-400 { color: #94a3b8; }
.text-slate-500 { color: #64748b; }
.text-slate-600 { color: #475569; }

/* ===== BACKGROUNDS ===== */
.bg-black { background-color: #000000; }
.bg-black\/40 { background-color: rgba(0, 0, 0, 0.4); }
.bg-indigo-600 { background-color: #4f46e5; }
.bg-indigo-900\/30 { background-color: rgba(49, 46, 129, 0.3); }
.bg-cyan-900\/30 { background-color: rgba(22, 78, 99, 0.3); }
.bg-gray-800 { background-color: #1f2937; }
.bg-gray-900 { background-color: #111827; }
.bg-\[\#25D366\] { background-color: #25D366; }

/* ===== GRADIENT ===== */
.bg-gradient-to-t { background-image: linear-gradient(to top, var(--tw-gradient-stops)); }
.from-indigo-950\/10 { --tw-gradient-from: rgba(30, 27, 75, 0.1); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 27, 75, 0)); }
.to-transparent { --tw-gradient-to: transparent; }

.bg-cover { background-size: cover; }
.bg-center { background-position: center; }

.bg-\[url\(\'\/images\/concert-glow-sticks-hero\.jpg\'\)\] {
  background-image: url('/images/concert-glow-sticks-hero.jpg');
}

/* ===== BORDER ===== */
.border { border: 1px solid; }
.border-t { border-top: 1px solid; }
.border-b { border-bottom: 1px solid; }
.border-white\/5 { border-color: rgba(255, 255, 255, 0.05); }
.border-gray-800 { border-color: #1f2937; }
.border-gray-800\/40 { border-color: rgba(31, 41, 55, 0.4); }
.border-cyan-500\/30 { border-color: rgba(6, 182, 212, 0.3); }
.rounded-full { border-radius: 9999px; }
.rounded-2xl { border-radius: 1rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-lg { border-radius: 0.5rem; }
.hover\:border-indigo-500\/30:hover { border-color: rgba(99, 102, 241, 0.3); }
.hover\:border-cyan-500\/30:hover { border-color: rgba(6, 182, 212, 0.3); }

/* ===== OBJECT FIT ===== */
.object-contain { object-fit: contain; }
.object-cover { object-fit: cover; }

/* ===== SHADOW ===== */
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1); }

/* ===== TRANSITION ===== */
.transition { transition: all 0.3s ease; }
.duration-300 { transition-duration: 300ms; }

/* ===== HOVER ===== */
.hover\:bg-indigo-500:hover { background-color: #6366f1; }
.hover\:bg-cyan-900\/20:hover { background-color: rgba(22, 78, 99, 0.2); }
.hover\:text-indigo-400:hover { color: #818cf8; }
.hover\:text-cyan-300:hover { color: #67e8f9; }
.hover\:scale-110:hover { transform: scale(1.1); }

/* ===== LOADING STATE (FOUC prevention) ===== */
html:not(.fonts-loaded) body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ==========================================================================
   ORIGINAL CUSTOM STYLES (preserved from inline <style>)
   ========================================================================== */

/* ---- Navigation ---- */
.nav-bg {
  background: rgba(10, 10, 10, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 60px;
  padding: 0.6rem 2rem;
}

@media (max-width: 768px) {
  .nav-bg {
    border-radius: 40px;
    padding: 0.5rem 1.2rem;
  }
}

/* ---- Stat Card ---- */
.stat-card {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

/* ---- Border Glow ---- */
.border-glow {
  border: 1px solid rgba(99, 102, 241, 0.15);
  transition: border-color 0.4s ease;
}
.border-glow:hover {
  border-color: rgba(99, 102, 241, 0.4);
}

/* ---- Text Gradient ---- */
.text-gradient {
  background: linear-gradient(135deg, #a5b4fc, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- Noir Glows ---- */
.noir-glow-indigo { box-shadow: 0 0 60px -12px #6366f1; }
.noir-glow-cyan { box-shadow: 0 0 60px -12px #06b6d4; }

/* ---- Text Gradient Indigo-Cyan ---- */
.text-gradient-indigo-cyan {
  background: linear-gradient(135deg, #6366f1, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- Border Glow Variants ---- */
.border-glow-indigo { border: 1px solid rgba(99, 102, 241, 0.25); }
.border-glow-cyan { border: 1px solid rgba(6, 182, 212, 0.25); }

/* ---- Glass Background ---- */
.bg-glass {
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* ---- Hero Overlay ---- */
.hero-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.30) 0%, rgba(0,0,0,0.85) 100%);
  pointer-events: none;
}

/* ---- WhatsApp Float ---- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.2s;
}
.whatsapp-float:hover { transform: scale(1.05); }
.whatsapp-float svg { width: 32px; height: 32px; fill: white; }

/* ---- Video Placeholder ---- */
.video-placeholder {
  background: #111;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  border: 1px solid rgba(99,102,241,0.2);
}

/* ---- HubSpot Form Styles ---- */
#hubspot-form-container .hs-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
#hubspot-form-container .hs-form label {
  color: #94a3b8;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
#hubspot-form-container .hs-form input,
#hubspot-form-container .hs-form textarea,
#hubspot-form-container .hs-form select {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 0.9rem 1.2rem;
  color: #f1f5f9;
  font-size: 0.95rem;
  width: 100% !important;
  outline: none;
  transition: border 0.25s ease;
}
#hubspot-form-container .hs-form input:focus,
#hubspot-form-container .hs-form textarea:focus,
#hubspot-form-container .hs-form select:focus {
  border-color: #6366f1;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}
#hubspot-form-container .hs-form .hs-button {
  background: #6366f1;
  border: none;
  border-radius: 40px;
  padding: 1rem 2.4rem;
  font-weight: 600;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  width: auto;
  align-self: flex-start;
}
#hubspot-form-container .hs-form .hs-button:hover {
  background: #4f46e5;
  box-shadow: 0 0 40px rgba(99, 102, 241, 0.25);
  transform: scale(1.02);
}
#hubspot-form-container .hs-form .hs-error-msgs {
  color: #f87171;
  font-size: 0.75rem;
  list-style: none;
  padding: 0;
  margin: 0.25rem 0 0 0;
}
#hubspot-form-container .hs-form .hs-error-msgs li {
  padding-left: 0;
}
#hubspot-form-container .hs-form .legal-consent-container {
  font-size: 0.75rem;
  color: #64748b;
  line-height: 1.5;
}
#hubspot-form-container .hs-form .legal-consent-container a {
  color: #818cf8;
  text-decoration: underline;
}
