/* ============================================================
   MIRELUNA — Design System
   Dark premium-tech · aurora / moon-glow aesthetic
   Fonts: Syne (display) · Outfit (body) · JetBrains Mono (labels)
   ============================================================ */

/* ----------  TOKENS  ---------- */
:root {
  /* surfaces */
  --bg: #07070c;
  --bg-2: #0a0a14;
  --bg-3: #101022;
  --surface: rgba(255, 255, 255, 0.035);
  --surface-2: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);

  /* ink */
  --ink: #f4f3fb;
  --ink-soft: #c9c8db;
  --muted: #8a89a3;
  --faint: #5d5c74;

  /* aurora accents */
  --violet: #8b5cf6;
  --violet-2: #a78bfa;
  --indigo: #6366f1;
  --cyan: #22d3ee;
  --teal: #2dd4bf;
  --pink: #f472b6;
  --moon: #cdd6ff;

  --accent: var(--violet);
  --aurora: linear-gradient(115deg, #8b5cf6 0%, #6366f1 32%, #22d3ee 66%, #2dd4bf 100%);
  --aurora-soft: linear-gradient(115deg, #8b5cf6, #22d3ee 60%, #f472b6);

  /* glow */
  --glow-violet: 0 0 60px -12px rgba(139, 92, 246, 0.6);
  --glow-cyan: 0 0 60px -12px rgba(34, 211, 238, 0.5);
  --shadow-card: 0 30px 70px -30px rgba(0, 0, 0, 0.9);
  --shadow-pop: 0 24px 60px -20px rgba(139, 92, 246, 0.45);

  /* type */
  --font-display: "Syne", "Outfit", sans-serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;

  /* metrics */
  --radius: 18px;
  --radius-lg: 28px;
  --radius-sm: 12px;
  --container: 1240px;
  --nav-h: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ----------  RESET  ---------- */
*,
*::before,
*::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-size: 16px;
  letter-spacing: 0.1px;
  overflow-x: hidden;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
input, textarea, select { font: inherit; color: inherit; }
ul { list-style: none; padding: 0; }
::selection { background: rgba(139, 92, 246, 0.4); color: #fff; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.05; letter-spacing: -0.02em; }

/* ----------  ATMOSPHERE (global animated background)  ---------- */
.atmosphere {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
  background:
    radial-gradient(1200px 800px at 80% -10%, rgba(99, 102, 241, 0.12), transparent 60%),
    radial-gradient(900px 700px at 0% 100%, rgba(34, 211, 238, 0.08), transparent 60%),
    var(--bg);
}
.atmosphere .blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  mix-blend-mode: screen;
  animation: auroraDrift 26s var(--ease) infinite alternate;
}
.atmosphere .blob.v {
  width: 46vw; height: 46vw; left: -8vw; top: -10vw;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.9), transparent 65%);
}
.atmosphere .blob.c {
  width: 40vw; height: 40vw; right: -6vw; top: 18vh;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.75), transparent 65%);
  animation-delay: -8s; animation-duration: 32s;
}
.atmosphere .blob.p {
  width: 34vw; height: 34vw; left: 28vw; bottom: -14vw;
  background: radial-gradient(circle, rgba(244, 114, 182, 0.55), transparent 65%);
  animation-delay: -16s; animation-duration: 38s;
}
@keyframes auroraDrift {
  0%   { transform: translate(0,0) scale(1); }
  50%  { transform: translate(6vw, 4vh) scale(1.18); }
  100% { transform: translate(-4vw, -3vh) scale(0.95); }
}

/* faint moving grid */
.atmosphere .grid {
  position: absolute; inset: -2px;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 50% 30%, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(circle at 50% 30%, #000 0%, transparent 75%);
  animation: gridPan 40s linear infinite;
}
@keyframes gridPan { to { background-position: 64px 64px; } }

/* grain overlay */
.grain {
  position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* star field canvas */
#starfield { position: fixed; inset: 0; z-index: -1; pointer-events: none; }

/* cursor glow */
.cursor-glow {
  position: fixed; top: 0; left: 0; width: 460px; height: 460px;
  margin: -230px 0 0 -230px; border-radius: 50%; pointer-events: none; z-index: 1;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.12), transparent 60%);
  transition: opacity 0.4s; opacity: 0; mix-blend-mode: screen;
}

