/* ============================================================
   VIRUS THEME — CYBER LIME & OBSIDIAN GLASS (Definitive Edition)
   Palette: Cyber Lime (#88FF00) + Deep Obsidian Black (#050805)
   Modern Rounded Cyberpunk Glassmorphism & High-Performance UI
============================================================ */

/* SellAuth Alpine utility */
[x-cloak] { display: none !important; }

:root {
  /* CYBER LIME PALETTE */
  --accent: #88FF00;              /* Cyber Lime Green */
  --accent-rgb: 136, 255, 0;
  --accent-glow: rgba(136, 255, 0, 0.35);
  --accent-dim: rgba(136, 255, 0, 0.12);
  --accent-hover: #9dff26;
  
  --bg: #050805;                  /* Deep Obsidian Background */
  --bg-2: #090e09;                /* Secondary Surface */
  --bg-card: rgba(13, 20, 13, 0.65);
  --bg-card-hover: rgba(18, 28, 18, 0.85);
  --bg-inv: #FFFFFF;
  
  --fg: #FFFFFF;                  /* Crisp Text */
  --fg-dim: #94A3B8;              /* Muted Slate Text */
  --fg-dimmer: #64748B;
  
  --border: rgba(136, 255, 0, 0.18);
  --border-hover: rgba(136, 255, 0, 0.45);
  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-pill: 9999px;
}

.light {
  --accent: #16a34a;
  --accent-rgb: 22, 163, 74;
  --bg: #f4f7f4;
  --bg-2: #e8eee8;
  --bg-card: rgba(255, 255, 255, 0.8);
  --fg: #091209;
  --fg-dim: #4b5563;
  --border: rgba(22, 163, 74, 0.2);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  cursor: auto;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Space Grotesk', system-ui, -apple-system, sans-serif;
  background-color: var(--bg);
  color: var(--fg);
  overflow-x: hidden;
  line-height: 1.6;
  transition: background-color 0.4s, color 0.4s;
}

/* ── SCROLLBAR ─────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: var(--radius-pill); opacity: 0.6; }
::selection { background: var(--accent); color: #000; }

/* ── SCROLL PROGRESS BAR ───────────────────────────────────── */
#scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, #88FF00, #00FF66);
  z-index: 10000;
  box-shadow: 0 0 10px var(--accent);
  transition: width 0.1s ease;
}

/* ── CYBER MATRIX BACKGROUND ───────────────────────────────── */
.virus-matrix-bg {
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background: 
    radial-gradient(circle at 50% 20%, rgba(136, 255, 0, 0.12) 0%, transparent 60%),
    radial-gradient(circle at 80% 80%, rgba(0, 255, 102, 0.06) 0%, transparent 50%),
    var(--bg);
}

.virus-grid {
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    linear-gradient(to right, rgba(136, 255, 0, 0.07) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(136, 255, 0, 0.07) 1px, transparent 1px);
  background-size: 3.5rem 3.5rem;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 30%, #000 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 30%, #000 40%, transparent 100%);
}

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

/* ── GLASS PANELS & CARDS ───────────────────────────────────── */
.glass {
  background: var(--bg-card);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.glass-strong {
  background: rgba(13, 20, 13, 0.85);
  backdrop-filter: blur(24px) saturate(1.8);
  -webkit-backdrop-filter: blur(24px) saturate(1.8);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius);
}

.cyber-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.cyber-card:hover {
  border-color: var(--border-hover);
  box-shadow: 0 12px 40px rgba(136, 255, 0, 0.15), 0 0 20px rgba(136, 255, 0, 0.08);
  transform: translateY(-4px);
}

/* ── NEON EFFECTS ──────────────────────────────────────────── */
.neon-text {
  color: var(--accent);
  text-shadow: 0 0 15px rgba(136, 255, 0, 0.5), 0 0 35px rgba(136, 255, 0, 0.2);
}

