/* ==========================================================================
   style.css — Static Production CSS
   Generated from: Light Stick Custom (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-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.gap-16 { gap: 4rem; }

/* ===== GRID ===== */
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }

@media (min-width: 640px) {
  .sm\:block { display: block; }
}

@media (min-width: 768px) {
  .md\:flex { display: flex; }
  .md\:inline { display: inline; }
  .md\:flex-row { flex-direction: row; }
  .md\:flex-row-reverse { flex-direction: row-reverse; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
  .md\:w-\[180px\] { width: 180px; }
  .md\:gap-10 { gap: 2.5rem; }
  .md\:gap-14 { gap: 3.5rem; }
  .md\:p-10 { padding: 2.5rem; }
  .md\:h-10 { height: 2.5rem; }
  .md\:text-right { text-align: right; }
  .md\:text-4xl { font-size: 2.25rem; }
}

/* ===== 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; }
.top-\[8\%\] { top: 8%; }
.right-\[15\%\] { right: 15%; }
.bottom-8 { bottom: 2rem; }
.right-8 { right: 2rem; }

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

/* ===== WIDTH ===== */
.w-full { width: 100%; }
.w-auto { width: auto; }
.w-12 { width: 3rem; }
.w-8 { width: 2rem; }
.w-1\.5 { width: 0.375rem; }
.w-\[140px\] { width: 140px; }
.w-\[350px\] { width: 350px; }
.min-h-screen { min-height: 100vh; }
.min-w-\[48px\] { min-width: 48px; }

/* ===== HEIGHT ===== */
.h-full { height: 100%; }
.h-8 { height: 2rem; }
.h-12 { height: 3rem; }
.h-1\.5 { height: 0.375rem; }
.h-\[350px\] { height: 350px; }
.h-\[100px\] { height: 100px; }
.h-\[140px\] { height: 140px; }
.h-px { height: 1px; }

/* ===== ASPECT ===== */
.aspect-\[4\/3\] { aspect-ratio: 4/3; }

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

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

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

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

/* ===== SPACE Y ===== */
.space-y-0 > * + * { margin-top: 0; }
.space-y-5 > * + * { margin-top: 1.25rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }

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

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

.uppercase { text-transform: uppercase; }

.leading-none { line-height: 1; }
.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }
.leading-\[1\.05\] { line-height: 1.05; }

.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\.03em\] { letter-spacing: 0.03em; }
.tracking-\[0\.8em\] { letter-spacing: 0.8em; }
.tracking-\[0\.1em\] { letter-spacing: 0.1em; }

.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-3xl { font-size: 1.875rem; }
.text-\[9px\] { font-size: 9px; }
.text-\[8px\] { font-size: 8px; }
.text-\[0\.6rem\] { font-size: 0.6rem; }
.text-\[0\.65rem\] { font-size: 0.65rem; }
.text-\[0\.75rem\] { font-size: 0.75rem; }
.text-\[0\.8rem\] { font-size: 0.8rem; }
.text-\[0\.85rem\] { font-size: 0.85rem; }
.text-\[0\.88rem\] { font-size: 0.88rem; }
.text-\[0\.9rem\] { font-size: 0.9rem; }
.text-\[0\.95rem\] { font-size: 0.95rem; }
.text-\[1rem\] { font-size: 1rem; }
.text-\[1\.05rem\] { font-size: 1.05rem; }
.text-\[1\.3rem\] { font-size: 1.3rem; }
.text-\[1\.5rem\] { font-size: 1.5rem; }
.text-\[1\.6rem\] { font-size: 1.6rem; }

.text-\[clamp\(2\.4rem\,5\.5vw\,4\.5rem\)\] {
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
}
.text-\[clamp\(0\.95rem\,1\.4vw\,1\.15rem\)\] {
  font-size: clamp(0.95rem, 1.4vw, 1.15rem);
}
.text-\[clamp\(1\.6rem\,3\.5vw\,2\.6rem\)\] {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
}
.text-\[clamp\(1\.3rem\,2vw\,1\.8rem\)\] {
  font-size: clamp(1.3rem, 2vw, 1.8rem);
}
.text-\[clamp\(1\.4rem\,3vw\,2\.2rem\)\] {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
}

