/* ==========================================================================
   style2.css — Static Production CSS
   Generated from: Bulk Custom Light Sticks with Logo (dmxfun.com)
   Includes: static Tailwind utility equivalents + original custom styles
   Enlarged body font sizes for improved readability
   ========================================================================== */

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

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

body {
  font-family: 'Inter', sans-serif;
  background: #090b0e;
  color: #f0f4f8;
  scroll-behavior: smooth;
}

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

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

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

table {
  border-collapse: collapse;
}

/* ===== 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; }
.overflow-x-auto { overflow-x: auto; }

/* ===== FLEXBOX ===== */
.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; }
.shrink-0 { flex-shrink: 0; }

/* ===== 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-16 { gap: 4rem; }

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

@media (min-width: 768px) {
  .md\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ===== DIVIDE ===== */
.divide-y > * + * { border-top: 1px solid; }
.divide-white\/5 > * + * { border-color: rgba(255, 255, 255, 0.05); }

/* ===== 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-1\/4 { top: 25%; }
.top-1\/3 { top: 33.333%; }
.left-1\/2 { left: 50%; }
.bottom-0 { bottom: 0; }
.left-0 { left: 0; }
.right-0 { right: 0; }
.bottom-8 { right: 2rem; bottom: 2rem; }
.right-8 { right: 2rem; }

/* ===== TRANSFORM ===== */
.-translate-x-1\/2 { transform: translateX(-50%); }
.-translate-y-1\/2 { transform: translateY(-50%); }
.-rotate-6 { transform: rotate(-6deg); }
.rotate-12 { transform: rotate(12deg); }

/* ===== 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-6 { width: 1.5rem; }
.w-8 { width: 2rem; }
.w-14 { width: 3.5rem; }
.w-16 { width: 4rem; }
.w-20 { width: 5rem; }
.w-24 { width: 6rem; }
.w-28 { width: 7rem; }
.w-48 { width: 12rem; }
.w-64 { width: 16rem; }
.w-72 { width: 18rem; }
.w-96 { width: 24rem; }

/* ===== HEIGHT ===== */
.h-full { height: 100%; }
.h-8 { height: 2rem; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-14 { height: 3.5rem; }
.h-16 { height: 4rem; }
.h-20 { height: 5rem; }
.h-24 { height: 6rem; }
.h-28 { height: 7rem; }
.h-40 { height: 10rem; }
.h-56 { height: 14rem; }
.h-64 { height: 16rem; }
.h-96 { height: 24rem; }
.min-h-screen { min-height: 100vh; }

/* ===== CONTAINERS ===== */
.max-w-7xl { max-width: 1280px; }
.max-w-6xl { max-width: 1152px; }
.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; }

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

@media (min-width: 768px) {
  .md\:py-36 { padding-top: 9rem; padding-bottom: 9rem; }
  .md\:p-12 { padding: 3rem; }
}

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

/* ===== SPACE Y ===== */
.space-y-0 > * + * { margin-top: 0; }
.space-y-4 > * + * { margin-top: 1rem; }

/* ===== TYPOGRAPHY ===== -- ENLARGED BODY TEXT */
.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }

.font-light { font-weight: 300; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-black { font-weight: 900; }

.uppercase { text-transform: uppercase; }
.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\.15em\] { letter-spacing: 0.15em; }
.tracking-\[0\.8em\] { letter-spacing: 0.8em; }
.tracking-\[0\.02em\] { letter-spacing: 0.02em; }

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

/* ENLARGED: body text sizes bumped 1-2px for readability */
.text-xs {
  font-size: 0.8125rem;  /* 13px (was 12px) */
}
.text-sm {
  font-size: 0.9375rem;  /* 15px (was 14px) */
}
.text-base {
  font-size: 1.0625rem;  /* 17px (was 16px) */
}
.text-lg {
  font-size: 1.1875rem;  /* 19px (was 18px) */
}
.text-xl {
  font-size: 1.25rem;    /* 20px */
}
.text-2xl {
  font-size: 1.5rem;     /* 24px */
}
.text-3xl {
  font-size: 1.875rem;   /* 30px */
}
.text-4xl {
  font-size: 2.25rem;    /* 36px */
}
.text-5xl {
  font-size: 3rem;       /* 48px */
}
.text-8xl {
  font-size: 6rem;       /* 96px */
}
.text-\[9px\] {
  font-size: 9px;
}
.text-\[10px\] {
  font-size: 10px;
}
.text-\[0\.7rem\] {
  font-size: 0.7rem;
}
.text-\[8px\] {
  font-size: 8px;
}

