/* ==========================================================================
   style.css — Static Production CSS
   Generated from: Custom Kpop Light Stick (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: #050505;
  color: #f0f0f0;
  scroll-behavior: smooth;
}

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; }

/* ===== ORDER ===== */
.order-1 { order: 1; }
.order-2 { order: 2; }

@media (min-width: 768px) {
  .md\:order-1 { order: 1; }
  .md\:order-2 { order: 2; }
}

/* ===== 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-12 { gap: 3rem; }
.gap-14 { gap: 3.5rem; }
.gap-16 { gap: 4rem; }
.gap-24 { gap: 6rem; }

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

/* ===== 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-0 { top: 0; }
.left-0 { left: 0; }
.right-0 { right: 0; }
.top-6 { top: 1.5rem; }
.left-6 { left: 1.5rem; }
.right-6 { right: 1.5rem; }
.bottom-8 { bottom: 2rem; }
.right-8 { right: 2rem; }
.bottom-10 { bottom: 2.5rem; }
.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; }

/* ===== WIDTH ===== */
.w-full { width: 100%; }
.w-auto { width: auto; }
.w-8 { width: 2rem; }
.w-2 { width: 0.5rem; }
.w-20 { width: 5rem; }
.min-h-screen { min-height: 100vh; }
.min-w-\[48px\] { min-width: 48px; }

/* ===== HEIGHT ===== */
.h-full { height: 100%; }
.h-8 { height: 2rem; }
.h-16 { height: 4rem; }
.h-7 { height: 1.75rem; }
.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-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; }

/* ===== 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; }
.p-10 { padding: 2.5rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-28 { padding-top: 7rem; padding-bottom: 7rem; }
.py-32 { padding-top: 8rem; padding-bottom: 8rem; }
.pt-20 { padding-top: 5rem; }
.pt-12 { padding-top: 3rem; }
.pb-10 { padding-bottom: 2.5rem; }
.pl-8 { padding-left: 2rem; }

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

/* ===== SPACE Y ===== */
.space-y-0 > * + * { margin-top: 0; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-24 > * + * { margin-top: 6rem; }

/* ===== 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; }
.font-extrabold { font-weight: 800; }

.uppercase { text-transform: uppercase; }

.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\.4em\] { letter-spacing: 0.4em; }
.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.875rem; }  /* 14px (was 13px) */
.text-sm { font-size: 1rem; }      /* 16px (was 15px) */
.text-lg { font-size: 1.25rem; }   /* 20px (was 19px) */
.text-2xl { font-size: 1.5rem; }
.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; }
.text-\[0\.65rem\] { font-size: 0.65rem; }
.text-\[0\.7rem\] { font-size: 0.7rem; }
.text-\[0\.75rem\] { font-size: 0.8125rem; }
.text-\[0\.85rem\] { font-size: 0.85rem; }
.text-\[0\.95rem\] { font-size: 0.95rem; }