.neon-border {
  border: 1px solid var(--accent) !important;
  box-shadow: 0 0 15px rgba(136, 255, 0, 0.25), inset 0 0 15px rgba(136, 255, 0, 0.08);
}

.neon-pill {
  background: rgba(136, 255, 0, 0.12);
  border: 1px solid rgba(136, 255, 0, 0.3);
  color: var(--accent);
  border-radius: var(--radius-pill);
  padding: 0.35rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.neon-pill-dot {
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.5; }
}

/* ── NAVIGATION ────────────────────────────────────────────── */
nav.monolith-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(5, 8, 5, 0.8);
  backdrop-filter: blur(20px) saturate(1.6);
  -webkit-backdrop-filter: blur(20px) saturate(1.6);
  border-bottom: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  height: 4.8rem; padding: 0 3rem;
  transition: all 0.3s ease;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}

.nav-v-logo {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(136, 255, 0, 0.1);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(136, 255, 0, 0.3);
  transition: all 0.3s ease;
}

.nav-v-logo svg {
  width: 20px;
  height: 20px;
  fill: var(--accent);
}

.nav-brand:hover .nav-v-logo {
  transform: rotate(180deg) scale(1.05);
  box-shadow: 0 0 25px rgba(136, 255, 0, 0.5);
}

.nav-logo {
  font-size: 1.35rem; font-weight: 800; letter-spacing: -0.02em;
  color: #FFFFFF;
  text-decoration: none;
}

.nav-logo span {
  color: var(--accent);
}

.nav-links { display: flex; gap: 0.5rem; }
.nav-link {
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--fg-dim);
  text-decoration: none; padding: 0.6rem 1.2rem;
  border-radius: var(--radius-pill);
  transition: all 0.25s ease;
  position: relative;
}

.nav-link:hover {
  color: var(--accent);
  background: rgba(136, 255, 0, 0.08);
}

.nav-link.active {
  color: var(--accent);
  background: rgba(136, 255, 0, 0.12);
  border: 1px solid rgba(136, 255, 0, 0.25);
}

.theme-toggle {
  background: rgba(136, 255, 0, 0.06);
  border: 1px solid var(--border);
  color: var(--accent);
  padding: 0.55rem;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex; align-items: center; justify-content: center;
}

.theme-toggle:hover {
  background: rgba(136, 255, 0, 0.18);
  border-color: var(--accent);
  box-shadow: 0 0 15px rgba(136, 255, 0, 0.3);
  transform: translateY(-1px);
}

/* ── REVEAL SYSTEM ─────────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── HERO SECTION ───────────────────────────────────────────── */
.hero {
  min-height: 85vh; display: flex; align-items: center;
  padding: 8rem 3rem 4rem;
  position: relative; overflow: hidden;
}

.hero-grid {
  max-width: 1240px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 4rem; align-items: center;
  position: relative; z-index: 2;
}

.hero-eyebrow {
  margin-bottom: 1.2rem;
}

.hero-title {
  font-size: clamp(3rem, 5.5vw, 5.2rem);
  font-weight: 900; line-height: 1.02;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
}