@media (min-width: 768px) {
  .md\:text-xl { font-size: 1.25rem; }
  .md\:text-5xl { font-size: 3rem; }
  .md\:text-7xl { font-size: 4.5rem; }
}

@media (min-width: 1024px) {
  .lg\:text-8xl { font-size: 6rem; }
}

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

/* ===== TEXT COLORS ===== */
.text-white { color: #ffffff; }
.text-white\/60 { color: rgba(255, 255, 255, 0.6); }
.text-white\/70 { color: rgba(255, 255, 255, 0.7); }
.text-white\/80 { color: rgba(255, 255, 255, 0.8); }
.text-white\/30 { color: rgba(255, 255, 255, 0.3); }
.text-white\/10 { color: rgba(255, 255, 255, 0.1); }
.text-cyan-400 { color: #22d3ee; }
.text-cyan-300 { color: #67e8f9; }
.text-sky-400 { color: #38bdf8; }
.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-amber-300 { color: #fcd34d; }

/* ===== BACKGROUNDS ===== */
.bg-\[\#25D366\] { background-color: #25D366; }
.bg-\[\#05080c\] { background-color: #05080c; }
.bg-white\/\[0\.01\] { background-color: rgba(255, 255, 255, 0.01); }
.bg-cyan-500\/10 { background-color: rgba(6, 182, 212, 0.1); }
.bg-cyan-500\/5 { background-color: rgba(6, 182, 212, 0.05); }
.bg-amber-500\/10 { background-color: rgba(245, 158, 11, 0.1); }
.bg-amber-500\/5 { background-color: rgba(245, 158, 11, 0.05); }

/* ===== 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)); }
.from-cyan-500 { --tw-gradient-from: #06b6d4; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 182, 212, 0)); }
.to-sky-600 { --tw-gradient-to: #0284c7; }
.from-cyan-500\/3 { --tw-gradient-from: rgba(6, 182, 212, 0.03); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 182, 212, 0)); }
.to-transparent { --tw-gradient-to: transparent; }
.hover\:from-cyan-400:hover { --tw-gradient-from: #22d3ee; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(34, 211, 238, 0)); }
.hover\:to-sky-500:hover { --tw-gradient-to: #0ea5e9; }

/* ===== 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-white\/10 { border-color: rgba(255, 255, 255, 0.1); }
.border-cyan-500\/20 { border-color: rgba(6, 182, 212, 0.2); }
.border-cyan-500\/10 { border-color: rgba(6, 182, 212, 0.1); }
.border-amber-500\/10 { border-color: rgba(251, 191, 36, 0.1); }
.border-amber-500\/20 { border-color: rgba(251, 191, 36, 0.2); }
.rounded-full { border-radius: 9999px; }
.rounded-2xl { border-radius: 1rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-3xl { border-radius: 1.5rem; }
.hover\:border-cyan-400\/30:hover { border-color: rgba(34, 211, 238, 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); }
.shadow-cyan-500\/20 { box-shadow: 0 10px 15px -3px rgba(6, 182, 212, 0.2), 0 4px 6px -4px rgba(6, 182, 212, 0.1); }
.shadow-cyan-500\/10 { box-shadow: 0 10px 15px -3px rgba(6, 182, 212, 0.1), 0 4px 6px -4px rgba(6, 182, 212, 0.05); }

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

/* ===== HOVER ===== */
.hover\:text-white:hover { color: #ffffff; }
.hover\:text-cyan-400:hover { color: #22d3ee; }
.hover\:scale-110:hover { transform: scale(1.1); }

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

/* ===== OPACITY ===== */
.opacity-20 { opacity: 0.2; }
.opacity-15 { opacity: 0.15; }
.opacity-5 { opacity: 0.05; }
.opacity-80 { opacity: 0.8; }

/* ===== RESPONSIVE (md) ===== */
@media (min-width: 768px) {
  .md\:flex { display: flex; }
  .md\:inline { display: inline; }
  .md\:h-10 { height: 2.5rem; }
  .md\:text-right { text-align: right; }
}

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

/* ===== 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-glass {
  background: rgba(15,23,42,0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(56,189,248,0.08);
  border-radius: 60px;
  padding: 0.6rem 2rem;
}

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

/* ---- Card Glow ---- */
.card-glow {
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(56,189,248,0.06);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.card-glow:hover {
  border-color: rgba(56,189,248,0.25);
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 20px 60px -20px rgba(56,189,248,0.15);
}

/* ---- Text Brand Gradient ---- */
.text-brand {
  background: linear-gradient(135deg, #38bdf8, #0ea5e9, #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-brand-alt {
  background: linear-gradient(135deg, #fbbf24, #38bdf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- Hero Background ---- */
.hero-sticks {
  background: radial-gradient(ellipse at 20% 30%, rgba(56,189,248,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 70%, rgba(251,191,36,0.05) 0%, transparent 50%),
              #090b0e;
}

/* ---- Stripes Background ---- */
.stripes-bg {
  background-image: repeating-linear-gradient(45deg, rgba(56,189,248,0.02) 0px, rgba(56,189,248,0.02) 20px, transparent 20px, transparent 40px);
}

/* ---- Spec Table ---- */
.spec-grid td {
  padding: 1rem 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.03);
  font-size: 0.9rem;
}
.spec-grid td:first-child {
  color: rgba(255,255,255,0.4);
  font-weight: 300;
  width: 38%;
}
.spec-grid td:last-child {
  color: #e2e8f0;
  font-weight: 400;
}

/* ---- FAQ (details/summary) ---- */
.faq-stick summary {
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #e2e8f0;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}
.faq-stick summary::-webkit-details-marker { display: none; }
.faq-stick summary::after {
  content: "+";
  font-size: 1.6rem;
  color: #38bdf8;
  transition: transform 0.3s;
}
.faq-stick[open] summary::after {
  content: "−";
  transform: rotate(180deg);
}
.faq-stick p {
  padding: 0.75rem 0 1.5rem 0;
  color: #94a3b8;
  font-size: 0.9375rem;  /* enlarged from 0.9rem */
  line-height: 1.7;
}

/* ---- Number Cyber ---- */
.num-cyber {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 4rem;
  font-weight: 800;
  background: linear-gradient(135deg, #38bdf8, #0ea5e9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ---- HubSpot Form Styles ---- */
#hubspot-form .hs-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
#hubspot-form .hs-form label {
  color: #94a3b8;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
#hubspot-form .hs-form input,
#hubspot-form .hs-form textarea,
#hubspot-form .hs-form select {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  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 .hs-form input:focus,
#hubspot-form .hs-form textarea:focus,
#hubspot-form .hs-form select:focus {
  border-color: #38bdf8;
  box-shadow: 0 0 0 3px rgba(56,189,248,0.12);
}
#hubspot-form .hs-form .hs-button {
  background: #0ea5e9;
  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 .hs-form .hs-button:hover {
  background: #0284c7;
  box-shadow: 0 0 40px rgba(56,189,248,0.2);
  transform: scale(1.02);
}
#hubspot-form .hs-form .hs-error-msgs {
  color: #f87171;
  font-size: 0.75rem;
  list-style: none;
  padding: 0;
  margin: 0.25rem 0 0 0;
}
#hubspot-form .hs-form .hs-error-msgs li { padding-left: 0; }
#hubspot-form .hs-form .legal-consent-container {
  font-size: 0.75rem;
  color: #64748b;
  line-height: 1.5;
}
#hubspot-form .hs-form .legal-consent-container a {
  color: #60a5fa;
  text-decoration: underline;
}

/* ---- Breadcrumb ---- */
.breadcrumb a {
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
}
.breadcrumb a:hover { color: #7dd3fc; }

/* ---- Mobile Font Overrides ---- */
@media (max-width: 640px) {
  .hero-title { font-size: 2.6rem !important; }
  .section-title { font-size: 2rem !important; }
}

/* ---- Pulse Glow Animation ---- */
.pulse-glow {
  animation: pulseGlow 2.4s infinite;
}
@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(56,189,248,0.3); }
  70% { box-shadow: 0 0 0 20px rgba(56,189,248,0); }
  100% { box-shadow: 0 0 0 0 rgba(56,189,248,0); }
}

/* ---- Logo Stagger ---- */
.logo-stagger {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem 3rem;
  opacity: 0.6;
}
.logo-stagger span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: #334155;
}

/* ---- Image Placeholder ---- */
.img-placeholder {
  background: rgba(56,189,248,0.03);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(255,255,255,0.1);
  overflow: hidden;
}
.img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---- Table Cell Padding (spec table) ---- */
.pr-4 { padding-right: 1rem; }
