:root {
  --bg: #05050a;
  --surface: #080810;
  --card: #0c0c18;
  --card2: #10101e;
  --border: #1a1a30;
  --cyan: #00e5ff;
  --cyan2: #40f0ff;
  --cyan-dim: rgba(0,229,255,0.08);
  --cyan-glow: rgba(0,229,255,0.3);
  --purple: #9b30ff;
  --purple2: #c060ff;
  --purple-dim: rgba(155,48,255,0.1);
  --purple-glow: rgba(155,48,255,0.3);
  --magenta: #ff2d9b;
  --yellow: #f5e642;
  --white: #f0f2ff;
  --off: #b0b8d0;
  --muted: #5a6080;
  --muted2: #3a4060;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 400;
  overflow-x: hidden;
}

/* SCANLINES */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 9997; pointer-events: none;
  background: repeating-linear-gradient(
    0deg, transparent, transparent 2px,
    rgba(0,229,255,0.012) 2px, rgba(0,229,255,0.012) 4px
  );
}

/* GRAIN */
body::after {
  content: '';
  position: fixed; inset: 0; z-index: 9996; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.04;
}

/* ─── AGE GATE ─── */
.gate {
  position: fixed; inset: 0; z-index: 3000;
  background: var(--bg);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 28px; text-align: center; padding: 40px;
  transition: opacity 0.7s, visibility 0.7s;
}
.gate.gone { opacity: 0; visibility: hidden; pointer-events: none; }

.gate-logo-wrap { position: relative; }
.gate-logo { width: 220px; filter: drop-shadow(0 0 40px rgba(0,229,255,0.4)); animation: pulse-glow 3s ease-in-out infinite; }
@keyframes pulse-glow {
  0%,100% { filter: drop-shadow(0 0 30px rgba(0,229,255,0.3)); }
  50% { filter: drop-shadow(0 0 60px rgba(0,229,255,0.6)) drop-shadow(0 0 80px rgba(155,48,255,0.3)); }
}

.gate-sub {
  font-family: 'Share Tech Mono', monospace; font-size: 11px;
  color: var(--muted); letter-spacing: 5px; text-transform: uppercase;
}

.gate-line { width: 80px; height: 1px; background: linear-gradient(90deg, transparent, var(--cyan), transparent); }

.gate-q {
  font-family: 'Black Ops One', cursive; font-size: 22px;
  color: var(--white); letter-spacing: 2px; text-transform: uppercase;
}

.gate-btns { display: flex; gap: 16px; }

.gate-yes {
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  color: var(--bg); border: none; padding: 14px 48px;
  font-family: 'Black Ops One', cursive; font-size: 15px;
  letter-spacing: 3px; text-transform: uppercase; cursor: pointer;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
}
.gate-yes:hover { opacity: 0.9; transform: translateY(-2px); box-shadow: 0 12px 40px var(--cyan-glow); }

.gate-no {
  background: transparent; color: var(--muted);
  border: 1px solid var(--border); padding: 14px 48px;
  font-family: 'Rajdhani', sans-serif; font-size: 14px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase; cursor: pointer;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: border-color 0.2s, color 0.2s;
}
.gate-no:hover { border-color: var(--muted); color: var(--white); }

.gate-fine { font-size: 11px; color: var(--muted2); max-width: 340px; line-height: 1.7; }

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 56px;
  transition: background 0.4s, padding 0.3s;
}
nav.stuck {
  background: rgba(5,5,10,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,229,255,0.12);
  padding: 12px 56px;
}

.nav-logo { height: 52px; transition: filter 0.3s; }
nav.stuck .nav-logo { height: 44px; }
.nav-logo:hover { filter: drop-shadow(0 0 16px var(--cyan-glow)); }

.nav-links {
  display: flex; gap: 40px; list-style: none;
  position: absolute; left: 50%; transform: translateX(-50%);
}
.nav-links a {
  text-decoration: none; color: var(--muted);
  font-size: 12px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
  transition: color 0.2s; position: relative; padding-bottom: 4px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px;
  background: linear-gradient(90deg, var(--cyan), var(--purple));
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--cyan); }
.nav-links a:hover::after { width: 100%; }

.nav-right { display: flex; align-items: center; gap: 20px; }
.nav-phone { font-family: 'Share Tech Mono', monospace; font-size: 11px; color: var(--muted); }
.nav-ws-btn {
  background: transparent;
  border: 1px solid var(--cyan);
  color: var(--cyan); padding: 8px 22px;
  font-family: 'Rajdhani', sans-serif; font-size: 12px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; cursor: pointer;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
  transition: background 0.2s, box-shadow 0.2s;
}
.nav-ws-btn:hover { background: var(--cyan-dim); box-shadow: 0 0 20px var(--cyan-glow); }

/* ─── HERO ─── */
.hero {
  min-height: 100vh; position: relative;
  display: flex; align-items: center; overflow: hidden;
}

/* animated grid bg */
.hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(0,229,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,229,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  perspective: 600px;
  transform: rotateX(40deg) scale(2) translateY(20%);
  transform-origin: bottom center;
  mask-image: linear-gradient(0deg, black 20%, transparent 70%);
}

.hero-orbs {
  position: absolute; inset: 0; pointer-events: none;
}
.orb1 {
  position: absolute; width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(155,48,255,0.12) 0%, transparent 65%);
  top: -200px; right: -100px;
  animation: drift1 10s ease-in-out infinite;
}
.orb2 {
  position: absolute; width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,229,255,0.08) 0%, transparent 65%);
  bottom: -100px; left: -100px;
  animation: drift2 8s ease-in-out infinite;
}
@keyframes drift1 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-30px,30px)} }
@keyframes drift2 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(20px,-25px)} }

.hero-content {
  position: relative; z-index: 2;
  padding: 160px 64px 100px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  width: 100%;
}

.hero-left { position: relative; }

.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid rgba(0,229,255,0.25);
  padding: 6px 16px; margin-bottom: 32px;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  background: rgba(0,229,255,0.05);
  opacity: 0; animation: slideUp 0.7s 0.2s forwards;
}
.hero-tag-dot { width: 6px; height: 6px; background: var(--cyan); border-radius: 50%; animation: blink 1.5s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.2} }
.hero-tag-txt { font-family: 'Share Tech Mono', monospace; font-size: 10px; color: var(--cyan); letter-spacing: 4px; text-transform: uppercase; }

.hero h1 {
  font-family: 'Black Ops One', cursive;
  font-size: clamp(56px, 7vw, 100px);
  line-height: 0.95; letter-spacing: 2px;
  text-transform: uppercase; margin-bottom: 28px;
  opacity: 0; animation: slideUp 0.7s 0.35s forwards;
}
.h1-line1 { display: block; color: var(--white); }
.h1-line2 {
  display: block;
  background: linear-gradient(90deg, var(--cyan), var(--purple2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 30px rgba(0,229,255,0.3));
}
.h1-line3 {
  display: block;
  -webkit-text-stroke: 1px rgba(255,255,255,0.15);
  color: transparent;
}

.hero-p {
  font-size: 16px; color: var(--off); line-height: 1.8;
  max-width: 440px; margin-bottom: 44px; font-weight: 400;
  opacity: 0; animation: slideUp 0.7s 0.5s forwards;
}

.hero-btns {
  display: flex; gap: 16px; align-items: center;
  opacity: 0; animation: slideUp 0.7s 0.65s forwards;
}

.btn-cyber {
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  color: var(--bg); border: none; padding: 16px 40px;
  font-family: 'Black Ops One', cursive; font-size: 14px; letter-spacing: 3px;
  text-transform: uppercase; cursor: pointer;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
  position: relative; overflow: hidden;
}
.btn-cyber::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
}
.btn-cyber:hover { opacity: 0.9; transform: translateY(-3px); box-shadow: 0 16px 50px var(--cyan-glow); }

.btn-ghost-cyber {
  background: transparent; color: var(--cyan); border: 1px solid rgba(0,229,255,0.4);
  padding: 16px 36px;
  font-family: 'Rajdhani', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; cursor: pointer;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  transition: background 0.2s, box-shadow 0.2s;
}
.btn-ghost-cyber:hover { background: var(--cyan-dim); box-shadow: 0 8px 30px var(--cyan-glow); }

.hero-right {
  position: relative; z-index: 2;
  opacity: 0; animation: fadeIn 1s 0.6s forwards;
}

.hero-img-frame {
  position: relative;
  border: 1px solid rgba(0,229,255,0.15);
  overflow: hidden;
}
.hero-img-frame::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--purple), var(--cyan));
  z-index: 2;
}
.hero-img-frame::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--purple), var(--cyan), var(--purple));
  z-index: 2;
}

.hero-main-img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  filter: brightness(0.85) saturate(1.1) hue-rotate(10deg);
  transition: transform 6s ease;
}
.hero-img-frame:hover .hero-main-img { transform: scale(1.05); }

.hero-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(155,48,255,0.1) 0%, transparent 50%),
              linear-gradient(0deg, var(--bg) 0%, transparent 25%);
}

.hero-corner {
  position: absolute; width: 20px; height: 20px;
  border-color: var(--cyan); border-style: solid;
}
.corner-tl { top: -1px; left: -1px; border-width: 2px 0 0 2px; }
.corner-tr { top: -1px; right: -1px; border-width: 2px 2px 0 0; }
.corner-bl { bottom: -1px; left: -1px; border-width: 0 0 2px 2px; }
.corner-br { bottom: -1px; right: -1px; border-width: 0 2px 2px 0; }

.hero-badges {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 12px;
}
.h-badge {
  background: var(--card); border: 1px solid var(--border);
  padding: 14px 18px; display: flex; align-items: center; gap: 12px;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
  transition: border-color 0.3s;
}
.h-badge:hover { border-color: rgba(0,229,255,0.3); }
.h-badge-icon { font-size: 20px; }
.h-badge-info {}
.h-badge-val { font-family: 'Black Ops One', cursive; font-size: 16px; color: var(--cyan); letter-spacing: 1px; }
.h-badge-lbl { font-size: 10px; color: var(--muted); letter-spacing: 2px; text-transform: uppercase; margin-top: 2px; }

@keyframes slideUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeIn { from{opacity:0} to{opacity:1} }

/* ─── TICKER ─── */
.ticker {
  overflow: hidden;
  border-top: 1px solid rgba(0,229,255,0.1);
  border-bottom: 1px solid rgba(0,229,255,0.1);
  background: var(--surface);
  padding: 0; position: relative;
}
.ticker::before, .ticker::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2;
}
.ticker::before { left: 0; background: linear-gradient(90deg, var(--surface), transparent); }
.ticker::after { right: 0; background: linear-gradient(-90deg, var(--surface), transparent); }

