/* ============================================================
   style.css
   GFLAI RF LED Wristbands Landing Page — Production Static Styles
   Generated: 2026-06-10
   = Tailwind utility classes (statically extracted from body) +
     original inline custom styles (merged)
   ============================================================ */

/* ---------- CSS RESET ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: #030303;
  color: #fff;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Space Grotesk', sans-serif;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

/* ============================================================
   CUSTOM COMPONENT CLASSES (from original inline <style>)
   ============================================================ */

.nav-blur {
  background: rgba(8, 8, 8, 0.8);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 50px;
  padding: 0.6rem 2.5rem;
}

@media (max-width: 768px) {
  .nav-blur { border-radius: 30px; padding: 0.5rem 1.2rem; }
}

/* HIGH-SCANNABILITY TYPOGRAPHY SCALE */
p { font-size: 1.25rem !important; line-height: 1.9 !important; color: #e2e8f0; }
.text-lead-emotional { font-size: 1.4rem !important; line-height: 1.85 !important; color: #cbd5e1; }
.text-sm-custom { font-size: 1.125rem !important; line-height: 1.75 !important; }
.text-xs-custom { font-size: 1rem !important; }

/* Premium Visual Atmosphere */
.stage-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.stage-card:hover {
  border-color: rgba(236, 72, 153, 0.3);
  box-shadow: 0 15px 40px rgba(236, 72, 153, 0.08);
  transform: translateY(-4px);
}

.text-neon-glow {
  background: linear-gradient(135deg, #ec4899, #8b5cf6, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pulse-glow-pink {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.12) 0%, rgba(0,0,0,0) 75%);
  pointer-events: none;
}

.pulse-glow-blue {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, rgba(0,0,0,0) 70%);
  pointer-events: none;
}

/* HubSpot custom form styling mapping */
#hubspot-form-container .hs-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
#hubspot-form-container .hs-form label {
  color: #cbd5e1;
  font-size: 1.1rem;
  font-weight: 500;
}
#hubspot-form-container .hs-form input,
#hubspot-form-container .hs-form textarea,
#hubspot-form-container .hs-form select {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1.2rem 1.5rem;
  color: #fff;
  font-size: 1.2rem;
  width: 100% !important;
  outline: none;
  transition: all 0.3s ease;
}
#hubspot-form-container .hs-form input:focus,
#hubspot-form-container .hs-form textarea:focus {
  border-color: #ec4899;
  box-shadow: 0 0 20px rgba(236, 72, 153, 0.15);
}
#hubspot-form-container .hs-form .hs-button {
  background: linear-gradient(90deg, #ec4899, #8b5cf6);
  border: none;
  border-radius: 50px;
  padding: 1.3rem 3.5rem;
  font-weight: 600;
  color: white;
  font-size: 1.25rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(236, 72, 153, 0.2);
}
#hubspot-form-container .hs-form .hs-button:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 40px rgba(236, 72, 153, 0.35);
}
#hubspot-form-container .hs-form .hs-error-msgs { color: #fb7185; list-style: none; padding: 0; margin-top: 0.5rem; }

/* ============================================================
   TAILWIND UTILITY CLASSES — STATICALLY EXTRACTED FROM BODY
   ============================================================ */

/* ---- Display & Visibility ---- */
.block { display: block; }
.inline-block { display: inline-block; }
.inline { display: inline; }
.flex { display: flex; }
.grid { display: grid; }
.hidden { display: none; }
.contents { display: contents; }

/* ---- Positioning ---- */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.top-6 { top: 1.5rem; }
.top-10 { top: 2.5rem; }
.top-20 { top: 5rem; }
.left-6 { left: 1.5rem; }
.left-5 { left: 1.25rem; }
.left-0 { left: 0; }
.right-6 { right: 1.5rem; }
.right-10 { right: 2.5rem; }
.right-8 { right: 2rem; }
.bottom-8 { bottom: 2rem; }
.bottom-10 { bottom: 2.5rem; }
.z-10 { z-index: 10; }
.z-50 { z-index: 50; }
.z-\[100\] { z-index: 100; }
.pointer-events-none { pointer-events: none; }

