/* ========== STATIC TAILWIND EQUIVALENTS + CUSTOM STYLES ========== */
/* Page: DMX Controlled LED Lanyards */

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

/* ---------- Base ---------- */
body{font-family:'Inter',sans-serif;background:#000;color:#fff;scroll-behavior:smooth;overflow-x:hidden}
h1,h2,h3,h4{font-family:'Space Grotesk',sans-serif;text-transform:uppercase}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}

/* ---------- 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}

/* ---------- Custom Component Classes ---------- */
.text-gradient{background:linear-gradient(135deg,#a5b4fc,#06b6d4);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}
.card-glass{background:rgba(255,255,255,0.02);backdrop-filter:blur(6px);-webkit-backdrop-filter:blur(6px);border:1px solid rgba(255,255,255,0.06);border-radius:20px;transition:all .3s ease}
.section{padding:80px 0;position:relative}
.section-label{display:inline-block;font-size:13px;font-weight:600;letter-spacing:2px;text-transform:uppercase;color:#818cf8;margin-bottom:16px;background:rgba(99,102,241,0.1);padding:4px 14px;border-radius:20px;border:1px solid rgba(99,102,241,0.2)}
.stat-number{font-size:2.5rem;font-weight:700;font-family:'Space Grotesk',sans-serif;background:linear-gradient(135deg,#a5b4fc,#06b6d4);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}
.spec-row{display:flex;justify-content:space-between;padding:0.75rem 0;border-bottom:1px solid rgba(255,255,255,0.04)}
.spec-row:last-child{border-bottom:none}
.workflow-step{padding:1.5rem;border-radius:16px;background:rgba(255,255,255,0.015);border:1px solid rgba(255,255,255,0.05);position:relative;padding-left:3.5rem}
.workflow-step .num{position:absolute;left:1.2rem;top:1.4rem;width:28px;height:28px;border-radius:50%;background:linear-gradient(135deg,rgba(99,102,241,0.3),rgba(6,182,212,0.15));border:1px solid rgba(99,102,241,0.3);display:flex;align-items:center;justify-content:center;font-size:12px;font-weight:700;color:#a5b4fc;font-family:'Space Grotesk',sans-serif}
.stat-card{background:rgba(255,255,255,0.02);backdrop-filter:blur(8px);border:1px solid rgba(255,255,255,0.04)}
.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)}
.faq-a{display:none}
.faq-a.open{display:block}

/* ---------- Text Size Overrides (enlarged body, headings unchanged) ---------- */
main .text-sm,main .text-slate-400,main .text-slate-500,main .text-slate-600,main p{font-size:1.25rem!important;line-height:1.7!important}
.text-xs{font-size:1.125rem!important}

/* ---------- HubSpot Form ---------- */
#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}

/* ---------- Background Gradients ---------- */
.bg-gradient-to-t{background:linear-gradient(to top,var(--tw-gradient-stops))}
.bg-gradient-to-r{background:linear-gradient(to right,var(--tw-gradient-stops))}
.bg-gradient-to-br{background:linear-gradient(to bottom right,var(--tw-gradient-stops))}

/* ---------- Display ---------- */
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }

/* ---------- Flex Direction ---------- */
.flex-col { flex-direction: column; }

/* ---------- Flex Wrap ---------- */
.flex-wrap { flex-wrap: wrap; }

/* ---------- Flex ---------- */
.flex-1 { flex: 1; }
.flex-shrink-0 { flex-shrink: 0; }

/* ---------- Align Items ---------- */
.items-center { align-items: center; }
.items-start { align-items: flex-start; }

/* ---------- Justify Content ---------- */
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }

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

/* ---------- Position ---------- */
.fixed { position: fixed; }
.relative { position: relative; }
.absolute { position: absolute; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }

/* ---------- Top / Right / Bottom / Left ---------- */
.top-6 { top: 1.5rem; }
.top-3 { top: 0.75rem; }
.left-6 { left: 1.5rem; }
.right-6 { right: 1.5rem; }
.right-3 { right: 0.75rem; }
.right-8 { right: 2rem; }
.bottom-8 { bottom: 2rem; }
.-bottom-4 { bottom: -1rem; }
.-right-4 { right: -1rem; }

/* ---------- Z-Index ---------- */
.z-\[100\] { z-index: 100; }
.z-50 { z-index: 50; }
.z-10 { z-index: 10; }
.z-\[1\] { z-index: 1; }
.z-0 { z-index: 0; }

/* ---------- Width ---------- */
.w-auto { width: auto; }
.w-full { width: 100%; }
.w-10 { width: 2.5rem; }
.w-px { width: 1px; }

/* ---------- Height ---------- */
.h-8 { height: 2rem; }
.h-10 { height: 2.5rem; }
.h-40 { height: 10rem; }
.h-52 { height: 13rem; }
.h-72 { height: 18rem; }
.h-80 { height: 20rem; }
.h-full { height: 100%; }

/* ---------- Min Height ---------- */
.min-h-screen { min-height: 100vh; }

/* ---------- Max Width ---------- */
.max-w-7xl { max-width: 80rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-xl { max-width: 36rem; }
.max-w-\[200px\] { max-width: 200px; }

/* ---------- Margin ---------- */
.mx-auto { margin-left: auto; margin-right: auto; }
.mr-2 { margin-right: 0.5rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mt-32 { margin-top: 8rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-14 { margin-bottom: 3.5rem; }
.mb-16 { margin-bottom: 4rem; }

/* ---------- Padding ---------- */
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-7 { padding: 1.75rem; }
.p-8 { padding: 2rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.px-2\.5 { padding-left: 0.625rem; padding-right: 0.625rem; }
.py-0\.5 { padding-top: 0.125rem; padding-bottom: 0.125rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-1\.5 { padding-top: 0.375rem; padding-bottom: 0.375rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-3\.5 { padding-top: 0.875rem; padding-bottom: 0.875rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-28 { padding-top: 7rem; padding-bottom: 7rem; }
.py-32 { padding-top: 8rem; padding-bottom: 8rem; }
.pt-12 { padding-top: 3rem; }
.pt-20 { padding-top: 5rem; }

/* ---------- Typography ---------- */
.text-xs { font-size: 1.125rem; }
.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.1875rem; }
.text-xl { font-size: 1.25rem; }
.text-3xl { font-size: 1.875rem; line-height: 1.2; }
.text-4xl { font-size: 2.25rem; line-height: 1.2; }
.text-5xl { font-size: 3rem; line-height: 1.1; }
.text-\[8px\] { font-size: 8px; }
.text-\[9px\] { font-size: 9px; }
.text-\[10px\] { font-size: 10px; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-light { font-weight: 300; }
.italic { font-style: italic; }
.tracking-\[0\.3em\] { letter-spacing: 0.3em; }
.tracking-\[0\.5em\] { letter-spacing: 0.5em; }
.tracking-\[0\.8em\] { letter-spacing: 0.8em; }
.tracking-wider { letter-spacing: 0.05em; }
.tracking-widest { letter-spacing: 0.1em; }
.leading-\[1\.05\] { line-height: 1.05; }
.leading-relaxed { line-height: 1.625; }
.text-left { text-align: left; }
.text-center { text-align: center; }
.uppercase { text-transform: uppercase; }

/* ---------- Text Colors ---------- */
.text-white { color: #fff; }
.text-indigo-400 { color: #818cf8; }
.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; }
.text-slate-800 { color: #1e293b; }

/* ---------- Backgrounds ---------- */
.bg-black { background: #000; }
.bg-indigo-600 { background: #6366f1; }
.bg-\[\#25D366\] { background: #25D366; }

/* ---------- Borders ---------- */
.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-white\/20 { border-color: rgba(255,255,255,0.2); }
.border-indigo-500\/20 { border-color: rgba(99,102,241,0.2); }
.border-indigo-500\/25 { border-color: rgba(99,102,241,0.25); }
.border-cyan-500\/10 { border-color: rgba(6,182,212,0.1); }
.border-cyan-500\/20 { border-color: rgba(6,182,212,0.2); }

/* ---------- Border Radius ---------- */
.rounded-full { border-radius: 9999px; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }

/* ---------- Overflow ---------- */
.overflow-hidden { overflow: hidden; }

/* ---------- Object Fit ---------- */
.object-cover { object-fit: cover; }

/* ---------- Opacity ---------- */
.opacity-30 { opacity: 0.3; }

/* ---------- Cursor ---------- */
.cursor-pointer { cursor: pointer; }

/* ---------- Pointer Events ---------- */
.pointer-events-none { pointer-events: none; }

/* ---------- Space ---------- */
.space-y-0 > * + * { margin-top: 0; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-5 > * + * { margin-top: 1.25rem; }

/* ---------- Transitions ---------- */
.transition { transition: all 0.3s ease; }
.duration-300 { transition-duration: 0.3s; }

/* ---------- Hover States ---------- */
.hover\:text-indigo-400:hover { color: #818cf8; }
.hover\:text-indigo-300:hover { color: #a5b4fc; }
.hover\:border-white\/20:hover { border-color: rgba(255,255,255,0.2); }
.hover\:bg-indigo-500:hover { background: #6366f1; }
.hover\:scale-110:hover { transform: scale(1.1); }

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

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

/* ---------- Responsive (768px+) ---------- */
@media (min-width: 768px) {
  .md\:flex { display: flex; }
  .md\:inline { display: inline; }
  .md\:block { display: block; }
  .md\:flex-row { flex-direction: row; }
  .md\:text-7xl { font-size: 4.5rem; line-height: 1.1; }
  .md\:text-5xl { font-size: 3rem; line-height: 1.1; }
  .md\:text-4xl { font-size: 2.25rem; line-height: 1.2; }
  .md\:text-right { text-align: right; }
  .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); }
  .md\:h-10 { height: 2.5rem; }
  .md\:h-full { height: 100%; }
  .md\:p-12 { padding: 3rem; }
  .nav-bg { border-radius: 40px; padding: 0.5rem 1.2rem; }
}

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