.ticker-inner { display: flex; width: max-content; animation: tick 30s linear infinite; }
.t-item {
  display: flex; align-items: center; padding: 14px 24px; gap: 0;
  white-space: nowrap;
}
.t-txt { font-family: 'Share Tech Mono', monospace; font-size: 11px; letter-spacing: 4px; color: var(--muted); text-transform: uppercase; }
.t-txt.hi { color: var(--cyan); }
.t-sep { font-size: 8px; color: var(--border); padding: 0 16px; }
@keyframes tick { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ─── SECTION COMMONS ─── */
.s-tag {
  display: flex; align-items: center; gap: 12px; margin-bottom: 12px;
}
.s-tag-line {
  width: 24px; height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--purple));
}
.s-tag-txt { font-family: 'Share Tech Mono', monospace; font-size: 10px; color: var(--cyan); letter-spacing: 4px; text-transform: uppercase; }

.s-title {
  font-family: 'Black Ops One', cursive;
  font-size: clamp(36px, 4vw, 58px); letter-spacing: 2px; text-transform: uppercase; line-height: 1;
}
.s-title .grd {
  background: linear-gradient(90deg, var(--cyan), var(--purple2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.s-title .strk {
  -webkit-text-stroke: 1px rgba(255,255,255,0.15); color: transparent;
}

/* ─── PRODUCTS ─── */
.products { padding: 110px 64px; background: var(--bg); }

.prod-top {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 48px; flex-wrap: wrap; gap: 24px;
}

.filter-row { display: flex; gap: 8px; flex-wrap: wrap; }
.fpill {
  background: transparent; border: 1px solid var(--border);
  color: var(--muted); padding: 8px 22px;
  font-family: 'Rajdhani', sans-serif; font-size: 12px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; cursor: pointer;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
  transition: all 0.2s;
}
.fpill:hover, .fpill.on {
  background: linear-gradient(135deg, var(--cyan-dim), var(--purple-dim));
  border-color: var(--cyan); color: var(--cyan);
  box-shadow: 0 0 16px var(--cyan-glow);
}

.pgrid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}

.pcard {
  background: var(--card); border: 1px solid var(--border);
  overflow: hidden; cursor: pointer;
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), border-color 0.3s, box-shadow 0.35s;
  animation: slideUp 0.5s both; position: relative;
}
.pcard::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--purple));
  opacity: 0; transition: opacity 0.3s; z-index: 2;
}
.pcard:hover { transform: translateY(-10px); border-color: rgba(0,229,255,0.3); box-shadow: 0 24px 60px rgba(0,0,0,0.6), 0 0 40px rgba(0,229,255,0.05); }
.pcard:hover::before { opacity: 1; }

.pcard-img-wrap { aspect-ratio: 1 / 1; width: 100%; overflow: hidden; position: relative; background: var(--card2); display: block; }
.pcard-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 0.6s ease, filter 0.4s; filter: brightness(0.9) saturate(0.9); }
.pcard:hover .pcard-img { transform: scale(1.1); filter: brightness(1) saturate(1.2); }

.pcard-strain {
  position: absolute; top: 10px; left: 10px;
  padding: 3px 10px; font-family: 'Share Tech Mono', monospace; font-size: 9px;
  letter-spacing: 2px; text-transform: uppercase;
  clip-path: polygon(4px 0%, 100% 0%, calc(100% - 4px) 100%, 0% 100%);
}
.s-indica { background: rgba(155,48,255,0.35); color: #d090ff; border: 1px solid rgba(155,48,255,0.5); }
.s-sativa { background: rgba(245,230,66,0.15); color: var(--yellow); border: 1px solid rgba(245,230,66,0.3); }
.s-hybrid { background: rgba(0,229,255,0.12); color: var(--cyan); border: 1px solid rgba(0,229,255,0.3); }

.pcard-hot {
  position: absolute; top: 10px; right: 10px;
  background: var(--magenta); color: #fff;
  font-family: 'Rajdhani', sans-serif; font-size: 9px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 3px 10px;
  clip-path: polygon(4px 0%, 100% 0%, calc(100% - 4px) 100%, 0% 100%);
}

.pcard-scan {
  position: absolute; bottom: 0; left: 0; right: 0; height: 50%;
  background: linear-gradient(0deg, rgba(0,0,0,0.6) 0%, transparent 100%);
  pointer-events: none;
}

.pcard-body { padding: 18px 18px 20px; }
.pcard-name { font-family: 'Black Ops One', cursive; font-size: 14px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 4px; color: var(--white); }
.pcard-wt { font-family: 'Share Tech Mono', monospace; font-size: 10px; color: var(--muted); letter-spacing: 2px; margin-bottom: 16px; }
.pcard-foot { display: flex; align-items: center; justify-content: space-between; }
.pcard-price { font-family: 'Black Ops One', cursive; font-size: 22px; color: var(--cyan); letter-spacing: 1px; }

.pcard-btn {
  background: linear-gradient(135deg, var(--cyan-dim), var(--purple-dim));
  color: var(--cyan); border: 1px solid rgba(0,229,255,0.25);
  padding: 7px 16px;
  font-family: 'Rajdhani', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; cursor: pointer;
  clip-path: polygon(4px 0%, 100% 0%, calc(100% - 4px) 100%, 0% 100%);
  transition: all 0.2s;
}
.pcard-btn:hover { background: linear-gradient(135deg, var(--cyan), var(--purple)); color: var(--bg); border-color: transparent; }

/* ─── FEATURE STRIP ─── */
.feature-strip {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 3px; overflow: hidden;
}

.fstrip-tile {
  position: relative; height: 400px; overflow: hidden; cursor: pointer;
}
.fstrip-img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.6) saturate(0.8);
  transition: transform 0.6s ease, filter 0.4s;
}
.fstrip-tile:hover .fstrip-img { transform: scale(1.1); filter: brightness(0.85) saturate(1.1); }

.fstrip-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(5,5,10,0.85) 0%, transparent 50%);
}
.fstrip-tile::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--purple));
  opacity: 0; transition: opacity 0.3s; z-index: 2;
}
.fstrip-tile:hover::before { opacity: 1; }

.fstrip-content {
  position: absolute; bottom: 28px; left: 24px; right: 24px; z-index: 2;
}
.fstrip-label { font-family: 'Share Tech Mono', monospace; font-size: 10px; color: var(--cyan); letter-spacing: 4px; text-transform: uppercase; margin-bottom: 8px; }
.fstrip-name { font-family: 'Black Ops One', cursive; font-size: 22px; letter-spacing: 2px; text-transform: uppercase; color: var(--white); margin-bottom: 4px; }
.fstrip-price { font-family: 'Black Ops One', cursive; font-size: 18px; color: var(--cyan); }

/* ─── LAB SECTION ─── */
.lab-section {
  padding: 110px 64px; background: var(--surface);
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}

.lab-left .s-title { margin-bottom: 24px; }
.lab-left p { font-size: 15px; color: var(--off); line-height: 1.8; margin-bottom: 36px; max-width: 420px; font-weight: 400; }

.lab-right {}

.coa-card {
  background: var(--card); border: 1px solid var(--border); padding: 32px;
  position: relative; overflow: hidden;
}
.coa-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--purple), var(--magenta));
}

.coa-header {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px;
  padding-bottom: 16px; border-bottom: 1px solid var(--border);
}
.coa-title { font-family: 'Black Ops One', cursive; font-size: 14px; letter-spacing: 2px; color: var(--white); text-transform: uppercase; }
.coa-pass { font-family: 'Share Tech Mono', monospace; font-size: 11px; color: var(--cyan); letter-spacing: 2px; }

.coa-rows { display: flex; flex-direction: column; gap: 0; }
.coa-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.04);
}
.coa-row:last-child { border-bottom: none; }
.coa-label { font-size: 13px; color: var(--muted); font-weight: 400; letter-spacing: 0.5px; }
.coa-bar-wrap { flex: 1; margin: 0 20px; height: 3px; background: var(--border); border-radius: 2px; }
.coa-bar { height: 100%; border-radius: 2px; background: linear-gradient(90deg, var(--cyan), var(--purple)); transition: width 1.5s ease; }
.coa-val { font-family: 'Share Tech Mono', monospace; font-size: 12px; color: var(--cyan); min-width: 70px; text-align: right; }
.coa-val.pass { color: #44ff88; }

/* ─── WHOLESALE ─── */
.wholesale {
  padding: 110px 64px; background: var(--bg); position: relative; overflow: hidden;
}

.wholesale::before {
  content: 'W/S';
  position: absolute; right: -40px; top: 50%; transform: translateY(-50%);
  font-family: 'Black Ops One', cursive; font-size: 280px; letter-spacing: -10px;
  color: rgba(0,229,255,0.02); line-height: 1; pointer-events: none;
}

.ws-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; margin-top: 60px; }

.ws-info .ws-desc { font-size: 15px; color: var(--off); line-height: 1.9; margin-bottom: 36px; max-width: 400px; font-weight: 400; }

.ws-perks { display: flex; flex-direction: column; gap: 14px; }
.ws-perk { display: flex; align-items: center; gap: 14px; }
.ws-perk-icon { color: var(--cyan); font-size: 14px; flex-shrink: 0; }
.ws-perk-txt { font-size: 14px; color: var(--off); font-weight: 400; }

.ws-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.fgroup { display: flex; flex-direction: column; gap: 8px; }
.flabel { font-family: 'Share Tech Mono', monospace; font-size: 10px; color: var(--cyan); letter-spacing: 4px; text-transform: uppercase; }

.finput, .fselect, .ftextarea {
  background: var(--card); border: 1px solid var(--border);
  color: var(--white); padding: 13px 16px;
  font-family: 'Rajdhani', sans-serif; font-size: 14px; font-weight: 400;
  outline: none; transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  width: 100%;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}
.finput:focus, .fselect:focus, .ftextarea:focus {
  border-color: var(--cyan); background: rgba(0,229,255,0.04);
  box-shadow: 0 0 20px rgba(0,229,255,0.08);
}
.finput::placeholder, .ftextarea::placeholder { color: var(--muted2); }
.fselect option { background: #0c0c18; }
.ftextarea { resize: vertical; min-height: 100px; clip-path: none; }

/* CAPTCHA CHECKBOX */
.captcha-wrap {
  background: var(--card); border: 1px solid var(--border);
  padding: 18px 20px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; position: relative; overflow: hidden;
  transition: border-color 0.3s;
}
.captcha-wrap.verified { border-color: #44ff88; }
.captcha-wrap::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, var(--cyan), var(--purple));
}

.cap-left { display: flex; align-items: center; gap: 16px; }