/* ---- Flex ---- */
.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; }
.justify-end { justify-content: flex-end; }

/* ---- Grid ---- */
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }

/* ---- Gap ---- */
.gap-3 { gap: 0.75rem; }
.gap-5 { gap: 1.25rem; }
.gap-8 { gap: 2rem; }
.gap-16 { gap: 4rem; }

/* ---- Spacing: Padding ---- */
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.px-16 { padding-left: 4rem; padding-right: 4rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.py-28 { padding-top: 7rem; padding-bottom: 7rem; }
.py-32 { padding-top: 8rem; padding-bottom: 8rem; }
.pt-0 { padding-top: 0; }
.pt-8 { padding-top: 2rem; }
.pt-12 { padding-top: 3rem; }
.pt-28 { padding-top: 7rem; }

/* ---- Spacing: Margin ---- */
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-14 { margin-bottom: 3.5rem; }
.mb-16 { margin-bottom: 4rem; }
.mb-20 { margin-bottom: 5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-32 { margin-top: 8rem; }
.mr-2 { margin-right: 0.5rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ---- Vertical Spacing (space-y) ---- */
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }

/* ---- Width ---- */
.w-full { width: 100%; }
.w-auto { width: auto; }
.w-8 { width: 2rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-7xl { max-width: 80rem; }

/* ---- Height ---- */
.h-8 { height: 2rem; }
.h-auto { height: auto; }
.h-full { height: 100%; }
.h-64 { height: 16rem; }
.min-h-screen { min-height: 100vh; }
.aspect-video { aspect-ratio: 16 / 9; }

/* ---- Overflow ---- */
.overflow-hidden { overflow: hidden; }
.overflow-x-hidden { overflow-x: hidden; }

/* ---- Typography: Font Size ---- */
.text-\[8px\] { font-size: 8px; }
.text-\[9px\] { font-size: 9px; }
.text-\[10px\] { font-size: 10px; }
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1; }

/* ---- Typography: Weight & Style ---- */
.font-light { font-weight: 300; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

/* ---- Typography: Letter Spacing ---- */
.tracking-tight { letter-spacing: -0.025em; }
.tracking-wide { letter-spacing: 0.025em; }
.tracking-wider { letter-spacing: 0.05em; }
.tracking-widest { letter-spacing: 0.1em; }
.tracking-\[0\.3em\] { letter-spacing: 0.3em; }
.tracking-\[0\.4em\] { letter-spacing: 0.4em; }
.tracking-\[0\.5em\] { letter-spacing: 0.5em; }
.tracking-\[0\.6em\] { letter-spacing: 0.6em; }
.tracking-\[0\.8em\] { letter-spacing: 0.8em; }

/* ---- Typography: Line Height ---- */
.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }

/* ---- Typography: Text Align & Transform ---- */
.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.uppercase { text-transform: uppercase; }

/* ---- Text Colors ---- */
.text-white { color: #fff; }
.text-white\/50 { color: rgba(255,255,255,0.5); }
.text-white\/70 { color: rgba(255,255,255,0.7); }
.text-white\/80 { color: rgba(255,255,255,0.8); }
.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-pink-400 { color: #f472b6; }
.text-pink-500 { color: #ec4899; }
.text-purple-400 { color: #c084fc; }
.text-blue-400 { color: #60a5fa; }

/* ---- Text Colors: Hover ---- */
.hover\:text-white:hover { color: #fff; }
.hover\:text-pink-400:hover { color: #f472b6; }

/* ---- Background Colors ---- */
.bg-black { background-color: #000; }
.bg-zinc-900 { background-color: #18181b; }
.bg-zinc-950 { background-color: #09090b; }
.bg-zinc-950\/20 { background-color: rgba(9,9,11,0.2); }
.bg-zinc-950\/30 { background-color: rgba(9,9,11,0.3); }
.bg-zinc-950\/40 { background-color: rgba(9,9,11,0.4); }
.bg-white\/5 { background-color: rgba(255,255,255,0.05); }
.bg-\[\#25D366\] { background-color: #25D366; }

/* ---- Background Colors: Hover ---- */
.hover\:bg-pink-600:hover { background-color: #db2777; }

/* ---- Background Gradients ---- */
.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)); }

/* Gradient from/to/via token sets */
.from-pink-600 { --tw-gradient-from: #db2777; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219,39,119,0)); }
.to-purple-600 { --tw-gradient-to: #9333ea; }
.from-black\/90 { --tw-gradient-from: rgba(0,0,0,0.9); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0,0,0,0)); }
.from-purple-950\/10 { --tw-gradient-from: rgba(59,7,100,0.1); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59,7,100,0)); }
.to-transparent { --tw-gradient-to: transparent; }
.via-black\/40 { --tw-gradient-via: rgba(0,0,0,0.4); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-via), var(--tw-gradient-to, rgba(0,0,0,0)); }
.via-transparent { --tw-gradient-via: transparent; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-via), var(--tw-gradient-to, transparent); }

/* Custom: from-background-dark -> maps to body background #030303 */
.from-background-dark { --tw-gradient-from: #030303; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(3,3,3,0)); }

/* Gradient Hover overrides */
.hover\:from-pink-500:hover { --tw-gradient-from: #ec4899; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236,72,153,0)); }
.hover\:to-purple-500:hover { --tw-gradient-to: #a855f7; }

/* ---- Borders ---- */
.border { border-width: 1px; }
.border-t { border-top-width: 1px; }
.border-y { border-top-width: 1px; border-bottom-width: 1px; }
.border-white\/5 { border-color: rgba(255,255,255,0.05); }
.border-white\/10 { border-color: rgba(255,255,255,0.1); }
.hover\:border-white\/30:hover { border-color: rgba(255,255,255,0.3); }

/* ---- Border Radius ---- */
.rounded-full { border-radius: 9999px; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }

/* ---- Shadows ---- */
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25); }
.shadow-pink-600\/20 { box-shadow: 0 1px 2px 0 rgba(219,39,119,0.2); }

/* ---- Opacity ---- */
.opacity-40 { opacity: 0.4; }

/* ---- Object Fit ---- */
.object-cover { object-fit: cover; }

/* ---- Transitions ---- */
.transition {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.duration-300 { transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }
.duration-700 { transition-duration: 700ms; }

/* ---- Group Hover Effects ---- */
.group-hover\:scale-105:hover,
.group:hover .group-hover\:scale-105 { transform: scale(1.05); }

/* Non-standard Tailwind: scale-102 (102% = 1.02) */
.group-hover\:scale-102:hover,
.group:hover .group-hover\:scale-102 { transform: scale(1.02); }

/* ---- Scale Hover ---- */
.hover\:scale-105:hover { transform: scale(1.05); }
.hover\:scale-110:hover { transform: scale(1.1); }

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

/* md: 768px */
@media (min-width: 768px) {
  .md\:inline { display: inline; }
  .md\:flex { display: flex; }
  .md\:grid { display: grid; }
  .md\:h-9 { height: 2.25rem; }
  .md\:text-right { text-align: right; }
  .md\:items-end { align-items: flex-end; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
  .md\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .md\:text-5xl { font-size: 3rem; line-height: 1; }
  .md\:text-6xl { font-size: 3.75rem; line-height: 1; }
  .md\:p-8 { padding: 2rem; }
  .md\:p-12 { padding: 3rem; }
  .md\:px-16 { padding-left: 4rem; padding-right: 4rem; }
}

/* ---- SVG fills ---- */
svg { display: block; }

/* ============================================================
   LINK RESET
   ============================================================ */
a { color: inherit; text-decoration: none; }