.hero-title span {
  background: linear-gradient(135deg, #FFFFFF 0%, #88FF00 70%, #00FF66 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 25px rgba(136, 255, 0, 0.3));
}

.hero-sub {
  font-size: 0.95rem; color: var(--fg-dim); line-height: 1.7;
  max-width: 520px; margin-bottom: 2.2rem;
}

/* Hero Search & Category Controls */
.hero-search-box {
  background: rgba(13, 20, 13, 0.8);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 0.4rem 0.5rem 0.4rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(136, 255, 0, 0.05);
  margin-bottom: 2rem;
  transition: all 0.3s ease;
  max-width: 560px;
}

.hero-search-box:focus-within {
  border-color: var(--accent);
  box-shadow: 0 12px 40px rgba(136, 255, 0, 0.2);
}

.hero-search-box input {
  background: transparent !important;
  border: none !important;
  outline: none !important;
  color: #FFFFFF !important;
  font-family: inherit;
  font-size: 0.95rem;
  width: 100%;
  box-shadow: none !important;
}

.hero-search-box input::placeholder {
  color: var(--fg-dimmer);
}

/* BUTTONS */
.btn-primary-mono {
  background: linear-gradient(135deg, #88FF00 0%, #70df00 100%);
  color: #050805 !important;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800; font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.9rem 2rem; border: none; cursor: pointer; text-decoration: none;
  border-radius: var(--radius-pill);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 25px rgba(136, 255, 0, 0.35);
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
}

.btn-primary-mono:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 45px rgba(136, 255, 0, 0.6);
  color: #000000 !important;
}

.btn-secondary-mono {
  background: rgba(136, 255, 0, 0.06);
  border: 1px solid var(--border);
  color: var(--accent) !important;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.9rem 2rem; cursor: pointer; text-decoration: none;
  border-radius: var(--radius-pill);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
}

.btn-secondary-mono:hover {
  background: rgba(136, 255, 0, 0.15);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(136, 255, 0, 0.2);
}

/* ── DYNAMIC 3D HOLOGRAPHIC HERO VISUAL ────────────────────────── */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
}

.hero-holo-container {
  width: 360px;
  height: 400px;
  border-radius: var(--radius-lg);
  background: rgba(9, 14, 9, 0.75);
  backdrop-filter: blur(24px) saturate(1.8);
  border: 1px solid var(--border);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 25px 65px rgba(0, 0, 0, 0.75), 0 0 50px rgba(136, 255, 0, 0.15);
  overflow: hidden;
  transition: transform 0.15s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
  transform-style: preserve-3d;
  will-change: transform;
}

.hero-holo-container::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    circle 220px at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(136, 255, 0, 0.22) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.hero-holo-container:hover {
  border-color: var(--accent);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.85), 0 0 70px rgba(136, 255, 0, 0.35);
}

.hero-holo-container:hover::before {
  opacity: 1;
}

/* Outer Cyber Orbits */
.holo-orbit-wrap {
  width: 220px;
  height: 220px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
}

.holo-orbit-ring-1 {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px dashed rgba(136, 255, 0, 0.5);
  animation: orbit-rotate-1 12s linear infinite;
  box-shadow: 0 0 20px rgba(136, 255, 0, 0.2);
}

.holo-orbit-ring-2 {
  position: absolute;
  inset: -15px;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 255, 102, 0.35);
  border-top-color: var(--accent);
  border-bottom-color: var(--accent);
  animation: orbit-rotate-2 8s linear infinite reverse;
  box-shadow: 0 0 15px rgba(136, 255, 0, 0.15);
}

.holo-orbit-ring-3 {
  position: absolute;
  inset: 15px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(136, 255, 0, 0.15) 0%, transparent 70%);
  animation: orbit-pulse 3s ease-in-out infinite;
}

@keyframes orbit-rotate-1 {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes orbit-rotate-2 {
  0% { transform: rotate(0deg) scale(0.98); }
  50% { transform: rotate(180deg) scale(1.02); }
  100% { transform: rotate(360deg) scale(0.98); }
}

@keyframes orbit-pulse {
  0%, 100% { opacity: 0.4; transform: scale(0.95); }
  50% { opacity: 0.9; transform: scale(1.05); }
}

/* Center Floating Animated GIF Logo Sphere */
.holo-logo-core {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  position: relative;
  z-index: 5;
  background: #050805;
  border: 3px solid var(--accent);
  box-shadow: 0 0 35px rgba(136, 255, 0, 0.7), inset 0 0 15px rgba(136, 255, 0, 0.4);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: logo-float 4s ease-in-out infinite;
}

.holo-logo-core img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

@keyframes logo-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-6px) scale(1.04); }
}

/* Radar Sweep Wave Beam */
.holo-radar-sweep {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(136, 255, 0, 0.35), transparent 60deg, transparent 360deg);
  animation: radar-sweep 4s linear infinite;
  pointer-events: none;
}