.cap-checkbox {
  width: 28px; height: 28px; border: 2px solid var(--border);
  background: var(--card2); border-radius: 3px; cursor: pointer;
  position: relative; flex-shrink: 0;
  transition: border-color 0.3s, background 0.3s;
  display: flex; align-items: center; justify-content: center;
}
.cap-checkbox:hover { border-color: var(--cyan); }
.cap-checkbox.checking {
  border-color: var(--cyan);
  animation: capSpin 0.6s linear;
}
.cap-checkbox.done {
  border-color: #44ff88; background: rgba(68,255,136,0.1);
}
.cap-check-inner {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--muted2); transition: all 0.3s;
}
.cap-checkbox.checking .cap-check-inner { background: var(--cyan); transform: scale(0.7); }
.cap-checkbox.done .cap-check-inner { display: none; }
.cap-checkmark {
  display: none; color: #44ff88; font-size: 16px; font-weight: bold;
}
.cap-checkbox.done .cap-checkmark { display: block; }

@keyframes capSpin {
  0% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(0.9); }
  100% { transform: rotate(360deg) scale(1); }
}

.cap-label { font-family: 'Rajdhani', sans-serif; font-size: 14px; font-weight: 500; color: var(--off); letter-spacing: 1px; }
.cap-label.done-txt { color: #44ff88; }

.cap-brand {
  display: flex; flex-direction: column; align-items: center; gap: 3px; opacity: 0.4;
}
.cap-brand-logo { font-family: 'Share Tech Mono', monospace; font-size: 9px; color: var(--cyan); letter-spacing: 2px; }
.cap-brand-sub { font-size: 8px; color: var(--muted); letter-spacing: 1px; }

.cap-shield { font-size: 20px; }

@keyframes shake { 0%,100%{transform:translateX(0)} 25%,75%{transform:translateX(-6px)} 50%{transform:translateX(6px)} }

.btn-submit {
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  color: var(--bg); border: none; padding: 16px;
  font-family: 'Black Ops One', cursive; font-size: 16px; letter-spacing: 4px;
  text-transform: uppercase; cursor: pointer; width: 100%;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  transition: opacity 0.2s, box-shadow 0.2s, transform 0.15s;
  position: relative; overflow: hidden;
}
.btn-submit::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%); }
.btn-submit:hover:not(:disabled) { opacity: 0.9; box-shadow: 0 12px 48px var(--cyan-glow); transform: translateY(-2px); }
.btn-submit:disabled { background: var(--muted2); cursor: not-allowed; transform: none; box-shadow: none; }

/* ─── WHY ─── */
.why { padding: 110px 64px; background: var(--surface); }

.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 3px; margin-top: 60px; }

.why-tile {
  background: var(--card); border: 1px solid var(--border);
  padding: 40px 32px; position: relative; overflow: hidden;
  transition: border-color 0.3s;
}
.why-tile::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--purple));
  opacity: 0; transition: opacity 0.3s;
}
.why-tile:hover { border-color: rgba(0,229,255,0.25); }
.why-tile:hover::before { opacity: 1; }

.why-num {
  font-family: 'Black Ops One', cursive; font-size: 80px; color: rgba(0,229,255,0.04);
  position: absolute; top: -10px; right: 16px; line-height: 1; pointer-events: none;
}
.why-icon { font-size: 28px; margin-bottom: 18px; }
.why-name { font-family: 'Black Ops One', cursive; font-size: 16px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 12px; color: var(--white); }
.why-desc { font-size: 13px; color: var(--muted); line-height: 1.8; font-weight: 400; }

/* ─── STATS ─── */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: var(--card2);
  border-top: 1px solid rgba(0,229,255,0.1);
  border-bottom: 1px solid rgba(0,229,255,0.1);
}

.stat-cell {
  padding: 50px 40px; text-align: center; position: relative;
  border-right: 1px solid var(--border);
}
.stat-cell:last-child { border-right: none; }
.stat-cell::before {
  content: ''; position: absolute; top: 0; left: 20%; right: 20%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
}

.stat-num {
  font-family: 'Black Ops One', cursive; font-size: 52px; letter-spacing: 2px;
  background: linear-gradient(135deg, var(--cyan), var(--purple2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1; margin-bottom: 10px;
}
.stat-lbl { font-family: 'Share Tech Mono', monospace; font-size: 10px; color: var(--muted); letter-spacing: 3px; text-transform: uppercase; }

/* ─── NEWSLETTER ─── */
.newsletter { padding: 100px 64px; background: var(--bg); display: flex; align-items: center; gap: 80px; }
.nl-left { flex: 1; }
.nl-left .s-title { margin-bottom: 16px; }
.nl-left p { font-size: 15px; color: var(--off); line-height: 1.8; font-weight: 400; }
.nl-form { flex: 0 0 460px; display: flex; gap: 0; }
.nl-input {
  flex: 1; background: var(--card); border: 1px solid var(--border);
  border-right: none; color: var(--white); padding: 15px 20px;
  font-family: 'Rajdhani', sans-serif; font-size: 14px; font-weight: 400; outline: none;
  transition: border-color 0.2s;
  clip-path: polygon(8px 0%, 100% 0%, 100% 100%, 0% 100%);
}
.nl-input::placeholder { color: var(--muted2); }
.nl-input:focus { border-color: var(--cyan); }
.nl-btn {
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  color: var(--bg); border: none; padding: 15px 28px;
  font-family: 'Black Ops One', cursive; font-size: 13px; letter-spacing: 3px;
  text-transform: uppercase; cursor: pointer; white-space: nowrap;
  clip-path: polygon(0% 0%, calc(100% - 8px) 0%, 100% 100%, 0% 100%);
  transition: opacity 0.2s, box-shadow 0.2s;
}
.nl-btn:hover { opacity: 0.9; box-shadow: 0 6px 30px var(--cyan-glow); }

/* ─── FOOTER ─── */
footer {
  background: var(--card); border-top: 1px solid rgba(0,229,255,0.08);
  padding: 80px 64px 36px;
}
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 64px; margin-bottom: 56px; }

.footer-logo-img { height: 70px; margin-bottom: 16px; display: block; filter: drop-shadow(0 0 20px rgba(0,229,255,0.2)); }

.footer-desc { font-size: 13px; color: var(--muted); line-height: 1.8; max-width: 260px; margin-bottom: 22px; font-weight: 400; }
.footer-contacts { display: flex; flex-direction: column; gap: 8px; }
.footer-contacts a { font-family: 'Share Tech Mono', monospace; font-size: 11px; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.footer-contacts a:hover { color: var(--cyan); }

.footer-col-h { font-family: 'Black Ops One', cursive; font-size: 13px; letter-spacing: 3px; text-transform: uppercase; color: var(--white); margin-bottom: 22px; padding-bottom: 12px; border-bottom: 1px solid rgba(0,229,255,0.1); }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { text-decoration: none; font-size: 13px; color: var(--muted); transition: color 0.2s; font-weight: 400; }
.footer-col ul a:hover { color: var(--cyan); }

.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 28px;
  display: flex; align-items: center; justify-content: space-between;
}
.footer-copy { font-family: 'Share Tech Mono', monospace; font-size: 10px; color: var(--muted2); letter-spacing: 2px; }
.footer-tags { display: flex; gap: 12px; }
.footer-tag {
  font-family: 'Share Tech Mono', monospace; font-size: 9px; color: var(--muted);
  letter-spacing: 2px; padding: 4px 12px; border: 1px solid var(--border);
  clip-path: polygon(4px 0%, 100% 0%, calc(100% - 4px) 100%, 0% 100%);
}

/* ─── TOAST ─── */
.toast {
  position: fixed; bottom: 32px; right: 32px; z-index: 9000;
  background: var(--card2);
  border-left: 3px solid var(--cyan);
  border-top: 1px solid rgba(0,229,255,0.2);
  border-right: 1px solid rgba(0,229,255,0.2);
  border-bottom: 1px solid rgba(0,229,255,0.2);
  padding: 16px 24px; font-size: 13px; color: var(--off);
  transform: translateY(80px) skewX(-2deg); opacity: 0;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), opacity 0.3s;
  box-shadow: 0 16px 48px rgba(0,0,0,0.5), 0 0 30px rgba(0,229,255,0.1);
  display: flex; align-items: center; gap: 12px; max-width: 320px;
  font-family: 'Rajdhani', sans-serif; font-weight: 500; letter-spacing: 0.5px;
}
.toast.on { transform: translateY(0) skewX(-2deg); opacity: 1; }
.toast-icon { color: var(--cyan); font-family: 'Share Tech Mono', monospace; font-size: 14px; }

/* ─── REVEAL ─── */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.9s ease, transform 0.9s ease; }
.reveal.vis { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  nav, footer { padding-left: 24px; padding-right: 24px; }
  nav.stuck { padding-left: 24px; padding-right: 24px; }
  .nav-links { display: none; }
  .hero-content { grid-template-columns: 1fr; padding: 140px 24px 80px; }
  .hero-right { display: none; }
  .products, .lab-section, .wholesale, .why, .newsletter { padding: 80px 24px; }
  .pgrid { grid-template-columns: repeat(2, 1fr); }
  .feature-strip { grid-template-columns: 1fr; }
  .fstrip-tile { height: 300px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .lab-section { grid-template-columns: 1fr; }
  .ws-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .newsletter { flex-direction: column; padding: 80px 24px; }
  .nl-form { flex: 0 0 auto; width: 100%; }
}
@media (max-width: 640px) {
  .pgrid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; }
  .nl-form { flex-direction: column; }
  .nl-input { clip-path: none; border-right: 1px solid var(--border); }
  .nl-btn { clip-path: none; }
}