/* ----------  LAYOUT  ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.section { position: relative; padding: clamp(72px, 11vw, 150px) 0; }
.section--tight { padding: clamp(48px, 7vw, 88px) 0; }
main { position: relative; z-index: 1; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--violet-2);
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: linear-gradient(90deg, var(--violet), transparent); }

.section-head { max-width: 640px; margin-bottom: clamp(36px, 5vw, 60px); }
.section-head h2 { font-size: clamp(2rem, 4.6vw, 3.4rem); margin: 18px 0 14px; }
.section-head p { color: var(--muted); font-size: 1.05rem; }
.text-aurora {
  background: var(--aurora); -webkit-background-clip: text; background-clip: text;
  color: transparent; background-size: 200% 200%; animation: gradientShift 8s ease infinite;
}
@keyframes gradientShift { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }

/* ----------  HEADER / NAV  ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60; height: var(--nav-h);
  display: flex; align-items: center;
  transition: background 0.4s, border-color 0.4s, backdrop-filter 0.4s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(8, 8, 16, 0.72);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: var(--border);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; width: 100%; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-family: var(--font-display); font-weight: 800; font-size: 1.32rem; letter-spacing: -0.01em; }
.brand .mark {
  width: 34px; height: 34px; border-radius: 11px; position: relative; flex: none;
  background: var(--aurora); box-shadow: var(--glow-violet);
  display: grid; place-items: center; overflow: hidden;
}
.brand .mark::after {
  content: ""; position: absolute; width: 16px; height: 16px; border-radius: 50%;
  background: var(--bg); right: 4px; top: 4px;
  box-shadow: 0 0 0 2px rgba(255,255,255,0.08);
}
.brand .mark::before {
  content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, transparent 40%, rgba(255,255,255,0.5) 50%, transparent 60%);
  transform: translateX(-120%); animation: shimmer 5s ease-in-out infinite;
}
@keyframes shimmer { 0%,100% { transform: translateX(-120%); } 55%,80% { transform: translateX(120%); } }

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-size: 0.94rem; color: var(--ink-soft); position: relative; padding: 6px 0; transition: color 0.25s; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 100%;
  background: var(--aurora); transform: scaleX(0); transform-origin: left; transition: transform 0.35s var(--ease); border-radius: 2px;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--ink); }

.nav-actions { display: flex; align-items: center; gap: 14px; }
.icon-btn {
  position: relative; width: 44px; height: 44px; border-radius: 12px;
  border: 1px solid var(--border); background: var(--surface);
  display: grid; place-items: center; transition: 0.3s var(--ease);
}
.icon-btn:hover { border-color: var(--border-strong); background: var(--surface-2); transform: translateY(-2px); }
.icon-btn svg { width: 20px; height: 20px; stroke: var(--ink); }
.cart-count {
  position: absolute; top: -6px; right: -6px; min-width: 20px; height: 20px; padding: 0 5px;
  border-radius: 10px; background: var(--aurora); color: #fff; font-size: 11px; font-weight: 700;
  display: grid; place-items: center; box-shadow: var(--glow-violet);
  transform: scale(0); transition: transform 0.3s var(--ease);
}
.cart-count.show { transform: scale(1); }
.cart-count.bump { animation: bump 0.4s var(--ease); }
@keyframes bump { 40% { transform: scale(1.4); } }

.nav-toggle { display: none; }

/* ----------  BUTTONS  ---------- */
.btn {
  position: relative; display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px; border-radius: 999px; font-weight: 600; font-size: 0.96rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s;
  white-space: nowrap; overflow: hidden; isolation: isolate;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--aurora); background-size: 180% 180%; color: #0a0712; box-shadow: var(--shadow-pop); animation: gradientShift 9s ease infinite; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 28px 70px -18px rgba(139, 92, 246, 0.6); }
.btn-primary::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(120deg, transparent 35%, rgba(255,255,255,0.55) 50%, transparent 65%);
  transform: translateX(-130%);
}
.btn-primary:hover::after { animation: sheen 0.9s var(--ease); }
@keyframes sheen { to { transform: translateX(130%); } }

.btn-ghost { border: 1px solid var(--border-strong); color: var(--ink); background: var(--surface); }
.btn-ghost:hover { background: var(--surface-2); transform: translateY(-3px); border-color: var(--violet); }
.btn-block { width: 100%; justify-content: center; }
.btn-lg { padding: 17px 34px; font-size: 1.02rem; }

/* magnetic wrapper — must NOT override .btn's inline-flex (keeps icon on the same line) */
.magnetic { will-change: transform; }
.btn svg { flex: none; }

/* ----------  MARQUEE  ---------- */
.marquee {
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 18px 0; overflow: hidden; background: rgba(255,255,255,0.015);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee-track { display: flex; gap: 56px; width: max-content; animation: marquee 32s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item { display: inline-flex; align-items: center; gap: 14px; font-family: var(--font-mono); font-size: 0.82rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); }
.marquee-item .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--aurora); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ----------  REVEAL  ---------- */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: 0.08s; }
[data-reveal][data-delay="2"] { transition-delay: 0.16s; }
[data-reveal][data-delay="3"] { transition-delay: 0.24s; }
[data-reveal][data-delay="4"] { transition-delay: 0.32s; }
[data-reveal][data-delay="5"] { transition-delay: 0.40s; }