@keyframes radar-sweep {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Corner Cyber HUD Brackets */
.hud-corner {
  position: absolute;
  width: 14px;
  height: 14px;
  border-color: var(--accent);
  border-style: solid;
  opacity: 0.7;
}

.hud-corner.tl { top: 12px; left: 12px; border-width: 2px 0 0 2px; }
.hud-corner.tr { top: 12px; right: 12px; border-width: 2px 2px 0 0; }
.hud-corner.bl { bottom: 12px; left: 12px; border-width: 0 0 2px 2px; }
.hud-corner.br { bottom: 12px; right: 12px; border-width: 0 2px 2px 0; }

.nav-brand-logo {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent);
  box-shadow: 0 0 12px rgba(136, 255, 0, 0.4);
}

.hero-card-status {
  margin-top: 1.5rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--accent);
  text-transform: uppercase;
}

/* ── MARQUEE TICKER ────────────────────────────────────────── */
.ticker-bar {
  background: linear-gradient(90deg, #88FF00 0%, #00FF66 100%);
  padding: 0.75rem 0; overflow: hidden;
  box-shadow: 0 0 30px rgba(136, 255, 0, 0.3);
}

.ticker-track {
  display: flex; width: max-content;
  animation: marquee 22s linear infinite;
}

@keyframes marquee { 0%{ transform: translateX(0); } 100%{ transform: translateX(-50%); } }

.ticker-item {
  font-size: 0.8rem; font-weight: 900; letter-spacing: 0.15em;
  text-transform: uppercase; color: #050805; padding: 0 2rem;
  white-space: nowrap; display: flex; align-items: center; gap: 1.5rem;
}

/* ── STATS BAR ─────────────────────────────────────────────── */
.stats-bar {
  padding: 3rem 0;
  position: relative;
  z-index: 2;
}

.stats-grid {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.stat-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(136, 255, 0, 0.12);
}

.stat-num {
  font-size: 2.4rem; font-weight: 900; letter-spacing: -0.02em; line-height: 1.1;
  color: var(--accent);
  text-shadow: 0 0 20px rgba(136, 255, 0, 0.4);
  margin-bottom: 0.4rem;
}

.stat-label {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--fg-dim);
}

.stat-bar {
  position: absolute; bottom: 0; left: 0; height: 3px;
  background: var(--accent); width: 100%;
  box-shadow: 0 0 10px var(--accent);
}

/* ── SECTION HEADERS ───────────────────────────────────────── */
.section { padding: 5rem 3rem; position: relative; z-index: 2; }
.section-inner { max-width: 1240px; margin: 0 auto; }
.section-label {
  font-size: 0.75rem; font-weight: 800; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 0.6rem;
  display: flex; align-items: center; gap: 0.6rem;
}
.section-title {
  font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 900;
  text-transform: uppercase; letter-spacing: -0.01em; color: #FFFFFF;
  margin-bottom: 3rem;
}