/* ── SINGLE PRODUCT PAGE ── */
.single-product-wrap {
  min-height: 100vh;
  padding: 200px 20px 60px;
  background: var(--bg);
}
.single-product-container { max-width: 1100px; margin: 0 auto; }
.back-link { display: inline-block; color: var(--cyan); text-decoration: none; font-family: 'Share Tech Mono', monospace; font-size: 0.85rem; margin-bottom: 32px; opacity: 0.8; transition: opacity 0.2s; }
.back-link:hover { opacity: 1; }
.single-product-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; margin-bottom: 60px; }
.single-product-img-wrap { border: 1px solid var(--border); overflow: hidden; background: var(--card); aspect-ratio: 1 / 1; width: 100%; position: relative; }
.single-product-img-wrap img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; } .single-product-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.single-product-img-placeholder { width: 100%; aspect-ratio: 1/1; background: var(--card2); }
.single-product-cat { display: inline-block; font-family: 'Share Tech Mono', monospace; font-size: 0.75rem; color: var(--cyan); border: 1px solid var(--cyan); padding: 3px 10px; margin-bottom: 16px; letter-spacing: 0.1em; }
.single-product-title { font-family: 'Black Ops One', sans-serif; font-size: 2.2rem; color: var(--white); margin-bottom: 16px; line-height: 1.1; }
.single-product-price { font-size: 1.8rem; color: var(--cyan); font-weight: 700; margin-bottom: 20px; }
.single-product-desc { color: var(--off); line-height: 1.7; margin-bottom: 24px; font-size: 1rem; }
.single-product-cart .quantity { margin-right: 12px; }
.single-product-cart .qty { background: var(--card); border: 1px solid var(--border); color: var(--white); padding: 10px 16px; font-size: 1rem; width: 80px; border-radius: 2px; }
.single-product-cart .single_add_to_cart_button { background: var(--cyan) !important; color: #000 !important; border: none !important; padding: 12px 32px !important; font-family: 'Black Ops One', sans-serif !important; font-size: 1rem !important; letter-spacing: 0.05em !important; cursor: pointer !important; border-radius: 2px !important; transition: background 0.2s !important; }
.single-product-cart .single_add_to_cart_button:hover { background: var(--cyan2) !important; }
.single-product-badges { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 28px; }
.spb { background: var(--card); border: 1px solid var(--border); padding: 10px 14px; font-size: 0.85rem; color: var(--off); border-radius: 2px; }
.single-product-full-desc { background: var(--card); border: 1px solid var(--border); padding: 32px; border-radius: 4px; }
.single-product-full-desc h3 { font-family: 'Black Ops One', sans-serif; color: var(--cyan); margin-bottom: 16px; font-size: 1.2rem; }
.single-product-full-desc p { color: var(--off); line-height: 1.7; }

/* ── PAGE TEMPLATE ── */
.page-wrap { min-height: 100vh; padding: 120px 20px 60px; background: var(--bg); }
.page-container { max-width: 900px; margin: 0 auto; }
.page-title { font-family: 'Black Ops One', sans-serif; font-size: 2.5rem; color: var(--cyan); margin-bottom: 32px; }
.page-content { color: var(--off); line-height: 1.8; font-size: 1rem; }
.page-content h2, .page-content h3 { color: var(--white); margin: 24px 0 12px; }
.page-content a { color: var(--cyan); }
.page-content p { margin-bottom: 16px; }

/* ── PCARD ── */
.pcard { display: block; background: var(--card); border: 1px solid var(--border); border-radius: 4px; overflow: hidden; text-decoration: none; transition: border-color 0.2s, transform 0.2s; }
.pcard:hover { border-color: var(--cyan); transform: translateY(-4px); }
.pcard-img-wrap { aspect-ratio: 1; overflow: hidden; background: var(--card2); }
.pcard-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pcard-img-placeholder { width: 100%; height: 100%; background: var(--card2); }
.pcard-info { padding: 14px; }
.pcard-cat { font-family: 'Share Tech Mono', monospace; font-size: 0.7rem; color: var(--cyan); letter-spacing: 0.1em; display: block; margin-bottom: 6px; }
.pcard-name { color: var(--white); font-weight: 600; font-size: 0.95rem; }

/* ── NAV ALWAYS COMPACT ── */
nav {
  background: rgba(5,5,10,0.95) !important;
  backdrop-filter: blur(20px) !important;
  border-bottom: 1px solid rgba(0,229,255,0.12) !important;
  padding: 12px 56px !important;
}
.nav-logo { height: 44px !important; width: auto !important; }

/* ── COA TABS ── */
.coa-tabs { display: flex; gap: 8px; margin-bottom: 16px; }
.coa-tab { background: transparent; border: 1px solid var(--border); color: var(--muted); padding: 8px 18px; font-family: 'Rajdhani', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%); transition: all 0.2s; }
.coa-tab.on, .coa-tab:hover { border-color: var(--cyan); color: var(--cyan); background: rgba(0,229,255,0.06); }

/* ── HAMBURGER & MOBILE MENU ── */
.nav-hamburger { display: none; background: transparent; border: 1px solid rgba(0,229,255,0.3); color: var(--cyan); font-size: 20px; width: 40px; height: 40px; cursor: pointer; align-items: center; justify-content: center; }
@media (max-width: 1100px) { .nav-hamburger { display: flex; } }
.mobile-menu { display: none; flex-direction: column; position: fixed; top: 60px; left: 0; right: 0; background: rgba(5,5,10,0.98); backdrop-filter: blur(20px); border-bottom: 1px solid rgba(0,229,255,0.12); z-index: 499; padding: 20px 24px; gap: 4px; }
.mobile-menu.open { display: flex; }
.mobile-menu a { color: var(--off); text-decoration: none; font-family: 'Rajdhani', sans-serif; font-size: 16px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.05); transition: color 0.2s; }
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--cyan); }
.t-txt.hi-purple { color: #c060ff; }

/* ── MOBILE ── */
@media (max-width: 480px) {
  nav { padding: 10px 16px !important; }
  .nav-logo { height: 36px !important; }
  .nav-right { display: none !important; }
  .hero-content { padding: 100px 16px 60px !important; }
  .hero h1 { font-size: 42px !important; }
  .hero-btns { flex-direction: column; gap: 12px; }
  .btn-cyber, .btn-ghost-cyber { width: 100%; text-align: center; }
  .products { padding: 60px 16px !important; }
  .prod-top { flex-direction: column; align-items: flex-start; }
  .pgrid { grid-template-columns: 1fr !important; gap: 12px; }
  .filter-row { gap: 6px; }
  .fpill { padding: 6px 14px; font-size: 11px; }
  .lab-section { padding: 60px 16px !important; gap: 40px; }
  .wholesale { padding: 60px 16px !important; }
  .form-row { grid-template-columns: 1fr !important; }
  .finput, .fselect, .ftextarea { font-size: 16px; }
  .why { padding: 60px 16px !important; }
  .why-grid { grid-template-columns: 1fr !important; gap: 12px; }
  .stats { grid-template-columns: 1fr 1fr !important; }
  .stat-num { font-size: 36px; }
  .newsletter { padding: 60px 16px !important; gap: 32px; }
  .nl-form { flex-direction: column; gap: 8px; }
  .nl-input { clip-path: none !important; border-right: 1px solid var(--border) !important; width: 100%; }
  .nl-btn { clip-path: none !important; width: 100%; padding: 14px; }
  footer { padding: 60px 16px 28px; }
  .footer-top { grid-template-columns: 1fr !important; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .single-product-wrap { padding: 100px 16px 40px !important; }
  .single-product-grid { grid-template-columns: 1fr !important; gap: 24px; }
  .single-product-title { font-size: 1.4rem !important; }
  .single-product-badges { grid-template-columns: 1fr !important; }
  .gate-logo { width: 160px !important; }
  .gate-btns { flex-direction: column; width: 100%; max-width: 280px; }
  .gate-yes, .gate-no { width: 100%; }
  .s-title { font-size: 28px !important; }
}

/* ── PORTAL NAV LINK ── */
.nav-portal-link {
  color: var(--cyan) !important;
  border: 1px solid rgba(0,229,255,0.3);
  padding: 4px 12px !important;
  font-size: 12px !important;
  letter-spacing: 2px;
  transition: background 0.2s, box-shadow 0.2s !important;
}
.nav-portal-link:hover {
  background: rgba(0,229,255,0.08);
  box-shadow: 0 0 16px rgba(0,229,255,0.2);
}

/* ══════════════════════════════════
   SHOP DROPDOWN MENU
══════════════════════════════════ */
.nav-has-drop { position: relative; }

.nav-drop-trigger {
  display: flex; align-items: center; gap: 5px; cursor: pointer;
}
.nav-caret {
  font-size: 10px;
  display: inline-block;
  transition: transform 0.25s;
  opacity: 0.6;
}
.nav-has-drop:hover .nav-caret { transform: rotate(180deg); opacity: 1; }

/* The dropdown panel */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%);
  width: 280px;
  background: #08080f;
  border: 1px solid var(--border);
  border-top: 2px solid var(--cyan);
  list-style: none;
  padding: 8px 0;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-8px);
  transition: opacity 0.22s, transform 0.22s;
  box-shadow: 0 24px 60px rgba(0,0,0,0.7), 0 0 40px rgba(0,229,255,0.05);
}
/* Arrow pointer */
.nav-dropdown::before {
  content: '';
  position: absolute; top: -7px; left: 50%;
  transform: translateX(-50%);
  width: 12px; height: 6px;
  background: var(--cyan);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

/* Show on hover */
.nav-has-drop:hover .nav-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

/* Section headers */
.nav-drop-header {
  padding: 10px 18px 4px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--cyan);
  text-transform: uppercase;
  opacity: 0.6;
}

/* Divider */
.nav-drop-divider {
  height: 1px;
  background: var(--border);
  margin: 6px 0;
}

/* Dropdown links */
.nav-dropdown li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  color: var(--off);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
  font-size: 13px;
}
.nav-dropdown li a:hover {
  background: rgba(0,229,255,0.06);
  color: var(--white);
}

.nav-drop-icon { font-size: 16px; flex-shrink: 0; width: 22px; text-align: center; }
.nav-drop-text { display: flex; flex-direction: column; gap: 1px; }
.nav-drop-text strong { font-size: 13px; color: var(--white); font-weight: 600; }
.nav-drop-text em { font-size: 11px; color: var(--muted); font-style: normal; }

/* "View All" link at bottom */
.nav-drop-all {
  font-family: 'Share Tech Mono', monospace !important;
  font-size: 11px !important;
  letter-spacing: 2px !important;
  color: var(--cyan) !important;
  text-transform: uppercase;
  justify-content: center !important;
  padding: 10px 18px !important;
}
.nav-drop-all:hover { color: var(--cyan2) !important; }