/* ----------  CARD PRIMITIVES  ---------- */
.card {
  position: relative; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden; transition: 0.4s var(--ease);
}
.glass {
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid var(--border); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
}
/* animated gradient border on hover */
.glow-border { position: relative; }
.glow-border::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px; pointer-events: none;
  background: conic-gradient(from var(--a, 0deg), transparent, var(--accent), transparent 40%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity 0.4s;
}
.glow-border:hover::before { opacity: 1; animation: borderSpin 4s linear infinite; }
@property --a { syntax: "<angle>"; inherits: false; initial-value: 0deg; }
@keyframes borderSpin { to { --a: 360deg; } }

/* ----------  PRODUCT CARD  ---------- */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 24px; }
.product-card {
  --accent: var(--violet);
  position: relative; display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden; transition: transform 0.45s var(--ease), border-color 0.4s, box-shadow 0.45s;
}
.product-card:hover { transform: translateY(-8px); border-color: color-mix(in srgb, var(--accent) 55%, transparent); box-shadow: 0 40px 80px -34px color-mix(in srgb, var(--accent) 60%, #000); }
.product-media {
  position: relative; aspect-ratio: 1 / 1; overflow: hidden;
  background:
    radial-gradient(120% 120% at 50% 0%, color-mix(in srgb, var(--accent) 26%, transparent), transparent 60%),
    var(--bg-2);
}
.product-media::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(60% 50% at 50% 105%, color-mix(in srgb, var(--accent) 40%, transparent), transparent 70%);
  opacity: 0.6;
}
.product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); position: relative; z-index: 1; }
.product-card:hover .product-media img { transform: scale(1.07) translateY(-2%); }
.product-media .placeholder { position: absolute; inset: 0; display: grid; place-items: center; color: var(--faint); font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.2em; }

.badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 6px 11px; border-radius: 999px; background: rgba(8,8,16,0.7);
  border: 1px solid var(--border-strong); color: var(--ink); backdrop-filter: blur(8px);
}
.badge.aurora { background: var(--aurora); color: #0a0712; border: none; font-weight: 700; }

.wish-btn {
  position: absolute; top: 12px; right: 12px; z-index: 2; width: 38px; height: 38px; border-radius: 50%;
  background: rgba(8,8,16,0.55); border: 1px solid var(--border); display: grid; place-items: center;
  opacity: 0; transform: translateY(-6px); transition: 0.35s var(--ease); backdrop-filter: blur(8px);
}
.product-card:hover .wish-btn { opacity: 1; transform: none; }
.wish-btn svg { width: 17px; height: 17px; stroke: var(--ink); fill: none; transition: 0.3s; }
.wish-btn.on svg { fill: var(--pink); stroke: var(--pink); }

.product-body { padding: 20px 20px 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.product-cat { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: color-mix(in srgb, var(--accent) 80%, #fff); }
.product-name { font-size: 1.2rem; font-family: var(--font-display); font-weight: 700; }
.product-desc { font-size: 0.88rem; color: var(--muted); flex: 1; }
.product-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 10px; gap: 12px; }
.price { display: flex; align-items: baseline; gap: 8px; font-family: var(--font-display); }
.price .now { font-size: 1.32rem; font-weight: 700; }
.price .was { font-size: 0.92rem; color: var(--faint); text-decoration: line-through; }
.rating { display: inline-flex; align-items: center; gap: 7px; font-size: 0.82rem; color: var(--ink-soft); }
.stars { display: inline-flex; align-items: center; gap: 3px; }
.rating svg { width: 14px; height: 14px; fill: #fbbf24; }

.add-btn {
  width: 42px; height: 42px; border-radius: 12px; flex: none;
  background: color-mix(in srgb, var(--accent) 18%, transparent); border: 1px solid color-mix(in srgb, var(--accent) 40%, transparent);
  display: grid; place-items: center; transition: 0.3s var(--ease);
}
.add-btn svg { width: 19px; height: 19px; stroke: var(--ink); }
.add-btn:hover { background: var(--accent); transform: translateY(-2px) rotate(90deg); }

/* ----------  STATS  ---------- */
.stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.stat-card {
  --accent: var(--violet);
  position: relative; overflow: hidden; text-align: center;
  padding: 40px 28px 34px; border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015));
  transition: transform 0.45s var(--ease), border-color 0.45s, box-shadow 0.45s;
}
.stat-card::before {
  content: ""; position: absolute; top: -42%; left: 50%; transform: translateX(-50%);
  width: 78%; height: 78%; border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 42%, transparent), transparent 70%);
  opacity: 0.5; filter: blur(22px); transition: opacity 0.45s; pointer-events: none;
}
.stat-card:hover {
  transform: translateY(-8px);
  border-color: color-mix(in srgb, var(--accent) 50%, transparent);
  box-shadow: 0 40px 80px -38px color-mix(in srgb, var(--accent) 65%, #000);
}
.stat-card:hover::before { opacity: 0.9; }
.stat-ico {
  position: relative; z-index: 1; width: 62px; height: 62px; margin: 0 auto 20px;
  border-radius: 18px; display: grid; place-items: center;
  background: color-mix(in srgb, var(--accent) 16%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent) 38%, transparent);
  box-shadow: 0 0 30px -8px color-mix(in srgb, var(--accent) 70%, transparent);
}
.stat-ico svg { width: 28px; height: 28px; stroke: var(--accent); fill: none; }
.stat-ico::after {
  content: ""; position: absolute; inset: -7px; border-radius: 22px;
  border: 1px solid color-mix(in srgb, var(--accent) 45%, transparent);
  animation: statRing 3.4s ease-out infinite;
}
@keyframes statRing { 0% { transform: scale(0.86); opacity: 0.8; } 100% { transform: scale(1.25); opacity: 0; } }
.stat-card .num {
  position: relative; z-index: 1; font-family: var(--font-display); font-weight: 800; line-height: 1;
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  background: linear-gradient(180deg, #ffffff 35%, color-mix(in srgb, var(--accent) 78%, #ffffff));
  -webkit-background-clip: text; background-clip: text; color: transparent; -webkit-text-fill-color: transparent;
}
.stat-card .num span { color: inherit; -webkit-text-fill-color: inherit; }
.stat-card .lbl { position: relative; z-index: 1; margin-top: 12px; font-weight: 600; font-size: 1.05rem; }
.stat-card .sub { position: relative; z-index: 1; margin-top: 5px; color: var(--muted); font-size: 0.85rem; }

/* ----------  FLOATING DECOR ELEMENTS  ---------- */
.decor { position: absolute; pointer-events: none; z-index: 0; }
.orb {
  border-radius: 50%;
  background: radial-gradient(circle at 32% 30%, rgba(255,255,255,0.5), color-mix(in srgb, var(--accent) 70%, transparent) 45%, transparent 72%);
  box-shadow: 0 0 50px -8px color-mix(in srgb, var(--accent) 60%, transparent);
  animation: float 9s ease-in-out infinite;
}
@keyframes float { 0%,100% { transform: translateY(0) translateX(0); } 50% { transform: translateY(-22px) translateX(8px); } }
.float-slow { animation: float 14s ease-in-out infinite; }
.spin-ring {
  border-radius: 50%; border: 1px dashed rgba(255,255,255,0.16);
  animation: spin 28s linear infinite;
}
.spin-ring.rev { animation-direction: reverse; animation-duration: 40s; }
@keyframes spin { to { transform: rotate(360deg); } }
.ring-pulse { border-radius: 50%; border: 1px solid color-mix(in srgb, var(--accent) 50%, transparent); animation: ringPulse 4s ease-out infinite; }
@keyframes ringPulse { 0% { transform: scale(0.7); opacity: 0.9; } 100% { transform: scale(1.5); opacity: 0; } }

.tick { color: var(--violet-2); animation: float 7s ease-in-out infinite; }
.plus-deco { position: absolute; color: rgba(255,255,255,0.18); font-family: var(--font-mono); font-size: 1.1rem; animation: twinkle 3.5s ease-in-out infinite; }
@keyframes twinkle { 0%,100% { opacity: 0.2; transform: scale(0.9); } 50% { opacity: 0.9; transform: scale(1.15); } }

/* ----------  HERO  ---------- */
.hero { position: relative; padding-top: calc(var(--nav-h) + clamp(40px, 8vw, 90px)); padding-bottom: clamp(40px, 7vw, 90px); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: center; }
.hero h1 { font-size: clamp(2.7rem, 7vw, 5.2rem); letter-spacing: -0.03em; }
.hero p.lead { color: var(--ink-soft); font-size: clamp(1.05rem, 1.6vw, 1.22rem); max-width: 520px; margin: 24px 0 32px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-pills { display: flex; gap: 22px; margin-top: 38px; flex-wrap: wrap; }
.hero-pill { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; color: var(--ink-soft); }
.hero-pill svg { width: 18px; height: 18px; stroke: var(--cyan); }

.hero-visual { position: relative; aspect-ratio: 1/1; display: grid; place-items: center; }
.hero-stage {
  position: relative; width: 86%; aspect-ratio: 1/1; border-radius: 50%;
  background: radial-gradient(circle at 50% 45%, rgba(139,92,246,0.32), rgba(34,211,238,0.12) 45%, transparent 70%);
  display: grid; place-items: center;
}
.hero-stage .ring-a { position: absolute; inset: 4%; border-radius: 50%; border: 1px solid rgba(255,255,255,0.1); }
.hero-stage .ring-b { position: absolute; inset: 16%; border-radius: 50%; border: 1px dashed rgba(255,255,255,0.14); animation: spin 30s linear infinite; }
.hero-stage .ring-c { position: absolute; inset: 28%; border-radius: 50%; border: 1px solid rgba(34,211,238,0.25); animation: spin 22s linear infinite reverse; }
.hero-product { width: 74%; position: relative; z-index: 2; filter: drop-shadow(0 40px 60px rgba(0,0,0,0.7)); animation: float 8s ease-in-out infinite; border-radius: 30px; }
.orbit-dot { position: absolute; top: 50%; left: 50%; width: 0; height: 0; }
.orbit-dot span { position: absolute; width: 12px; height: 12px; border-radius: 50%; background: var(--aurora); box-shadow: var(--glow-violet); }
.orbit-1 { animation: spin 14s linear infinite; }
.orbit-1 span { transform: translate(160px, 0); }
.orbit-2 { animation: spin 20s linear infinite reverse; }
.orbit-2 span { transform: translate(-190px, 60px); width: 8px; height: 8px; background: var(--cyan); box-shadow: var(--glow-cyan); }

/* floating spec chips around hero */
.spec-chip {
  position: absolute; z-index: 3; display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 14px; border-radius: 14px; font-size: 0.8rem; font-weight: 500;
  background: rgba(10,10,20,0.7); border: 1px solid var(--border-strong); backdrop-filter: blur(10px);
  box-shadow: var(--shadow-card); animation: float 6s ease-in-out infinite;
}
.spec-chip .k { color: var(--cyan); font-family: var(--font-mono); font-size: 0.72rem; }
.spec-chip.s1 { top: 12%; left: -4%; }
.spec-chip.s2 { top: 44%; right: -6%; animation-delay: -2s; }
.spec-chip.s3 { bottom: 12%; left: 4%; animation-delay: -4s; }

/* ----------  CATEGORY TILES  ---------- */
.cat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 18px; }
.cat-tile {
  position: relative; padding: 26px 22px; border-radius: var(--radius); border: 1px solid var(--border);
  background: var(--surface); overflow: hidden; transition: 0.4s var(--ease); min-height: 150px;
  display: flex; flex-direction: column; justify-content: flex-end; gap: 4px;
}
.cat-tile:hover { transform: translateY(-6px); border-color: var(--violet); }
.cat-tile .c-icon { position: absolute; top: 20px; right: 20px; width: 40px; height: 40px; opacity: 0.85; }
.cat-tile .c-icon svg { width: 100%; height: 100%; stroke: var(--violet-2); }
.cat-tile h3 { font-size: 1.25rem; }
.cat-tile p { color: var(--muted); font-size: 0.85rem; }
.cat-tile::after { content: ""; position: absolute; inset: 0; background: radial-gradient(120% 80% at 100% 0%, rgba(139,92,246,0.16), transparent 60%); opacity: 0; transition: 0.4s; }
.cat-tile:hover::after { opacity: 1; }

/* ----------  FEATURE / WHY  ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; }
.feature {
  position: relative; padding: 30px 26px; border-radius: var(--radius); border: 1px solid var(--border);
  background: var(--surface); transition: 0.4s var(--ease); overflow: hidden;
}
.feature:hover { transform: translateY(-6px); background: var(--surface-2); }
.feature .f-ico { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 18px; background: color-mix(in srgb, var(--violet) 16%, transparent); border: 1px solid color-mix(in srgb, var(--violet) 32%, transparent); }
.feature .f-ico svg { width: 24px; height: 24px; stroke: var(--violet-2); }
.feature h3 { font-size: 1.15rem; margin-bottom: 8px; }
.feature p { color: var(--muted); font-size: 0.92rem; }

/* ----------  REVIEWS  ---------- */
.review-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 22px; }
.review {
  padding: 28px 26px; border-radius: var(--radius); border: 1px solid var(--border);
  background: var(--surface); display: flex; flex-direction: column; gap: 16px; transition: 0.4s var(--ease);
}
.review:hover { transform: translateY(-5px); border-color: var(--border-strong); }
.review .stars { display: flex; gap: 3px; }
.review .stars svg { width: 16px; height: 16px; fill: #fbbf24; }
.review p { color: var(--ink-soft); font-size: 0.98rem; }
.review .who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.review .avatar { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; color: #0a0712; background: var(--aurora); flex: none; }
.review .who b { font-weight: 600; font-size: 0.92rem; display: block; }
.review .who span { color: var(--muted); font-size: 0.8rem; }

/* ----------  NEWSLETTER / CTA  ---------- */
.cta-band {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; padding: clamp(40px, 6vw, 72px);
  background: linear-gradient(135deg, rgba(139,92,246,0.18), rgba(34,211,238,0.1));
  border: 1px solid var(--border-strong); text-align: center;
}
.cta-band h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 14px; }
.cta-band p { color: var(--ink-soft); max-width: 520px; margin: 0 auto 28px; }
.subscribe { display: flex; gap: 10px; max-width: 460px; margin: 0 auto; }
.field {
  flex: 1; padding: 15px 18px; border-radius: 999px; background: rgba(8,8,16,0.6);
  border: 1px solid var(--border-strong); color: var(--ink); transition: 0.3s; outline: none;
}
.field:focus { border-color: var(--violet); box-shadow: 0 0 0 4px rgba(139,92,246,0.18); }
.field::placeholder { color: var(--faint); }

/* ----------  CART DRAWER  ---------- */
.scrim { position: fixed; inset: 0; background: rgba(3,3,8,0.6); backdrop-filter: blur(4px); z-index: 90; opacity: 0; visibility: hidden; transition: 0.4s; }
.scrim.open { opacity: 1; visibility: visible; }
.cart-drawer {
  position: fixed; top: 0; right: 0; height: 100%; width: min(420px, 92vw); z-index: 100;
  background: linear-gradient(180deg, var(--bg-3), var(--bg)); border-left: 1px solid var(--border);
  transform: translateX(100%); transition: transform 0.5s var(--ease); display: flex; flex-direction: column;
  box-shadow: -30px 0 80px -30px rgba(0,0,0,0.8);
}
.cart-drawer.open { transform: none; }
.cart-head { display: flex; align-items: center; justify-content: space-between; padding: 22px 24px; border-bottom: 1px solid var(--border); }
.cart-head h3 { font-size: 1.25rem; }
.cart-items { flex: 1; overflow-y: auto; padding: 18px 24px; display: flex; flex-direction: column; gap: 16px; }
.cart-empty { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; height: 100%; color: var(--muted); text-align: center; }
.cart-empty svg { width: 54px; height: 54px; stroke: var(--faint); }
.cart-line { display: flex; gap: 14px; align-items: center; }
.cart-line .thumb { width: 64px; height: 64px; border-radius: 12px; background: var(--bg-2); overflow: hidden; flex: none; border: 1px solid var(--border); }
.cart-line .thumb img { width: 100%; height: 100%; object-fit: cover; }
.cart-line .info { flex: 1; min-width: 0; }
.cart-line .info b { font-size: 0.92rem; display: block; }
.cart-line .info .lp { color: var(--violet-2); font-size: 0.86rem; font-family: var(--font-display); font-weight: 600; }
.qty { display: inline-flex; align-items: center; gap: 0; border: 1px solid var(--border); border-radius: 9px; overflow: hidden; margin-top: 6px; }
.qty button { width: 26px; height: 26px; display: grid; place-items: center; color: var(--ink-soft); transition: 0.2s; }
.qty button:hover { background: var(--surface-2); color: var(--ink); }
.qty span { min-width: 28px; text-align: center; font-size: 0.85rem; }
.cart-line .rm { color: var(--faint); transition: 0.2s; }
.cart-line .rm:hover { color: var(--pink); }
.cart-line .rm svg { width: 16px; height: 16px; }
.cart-foot { padding: 20px 24px calc(20px + env(safe-area-inset-bottom)); border-top: 1px solid var(--border); }
.cart-total { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 16px; }
.cart-total .t-lbl { color: var(--muted); }
.cart-total .t-val { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; }

/* checkout / inquiry form inside drawer */
.checkout-form { display: flex; flex-direction: column; gap: 12px; }
.checkout-form .input-row { display: flex; flex-direction: column; gap: 6px; }
.checkout-form label { font-size: 0.78rem; color: var(--muted); font-family: var(--font-mono); letter-spacing: 0.08em; }
.input {
  width: 100%; padding: 12px 14px; border-radius: 11px; background: rgba(8,8,16,0.6);
  border: 1px solid var(--border-strong); color: var(--ink); outline: none; transition: 0.3s;
}
.input:focus { border-color: var(--violet); box-shadow: 0 0 0 3px rgba(139,92,246,0.16); }
.toast {
  position: fixed; bottom: 26px; left: 50%; transform: translate(-50%, 120%); z-index: 120;
  padding: 14px 22px; border-radius: 14px; background: rgba(10,10,20,0.92); border: 1px solid var(--violet);
  box-shadow: var(--glow-violet); display: flex; align-items: center; gap: 10px; transition: transform 0.5s var(--ease);
  font-size: 0.9rem; backdrop-filter: blur(10px); max-width: 90vw;
}
.toast.show { transform: translate(-50%, 0); }
.toast svg { width: 18px; height: 18px; stroke: var(--cyan); flex: none; }

/* ----------  FOOTER  ---------- */
.site-footer { position: relative; border-top: 1px solid var(--border); padding: 70px 0 32px; margin-top: 40px; overflow: hidden; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; }
.footer-brand p { color: var(--muted); font-size: 0.92rem; margin: 16px 0; max-width: 300px; }
.footer-col h4 { font-family: var(--font-mono); font-size: 0.74rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--violet-2); margin-bottom: 16px; }
.footer-col a, .footer-col li { display: block; color: var(--ink-soft); font-size: 0.92rem; margin-bottom: 11px; transition: color 0.25s; }
.footer-col a:hover { color: var(--ink); }
.socials { display: flex; gap: 10px; }
.socials a { width: 38px; height: 38px; border-radius: 10px; border: 1px solid var(--border); display: grid; place-items: center; transition: 0.3s var(--ease); font-size: 0.7rem; font-family: var(--font-mono); }
.socials a:hover { border-color: var(--violet); transform: translateY(-3px); color: var(--violet-2); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 52px; padding-top: 26px; border-top: 1px solid var(--border); color: var(--muted); font-size: 0.84rem; }
.footer-bottom .legal-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-bottom a:hover { color: var(--ink); }