.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-slate-200 { color: #e2e8f0; }
.text-slate-300 { color: #cbd5e1; }
.text-slate-400 { color: #94a3b8; }
.text-slate-500 { color: #64748b; }
.text-slate-600 { color: #475569; }
.text-slate-800 { color: #1e293b; }
.text-indigo-400 { color: #818cf8; }
.text-indigo-400\/70 { color: rgba(129, 140, 248, 0.7); }
.text-indigo-300 { color: #a5b4fc; }
.text-cyan-400 { color: #22d3ee; }
.text-purple-400 { color: #c084fc; }
.text-amber-400 { color: #fbbf24; }

/* ===== BACKGROUNDS ===== */
.bg-black { background-color: #000000; }
.bg-indigo-600 { background-color: #4f46e5; }
.bg-indigo-500 { background-color: #6366f1; }
.bg-indigo-500\/10 { background-color: rgba(99, 102, 241, 0.1); }
.bg-indigo-500\/8 { background-color: rgba(99, 102, 241, 0.08); }
.bg-indigo-500\/15 { background-color: rgba(99, 102, 241, 0.15); }
.bg-cyan-500\/10 { background-color: rgba(6, 182, 212, 0.1); }
.bg-purple-500\/10 { background-color: rgba(168, 85, 247, 0.1); }
.bg-amber-500\/10 { background-color: rgba(245, 158, 11, 0.1); }
.bg-white\/3 { background-color: rgba(255, 255, 255, 0.03); }
.bg-white\/5 { background-color: rgba(255, 255, 255, 0.05); }
.bg-white\/10 { background-color: rgba(255, 255, 255, 0.1); }
.bg-\[\#25D366\] { background-color: #25D366; }
.bg-\[\#0e0e1a\] { background-color: #0e0e1a; }

/* ===== GRADIENT ===== */
.bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-stops)); }
.bg-gradient-to-b { background-image: linear-gradient(to bottom, var(--tw-gradient-stops)); }
.bg-gradient-to-t { background-image: linear-gradient(to top, var(--tw-gradient-stops)); }
.from-transparent { --tw-gradient-from: transparent; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0,0,0,0)); }
.via-indigo-500\/30 { --tw-gradient-via: rgba(99, 102, 241, 0.3); }
.to-transparent { --tw-gradient-to: transparent; }
.from-indigo-950\/8 { --tw-gradient-from: rgba(30, 27, 75, 0.08); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 27, 75, 0)); }
.from-indigo-950\/5 { --tw-gradient-from: rgba(30, 27, 75, 0.05); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 27, 75, 0)); }

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

/* ===== CSS BACKGROUND IMAGES ===== */
.bg-\[url\(\'\/images\/light-stick-custom-hero\.jpg\'\)\] {
  background-image: url('/images/light-stick-custom-hero.jpg');
}

/* ===== BORDER ===== */
.border { border: 1px solid; }
.border-t { border-top: 1px solid; }
.border-b { border-bottom: 1px solid; }
.border-y { border-top: 1px solid; border-bottom: 1px solid; }
.border-white\/5 { border-color: rgba(255, 255, 255, 0.05); }
.border-white\/10 { border-color: rgba(255, 255, 255, 0.1); }
.border-indigo-500\/12 { border-color: rgba(99, 102, 241, 0.12); }
.border-indigo-500\/30 { border-color: rgba(99, 102, 241, 0.3); }
.rounded-full { border-radius: 9999px; }
.rounded-2xl { border-radius: 1rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-lg { border-radius: 0.5rem; }

/* ===== 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; }
.transition-all { transition: all 0.3s ease; }
.duration-300 { transition-duration: 300ms; }

/* ===== HOVER ===== */
.hover\:bg-indigo-500:hover { background-color: #6366f1; }
.hover\:bg-white\/8:hover { background-color: rgba(255, 255, 255, 0.08); }
.hover\:text-indigo-400:hover { color: #818cf8; }
.hover\:text-indigo-300:hover { color: #a5b4fc; }
.hover\:scale-110:hover { transform: scale(1.1); }
.hover\:shadow-\[0_0_40px_rgba\(99\,102\,241\,0\.3\)\]:hover {
  box-shadow: 0 0 40px rgba(99, 102, 241, 0.3);
}

/* ===== FILTER (BLUR) ===== */
.blur-\[130px\] { filter: blur(130px); }

/* ===== 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 ---- */
.nv {
  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) {
  .nv {
    border-radius: 40px;
    padding: 0.5rem 1.2rem;
  }
}

/* ---- Card ---- */
.cd {
  background: linear-gradient(160deg, #0a0a14, #08080e);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

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

/* ---- Glass Card ---- */
.gl {
  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);
}

/* ---- FAQ ---- */
.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.fqa {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s, padding 0.35s;
}
.fqa-in {
  padding: 0 0 24px;
  font-size: 1.05rem;
  color: #b8b8cc;
  line-height: 1.75;
}
.fqa-in strong {
  color: #d0d0e4;
}

/* FAQ Button — fixed white background issue */
.faq-btn-text {
  color: #cbd5e1;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color 0.2s ease;
}
.faq-btn-text:hover {
  color: #818cf8;
}
.faq-arrow {
  color: #64748b;
  font-size: 0.65rem;
  transition: transform 0.3s ease, color 0.3s ease;
  display: inline-block;
}
.faq-item.active .faq-arrow {
  color: #818cf8;
  transform: rotate(180deg);
}

/* ---- Scroll Animation ---- */
.rv {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s;
}
.show {
  opacity: 1;
  transform: translateY(0);
}
.rv.show {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Banner Card ---- */
.bnr-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(99, 102, 241, 0.08);
}
.bnr-card .bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.bnr-card .ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.85) 20%, rgba(0,0,0,0.3) 70%);
}
.bnr-card .ct {
  position: relative;
  z-index: 2;
  padding: 2.5rem;
}

/* ---- Image Frame ---- */
.img-frame {
  background: #0e0e1a;
  border: 1px dashed rgba(99, 102, 241, 0.2);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  min-height: 100px;
}
.img-frame .label {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.6rem;
  color: rgba(99, 102, 241, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: rgba(0, 0, 0, 0.7);
  padding: 4px 12px;
  border-radius: 4px;
  white-space: nowrap;
}

/* ---- HubSpot Form ---- */
#hs .hs-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
#hs .hs-form label {
  color: #94a3b8;
  font-size: 0.85rem;
  font-weight: 500;
}
#hs .hs-form input,
#hs .hs-form textarea,
#hs .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;
}
#hs .hs-form input:focus,
#hs .hs-form textarea:focus,
#hs .hs-form select:focus {
  border-color: #6366f1;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}
#hs .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;
  width: auto;
  align-self: flex-start;
}
#hs .hs-form .hs-button:hover {
  background: #4f46e5;
  box-shadow: 0 0 40px rgba(99, 102, 241, 0.25);
  transform: scale(1.02);
}
#hs .hs-form .hs-error-msgs {
  color: #f87171;
  font-size: 0.75rem;
  list-style: none;
}
#hs .hs-form .legal-consent-container {
  font-size: 0.75rem;
  color: #64748b;
  line-height: 1.5;
}
#hs .hs-form .legal-consent-container a {
  color: #818cf8;
  text-decoration: underline;
}