/* ── PRODUCT GRID & CARDS ──────────────────────────────────── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.8rem;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.15s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transform-style: preserve-3d;
  will-change: transform;
}

.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    circle 200px at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(136, 255, 0, 0.18) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.product-card:hover {
  border-color: var(--accent);
  box-shadow: 0 20px 50px rgba(0,0,0,0.6), 0 0 35px rgba(136, 255, 0, 0.2);
}

.product-card:hover::before {
  opacity: 1;
}

.product-badge-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 5;
  background: rgba(5, 8, 5, 0.85);
  border: 1px solid var(--accent);
  color: var(--accent);
  border-radius: var(--radius-pill);
  padding: 0.25rem 0.75rem;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 10px rgba(136, 255, 0, 0.2);
}

.product-icon {
  width: 100%;
  height: 190px;
  background: rgba(136, 255, 0, 0.04);
  border: 1px solid rgba(136, 255, 0, 0.1);
  border-radius: var(--radius);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
}

.product-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-icon img {
  transform: scale(1.08);
}

.product-card:hover .product-icon {
  border-color: rgba(136, 255, 0, 0.3);
}

.product-name {
  font-size: 1.15rem; font-weight: 800;
  color: #FFFFFF; margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
  transition: color 0.2s ease;
}

.product-card:hover .product-name {
  color: var(--accent);
}

.product-desc {
  color: var(--fg-dim); font-size: 0.85rem; margin-bottom: 1.5rem;
  line-height: 1.6; flex: 1;
}

.product-footer {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.product-price {
  font-size: 1.4rem; font-weight: 900; color: var(--accent);
  text-shadow: 0 0 15px rgba(136, 255, 0, 0.3);
}

.btn-acquire {
  background: rgba(136, 255, 0, 0.1);
  border: 1px solid var(--border);
  color: var(--accent);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.6rem 1.4rem; border-radius: var(--radius-pill);
  cursor: pointer; text-decoration: none;
  transition: all 0.25s ease;
}

.product-card:hover .btn-acquire,
.btn-acquire:hover {
  background: var(--accent);
  color: #050805;
  border-color: var(--accent);
  box-shadow: 0 0 20px rgba(136, 255, 0, 0.4);
}

/* ── BENTO GRID FEATURES ───────────────────────────────────── */
.bento { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.bento-card {
  padding: 2.2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative; overflow: hidden;
  transition: all 0.35s ease;
}
.bento-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.5), 0 0 25px rgba(136, 255, 0, 0.15);
}
.bento-icon {
  font-size: 2.5rem; margin-bottom: 1.2rem; color: var(--accent);
  filter: drop-shadow(0 0 10px rgba(136, 255, 0, 0.4));
}
.bento-title {
  font-size: 1.3rem; font-weight: 800; text-transform: uppercase;
  color: #FFFFFF; margin-bottom: 0.6rem;
}
.bento-body { color: var(--fg-dim); font-size: 0.9rem; line-height: 1.6; }

/* ── FOOTER ────────────────────────────────────────────────── */
.monolith-footer {
  background: rgba(5, 8, 5, 0.95);
  border-top: 1px solid var(--border);
  padding: 4rem 3rem 2rem;
  position: relative; z-index: 2;
}

.footer-inner {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  color: var(--fg-dim); font-size: 0.85rem; margin-top: 0.8rem; max-width: 320px;
}

.footer-col h4 {
  font-size: 0.85rem; font-weight: 800; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 1.2rem;
}

.footer-links { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-link {
  color: var(--fg-dim); text-decoration: none; font-size: 0.85rem;
  transition: all 0.2s ease;
}
.footer-link:hover { color: var(--accent); transform: translateX(3px); }

.footer-bottom {
  max-width: 1240px; margin: 0 auto;
  padding-top: 2rem; border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.75rem; color: var(--fg-dimmer);
}

/* ── SELLAUTH BOOTSTRAP OVERRIDES ──────────────────────────── */
input, textarea, select, .form-control, .form-select {
  background: rgba(13, 20, 13, 0.8) !important;
  border: 1px solid var(--border) !important;
  color: #FFFFFF !important;
  border-radius: var(--radius) !important;
  padding: 0.75rem 1rem !important;
}
input:focus, textarea:focus, select:focus, .form-control:focus, .form-select:focus {
  border-color: var(--accent) !important;
  box-shadow: 0 0 15px rgba(136, 255, 0, 0.25) !important;
  outline: none !important;
}

.card, .modal-content, .dropdown-menu {
  background: rgba(9, 14, 9, 0.95) !important;
  backdrop-filter: blur(25px) !important;
  border: 1px solid var(--border) !important;
  color: #FFFFFF !important;
  border-radius: var(--radius-lg) !important;
  box-shadow: 0 25px 70px rgba(0,0,0,0.8), 0 0 40px rgba(136, 255, 0, 0.15) !important;
}

.modal-header, .modal-footer, .card-header, .card-footer {
  border-color: rgba(136, 255, 0, 0.15) !important;
}

.btn, .btn-primary, .btn-secondary, .btn-purple, .btn-danger, .btn-warning, .btn-success {
  background: var(--accent) !important;
  border: none !important;
  color: #050805 !important;
  border-radius: var(--radius-pill) !important;
  font-weight: 800 !important;
  letter-spacing: 0.05em !important;
  transition: all 0.25s ease !important;
}
.btn:hover {
  box-shadow: 0 0 25px rgba(136, 255, 0, 0.5) !important;
  transform: translateY(-2px) !important;
}

/* SCREEN WIPE TRANSITION */
#wipe {
  position: fixed; inset: 0; background: var(--accent); z-index: 9990;
  pointer-events: none; transform: scaleX(0); transform-origin: left;
}