/* ----------  PAGE HEADER (inner pages)  ---------- */
.page-hero { position: relative; padding: calc(var(--nav-h) + clamp(48px, 8vw, 90px)) 0 clamp(36px, 5vw, 56px); overflow: hidden; }
.page-hero h1 { font-size: clamp(2.3rem, 5.5vw, 4rem); }
.page-hero p { color: var(--muted); max-width: 560px; margin-top: 16px; font-size: 1.05rem; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--muted); font-family: var(--font-mono); letter-spacing: 0.05em; margin-bottom: 18px; }
.breadcrumb a:hover { color: var(--violet-2); }
.breadcrumb .sep { color: var(--faint); }

/* ----------  PRODUCT DETAIL  ---------- */
.pdp { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.pdp-media {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border);
  aspect-ratio: 1/1; background: radial-gradient(120% 100% at 50% 0%, color-mix(in srgb, var(--accent) 26%, transparent), var(--bg-2) 65%);
}
.pdp-media img { width: 100%; height: 100%; object-fit: cover; animation: float 9s ease-in-out infinite; }
.pdp-thumbs { display: flex; gap: 12px; margin-top: 14px; }
.pdp-thumb { width: 76px; height: 76px; border-radius: 14px; overflow: hidden; border: 1px solid var(--border); background: var(--bg-2); cursor: pointer; transition: 0.3s; }
.pdp-thumb.active, .pdp-thumb:hover { border-color: var(--accent); }
.pdp-thumb img { width: 100%; height: 100%; object-fit: cover; animation: none; }
.pdp-info .p-type { font-family: var(--font-mono); font-size: 0.76rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--violet-2); }
.pdp-info h1 { font-size: clamp(2.2rem, 4.5vw, 3.2rem); margin: 10px 0 14px; }
.pdp-price { display: flex; align-items: baseline; gap: 12px; margin: 22px 0; }
.pdp-price .now { font-family: var(--font-display); font-size: 2rem; font-weight: 800; }
.pdp-price .was { color: var(--faint); text-decoration: line-through; }
.pdp-price .save { font-size: 0.78rem; padding: 4px 10px; border-radius: 999px; background: color-mix(in srgb, var(--teal) 18%, transparent); color: var(--teal); border: 1px solid color-mix(in srgb, var(--teal) 35%, transparent); }
.pdp-desc { color: var(--ink-soft); margin: 18px 0 26px; }
.highlights { display: grid; gap: 12px; margin: 24px 0; }
.highlights li { display: flex; align-items: center; gap: 12px; color: var(--ink-soft); font-size: 0.95rem; }
.highlights svg { width: 20px; height: 20px; stroke: var(--teal); flex: none; }
.pdp-buy { display: flex; gap: 12px; align-items: center; margin: 28px 0; flex-wrap: wrap; }
.pdp-meta { display: flex; gap: 24px; flex-wrap: wrap; color: var(--muted); font-size: 0.86rem; margin-top: 8px; }
.pdp-meta div { display: flex; align-items: center; gap: 8px; }
.pdp-meta svg { width: 16px; height: 16px; stroke: var(--cyan); }