/* ══════════════════════════════════
   MOBILE SHOP DROPDOWN
══════════════════════════════════ */
.mobile-drop-toggle {
  padding: 16px 24px;
  font-size: 15px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-drop-toggle:hover { color: var(--cyan); }
.mobile-drop-toggle.open { color: var(--cyan); }
.mobile-caret {
  font-size: 12px; opacity: 0.6;
  transition: transform 0.25s;
}
.mobile-drop-toggle.open .mobile-caret { transform: rotate(180deg); opacity: 1; }

.mobile-drop-items {
  display: none;
  flex-direction: column;
  background: rgba(0,229,255,0.03);
  border-bottom: 1px solid var(--border);
}
.mobile-drop-items.open { display: flex; }
.mobile-drop-items a {
  padding: 12px 32px !important;
  font-size: 13px !important;
  color: var(--muted) !important;
  letter-spacing: 1px !important;
  border-bottom: none !important;
}
.mobile-drop-items a:hover { color: var(--cyan) !important; }:root {
  --bg: #05050a;
  --surface: #080810;
  --card: #0c0c18;
  --card2: #10101e;
  --border: #1a1a30;
  --cyan: #00e5ff;
  --cyan2: #40f0ff;
  --cyan-dim: rgba(0,229,255,0.08);
  --cyan-glow: rgba(0,229,255,0.3);
  --purple: #9b30ff;
  --purple2: #c060ff;
  --purple-dim: rgba(155,48,255,0.1);
  --purple-glow: rgba(155,48,255,0.3);
  --magenta: #ff2d9b;
  --yellow: #f5e642;
  --white: #f0f2ff;
  --off: #b0b8d0;
  --muted: #5a6080;
  --muted2: #3a4060;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 400;
  overflow-x: hidden;
}

/* SCANLINES */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 9997; pointer-events: none;
  background: repeating-linear-gradient(
    0deg, transparent, transparent 2px,
    rgba(0,229,255,0.012) 2px, rgba(0,229,255,0.012) 4px
  );
}

/* GRAIN */
body::after {
  content: '';
  position: fixed; inset: 0; z-index: 9996; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.04;
}

/* ─── AGE GATE ─── */
.gate {
  position: fixed; inset: 0; z-index: 3000;
  background: var(--bg);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 28px; text-align: center; padding: 40px;
  transition: opacity 0.7s, visibility 0.7s;
}
.gate.gone { opacity: 0; visibility: hidden; pointer-events: none; }

.gate-logo-wrap { position: relative; }
.gate-logo { width: 220px; filter: drop-shadow(0 0 40px rgba(0,229,255,0.4)); animation: pulse-glow 3s ease-in-out infinite; }
@keyframes pulse-glow {
  0%,100% { filter: drop-shadow(0 0 30px rgba(0,229,255,0.3)); }
  50% { filter: drop-shadow(0 0 60px rgba(0,229,255,0.6)) drop-shadow(0 0 80px rgba(155,48,255,0.3)); }
}

.gate-sub {
  font-family: 'Share Tech Mono', monospace; font-size: 11px;
  color: var(--muted); letter-spacing: 5px; text-transform: uppercase;
}

.gate-line { width: 80px; height: 1px; background: linear-gradient(90deg, transparent, var(--cyan), transparent); }

.gate-q {
  font-family: 'Black Ops One', cursive; font-size: 22px;
  color: var(--white); letter-spacing: 2px; text-transform: uppercase;
}

.gate-btns { display: flex; gap: 16px; }

.gate-yes {
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  color: var(--bg); border: none; padding: 14px 48px;
  font-family: 'Black Ops One', cursive; font-size: 15px;
  letter-spacing: 3px; text-transform: uppercase; cursor: pointer;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
}
.gate-yes:hover { opacity: 0.9; transform: translateY(-2px); box-shadow: 0 12px 40px var(--cyan-glow); }

.gate-no {
  background: transparent; color: var(--muted);
  border: 1px solid var(--border); padding: 14px 48px;
  font-family: 'Rajdhani', sans-serif; font-size: 14px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase; cursor: pointer;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: border-color 0.2s, color 0.2s;
}
.gate-no:hover { border-color: var(--muted); color: var(--white); }

.gate-fine { font-size: 11px; color: var(--muted2); max-width: 340px; line-height: 1.7; }

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 56px;
  transition: background 0.4s, padding 0.3s;
}
nav.stuck {
  background: rgba(5,5,10,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,229,255,0.12);
  padding: 12px 56px;
}

.nav-logo { height: 52px; transition: filter 0.3s; }
nav.stuck .nav-logo { height: 44px; }
.nav-logo:hover { filter: drop-shadow(0 0 16px var(--cyan-glow)); }

.nav-links {
  display: flex; gap: 40px; list-style: none;
  position: absolute; left: 50%; transform: translateX(-50%);
}
.nav-links a {
  text-decoration: none; color: var(--muted);
  font-size: 12px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
  transition: color 0.2s; position: relative; padding-bottom: 4px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px;
  background: linear-gradient(90deg, var(--cyan), var(--purple));
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--cyan); }
.nav-links a:hover::after { width: 100%; }

.nav-right { display: flex; align-items: center; gap: 20px; }
.nav-phone { font-family: 'Share Tech Mono', monospace; font-size: 11px; color: var(--muted); }
.nav-ws-btn {
  background: transparent;
  border: 1px solid var(--cyan);
  color: var(--cyan); padding: 8px 22px;
  font-family: 'Rajdhani', sans-serif; font-size: 12px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; cursor: pointer;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
  transition: background 0.2s, box-shadow 0.2s;
}
.nav-ws-btn:hover { background: var(--cyan-dim); box-shadow: 0 0 20px var(--cyan-glow); }

/* ─── HERO ─── */
.hero {
  min-height: 100vh; position: relative;
  display: flex; align-items: center; overflow: hidden;
}

/* animated grid bg */
.hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(0,229,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,229,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  perspective: 600px;
  transform: rotateX(40deg) scale(2) translateY(20%);
  transform-origin: bottom center;
  mask-image: linear-gradient(0deg, black 20%, transparent 70%);
}

.hero-orbs {
  position: absolute; inset: 0; pointer-events: none;
}
.orb1 {
  position: absolute; width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(155,48,255,0.12) 0%, transparent 65%);
  top: -200px; right: -100px;
  animation: drift1 10s ease-in-out infinite;
}
.orb2 {
  position: absolute; width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,229,255,0.08) 0%, transparent 65%);
  bottom: -100px; left: -100px;
  animation: drift2 8s ease-in-out infinite;
}
@keyframes drift1 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-30px,30px)} }
@keyframes drift2 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(20px,-25px)} }

.hero-content {
  position: relative; z-index: 2;
  padding: 160px 64px 100px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  width: 100%;
}

.hero-left { position: relative; }

.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid rgba(0,229,255,0.25);
  padding: 6px 16px; margin-bottom: 32px;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  background: rgba(0,229,255,0.05);
  opacity: 0; animation: slideUp 0.7s 0.2s forwards;
}
.hero-tag-dot { width: 6px; height: 6px; background: var(--cyan); border-radius: 50%; animation: blink 1.5s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.2} }
.hero-tag-txt { font-family: 'Share Tech Mono', monospace; font-size: 10px; color: var(--cyan); letter-spacing: 4px; text-transform: uppercase; }

.hero h1 {
  font-family: 'Black Ops One', cursive;
  font-size: clamp(56px, 7vw, 100px);
  line-height: 0.95; letter-spacing: 2px;
  text-transform: uppercase; margin-bottom: 28px;
  opacity: 0; animation: slideUp 0.7s 0.35s forwards;
}
.h1-line1 { display: block; color: var(--white); }
.h1-line2 {
  display: block;
  background: linear-gradient(90deg, var(--cyan), var(--purple2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 30px rgba(0,229,255,0.3));
}
.h1-line3 {
  display: block;
  -webkit-text-stroke: 1px rgba(255,255,255,0.15);
  color: transparent;
}

.hero-p {
  font-size: 16px; color: var(--off); line-height: 1.8;
  max-width: 440px; margin-bottom: 44px; font-weight: 400;
  opacity: 0; animation: slideUp 0.7s 0.5s forwards;
}

.hero-btns {
  display: flex; gap: 16px; align-items: center;
  opacity: 0; animation: slideUp 0.7s 0.65s forwards;
}

.btn-cyber {
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  color: var(--bg); border: none; padding: 16px 40px;
  font-family: 'Black Ops One', cursive; font-size: 14px; letter-spacing: 3px;
  text-transform: uppercase; cursor: pointer;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
  position: relative; overflow: hidden;
}
.btn-cyber::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
}
.btn-cyber:hover { opacity: 0.9; transform: translateY(-3px); box-shadow: 0 16px 50px var(--cyan-glow); }

.btn-ghost-cyber {
  background: transparent; color: var(--cyan); border: 1px solid rgba(0,229,255,0.4);
  padding: 16px 36px;
  font-family: 'Rajdhani', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; cursor: pointer;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  transition: background 0.2s, box-shadow 0.2s;
}
.btn-ghost-cyber:hover { background: var(--cyan-dim); box-shadow: 0 8px 30px var(--cyan-glow); }

.hero-right {
  position: relative; z-index: 2;
  opacity: 0; animation: fadeIn 1s 0.6s forwards;
}

.hero-img-frame {
  position: relative;
  border: 1px solid rgba(0,229,255,0.15);
  overflow: hidden;
}
.hero-img-frame::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--purple), var(--cyan));
  z-index: 2;
}
.hero-img-frame::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--purple), var(--cyan), var(--purple));
  z-index: 2;
}

.hero-main-img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  filter: brightness(0.85) saturate(1.1) hue-rotate(10deg);
  transition: transform 6s ease;
}
.hero-img-frame:hover .hero-main-img { transform: scale(1.05); }

.hero-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(155,48,255,0.1) 0%, transparent 50%),
              linear-gradient(0deg, var(--bg) 0%, transparent 25%);
}

.hero-corner {
  position: absolute; width: 20px; height: 20px;
  border-color: var(--cyan); border-style: solid;
}
.corner-tl { top: -1px; left: -1px; border-width: 2px 0 0 2px; }
.corner-tr { top: -1px; right: -1px; border-width: 2px 2px 0 0; }
.corner-bl { bottom: -1px; left: -1px; border-width: 0 0 2px 2px; }
.corner-br { bottom: -1px; right: -1px; border-width: 0 2px 2px 0; }

.hero-badges {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 12px;
}
.h-badge {
  background: var(--card); border: 1px solid var(--border);
  padding: 14px 18px; display: flex; align-items: center; gap: 12px;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
  transition: border-color 0.3s;
}
.h-badge:hover { border-color: rgba(0,229,255,0.3); }
.h-badge-icon { font-size: 20px; }
.h-badge-info {}
.h-badge-val { font-family: 'Black Ops One', cursive; font-size: 16px; color: var(--cyan); letter-spacing: 1px; }
.h-badge-lbl { font-size: 10px; color: var(--muted); letter-spacing: 2px; text-transform: uppercase; margin-top: 2px; }

@keyframes slideUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeIn { from{opacity:0} to{opacity:1} }

/* ─── TICKER ─── */
.ticker {
  overflow: hidden;
  border-top: 1px solid rgba(0,229,255,0.1);
  border-bottom: 1px solid rgba(0,229,255,0.1);
  background: var(--surface);
  padding: 0; position: relative;
}
.ticker::before, .ticker::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2;
}
.ticker::before { left: 0; background: linear-gradient(90deg, var(--surface), transparent); }
.ticker::after { right: 0; background: linear-gradient(-90deg, var(--surface), transparent); }

