/* ============================================================
   Light Up Lanyards – Glow Effects, Models & Uses Explained
   Static CSS (Tailwind equivalents + custom styles)
   ============================================================ */

/* ---------- Reset & Base ---------- */
*{margin:0;padding:0;box-sizing:border-box}
body{font-family:'Inter',sans-serif;background:#000;color:#fff;scroll-behavior:smooth;overflow-x:hidden;line-height:1.6}
h1,h2,h3,h4{font-family:'Space Grotesk',sans-serif}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}

/* ---------- Typography Scale ---------- */
.text-xs{font-size:0.8125rem;line-height:1.5}        /* 13px */
.text-sm{font-size:0.9375rem;line-height:1.6}        /* 15px */
.text-lg{font-size:1.25rem;line-height:1.75}         /* 20px */
.text-xl{font-size:1.25rem;line-height:1.5}          /* 20px */
.text-2xl{font-size:1.5rem;line-height:1.4}          /* 24px */
.text-3xl{font-size:1.875rem;line-height:1.25}       /* 30px */
.text-5xl{font-size:3rem;line-height:1.05}           /* 48px */
.text-\[8px\]{font-size:8px}
.text-\[9px\]{font-size:9px}
.text-\[10px\]{font-size:0.6875rem}                  /* 11px */
.md\:text-4xl{font-size:2.25rem;line-height:1.2}
.md\:text-7xl{font-size:4.5rem;line-height:1.05}
.font-bold{font-weight:700}
.font-semibold{font-weight:600}
.leading-\[1\.05\]{line-height:1.05}
.leading-relaxed{line-height:1.75}
.tracking-wider{letter-spacing:0.05em}
.tracking-\[0\.3em\]{letter-spacing:0.3em}
.tracking-\[0\.5em\]{letter-spacing:0.5em}
.uppercase{text-transform:uppercase}
.text-center{text-align:center}
.font-\[\'Space\+Grotesk\'\]{font-family:'Space Grotesk',sans-serif}
.inline-block{display:inline-block}

/* ---------- Body text enlargement (headings untouched) ---------- */
section p,section li{font-size:1.125rem!important;line-height:1.75!important}

/* ---------- Text Colors ---------- */
.text-white{color:#fff}
.text-slate-400{color:#94a3b8}
.text-slate-500{color:#64748b}
.text-slate-600{color:#475569}
.text-indigo-400{color:#818cf8}
.text-white\/70{color:rgba(255,255,255,0.7)}
.text-white\/80{color:rgba(255,255,255,0.8)}
.text-white\/90{color:rgba(255,255,255,0.9)}
.hover\:text-indigo-400:hover{color:#818cf8}
.hover\:text-white:hover{color:#fff}

/* ---------- Backgrounds & Gradients ---------- */
.bg-indigo-600{background-color:#4f46e5}
.hover\:bg-indigo-500:hover{background-color:#6366f1}
.bg-white\/\[0\.01\]{background-color:rgba(255,255,255,0.01)}
.bg-indigo-500\/10{background-color:rgba(99,102,241,0.1)}
.bg-\[\#25D366\]{background-color:#25D366}
.bg-gradient-to-b{background-image:linear-gradient(to bottom,var(--tw-gradient-stops))}
.from-black\/10{--tw-gradient-from:rgba(0,0,0,0.1);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to,rgba(0,0,0,0))}
.from-black\/5{--tw-gradient-from:rgba(0,0,0,0.05);--tw-gradient-stops:var(--tw-gradient-from),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)}
.to-black\/30{--tw-gradient-to:rgba(0,0,0,0.3)}
.to-black\/10{--tw-gradient-to:rgba(0,0,0,0.1)}
.opacity-20{opacity:0.2}
.opacity-35{opacity:0.35}

/* ---------- Borders ---------- */
.border{border-width:1px;border-style:solid}
.border-t{border-top-width:1px;border-top-style:solid}
.border-b{border-bottom-width:1px;border-bottom-style:solid}
.border-white\/5{border-color:rgba(255,255,255,0.05)}
.border-white\/8{border-color:rgba(255,255,255,0.08)}
.hover\:border-indigo-500\/15:hover{border-color:rgba(99,102,241,0.15)}
.rounded-full{border-radius:9999px}
.rounded-2xl{border-radius:1rem}

/* ---------- Layout: Flex ---------- */
.flex{display:flex}
.inline-flex{display:inline-flex}
.flex-wrap{flex-wrap:wrap}
.flex-col{flex-direction:column}
.items-center{align-items:center}
.justify-center{justify-content:center}
.justify-between{justify-content:space-between}
.hidden{display:none}
.md\:flex{display:flex}
.md\:inline{display:inline}
.md\:flex-row{flex-direction:row}

/* ---------- Layout: Grid ---------- */
.grid{display:grid}
.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\:grid-cols-5{grid-template-columns:repeat(5,1fr)}

/* ---------- Position ---------- */
.fixed{position:fixed}
.absolute{position:absolute}
.relative{position:relative}
.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}
.bottom-8{bottom:2rem}
.right-8{right:2rem}
.-top-24{top:-6rem}
.-right-24{right:-6rem}
.z-0{z-index:0}
.z-10{z-index:10}
.z-50{z-index:50}
.z-\[1\]{z-index:1}
.z-\[100\]{z-index:100}
.object-cover{object-fit:cover}
.overflow-hidden{overflow:hidden}

/* ---------- Sizing ---------- */
.w-full{width:100%}
.h-full{height:100%}
.w-auto{width:auto}
.h-8{height:2rem}
.w-\[500px\]{width:500px}
.h-\[500px\]{height:500px}
.min-h-screen{min-height:100vh}
.md\:h-10{height:2.5rem}

/* ---------- Containers ---------- */
.max-w-xl{max-width:36rem}
.max-w-2xl{max-width:42rem}
.max-w-3xl{max-width:48rem}
.max-w-4xl{max-width:56rem}
.max-w-6xl{max-width:72rem}
.max-w-7xl{max-width:80rem}
.mx-auto{margin-left:auto;margin-right:auto}

/* ---------- Spacing ---------- */
.p-4{padding:1rem}
.p-6{padding:1.5rem}
.p-8{padding:2rem}
.px-2{padding-left:0.5rem;padding-right:0.5rem}
.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}
.py-0\.5{padding-top:0.125rem;padding-bottom:0.125rem}
.py-1\.5{padding-top:0.375rem;padding-bottom:0.375rem}
.py-3\.5{padding-top:0.875rem;padding-bottom:0.875rem}
.py-5{padding-top:1.25rem;padding-bottom:1.25rem}
.py-16{padding-top:4rem;padding-bottom:4rem}
.pt-8{padding-top:2rem}
.mt-1{margin-top:0.25rem}
.mt-3{margin-top:0.75rem}
.mt-6{margin-top:1.5rem}
.mt-8{margin-top:2rem}
.mt-12{margin-top:3rem}
.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-14{margin-bottom:3.5rem}
.gap-1\.5{gap:0.375rem}
.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-x-6{column-gap:1.5rem}
.gap-y-2{row-gap:0.5rem}
.space-y-3 > * + *{margin-top:0.75rem}
.md\:p-12{padding:3rem}

/* ---------- Effects ---------- */
.transition{transition:all 0.3s ease}
.transition-transform{transition:transform 0.3s ease}
.duration-300{transition-duration:300ms}
.hover\:scale-110:hover{transform:scale(1.1)}
.shadow-lg{box-shadow:0 10px 15px -3px rgba(0,0,0,0.1),0 4px 6px -4px rgba(0,0,0,0.1)}
.cursor-pointer{cursor:pointer}

/* ---------- Custom: 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}
@media(max-width:768px){.nav-bg{border-radius:40px;padding:0.5rem 1.2rem}}

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

/* ---------- Custom: Glow orb ---------- */
.glow-orb{position:absolute;border-radius:50%;filter:blur(100px);pointer-events:none;opacity:0.3}

/* ---------- Custom: Section ---------- */
.section{padding:90px 0;position:relative}
.section-tag{display:inline-block;font-size:11px;font-weight:600;letter-spacing:2px;text-transform:uppercase;color:#818cf8;margin-bottom:16px;background:rgba(99,102,241,0.08);padding:5px 16px;border-radius:20px;border:1px solid rgba(99,102,241,0.18)}

/* ---------- Custom: Glow swatch card ---------- */
.glow-card{border-radius:16px;padding:1.5rem;text-align:center;border:1px solid rgba(255,255,255,0.05);background:rgba(255,255,255,0.01);transition:all .3s}
.glow-card:hover{transform:translateY(-2px);border-color:rgba(99,102,241,0.15)}
.glow-card .glow-dot{width:56px;height:56px;border-radius:50%;margin:0 auto 0.9rem;box-shadow:0 0 24px 4px rgba(255,255,255,0.12)}
.glow-card .glow-name{color:#fff;font-weight:700;font-size:0.95rem;margin-bottom:0.2rem}
.glow-card .glow-role{color:#64748b;font-size:0.72rem;line-height:1.4}
.glow-card .glow-model{display:inline-block;margin-top:0.75rem;font-size:0.65rem;color:#818cf8;border:1px solid rgba(99,102,241,0.15);background:rgba(99,102,241,0.05);border-radius:20px;padding:0.25rem 0.8rem}

/* ---------- Custom: Mode bar ---------- */
.mode-row{display:flex;align-items:center;gap:1rem;padding:0.9rem 0;border-bottom:1px solid rgba(255,255,255,0.04)}
.mode-row:last-child{border-bottom:none}
.mode-row .m-name{width:110px;flex-shrink:0;color:#fff;font-weight:600;font-size:0.9rem}
.mode-row .m-track{flex:1;height:10px;border-radius:5px;background:rgba(255,255,255,0.04);overflow:hidden}
.mode-row .m-fill{height:100%;border-radius:5px}
.mode-row .m-freq{width:60px;flex-shrink:0;text-align:right;color:#22d3ee;font-size:0.8rem;font-weight:700}

/* ---------- Custom: Wear card ---------- */
.wear-card{border-radius:16px;border:1px solid rgba(255,255,255,0.04);background:rgba(255,255,255,0.005);padding:1.5rem;transition:border-color .3s}
.wear-card:hover{border-color:rgba(99,102,241,0.15)}
.wear-card .w-icon{font-size:1.6rem;margin-bottom:0.7rem}
.wear-card h3{color:#fff;font-weight:700;font-size:1.05rem;margin-bottom:0.4rem}
.wear-card p{color:#94a3b8;font-size:0.85rem;line-height:1.55}

/* ---------- Custom: Use image card ---------- */
.use-card{border-radius:16px;overflow:hidden;border:1px solid rgba(255,255,255,0.04);background:rgba(255,255,255,0.005)}
.use-card img{width:100%;height:150px;object-fit:cover}
.use-card .use-body{padding:1.25rem}
.use-card .use-body h3{color:#fff;font-weight:700;font-size:1rem;margin-bottom:0.4rem}
.use-card .use-body p{color:#94a3b8;font-size:0.85rem;line-height:1.55}

/* ---------- Custom: Mode chip ---------- */
.mode-chip{display:inline-block}

/* ---------- Custom: FAQ ---------- */
.faq-a{display:none}.faq-a.open{display:block}

/* ---------- Responsive (768px+) ---------- */
@media (min-width: 768px) {
  .md\:flex{display:flex}
  .md\:inline{display:inline}
  .md\:flex-row{flex-direction:row}
  .md\:h-10{height:2.5rem}
  .md\:p-12{padding:3rem}
  .md\:text-4xl{font-size:2.25rem;line-height:1.2}
  .md\:text-7xl{font-size:4.5rem;line-height:1.05}
  .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\:grid-cols-5{grid-template-columns:repeat(5,1fr)}
}