.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-white\/60 { color: rgba(255, 255, 255, 0.6); }
.text-gray-300 { color: #d1d5db; }
.text-gray-400 { color: #9ca3af; }
.text-gray-500 { color: #6b7280; }
.text-gray-600 { color: #4b5563; }
.text-slate-400 { color: #94a3b8; }
.text-slate-500 { color: #64748b; }
.text-slate-600 { color: #475569; }
.text-purple-400 { color: #c084fc; }
.text-purple-300 { color: #d8b4fe; }
.text-pink-300 { color: #f9a8d4; }
.text-indigo-400 { color: #818cf8; }
.text-indigo-300 { color: #a5b4fc; }

/* ===== BACKGROUNDS ===== */
.bg-black { background-color: #000000; }
.bg-\[\#25D366\] { background-color: #25D366; }
.bg-\[url\(\'\/images\/kpop-light-stick-hero\.jpg\'\)\] {
  background-image: url('/images/kpop-light-stick-hero.jpg');
}

/* ===== GRADIENT ===== */
.bg-gradient-to-br { background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); }
.bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-stops)); }
.bg-gradient-to-t { background-image: linear-gradient(to top, var(--tw-gradient-stops)); }
.from-purple-950\/30 { --tw-gradient-from: rgba(88, 28, 135, 0.3); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(88, 28, 135, 0)); }
.from-purple-950\/20 { --tw-gradient-from: rgba(88, 28, 135, 0.2); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(88, 28, 135, 0)); }
.from-purple-950\/10 { --tw-gradient-from: rgba(88, 28, 135, 0.1); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(88, 28, 135, 0)); }
.from-purple-600 { --tw-gradient-from: #9333ea; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 51, 234, 0)); }
.to-pink-500 { --tw-gradient-to: #ec4899; }
.to-transparent { --tw-gradient-to: transparent; }
.via-black { --tw-gradient-via: #000000; }
.hover\:from-purple-500:hover { --tw-gradient-from: #a855f7; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(168, 85, 247, 0)); }
.hover\:to-pink-400:hover { --tw-gradient-to: #f472b6; }
.border-purple-900\/30 { border-color: rgba(88, 28, 135, 0.3); }

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

/* ===== OPACITY ===== */
.opacity-30 { opacity: 0.3; }

/* ===== 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\/40 { border-color: rgba(31, 41, 55, 0.4); }
.border-purple-500\/30 { border-color: rgba(168, 85, 247, 0.3); }
.rounded-full { border-radius: 9999px; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.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; }
.duration-300 { transition-duration: 300ms; }

/* ===== HOVER ===== */
.hover\:bg-purple-900\/20:hover { background-color: rgba(88, 28, 135, 0.2); }
.hover\:text-purple-400:hover { color: #c084fc; }
.hover\:text-purple-300:hover { color: #d8b4fe; }
.hover\:text-pink-300:hover { color: #f9a8d4; }
.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-bar {
  background: rgba(5,5,5,0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

/* ---- Glow Border ---- */
.glow-border {
  border: 1px solid rgba(168,85,247,0.15);
  transition: border-color 0.4s;
}
.glow-border:hover {
  border-color: rgba(168,85,247,0.5);
}

/* ---- Text Gradient Pink ---- */
.text-gradient-pink {
  background: linear-gradient(135deg, #f472b6, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- Timeline ---- */
.timeline-dot {
  width: 14px;
  height: 14px;
  background: #a855f7;
  border-radius: 50%;
  position: absolute;
  left: -7px;
  top: 6px;
  box-shadow: 0 0 20px #a855f7;
}
.timeline-line {
  width: 1px;
  background: linear-gradient(to bottom, #a855f7, transparent);
  position: absolute;
  left: 0;
  top: 30px;
  bottom: 0;
}

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

/* ---- Product Card ---- */
.product-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 24px;
  overflow: hidden;
  transition: 0.3s;
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: #a855f7;
  box-shadow: 0 20px 40px -12px rgba(168,85,247,0.15);
}

/* ---- Pill ---- */
.pill {
  border-radius: 999px;
  padding: 0.4rem 1.2rem;
  background: rgba(168,85,247,0.1);
  border: 1px solid rgba(168,85,247,0.2);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
}

/* ---- HubSpot Form Styles ---- */
#hubspot-form-container .hs-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
#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;
}
#hubspot-form-container .hs-form input:focus,
#hubspot-form-container .hs-form textarea:focus,
#hubspot-form-container .hs-form select:focus {
  border-color: #a855f7;
  box-shadow: 0 0 0 3px rgba(168,85,247,0.15);
}
#hubspot-form-container .hs-form .hs-button {
  background: #a855f7;
  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;
}
#hubspot-form-container .hs-form .hs-button:hover {
  background: #9333ea;
  box-shadow: 0 0 40px rgba(168,85,247,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: #c084fc;
  text-decoration: underline;
}