.ticker-inner { display: flex; width: max-content; animation: tick 30s linear infinite; }
.t-item {
  display: flex; align-items: center; padding: 14px 24px; gap: 0;
  white-space: nowrap;
}
.t-txt { font-family: 'Share Tech Mono', monospace; font-size: 11px; letter-spacing: 4px; color: var(--muted); text-transform: uppercase; }
.t-txt.hi { color: var(--cyan); }
.t-sep { font-size: 8px; color: var(--border); padding: 0 16px; }
@keyframes tick { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ─── SECTION COMMONS ─── */
.s-tag {
  display: flex; align-items: center; gap: 12px; margin-bottom: 12px;
}
.s-tag-line {
  width: 24px; height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--purple));
}
.s-tag-txt { font-family: 'Share Tech Mono', monospace; font-size: 10px; color: var(--cyan); letter-spacing: 4px; text-transform: uppercase; }

.s-title {
  font-family: 'Black Ops One', cursive;
  font-size: clamp(36px, 4vw, 58px); letter-spacing: 2px; text-transform: uppercase; line-height: 1;
}
.s-title .grd {
  background: linear-gradient(90deg, var(--cyan), var(--purple2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.s-title .strk {
  -webkit-text-stroke: 1px rgba(255,255,255,0.15); color: transparent;
}

/* ─── PRODUCTS ─── */
.products { padding: 110px 64px; background: var(--bg); }

.prod-top {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 48px; flex-wrap: wrap; gap: 24px;
}

.filter-row { display: flex; gap: 8px; flex-wrap: wrap; }
.fpill {
  background: transparent; border: 1px solid var(--border);
  color: var(--muted); padding: 8px 22px;
  font-family: 'Rajdhani', sans-serif; font-size: 12px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; cursor: pointer;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
  transition: all 0.2s;
}
.fpill:hover, .fpill.on {
  background: linear-gradient(135deg, var(--cyan-dim), var(--purple-dim));
  border-color: var(--cyan); color: var(--cyan);
  box-shadow: 0 0 16px var(--cyan-glow);
}

.pgrid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}

.pcard {
  background: var(--card); border: 1px solid var(--border);
  overflow: hidden; cursor: pointer;
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), border-color 0.3s, box-shadow 0.35s;
  animation: slideUp 0.5s both; position: relative;
}
.pcard::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--purple));
  opacity: 0; transition: opacity 0.3s; z-index: 2;
}
.pcard:hover { transform: translateY(-10px); border-color: rgba(0,229,255,0.3); box-shadow: 0 24px 60px rgba(0,0,0,0.6), 0 0 40px rgba(0,229,255,0.05); }
.pcard:hover::before { opacity: 1; }

.pcard-img-wrap { aspect-ratio: 1 / 1; width: 100%; overflow: hidden; position: relative; background: var(--card2); display: block; }
.pcard-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 0.6s ease, filter 0.4s; filter: brightness(0.9) saturate(0.9); }
.pcard:hover .pcard-img { transform: scale(1.1); filter: brightness(1) saturate(1.2); }

.pcard-strain {
  position: absolute; top: 10px; left: 10px;
  padding: 3px 10px; font-family: 'Share Tech Mono', monospace; font-size: 9px;
  letter-spacing: 2px; text-transform: uppercase;
  clip-path: polygon(4px 0%, 100% 0%, calc(100% - 4px) 100%, 0% 100%);
}
.s-indica { background: rgba(155,48,255,0.35); color: #d090ff; border: 1px solid rgba(155,48,255,0.5); }
.s-sativa { background: rgba(245,230,66,0.15); color: var(--yellow); border: 1px solid rgba(245,230,66,0.3); }
.s-hybrid { background: rgba(0,229,255,0.12); color: var(--cyan); border: 1px solid rgba(0,229,255,0.3); }

.pcard-hot {
  position: absolute; top: 10px; right: 10px;
  background: var(--magenta); color: #fff;
  font-family: 'Rajdhani', sans-serif; font-size: 9px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 3px 10px;
  clip-path: polygon(4px 0%, 100% 0%, calc(100% - 4px) 100%, 0% 100%);
}

.pcard-scan {
  position: absolute; bottom: 0; left: 0; right: 0; height: 50%;
  background: linear-gradient(0deg, rgba(0,0,0,0.6) 0%, transparent 100%);
  pointer-events: none;
}

.pcard-body { padding: 18px 18px 20px; }
.pcard-name { font-family: 'Black Ops One', cursive; font-size: 14px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 4px; color: var(--white); }
.pcard-wt { font-family: 'Share Tech Mono', monospace; font-size: 10px; color: var(--muted); letter-spacing: 2px; margin-bottom: 16px; }
.pcard-foot { display: flex; align-items: center; justify-content: space-between; }
.pcard-price { font-family: 'Black Ops One', cursive; font-size: 22px; color: var(--cyan); letter-spacing: 1px; }

.pcard-btn {
  background: linear-gradient(135deg, var(--cyan-dim), var(--purple-dim));
  color: var(--cyan); border: 1px solid rgba(0,229,255,0.25);
  padding: 7px 16px;
  font-family: 'Rajdhani', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; cursor: pointer;
  clip-path: polygon(4px 0%, 100% 0%, calc(100% - 4px) 100%, 0% 100%);
  transition: all 0.2s;
}
.pcard-btn:hover { background: linear-gradient(135deg, var(--cyan), var(--purple)); color: var(--bg); border-color: transparent; }

/* ─── FEATURE STRIP ─── */
.feature-strip {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 3px; overflow: hidden;
}

.fstrip-tile {
  position: relative; height: 400px; overflow: hidden; cursor: pointer;
}
.fstrip-img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.6) saturate(0.8);
  transition: transform 0.6s ease, filter 0.4s;
}
.fstrip-tile:hover .fstrip-img { transform: scale(1.1); filter: brightness(0.85) saturate(1.1); }

.fstrip-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(5,5,10,0.85) 0%, transparent 50%);
}
.fstrip-tile::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--purple));
  opacity: 0; transition: opacity 0.3s; z-index: 2;
}
.fstrip-tile:hover::before { opacity: 1; }

.fstrip-content {
  position: absolute; bottom: 28px; left: 24px; right: 24px; z-index: 2;
}
.fstrip-label { font-family: 'Share Tech Mono', monospace; font-size: 10px; color: var(--cyan); letter-spacing: 4px; text-transform: uppercase; margin-bottom: 8px; }
.fstrip-name { font-family: 'Black Ops One', cursive; font-size: 22px; letter-spacing: 2px; text-transform: uppercase; color: var(--white); margin-bottom: 4px; }
.fstrip-price { font-family: 'Black Ops One', cursive; font-size: 18px; color: var(--cyan); }

/* ─── LAB SECTION ─── */
.lab-section {
  padding: 110px 64px; background: var(--surface);
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}

.lab-left .s-title { margin-bottom: 24px; }
.lab-left p { font-size: 15px; color: var(--off); line-height: 1.8; margin-bottom: 36px; max-width: 420px; font-weight: 400; }

.lab-right {}

.coa-card {
  background: var(--card); border: 1px solid var(--border); padding: 32px;
  position: relative; overflow: hidden;
}
.coa-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--purple), var(--magenta));
}

.coa-header {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px;
  padding-bottom: 16px; border-bottom: 1px solid var(--border);
}
.coa-title { font-family: 'Black Ops One', cursive; font-size: 14px; letter-spacing: 2px; color: var(--white); text-transform: uppercase; }
.coa-pass { font-family: 'Share Tech Mono', monospace; font-size: 11px; color: var(--cyan); letter-spacing: 2px; }

.coa-rows { display: flex; flex-direction: column; gap: 0; }
.coa-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.04);
}
.coa-row:last-child { border-bottom: none; }
.coa-label { font-size: 13px; color: var(--muted); font-weight: 400; letter-spacing: 0.5px; }
.coa-bar-wrap { flex: 1; margin: 0 20px; height: 3px; background: var(--border); border-radius: 2px; }
.coa-bar { height: 100%; border-radius: 2px; background: linear-gradient(90deg, var(--cyan), var(--purple)); transition: width 1.5s ease; }
.coa-val { font-family: 'Share Tech Mono', monospace; font-size: 12px; color: var(--cyan); min-width: 70px; text-align: right; }
.coa-val.pass { color: #44ff88; }

/* ─── WHOLESALE ─── */
.wholesale {
  padding: 110px 64px; background: var(--bg); position: relative; overflow: hidden;
}

.wholesale::before {
  content: 'W/S';
  position: absolute; right: -40px; top: 50%; transform: translateY(-50%);
  font-family: 'Black Ops One', cursive; font-size: 280px; letter-spacing: -10px;
  color: rgba(0,229,255,0.02); line-height: 1; pointer-events: none;
}

.ws-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; margin-top: 60px; }

.ws-info .ws-desc { font-size: 15px; color: var(--off); line-height: 1.9; margin-bottom: 36px; max-width: 400px; font-weight: 400; }

.ws-perks { display: flex; flex-direction: column; gap: 14px; }
.ws-perk { display: flex; align-items: center; gap: 14px; }
.ws-perk-icon { color: var(--cyan); font-size: 14px; flex-shrink: 0; }
.ws-perk-txt { font-size: 14px; color: var(--off); font-weight: 400; }

.ws-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.fgroup { display: flex; flex-direction: column; gap: 8px; }
.flabel { font-family: 'Share Tech Mono', monospace; font-size: 10px; color: var(--cyan); letter-spacing: 4px; text-transform: uppercase; }

.finput, .fselect, .ftextarea {
  background: var(--card); border: 1px solid var(--border);
  color: var(--white); padding: 13px 16px;
  font-family: 'Rajdhani', sans-serif; font-size: 14px; font-weight: 400;
  outline: none; transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  width: 100%;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}
.finput:focus, .fselect:focus, .ftextarea:focus {
  border-color: var(--cyan); background: rgba(0,229,255,0.04);
  box-shadow: 0 0 20px rgba(0,229,255,0.08);
}
.finput::placeholder, .ftextarea::placeholder { color: var(--muted2); }
.fselect option { background: #0c0c18; }
.ftextarea { resize: vertical; min-height: 100px; clip-path: none; }

/* CAPTCHA CHECKBOX */
.captcha-wrap {
  background: var(--card); border: 1px solid var(--border);
  padding: 18px 20px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; position: relative; overflow: hidden;
  transition: border-color 0.3s;
}
.captcha-wrap.verified { border-color: #44ff88; }
.captcha-wrap::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, var(--cyan), var(--purple));
}

.cap-left { display: flex; align-items: center; gap: 16px; }