.spec-table { width: 100%; border-collapse: collapse; }
.spec-table tr { border-bottom: 1px solid var(--border); }
.spec-table td { padding: 15px 4px; font-size: 0.94rem; }
.spec-table td:first-child { color: var(--muted); width: 42%; }
.spec-table td:last-child { color: var(--ink); font-weight: 500; }

/* ----------  SHOP FILTERS  ---------- */
.filter-bar { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 32px; }
.chip {
  padding: 10px 18px; border-radius: 999px; border: 1px solid var(--border); background: var(--surface);
  font-size: 0.88rem; color: var(--ink-soft); transition: 0.3s var(--ease); white-space: nowrap;
}
.chip:hover { border-color: var(--border-strong); }
.chip.active { background: var(--aurora); color: #0a0712; border-color: transparent; font-weight: 600; }

/* ----------  CONTACT  ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 40px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-card { padding: 22px; border-radius: var(--radius); border: 1px solid var(--border); background: var(--surface); display: flex; gap: 16px; align-items: flex-start; transition: 0.4s var(--ease); }
.contact-card:hover { border-color: var(--violet); transform: translateY(-3px); }
.contact-card .ci { width: 46px; height: 46px; border-radius: 12px; flex: none; display: grid; place-items: center; background: color-mix(in srgb, var(--violet) 16%, transparent); border: 1px solid color-mix(in srgb, var(--violet) 30%, transparent); }
.contact-card .ci svg { width: 22px; height: 22px; stroke: var(--violet-2); }
.contact-card h4 { font-family: var(--font-body); font-weight: 600; font-size: 1rem; letter-spacing: 0; margin-bottom: 4px; }
.contact-card p, .contact-card a { color: var(--muted); font-size: 0.92rem; }
.contact-card a:hover { color: var(--violet-2); }
.form-card { padding: clamp(24px, 4vw, 38px); border-radius: var(--radius-lg); border: 1px solid var(--border); background: var(--surface); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.form-group label { font-size: 0.82rem; color: var(--ink-soft); font-weight: 500; }
textarea.input { resize: vertical; min-height: 130px; font-family: var(--font-body); }

/* ----------  LEGAL PAGES  ---------- */
.legal-layout { display: grid; grid-template-columns: 250px 1fr; gap: 50px; align-items: start; }
.legal-toc { position: sticky; top: calc(var(--nav-h) + 24px); }
.legal-toc h4 { font-family: var(--font-mono); font-size: 0.74rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--violet-2); margin-bottom: 16px; }
.legal-toc a { display: block; color: var(--muted); font-size: 0.9rem; padding: 7px 0 7px 14px; border-left: 1px solid var(--border); transition: 0.25s; }
.legal-toc a:hover, .legal-toc a.active { color: var(--ink); border-left-color: var(--violet); }
.legal-body { max-width: 760px; }
.legal-body h2 { font-size: 1.6rem; margin: 44px 0 16px; scroll-margin-top: calc(var(--nav-h) + 20px); }
.legal-body h2:first-child { margin-top: 0; }
.legal-body h3 { font-size: 1.12rem; margin: 26px 0 10px; font-family: var(--font-body); font-weight: 600; }
.legal-body p, .legal-body li { color: var(--ink-soft); margin-bottom: 14px; font-size: 0.97rem; line-height: 1.75; }
.legal-body ul { padding-left: 22px; list-style: disc; }
.legal-body ul li { margin-bottom: 8px; }
.legal-body a { color: var(--violet-2); text-decoration: underline; text-underline-offset: 3px; }
.legal-updated { font-family: var(--font-mono); font-size: 0.82rem; color: var(--muted); padding: 14px 18px; border-radius: 12px; background: var(--surface); border: 1px solid var(--border); display: inline-block; margin-bottom: 30px; }
.legal-body .callout { padding: 18px 20px; border-radius: 14px; background: var(--surface); border: 1px solid var(--border); border-left: 3px solid var(--violet); margin: 20px 0; }

/* ----------  RESPONSIVE  ---------- */
@media (max-width: 1080px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-toc { display: none; }
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 460px; margin: 0 auto; order: -1; }
  .pdp { grid-template-columns: 1fr; gap: 30px; }
  .contact-grid { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: 1fr; gap: 18px; }
}
@media (max-width: 720px) {
  .nav-links, .nav-cta-desktop { display: none; }
  .nav-toggle { display: grid; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute; top: var(--nav-h); left: 0; right: 0;
    background: rgba(8,8,16,0.96); backdrop-filter: blur(18px); padding: 24px; gap: 18px;
    border-bottom: 1px solid var(--border); align-items: flex-start;
  }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .spec-chip { display: none; }
}
@media (max-width: 460px) {
  .subscribe { flex-direction: column; }
}

/* two-column showcase / spec blocks collapse on small screens */
@media (max-width: 860px) {
  .split-card { grid-template-columns: 1fr !important; }
  .split-card > div:last-child { min-height: 280px !important; }
  .spec-layout { grid-template-columns: 1fr !important; gap: 22px !important; }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
}