/* MOBILE MENU OVERLAY */
#mobile-menu-overlay {
  position: fixed; inset: 0;
  background: rgba(5, 8, 5, 0.96);
  backdrop-filter: blur(25px);
  z-index: 9995;
  display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 2rem;
}
#mobile-menu-overlay.active { transform: translateX(0); }
.mobile-menu-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 3rem; }
.mobile-menu-links { display: flex; flex-direction: column; gap: 1.2rem; }
.mobile-menu-link {
  font-size: 1.5rem; font-weight: 800; text-transform: uppercase;
  color: #FFFFFF; text-decoration: none; transition: color 0.2s;
}
.mobile-menu-link:hover { color: var(--accent); }

/* ── COMPREHENSIVE RESPONSIVE STYLES FOR MOBILE & TABLET ── */
@media (max-width: 900px) {
  html, body {
    overflow-x: hidden;
    width: 100%;
  }

  nav.monolith-nav {
    padding: 0 1.2rem;
    height: 4.2rem;
  }

  .nav-logo {
    font-size: 1.15rem;
  }

  .nav-brand-logo {
    width: 32px;
    height: 32px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    padding: 6rem 1.2rem 3rem;
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .hero-title {
    font-size: clamp(2.2rem, 7.5vw, 3.4rem);
    line-height: 1.1;
    margin-bottom: 1.2rem;
  }

  .hero-sub {
    font-size: 0.88rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.8rem;
  }

  .hero-search-box {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 100%;
    padding: 0.35rem 0.4rem 0.35rem 1rem;
    gap: 0.5rem;
  }

  .hero-search-box input {
    font-size: 0.85rem;
  }

  .hero-search-box .btn-primary-mono {
    padding: 0.5rem 1rem !important;
    font-size: 0.7rem !important;
  }

  .hero-grid > div:first-child > div:last-child {
    flex-direction: column;
    width: 100%;
  }

  .btn-primary-mono, .btn-secondary-mono {
    width: 100%;
    justify-content: center;
    padding: 0.85rem 1.5rem;
    font-size: 0.8rem;
  }

  .hero-holo-container {
    width: 100%;
    max-width: 310px;
    height: 330px;
  }

  .holo-orbit-wrap {
    width: 170px;
    height: 170px;
  }

  .holo-logo-core {
    width: 90px;
    height: 90px;
  }

  .hero-card-status {
    margin-top: 1.2rem;
    font-size: 0.85rem;
  }

  .section {
    padding: 3.5rem 1.2rem;
  }

  .section-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .product-card {
    padding: 1.2rem;
  }

  .product-icon {
    height: 165px;
  }

  .stats-bar {
    padding: 2rem 0;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .stat-card {
    padding: 1.2rem 1rem;
  }

  .stat-num {
    font-size: 1.8rem;
  }

  .stat-label {
    font-size: 0.68rem;
  }

  .bento {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .bento-card {
    padding: 1.5rem;
  }

  .bento-title {
    font-size: 1.15rem;
  }

  .bento-body {
    font-size: 0.85rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-brand p {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-title {
    font-size: 2rem;
  }
}