.cap-checkbox {
  width: 28px; height: 28px; border: 2px solid var(--border);
  background: var(--card2); border-radius: 3px; cursor: pointer;
  position: relative; flex-shrink: 0;
  transition: border-color 0.3s, background 0.3s;
  display: flex; align-items: center; justify-content: center;
}
.cap-checkbox:hover { border-color: var(--cyan); }
.cap-checkbox.checking {
  border-color: var(--cyan);
  animation: capSpin 0.6s linear;
}
.cap-checkbox.done {
  border-color: #44ff88; background: rgba(68,255,136,0.1);
}
.cap-check-inner {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--muted2); transition: all 0.3s;
}
.cap-checkbox.checking .cap-check-inner { background: var(--cyan); transform: scale(0.7); }
.cap-checkbox.done .cap-check-inner { display: none; }
.cap-checkmark {
  display: none; color: #44ff88; font-size: 16px; font-weight: bold;
}
.cap-checkbox.done .cap-checkmark { display: block; }

@keyframes capSpin {
  0% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(0.9); }
  100% { transform: rotate(360deg) scale(1); }
}

.cap-label { font-family: 'Rajdhani', sans-serif; font-size: 14px; font-weight: 500; color: var(--off); letter-spacing: 1px; }
.cap-label.done-txt { color: #44ff88; }

.cap-brand {
  display: flex; flex-direction: column; align-items: center; gap: 3px; opacity: 0.4;
}
.cap-brand-logo { font-family: 'Share Tech Mono', monospace; font-size: 9px; color: var(--cyan); letter-spacing: 2px; }
.cap-brand-sub { font-size: 8px; color: var(--muted); letter-spacing: 1px; }

.cap-shield { font-size: 20px; }

@keyframes shake { 0%,100%{transform:translateX(0)} 25%,75%{transform:translateX(-6px)} 50%{transform:translateX(6px)} }

.btn-submit {
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  color: var(--bg); border: none; padding: 16px;
  font-family: 'Black Ops One', cursive; font-size: 16px; letter-spacing: 4px;
  text-transform: uppercase; cursor: pointer; width: 100%;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  transition: opacity 0.2s, box-shadow 0.2s, transform 0.15s;
  position: relative; overflow: hidden;
}
.btn-submit::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%); }
.btn-submit:hover:not(:disabled) { opacity: 0.9; box-shadow: 0 12px 48px var(--cyan-glow); transform: translateY(-2px); }
.btn-submit:disabled { background: var(--muted2); cursor: not-allowed; transform: none; box-shadow: none; }

/* ─── WHY ─── */
.why { padding: 110px 64px; background: var(--surface); }

.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 3px; margin-top: 60px; }

.why-tile {
  background: var(--card); border: 1px solid var(--border);
  padding: 40px 32px; position: relative; overflow: hidden;
  transition: border-color 0.3s;
}
.why-tile::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--purple));
  opacity: 0; transition: opacity 0.3s;
}
.why-tile:hover { border-color: rgba(0,229,255,0.25); }
.why-tile:hover::before { opacity: 1; }

.why-num {
  font-family: 'Black Ops One', cursive; font-size: 80px; color: rgba(0,229,255,0.04);
  position: absolute; top: -10px; right: 16px; line-height: 1; pointer-events: none;
}
.why-icon { font-size: 28px; margin-bottom: 18px; }
.why-name { font-family: 'Black Ops One', cursive; font-size: 16px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 12px; color: var(--white); }
.why-desc { font-size: 13px; color: var(--muted); line-height: 1.8; font-weight: 400; }

/* ─── STATS ─── */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: var(--card2);
  border-top: 1px solid rgba(0,229,255,0.1);
  border-bottom: 1px solid rgba(0,229,255,0.1);
}

.stat-cell {
  padding: 50px 40px; text-align: center; position: relative;
  border-right: 1px solid var(--border);
}
.stat-cell:last-child { border-right: none; }
.stat-cell::before {
  content: ''; position: absolute; top: 0; left: 20%; right: 20%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
}

.stat-num {
  font-family: 'Black Ops One', cursive; font-size: 52px; letter-spacing: 2px;
  background: linear-gradient(135deg, var(--cyan), var(--purple2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1; margin-bottom: 10px;
}
.stat-lbl { font-family: 'Share Tech Mono', monospace; font-size: 10px; color: var(--muted); letter-spacing: 3px; text-transform: uppercase; }

/* ─── NEWSLETTER ─── */
.newsletter { padding: 100px 64px; background: var(--bg); display: flex; align-items: center; gap: 80px; }
.nl-left { flex: 1; }
.nl-left .s-title { margin-bottom: 16px; }
.nl-left p { font-size: 15px; color: var(--off); line-height: 1.8; font-weight: 400; }
.nl-form { flex: 0 0 460px; display: flex; gap: 0; }
.nl-input {
  flex: 1; background: var(--card); border: 1px solid var(--border);
  border-right: none; color: var(--white); padding: 15px 20px;
  font-family: 'Rajdhani', sans-serif; font-size: 14px; font-weight: 400; outline: none;
  transition: border-color 0.2s;
  clip-path: polygon(8px 0%, 100% 0%, 100% 100%, 0% 100%);
}
.nl-input::placeholder { color: var(--muted2); }
.nl-input:focus { border-color: var(--cyan); }
.nl-btn {
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  color: var(--bg); border: none; padding: 15px 28px;
  font-family: 'Black Ops One', cursive; font-size: 13px; letter-spacing: 3px;
  text-transform: uppercase; cursor: pointer; white-space: nowrap;
  clip-path: polygon(0% 0%, calc(100% - 8px) 0%, 100% 100%, 0% 100%);
  transition: opacity 0.2s, box-shadow 0.2s;
}
.nl-btn:hover { opacity: 0.9; box-shadow: 0 6px 30px var(--cyan-glow); }

/* ─── FOOTER ─── */
footer {
  background: var(--card); border-top: 1px solid rgba(0,229,255,0.08);
  padding: 80px 64px 36px;
}
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 64px; margin-bottom: 56px; }

.footer-logo-img { height: 70px; margin-bottom: 16px; display: block; filter: drop-shadow(0 0 20px rgba(0,229,255,0.2)); }

.footer-desc { font-size: 13px; color: var(--muted); line-height: 1.8; max-width: 260px; margin-bottom: 22px; font-weight: 400; }
.footer-contacts { display: flex; flex-direction: column; gap: 8px; }
.footer-contacts a { font-family: 'Share Tech Mono', monospace; font-size: 11px; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.footer-contacts a:hover { color: var(--cyan); }

.footer-col-h { font-family: 'Black Ops One', cursive; font-size: 13px; letter-spacing: 3px; text-transform: uppercase; color: var(--white); margin-bottom: 22px; padding-bottom: 12px; border-bottom: 1px solid rgba(0,229,255,0.1); }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { text-decoration: none; font-size: 13px; color: var(--muted); transition: color 0.2s; font-weight: 400; }
.footer-col ul a:hover { color: var(--cyan); }

.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 28px;
  display: flex; align-items: center; justify-content: space-between;
}
.footer-copy { font-family: 'Share Tech Mono', monospace; font-size: 10px; color: var(--muted2); letter-spacing: 2px; }
.footer-tags { display: flex; gap: 12px; }
.footer-tag {
  font-family: 'Share Tech Mono', monospace; font-size: 9px; color: var(--muted);
  letter-spacing: 2px; padding: 4px 12px; border: 1px solid var(--border);
  clip-path: polygon(4px 0%, 100% 0%, calc(100% - 4px) 100%, 0% 100%);
}

/* ─── TOAST ─── */
.toast {
  position: fixed; bottom: 32px; right: 32px; z-index: 9000;
  background: var(--card2);
  border-left: 3px solid var(--cyan);
  border-top: 1px solid rgba(0,229,255,0.2);
  border-right: 1px solid rgba(0,229,255,0.2);
  border-bottom: 1px solid rgba(0,229,255,0.2);
  padding: 16px 24px; font-size: 13px; color: var(--off);
  transform: translateY(80px) skewX(-2deg); opacity: 0;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), opacity 0.3s;
  box-shadow: 0 16px 48px rgba(0,0,0,0.5), 0 0 30px rgba(0,229,255,0.1);
  display: flex; align-items: center; gap: 12px; max-width: 320px;
  font-family: 'Rajdhani', sans-serif; font-weight: 500; letter-spacing: 0.5px;
}
.toast.on { transform: translateY(0) skewX(-2deg); opacity: 1; }
.toast-icon { color: var(--cyan); font-family: 'Share Tech Mono', monospace; font-size: 14px; }

/* ─── REVEAL ─── */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.9s ease, transform 0.9s ease; }
.reveal.vis { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  nav, footer { padding-left: 24px; padding-right: 24px; }
  nav.stuck { padding-left: 24px; padding-right: 24px; }
  .nav-links { display: none; }
  .hero-content { grid-template-columns: 1fr; padding: 140px 24px 80px; }
  .hero-right { display: none; }
  .products, .lab-section, .wholesale, .why, .newsletter { padding: 80px 24px; }
  .pgrid { grid-template-columns: repeat(2, 1fr); }
  .feature-strip { grid-template-columns: 1fr; }
  .fstrip-tile { height: 300px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .lab-section { grid-template-columns: 1fr; }
  .ws-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .newsletter { flex-direction: column; padding: 80px 24px; }
  .nl-form { flex: 0 0 auto; width: 100%; }
}
@media (max-width: 640px) {
  .pgrid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; }
  .nl-form { flex-direction: column; }
  .nl-input { clip-path: none; border-right: 1px solid var(--border); }
  .nl-btn { clip-path: none; }
}

/* ── SINGLE PRODUCT PAGE ── */
.single-product-wrap {
  min-height: 100vh;
  padding: 200px 20px 60px;
  background: var(--bg);
}
.single-product-container { max-width: 1100px; margin: 0 auto; }
.back-link { display: inline-block; color: var(--cyan); text-decoration: none; font-family: 'Share Tech Mono', monospace; font-size: 0.85rem; margin-bottom: 32px; opacity: 0.8; transition: opacity 0.2s; }
.back-link:hover { opacity: 1; }
.single-product-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; margin-bottom: 60px; }
.single-product-img-wrap { border: 1px solid var(--border); overflow: hidden; background: var(--card); aspect-ratio: 1 / 1; width: 100%; position: relative; }
.single-product-img-wrap img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; } .single-product-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.single-product-img-placeholder { width: 100%; aspect-ratio: 1/1; background: var(--card2); }
.single-product-cat { display: inline-block; font-family: 'Share Tech Mono', monospace; font-size: 0.75rem; color: var(--cyan); border: 1px solid var(--cyan); padding: 3px 10px; margin-bottom: 16px; letter-spacing: 0.1em; }
.single-product-title { font-family: 'Black Ops One', sans-serif; font-size: 2.2rem; color: var(--white); margin-bottom: 16px; line-height: 1.1; }
.single-product-price { font-size: 1.8rem; color: var(--cyan); font-weight: 700; margin-bottom: 20px; }
.single-product-desc { color: var(--off); line-height: 1.7; margin-bottom: 24px; font-size: 1rem; }
.single-product-cart .quantity { margin-right: 12px; }
.single-product-cart .qty { background: var(--card); border: 1px solid var(--border); color: var(--white); padding: 10px 16px; font-size: 1rem; width: 80px; border-radius: 2px; }
.single-product-cart .single_add_to_cart_button { background: var(--cyan) !important; color: #000 !important; border: none !important; padding: 12px 32px !important; font-family: 'Black Ops One', sans-serif !important; font-size: 1rem !important; letter-spacing: 0.05em !important; cursor: pointer !important; border-radius: 2px !important; transition: background 0.2s !important; }
.single-product-cart .single_add_to_cart_button:hover { background: var(--cyan2) !important; }
.single-product-badges { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 28px; }
.spb { background: var(--card); border: 1px solid var(--border); padding: 10px 14px; font-size: 0.85rem; color: var(--off); border-radius: 2px; }
.single-product-full-desc { background: var(--card); border: 1px solid var(--border); padding: 32px; border-radius: 4px; }
.single-product-full-desc h3 { font-family: 'Black Ops One', sans-serif; color: var(--cyan); margin-bottom: 16px; font-size: 1.2rem; }
.single-product-full-desc p { color: var(--off); line-height: 1.7; }

/* ── PAGE TEMPLATE ── */
.page-wrap { min-height: 100vh; padding: 120px 20px 60px; background: var(--bg); }
.page-container { max-width: 900px; margin: 0 auto; }
.page-title { font-family: 'Black Ops One', sans-serif; font-size: 2.5rem; color: var(--cyan); margin-bottom: 32px; }
.page-content { color: var(--off); line-height: 1.8; font-size: 1rem; }
.page-content h2, .page-content h3 { color: var(--white); margin: 24px 0 12px; }
.page-content a { color: var(--cyan); }
.page-content p { margin-bottom: 16px; }

/* ── PCARD ── */
.pcard { display: block; background: var(--card); border: 1px solid var(--border); border-radius: 4px; overflow: hidden; text-decoration: none; transition: border-color 0.2s, transform 0.2s; }
.pcard:hover { border-color: var(--cyan); transform: translateY(-4px); }
.pcard-img-wrap { aspect-ratio: 1; overflow: hidden; background: var(--card2); }
.pcard-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pcard-img-placeholder { width: 100%; height: 100%; background: var(--card2); }
.pcard-info { padding: 14px; }
.pcard-cat { font-family: 'Share Tech Mono', monospace; font-size: 0.7rem; color: var(--cyan); letter-spacing: 0.1em; display: block; margin-bottom: 6px; }
.pcard-name { color: var(--white); font-weight: 600; font-size: 0.95rem; }

/* ── NAV ALWAYS COMPACT ── */
nav {
  background: rgba(5,5,10,0.95) !important;
  backdrop-filter: blur(20px) !important;
  border-bottom: 1px solid rgba(0,229,255,0.12) !important;
  padding: 12px 56px !important;
}
.nav-logo { height: 44px !important; width: auto !important; }

/* ── COA TABS ── */
.coa-tabs { display: flex; gap: 8px; margin-bottom: 16px; }
.coa-tab { background: transparent; border: 1px solid var(--border); color: var(--muted); padding: 8px 18px; font-family: 'Rajdhani', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%); transition: all 0.2s; }
.coa-tab.on, .coa-tab:hover { border-color: var(--cyan); color: var(--cyan); background: rgba(0,229,255,0.06); }

/* ── HAMBURGER & MOBILE MENU ── */
.nav-hamburger { display: none; background: transparent; border: 1px solid rgba(0,229,255,0.3); color: var(--cyan); font-size: 20px; width: 40px; height: 40px; cursor: pointer; align-items: center; justify-content: center; }
@media (max-width: 1100px) { .nav-hamburger { display: flex; } }
.mobile-menu { display: none; flex-direction: column; position: fixed; top: 60px; left: 0; right: 0; background: rgba(5,5,10,0.98); backdrop-filter: blur(20px); border-bottom: 1px solid rgba(0,229,255,0.12); z-index: 499; padding: 20px 24px; gap: 4px; }
.mobile-menu.open { display: flex; }
.mobile-menu a { color: var(--off); text-decoration: none; font-family: 'Rajdhani', sans-serif; font-size: 16px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.05); transition: color 0.2s; }
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--cyan); }
.t-txt.hi-purple { color: #c060ff; }

/* ── MOBILE ── */
@media (max-width: 480px) {
  nav { padding: 10px 16px !important; }
  .nav-logo { height: 36px !important; }
  .nav-right { display: none !important; }
  .hero-content { padding: 100px 16px 60px !important; }
  .hero h1 { font-size: 42px !important; }
  .hero-btns { flex-direction: column; gap: 12px; }
  .btn-cyber, .btn-ghost-cyber { width: 100%; text-align: center; }
  .products { padding: 60px 16px !important; }
  .prod-top { flex-direction: column; align-items: flex-start; }
  .pgrid { grid-template-columns: 1fr !important; gap: 12px; }
  .filter-row { gap: 6px; }
  .fpill { padding: 6px 14px; font-size: 11px; }
  .lab-section { padding: 60px 16px !important; gap: 40px; }
  .wholesale { padding: 60px 16px !important; }
  .form-row { grid-template-columns: 1fr !important; }
  .finput, .fselect, .ftextarea { font-size: 16px; }
  .why { padding: 60px 16px !important; }
  .why-grid { grid-template-columns: 1fr !important; gap: 12px; }
  .stats { grid-template-columns: 1fr 1fr !important; }
  .stat-num { font-size: 36px; }
  .newsletter { padding: 60px 16px !important; gap: 32px; }
  .nl-form { flex-direction: column; gap: 8px; }
  .nl-input { clip-path: none !important; border-right: 1px solid var(--border) !important; width: 100%; }
  .nl-btn { clip-path: none !important; width: 100%; padding: 14px; }
  footer { padding: 60px 16px 28px; }
  .footer-top { grid-template-columns: 1fr !important; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .single-product-wrap { padding: 100px 16px 40px !important; }
  .single-product-grid { grid-template-columns: 1fr !important; gap: 24px; }
  .single-product-title { font-size: 1.4rem !important; }
  .single-product-badges { grid-template-columns: 1fr !important; }
  .gate-logo { width: 160px !important; }
  .gate-btns { flex-direction: column; width: 100%; max-width: 280px; }
  .gate-yes, .gate-no { width: 100%; }
  .s-title { font-size: 28px !important; }
}

/* ── PORTAL NAV LINK ── */
.nav-portal-link {
  color: var(--cyan) !important;
  border: 1px solid rgba(0,229,255,0.3);
  padding: 4px 12px !important;
  font-size: 12px !important;
  letter-spacing: 2px;
  transition: background 0.2s, box-shadow 0.2s !important;
}
.nav-portal-link:hover {
  background: rgba(0,229,255,0.08);
  box-shadow: 0 0 16px rgba(0,229,255,0.2);
}

/* ══════════════════════════════════
   SHOP DROPDOWN MENU
══════════════════════════════════ */
.nav-has-drop { position: relative; }

.nav-drop-trigger {
  display: flex; align-items: center; gap: 5px; cursor: pointer;
}
.nav-caret {
  font-size: 10px;
  display: inline-block;
  transition: transform 0.25s;
  opacity: 0.6;
}
.nav-has-drop:hover .nav-caret { transform: rotate(180deg); opacity: 1; }

/* The dropdown panel */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%);
  width: 280px;
  background: #08080f;
  border: 1px solid var(--border);
  border-top: 2px solid var(--cyan);
  list-style: none;
  padding: 8px 0;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-8px);
  transition: opacity 0.22s, transform 0.22s;
  box-shadow: 0 24px 60px rgba(0,0,0,0.7), 0 0 40px rgba(0,229,255,0.05);
}
/* Arrow pointer */
.nav-dropdown::before {
  content: '';
  position: absolute; top: -7px; left: 50%;
  transform: translateX(-50%);
  width: 12px; height: 6px;
  background: var(--cyan);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

/* Show on hover */
.nav-has-drop:hover .nav-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

/* Section headers */
.nav-drop-header {
  padding: 10px 18px 4px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--cyan);
  text-transform: uppercase;
  opacity: 0.6;
}

/* Divider */
.nav-drop-divider {
  height: 1px;
  background: var(--border);
  margin: 6px 0;
}

/* Dropdown links */
.nav-dropdown li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  color: var(--off);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
  font-size: 13px;
}
.nav-dropdown li a:hover {
  background: rgba(0,229,255,0.06);
  color: var(--white);
}

.nav-drop-icon { font-size: 16px; flex-shrink: 0; width: 22px; text-align: center; }
.nav-drop-text { display: flex; flex-direction: column; gap: 1px; }
.nav-drop-text strong { font-size: 13px; color: var(--white); font-weight: 600; }
.nav-drop-text em { font-size: 11px; color: var(--muted); font-style: normal; }

/* "View All" link at bottom */
.nav-drop-all {
  font-family: 'Share Tech Mono', monospace !important;
  font-size: 11px !important;
  letter-spacing: 2px !important;
  color: var(--cyan) !important;
  text-transform: uppercase;
  justify-content: center !important;
  padding: 10px 18px !important;
}
.nav-drop-all:hover { color: var(--cyan2) !important; }

/* ══════════════════════════════════
   MOBILE SHOP DROPDOWN
══════════════════════════════════ */
.mobile-drop-toggle {
  padding: 16px 24px;
  font-size: 15px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-drop-toggle:hover { color: var(--cyan); }
.mobile-drop-toggle.open { color: var(--cyan); }
.mobile-caret {
  font-size: 12px; opacity: 0.6;
  transition: transform 0.25s;
}
.mobile-drop-toggle.open .mobile-caret { transform: rotate(180deg); opacity: 1; }

.mobile-drop-items {
  display: none;
  flex-direction: column;
  background: rgba(0,229,255,0.03);
  border-bottom: 1px solid var(--border);
}
.mobile-drop-items.open { display: flex; }
.mobile-drop-items a {
  padding: 12px 32px !important;
  font-size: 13px !important;
  color: var(--muted) !important;
  letter-spacing: 1px !important;
  border-bottom: none !important;
}
.mobile-drop-items a:hover { color: var(--cyan) !important; }