/* ============================================
   NEXORA OPTICS - Preview Site Stylesheet
   Industrial laser optics & consumables
   ============================================ */

:root {
  --navy: #0B1F40;
  --navy-dark: #07172F;
  --navy-darker: #050F22;
  --blue: #3B82F6;
  --gold: #C9A961;
  --cream: #F7F6F0;
  --cream-dark: #EFEEE6;
  --blue-tint: #EEF3FB;
  --green: #16a34a;
  --amber: #d97706;
  --line: rgba(11, 31, 64, 0.1);
  --line-strong: rgba(11, 31, 64, 0.18);
  --text: #0B1F40;
  --text-muted: rgba(11, 31, 64, 0.6);
  --text-faint: rgba(11, 31, 64, 0.45);

  --ease: cubic-bezier(.16, 1, .3, 1);
  --font-sans: 'Manrope', 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'PingFang SC', 'Microsoft YaHei', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: #fff;
  color: var(--text);
  font-weight: 400;
  line-height: 1.5;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img, svg { max-width: 100%; display: block; }
.tabular { font-variant-numeric: tabular-nums; }
.mono { font-family: var(--font-mono); }

/* ============================================
   UTILITY BAR (top dark strip)
   ============================================ */
.nx-util {
  background: var(--navy);
  padding: 9px 40px;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.06em;
}
.nx-util a { cursor: pointer; transition: color 0.35s var(--ease); }
.nx-util a:hover { color: var(--gold); }
.nx-util-l, .nx-util-r { display: flex; gap: 18px; align-items: center; }
.nx-util .dot { color: rgba(255, 255, 255, 0.25); }

/* ============================================
   MAIN NAV
   ============================================ */
.nx-nav {
  padding: 18px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 0.5px solid var(--line);
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 40;
}
.nx-logo {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--navy);
  cursor: pointer;
}
.nx-logo-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--blue);
  margin: 0 3px 2px;
  vertical-align: middle;
  border-radius: 1px;
  animation: nx-pulse 2.6s ease-in-out infinite;
}
@keyframes nx-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.5); }
  50% { box-shadow: 0 0 0 5px rgba(59, 130, 246, 0); }
}
.nx-nav-links {
  display: flex;
  gap: 32px;
  font-size: 13px;
  color: rgba(11, 31, 64, 0.72);
  align-items: center;
}
.nx-ni {
  position: static;
  cursor: pointer;
  transition: color 0.35s var(--ease);
  padding: 22px 0;
  margin: -22px 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 500;
}
.nx-ni:not(.curr):hover { color: var(--navy); }
.nx-ni.curr { color: var(--navy); }
.nx-ni > .nx-ni-text {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: inherit;
}
.nx-ni > .nx-ni-text::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  height: 1px;
  width: 0;
  background: var(--blue);
  transition: width 0.4s var(--ease);
}
.nx-ni.curr > .nx-ni-text::after { width: 100%; }
.nx-ni:not(.curr):hover > .nx-ni-text::after { width: 100%; }
.nx-nav-tools {
  display: flex;
  gap: 18px;
  align-items: center;
  font-size: 13px;
  color: rgba(11, 31, 64, 0.7);
}
.nx-nav-tools .icon { font-size: 16px; cursor: pointer; transition: color 0.35s; }
.nx-nav-tools .icon:hover { color: var(--navy); }
.nx-cta-quote {
  background: var(--navy);
  color: #fff;
  padding: 9px 16px;
  border-radius: 3px;
  font-size: 12px;
  letter-spacing: 0.05em;
  font-weight: 500;
  transition: background 0.35s var(--ease);
}
.nx-cta-quote:hover { background: var(--blue); }
.cart-count {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  padding: 1px 5px;
  border-radius: 8px;
  margin-left: 4px;
  vertical-align: middle;
  font-variant-numeric: tabular-nums;
}

/* ============================================
   MEGA MENU
   ============================================ */
.nx-mega {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 0.5px solid var(--line);
  padding: 32px 40px;
  z-index: 50;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.4s var(--ease);
  box-shadow: 0 18px 40px -18px rgba(11, 31, 64, 0.18);
}
.nx-ni.has-mega:hover .nx-mega {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nx-mega-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.4fr;
  gap: 28px;
}
.nx-mega-col h4 {
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.2em;
  font-weight: 600;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 0.5px solid var(--line);
}
.nx-mega-col h4.sub { margin-top: 16px; }
.nx-mega-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(11, 31, 64, 0.72);
  padding: 6px 0;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}
.nx-mega-link:hover { color: var(--navy); padding-left: 4px; }
.nx-mega-link i { color: var(--blue); opacity: 0; font-size: 12px; transition: opacity 0.3s; }
.nx-mega-link:hover i { opacity: 1; }
.nx-mega-all {
  font-size: 12px;
  color: var(--blue);
  letter-spacing: 0.06em;
  cursor: pointer;
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.35s var(--ease);
}
.nx-mega-all:hover { gap: 8px; }

.nx-feat-card {
  background: var(--cream);
  border-radius: 6px;
  padding: 16px;
  cursor: pointer;
  transition: all 0.4s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.nx-feat-card:hover { background: var(--cream-dark); transform: translateY(-2px); }
.nx-feat-img {
  height: 110px;
  border-radius: 4px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nx-feat-img svg { width: 64px; height: 64px; }
.nx-feat-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  font-size: 11px;
  color: var(--gold);
  background: rgba(11, 31, 64, 0.6);
  padding: 2px 8px;
  border-radius: 2px;
  letter-spacing: 0.12em;
  font-weight: 600;
}
.nx-feat-title {
  font-size: 13px;
  color: var(--navy);
  line-height: 1.4;
  font-weight: 600;
}
.nx-feat-link {
  font-size: 12px;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 3px;
  transition: gap 0.35s var(--ease);
}
.nx-feat-card:hover .nx-feat-link { gap: 8px; }

/* ============================================
   HERO (Homepage)
   ============================================ */
.nx-hero {
  position: relative;
  padding: 80px 40px 88px;
  overflow: hidden;
  background: var(--navy);
  color: #fff;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: nx-drift 30s linear infinite;
}
@keyframes nx-drift {
  from { background-position: 0 0; }
  to { background-position: 60px 60px; }
}
.nx-scan {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 5%, rgba(201, 169, 97, 0.55) 50%, transparent 95%);
  animation: nx-scan-move 12s cubic-bezier(.4, 0, .6, 1) infinite;
  pointer-events: none;
}
@keyframes nx-scan-move {
  0% { top: 0; opacity: 0; }
  5% { opacity: 1; }
  95% { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}
.nx-eyebrow {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.22em;
  font-weight: 600;
  margin-bottom: 26px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  animation: nx-fade 0.9s 0.1s var(--ease) backwards;
}
.nx-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
  animation: nx-line-grow 1s 0.3s var(--ease) backwards;
  transform-origin: left;
}
@keyframes nx-line-grow {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}
.nx-h1 {
  font-size: clamp(38px, 5vw, 56px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 22px;
  animation: nx-fade 0.9s 0.25s var(--ease) backwards;
}
.nx-h1-blue {
  color: var(--blue);
  position: relative;
}
.nx-h1-blue::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 3px;
  background: var(--blue);
  transform-origin: left;
  animation: nx-line-grow 1.3s 1s var(--ease) backwards;
}
.nx-hero-sub {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
  max-width: 540px;
  margin-bottom: 36px;
  animation: nx-fade 0.9s 0.5s var(--ease) backwards;
}
.nx-hero-cta {
  display: flex;
  gap: 12px;
  animation: nx-fade 0.9s 0.7s var(--ease) backwards;
}
@keyframes nx-fade {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
.nx-btn-pri {
  background: var(--blue);
  color: #fff;
  padding: 14px 24px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 3px;
  letter-spacing: 0.04em;
  transition: all 0.4s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.nx-btn-pri:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px -10px rgba(59, 130, 246, 0.55);
}
.nx-btn-pri:hover i { transform: translateX(3px); }
.nx-btn-pri i { transition: transform 0.4s var(--ease); font-size: 14px; }
.nx-btn-ghost {
  border: 0.5px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  padding: 14px 24px;
  font-size: 13px;
  font-weight: 500;
  border-radius: 3px;
  background: transparent;
  letter-spacing: 0.04em;
  transition: all 0.4s var(--ease);
}
.nx-btn-ghost:hover {
  background: rgba(201, 169, 97, 0.08);
  border-color: var(--gold);
  color: var(--gold);
}

/* ============================================
   STATS STRIP
   ============================================ */
.nx-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--blue-tint);
}
.nx-stat {
  padding: 28px 24px 26px;
  border-right: 0.5px solid rgba(11, 31, 64, 0.08);
  position: relative;
}
.nx-stat:last-child { border-right: none; }
.nx-stat-num {
  font-size: 36px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  display: inline-block;
  font-family: var(--font-mono);
}
.nx-stat-num .sup {
  font-size: 16px;
  color: var(--blue);
  vertical-align: super;
  margin-left: 1px;
}
.nx-stat-label {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.16em;
  font-weight: 600;
  margin-top: 10px;
}
.nx-stat-bar {
  position: absolute;
  bottom: 0;
  left: 24px;
  height: 2px;
  width: 0;
  background: var(--blue);
  transition: width 2.2s var(--ease);
}
.nx-stat.nx-anim .nx-stat-bar { width: 36px; }

/* ============================================
   SECTION primitives
   ============================================ */
.nx-sec {
  padding: 80px 40px;
  background: #fff;
}
.nx-sec.beige { background: var(--cream); }
.nx-sec.tight { padding: 56px 40px; }
.nx-sec-eye {
  color: var(--blue);
  font-size: 11px;
  letter-spacing: 0.2em;
  font-weight: 600;
  margin-bottom: 10px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.nx-sec-eye::before {
  content: '';
  width: 22px;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}
.nx-sec-h {
  font-size: 36px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 32px;
  letter-spacing: -0.02em;
  line-height: 1.15;
  max-width: 720px;
}
.nx-sec-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 32px;
  gap: 24px;
}
.nx-sec-head .nx-sec-h { margin-bottom: 0; }
.nx-link-arr {
  font-size: 13px;
  color: var(--blue);
  cursor: pointer;
  display: inline-flex;
  gap: 5px;
  align-items: center;
  transition: gap 0.35s var(--ease);
  white-space: nowrap;
  font-weight: 500;
}
.nx-link-arr:hover { gap: 10px; }

/* ============================================
   CATEGORY CARDS (Homepage)
   ============================================ */
.nx-cat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.nx-cat {
  background: #fff;
  border: 1px solid rgba(11, 31, 64, 0.1);
  border-radius: 6px;
  padding: 18px 20px;
  cursor: pointer;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 16px;
}
.nx-cat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 100%;
  background: var(--blue);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.45s var(--ease);
}
.nx-cat:hover {
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px -16px rgba(11, 31, 64, 0.16);
}
.nx-cat:hover::before { transform: scaleY(1); }
.nx-cat-icon {
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  border-radius: 4px;
  transition: background 0.4s var(--ease);
  flex-shrink: 0;
}
.nx-cat:hover .nx-cat-icon { background: var(--blue); }
.nx-cat-body { flex: 1; min-width: 0; }
.nx-cat-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 6px;
}
.nx-cat-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.06em;
}
.nx-cat-meta {
  font-size: 11px;
  color: var(--text-muted);
  white-space: nowrap;
  font-family: var(--font-mono);
}
.nx-cat-subs {
  font-size: 12px;
  color: rgba(11, 31, 64, 0.65);
  line-height: 1.5;
}
.nx-cat-arr {
  color: rgba(11, 31, 64, 0.3);
  font-size: 16px;
  transition: all 0.4s var(--ease);
  flex-shrink: 0;
}
.nx-cat:hover .nx-cat-arr {
  color: var(--blue);
  transform: translateX(3px);
}

/* ============================================
   PRODUCT CARDS
   ============================================ */
.nx-prod-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  perspective: 1000px;
}
.nx-prod-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.nx-prod {
  background: #fff;
  border: 1px solid rgba(11, 31, 64, 0.15);
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.4s, box-shadow 0.4s, transform 0.2s var(--ease);
  position: relative;
  transform-style: preserve-3d;
  will-change: transform;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.nx-prod:hover {
  border-color: rgba(59, 130, 246, 0.4);
  box-shadow: 0 22px 40px -20px rgba(11, 31, 64, 0.22);
}
.nx-prod-img {
  background: var(--blue-tint);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.nx-prod-img svg { width: 70%; height: 70%; }
.nx-prod-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(11, 31, 64, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 31, 64, 0.05) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0;
  transition: opacity 0.4s;
}
.nx-prod:hover .nx-prod-img::before { opacity: 1; }
.nx-prod-stock {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 11px;
  color: var(--green);
  background: rgba(22, 163, 74, 0.12);
  padding: 3px 8px;
  border-radius: 2px;
  letter-spacing: 0.06em;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  z-index: 2;
}
.nx-prod-stock::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--green);
  border-radius: 50%;
  animation: nx-blink 2s ease-in-out infinite;
}
@keyframes nx-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.nx-prod-stock.low { color: var(--amber); background: rgba(217, 119, 6, 0.12); }
.nx-prod-stock.low::before { background: var(--amber); }
.nx-prod-fav {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(255, 255, 255, 0.9);
  width: 30px;
  height: 30px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: rgba(11, 31, 64, 0.55);
  cursor: pointer;
  transition: all 0.3s var(--ease);
  opacity: 0;
  z-index: 2;
}
.nx-prod:hover .nx-prod-fav { opacity: 1; }
.nx-prod-fav:hover { color: var(--blue); transform: scale(1.1); }
.nx-prod-body {
  padding: 16px 16px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.nx-prod-tag {
  font-size: 11px;
  color: var(--blue);
  letter-spacing: 0.14em;
  font-weight: 600;
  margin-bottom: 8px;
}
.nx-prod-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 10px;
  min-height: 38px;
}
.nx-spec-table {
  display: flex;
  flex-direction: column;
  margin-bottom: 14px;
  padding-top: 12px;
  border-top: 0.5px solid rgba(11, 31, 64, 0.08);
}
.nx-spec-row {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  padding: 4px 0;
}
.nx-spec-key {
  color: var(--text-muted);
  letter-spacing: 0.05em;
}
.nx-spec-val {
  color: var(--navy);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
}
.nx-prod-rating {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
}
.nx-stars {
  color: var(--gold);
  letter-spacing: 1px;
}
.nx-prod-foot {
  margin-top: auto;
  padding-top: 12px;
  border-top: 0.5px solid rgba(11, 31, 64, 0.08);
}
.nx-price-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 12px;
}
.nx-price-big {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
  font-family: var(--font-mono);
}
.nx-price-meta {
  font-size: 11px;
  color: var(--text-muted);
}
.nx-prod-cta {
  background: var(--navy);
  color: #fff;
  padding: 10px 14px;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  letter-spacing: 0.04em;
  text-decoration: none;
}
.nx-prod-cta:hover { background: var(--blue); }
.nx-prod-cta i { transition: transform 0.4s var(--ease); }
.nx-prod-cta:hover i { transform: translateX(3px); }

/* simpler product card for homepage featured */
.nx-prod.simple .nx-prod-body { padding: 14px; }
.nx-prod.simple .nx-prod-name { min-height: 36px; }
.nx-prod.simple .nx-prod-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
}
.nx-prod.simple .nx-prod-foot a, .nx-prod.simple .nx-prod-foot .nx-prod-link {
  font-size: 12px;
  color: var(--blue);
  display: inline-flex;
  gap: 4px;
  align-items: center;
  transition: gap 0.35s var(--ease);
}
.nx-prod.simple:hover .nx-prod-foot a, .nx-prod.simple:hover .nx-prod-foot .nx-prod-link { gap: 8px; }

/* ============================================
   PRINCIPLES (4 cards)
   ============================================ */
.nx-pr-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.nx-pr {
  padding: 22px 18px;
  border-radius: 6px;
  transition: all 0.5s var(--ease);
  background: #fff;
  border: 1px solid rgba(11, 31, 64, 0.08);
  color: var(--navy);
}
.nx-pr.dark {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}
.nx-pr:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
  transform: translateY(-4px);
}
.nx-pr.dark:hover {
  background: #fff;
  color: var(--navy);
  border-color: var(--line);
}
.nx-pr-num {
  font-size: 11px;
  letter-spacing: 0.18em;
  font-weight: 600;
  padding: 4px 9px;
  border-radius: 3px;
  display: inline-block;
  margin-bottom: 16px;
  transition: all 0.5s var(--ease);
  background: rgba(59, 130, 246, 0.1);
  color: var(--blue);
  font-family: var(--font-mono);
}
.nx-pr.dark .nx-pr-num {
  background: rgba(201, 169, 97, 0.18);
  color: var(--gold);
}
.nx-pr:hover .nx-pr-num {
  background: rgba(201, 169, 97, 0.18);
  color: var(--gold);
}
.nx-pr.dark:hover .nx-pr-num {
  background: rgba(59, 130, 246, 0.1);
  color: var(--blue);
}
.nx-pr-h {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.3;
  transition: color 0.5s;
}
.nx-pr-body {
  font-size: 12px;
  line-height: 1.6;
  transition: color 0.5s;
  color: rgba(11, 31, 64, 0.65);
}
.nx-pr.dark .nx-pr-body { color: rgba(255, 255, 255, 0.7); }
.nx-pr:hover .nx-pr-body { color: rgba(255, 255, 255, 0.7); }
.nx-pr.dark:hover .nx-pr-body { color: rgba(11, 31, 64, 0.65); }

/* ============================================
   CONTINENTS BAND (with animated map)
   ============================================ */
.nx-band {
  background: var(--navy);
  color: #fff;
  padding: 56px 40px 40px;
  position: relative;
  overflow: hidden;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.nx-band-h {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
  line-height: 1.18;
}
.nx-band-h .gold { color: var(--gold); }
.nx-band-sub {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
  max-width: 640px;
  margin-bottom: 32px;
}
.nx-map {
  width: 100%;
  height: 84px;
}
.nx-map svg { width: 100%; height: 100%; }

/* ============================================
   NEWS CARDS
   ============================================ */
.nx-news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.nx-news-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.nx-news-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s var(--ease);
  text-decoration: none;
  color: inherit;
  display: block;
}
.nx-news-card:hover {
  transform: translateY(-3px);
  border-color: rgba(59, 130, 246, 0.35);
  box-shadow: 0 14px 32px -18px rgba(11, 31, 64, 0.18);
}
.nx-news-img {
  height: 160px;
  overflow: hidden;
  position: relative;
  background: var(--navy);
}
.nx-news-img-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(201, 169, 97, 0.55);
  font-size: 32px;
  transition: transform 0.6s var(--ease);
  background-size: cover;
  background-position: center;
}
.nx-news-img-inner svg { width: 70%; height: 70%; opacity: 0.9; }
.nx-news-card:hover .nx-news-img-inner { transform: scale(1.06); }
.nx-news-cat-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 11px;
  color: #fff;
  background: rgba(11, 31, 64, 0.78);
  padding: 4px 10px;
  border-radius: 2px;
  letter-spacing: 0.14em;
  font-weight: 600;
  z-index: 1;
}
.nx-news-body { padding: 18px 18px 20px; }
.nx-news-meta {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 10px;
  display: flex;
  gap: 10px;
  align-items: center;
  font-family: var(--font-mono);
}
.nx-news-meta .ndot {
  width: 3px;
  height: 3px;
  background: rgba(11, 31, 64, 0.3);
  border-radius: 50%;
}
.nx-news-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.4;
}
.nx-news-link {
  font-size: 12px;
  color: var(--blue);
  display: inline-flex;
  gap: 3px;
  align-items: center;
  transition: gap 0.35s var(--ease);
  font-weight: 500;
}
.nx-news-card:hover .nx-news-link { gap: 8px; }

/* ============================================
   MERGED FOOTER
   ============================================ */
.nx-mf {
  background: var(--navy);
  color: #fff;
  padding: 64px 40px 28px;
  position: relative;
}
.nx-scan-clip {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.nx-contact-scan {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 5%, rgba(59, 130, 246, 0.5) 50%, transparent 95%);
  animation: nx-scan-move 14s 2s cubic-bezier(.4, 0, .6, 1) infinite;
}
.nx-mf-inner { position: relative; }
.nx-mf-top {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 48px;
  align-items: start;
}
.nx-mf-eye {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.22em;
  font-weight: 600;
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.nx-mf-eye::before {
  content: '';
  width: 32px;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}
.nx-mf-h {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.nx-mf-h .blue { color: var(--blue); }
.nx-mf-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
  max-width: 480px;
}
.nx-mf-right { display: flex; flex-direction: column; gap: 20px; }
.nx-soc-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  letter-spacing: 0.02em;
}
.nx-soc-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.nx-soc-btn {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.06);
  border: 0.5px solid rgba(255, 255, 255, 0.14);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  transition: all 0.35s var(--ease);
  position: relative;
  font-size: 18px;
}
.nx-soc-btn:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px -6px rgba(59, 130, 246, 0.45);
}
.nx-soc-pop {
  position: absolute;
  bottom: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(8px) scale(0.94);
  background: #fff;
  padding: 14px 14px 12px;
  border-radius: 6px;
  box-shadow: 0 22px 50px -14px rgba(0, 0, 0, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s var(--ease);
  z-index: 30;
  text-align: center;
  min-width: 120px;
}
.nx-soc-pop::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #fff;
}
.nx-soc-btn:hover .nx-soc-pop {
  opacity: 1;
  transform: translateX(-50%) translateY(0) scale(1);
  pointer-events: auto;
}
.nx-soc-pop svg { margin: 0 auto; }
.nx-soc-pop-name {
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.15em;
  font-weight: 600;
  margin-top: 10px;
}
.nx-soc-pop-handle {
  font-size: 11px;
  color: var(--navy);
  margin-top: 2px;
  white-space: nowrap;
  font-family: var(--font-mono);
}
.nx-mf-divider {
  height: 0.5px;
  background: rgba(255, 255, 255, 0.12);
  margin: 40px 0 32px;
}
.nx-mf-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.nx-mf-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.nx-mf-col h4 {
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.2em;
  font-weight: 600;
  margin-bottom: 6px;
}
.nx-mf-col a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  cursor: pointer;
  transition: color 0.35s;
  line-height: 1.5;
  text-decoration: none;
}
.nx-mf-col a:hover { color: #fff; }
.nx-mf-col .cl-key {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.12em;
  font-weight: 500;
  margin-top: 6px;
}
.nx-mf-col .cl-val {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 1px;
  font-family: var(--font-mono);
}
.nx-mf-col .cl-val.blue { color: var(--blue); }
.nx-mf-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-top: 8px;
}
.nx-mf-brand {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nx-mf-brand .nx-logo { color: #fff; }
.nx-mf-tag {
  font-size: 11px;
  color: rgba(201, 169, 97, 0.85);
  letter-spacing: 0.22em;
  font-weight: 500;
}
.nx-mf-copy {
  display: flex;
  gap: 24px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.08em;
  font-family: var(--font-mono);
}

/* ============================================
   BREADCRUMB
   ============================================ */
.nx-pd-bc {
  background: var(--cream);
  padding: 16px 40px;
  border-bottom: 0.5px solid rgba(11, 31, 64, 0.08);
}
.nx-bc-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}
.nx-bc-list {
  display: flex;
  gap: 7px;
  align-items: center;
  flex-wrap: wrap;
}
.nx-bc-list a, .nx-bc-list span { cursor: pointer; transition: color 0.3s; text-decoration: none; color: inherit; }
.nx-bc-list a:hover { color: var(--navy); }
.nx-bc-list .curr { color: var(--navy); cursor: default; font-weight: 500; }
.nx-bc-list i { font-size: 11px; color: rgba(11, 31, 64, 0.3); }
.nx-page-ref { color: var(--gold); font-weight: 600; letter-spacing: 0.18em; font-family: var(--font-mono); }

/* ============================================
   CATEGORY HEADER (catalogue page)
   ============================================ */
.nx-cat-head {
  background: var(--cream);
  padding: 44px 40px 40px;
  position: relative;
  overflow: hidden;
}
.nx-cat-head::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(11, 31, 64, 0.06) 1px, transparent 0);
  background-size: 18px 18px;
  opacity: 0.5;
  pointer-events: none;
}
.nx-cat-head-inner { position: relative; z-index: 1; }
.nx-cat-head-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 32px;
  align-items: center;
}
.nx-cat-title {
  font-size: 42px;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
  color: var(--navy);
}
.nx-cat-desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(11, 31, 64, 0.68);
  max-width: 620px;
}
.nx-lens-vis {
  aspect-ratio: 1;
  max-width: 240px;
  margin-left: auto;
}
.nx-cat-stats {
  display: flex;
  gap: 36px;
  padding-top: 24px;
  margin-top: 24px;
  border-top: 0.5px solid rgba(11, 31, 64, 0.1);
}
.nx-cat-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: transform 0.3s var(--ease);
}
.nx-cat-stat:hover { transform: translateY(-2px); }
.nx-cat-stat-num {
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.01em;
  font-family: var(--font-mono);
}
.nx-cat-stat-num .blue { color: var(--blue); }
.nx-cat-stat-lbl {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.14em;
  font-weight: 600;
}

/* ============================================
   FILTER BAR (catalogue page)
   ============================================ */
.nx-filter-bar {
  background: #fff;
  padding: 18px 40px;
  border-bottom: 0.5px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.nx-fbar-l { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.nx-fbar-r { display: flex; gap: 14px; align-items: center; }
.nx-filter {
  background: #fff;
  border: 1px solid rgba(11, 31, 64, 0.16);
  border-radius: 4px;
  padding: 9px 12px;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  font-family: var(--font-sans);
  color: inherit;
}
.nx-filter:hover { border-color: rgba(11, 31, 64, 0.4); }
.nx-filter .f-lbl {
  color: rgba(11, 31, 64, 0.55);
  letter-spacing: 0.14em;
  font-weight: 600;
}
.nx-filter .f-sep {
  color: rgba(11, 31, 64, 0.2);
  font-weight: 500;
}
.nx-filter .f-val {
  color: var(--navy);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.nx-filter .f-val.dim {
  color: rgba(11, 31, 64, 0.42);
  font-weight: 400;
}
.nx-filter.active {
  border-color: var(--blue);
}
.nx-filter.active .f-val { color: var(--blue); }
.nx-filter i {
  font-size: 13px;
  color: rgba(11, 31, 64, 0.4);
  transition: transform 0.3s var(--ease);
}
.nx-filter:hover i { transform: rotate(180deg); }
.nx-clear {
  font-size: 12px;
  color: var(--blue);
  cursor: pointer;
  padding: 6px 4px;
  letter-spacing: 0.05em;
  transition: color 0.3s;
  background: none;
  border: none;
  font-weight: 500;
}
.nx-clear:hover { color: var(--navy); }
.nx-results-count {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}
.nx-results-count strong {
  color: var(--navy);
  font-weight: 600;
  font-family: var(--font-mono);
}

/* ============================================
   PAGINATION
   ============================================ */
.nx-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 40px 40px 12px;
  background: #fff;
}
.nx-pg-btn {
  width: 36px;
  height: 36px;
  border: 0.5px solid rgba(11, 31, 64, 0.15);
  background: #fff;
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
}
.nx-pg-btn:hover {
  border-color: var(--blue);
  color: var(--blue);
}
.nx-pg-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
  cursor: default;
}
.nx-pg-btn.active:hover { color: #fff; }
.nx-pg-btn i { font-size: 15px; transition: transform 0.3s var(--ease); }
.nx-pg-btn.prev:hover i { transform: translateX(-2px); }
.nx-pg-btn.next:hover i { transform: translateX(2px); }
.nx-pg-ellipsis { color: var(--text-faint); padding: 0 4px; font-size: 13px; }

/* ============================================
   PRODUCT DETAIL PAGE
   ============================================ */
.nx-pd-hero {
  padding: 48px 40px 56px;
  background: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.nx-gal-main {
  background: var(--cream);
  border-radius: 6px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
}
.nx-gal-main::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(11, 31, 64, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 31, 64, 0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0;
  transition: opacity 0.4s;
}
.nx-gal-main:hover::before { opacity: 1; }
.nx-gal-main svg { width: 70%; height: 70%; position: relative; z-index: 1; }
.nx-gal-zoom {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(255, 255, 255, 0.92);
  padding: 8px 12px;
  border-radius: 3px;
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  z-index: 2;
}
.nx-gal-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #fff;
  padding: 5px 10px;
  border-radius: 2px;
  font-size: 11px;
  color: var(--blue);
  letter-spacing: 0.12em;
  font-weight: 600;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(11, 31, 64, 0.08);
}
.nx-gal-thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 12px;
}
.nx-gal-thumb {
  aspect-ratio: 1;
  background: var(--cream);
  border-radius: 4px;
  border: 1.5px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  padding: 8px;
}
.nx-gal-thumb:hover { border-color: rgba(11, 31, 64, 0.2); }
.nx-gal-thumb.active { border-color: var(--blue); }
.nx-gal-thumb i { font-size: 22px; color: rgba(11, 31, 64, 0.4); }
.nx-gal-thumb svg { width: 100%; height: 100%; }

/* AT-A-GLANCE block below thumbnails (fix for blank space) */
.nx-glance {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.nx-glance-item {
  background: var(--cream);
  border-radius: 4px;
  padding: 14px 14px 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  transition: background 0.3s var(--ease);
}
.nx-glance-item:hover { background: var(--cream-dark); }
.nx-glance-icon {
  width: 32px;
  height: 32px;
  background: #fff;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 16px;
  flex-shrink: 0;
}
.nx-glance-text { flex: 1; min-width: 0; }
.nx-glance-label {
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.14em;
  font-weight: 600;
  margin-bottom: 3px;
}
.nx-glance-val {
  font-size: 13px;
  color: var(--navy);
  font-weight: 600;
  line-height: 1.3;
}
.nx-tech-drawing {
  margin-top: 16px;
  background: var(--cream);
  border-radius: 4px;
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.nx-tech-drawing svg { width: 96px; height: 60px; flex-shrink: 0; }
.nx-tech-drawing-text { flex: 1; }
.nx-tech-drawing-h {
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 6px;
}
.nx-tech-drawing-body {
  font-size: 12px;
  color: rgba(11, 31, 64, 0.7);
  line-height: 1.5;
}

.nx-pd-info { display: flex; flex-direction: column; }
.nx-pd-tag {
  font-size: 11px;
  color: var(--blue);
  letter-spacing: 0.16em;
  font-weight: 600;
  margin-bottom: 10px;
}
.nx-pd-title {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  color: var(--navy);
}
.nx-pd-rating {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  font-size: 12px;
  color: var(--text-muted);
}
.nx-pd-rating .nx-stars {
  color: var(--gold);
  letter-spacing: 1px;
  font-size: 13px;
}
.nx-pd-rating .rscore { color: var(--navy); font-weight: 600; font-family: var(--font-mono); }
.nx-pd-rating .rdot {
  width: 3px;
  height: 3px;
  background: rgba(11, 31, 64, 0.3);
  border-radius: 50%;
}
.nx-pd-desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(11, 31, 64, 0.7);
  margin-bottom: 26px;
  padding-bottom: 24px;
  border-bottom: 0.5px solid var(--line);
}
.nx-config-eye {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.2em;
  font-weight: 600;
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.nx-config-eye::before {
  content: '';
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}
.nx-var-group { margin-bottom: 18px; }
.nx-var-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
}
.nx-var-label {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.18em;
  font-weight: 600;
}
.nx-var-selected {
  font-size: 12px;
  color: var(--navy);
  font-weight: 600;
  font-family: var(--font-mono);
}
.nx-var-pills { display: flex; gap: 7px; flex-wrap: wrap; }
.nx-pill {
  background: #fff;
  border: 1px solid rgba(11, 31, 64, 0.18);
  border-radius: 4px;
  padding: 8px 14px;
  font-size: 13px;
  color: var(--navy);
  cursor: pointer;
  transition: all 0.3s var(--ease);
  font-weight: 500;
  font-family: var(--font-mono);
}
.nx-pill:hover { border-color: rgba(11, 31, 64, 0.4); }
.nx-pill.active {
  border-color: var(--blue);
  color: var(--blue);
}
.nx-pill.unavail {
  color: rgba(11, 31, 64, 0.3);
  border-style: dashed;
  cursor: not-allowed;
  text-decoration: line-through;
}
.nx-pill.unavail:hover { border-color: rgba(11, 31, 64, 0.18); }
.nx-dropdown {
  background: #fff;
  border: 1px solid rgba(11, 31, 64, 0.18);
  border-radius: 4px;
  padding: 11px 14px;
  font-size: 13px;
  color: var(--navy);
  cursor: pointer;
  transition: all 0.3s var(--ease);
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  font-family: var(--font-sans);
}
.nx-dropdown:hover { border-color: var(--blue); }
.nx-dropdown.active { border-color: var(--blue); color: var(--blue); }
.nx-dropdown i {
  font-size: 13px;
  color: rgba(11, 31, 64, 0.4);
  transition: transform 0.3s var(--ease);
}
.nx-dropdown:hover i { transform: rotate(180deg); }
.nx-price-block {
  margin-top: 26px;
  padding-top: 26px;
  border-top: 0.5px solid var(--line);
}
.nx-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 4px;
}
.nx-price-main {
  font-size: 36px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  font-family: var(--font-mono);
}
.nx-price-unit { font-size: 14px; color: var(--text-muted); }
.nx-price-moq {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.nx-vol-pricing {
  background: var(--cream);
  border-radius: 4px;
  padding: 12px 16px;
  margin-bottom: 20px;
}
.nx-vol-h {
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.16em;
  font-weight: 600;
  margin-bottom: 10px;
}
.nx-vol-rows { display: flex; flex-direction: column; gap: 5px; }
.nx-vol-row {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-family: var(--font-mono);
}
.nx-vol-key { color: rgba(11, 31, 64, 0.65); }
.nx-vol-val { color: var(--navy); font-weight: 600; }
.nx-buy-row {
  display: flex;
  gap: 10px;
  align-items: stretch;
  margin-bottom: 14px;
}
.nx-qty {
  display: flex;
  align-items: center;
  border: 1px solid rgba(11, 31, 64, 0.18);
  border-radius: 4px;
  overflow: hidden;
}
.nx-qty button {
  width: 36px;
  height: 44px;
  background: #fff;
  color: var(--navy);
  font-size: 15px;
  transition: background 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nx-qty button:hover { background: var(--cream); }
.nx-qty input {
  width: 44px;
  border: none;
  text-align: center;
  font-size: 14px;
  color: var(--navy);
  font-weight: 600;
  font-family: var(--font-mono);
  outline: none;
  background: #fff;
}
.nx-cta-add {
  flex: 1;
  background: var(--navy);
  color: #fff;
  padding: 0 22px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.4s var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.nx-cta-add:hover { background: var(--blue); }
.nx-cta-add i { transition: transform 0.4s var(--ease); }
.nx-cta-add:hover i { transform: translateX(3px); }
.nx-cta-quote2 {
  background: #fff;
  border: 1px solid rgba(11, 31, 64, 0.18);
  color: var(--navy);
  padding: 11px 16px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.4s var(--ease);
  width: 100%;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}
.nx-cta-quote2:hover { border-color: var(--gold); color: var(--gold); }
.nx-trust-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 0.5px solid rgba(11, 31, 64, 0.08);
}
.nx-trust-row {
  display: flex;
  gap: 10px;
  font-size: 13px;
  color: rgba(11, 31, 64, 0.7);
  align-items: center;
}
.nx-trust-row i {
  color: var(--green);
  font-size: 16px;
  flex-shrink: 0;
}

/* TABS */
.nx-tabs-nav {
  padding: 0 40px;
  display: flex;
  gap: 36px;
  border-top: 0.5px solid var(--line);
  border-bottom: 0.5px solid var(--line);
  background: #fff;
  overflow-x: auto;
}
.nx-tab {
  padding: 18px 0;
  font-size: 12px;
  letter-spacing: 0.16em;
  font-weight: 600;
  color: rgba(11, 31, 64, 0.5);
  cursor: pointer;
  transition: color 0.35s var(--ease);
  position: relative;
  white-space: nowrap;
}
.nx-tab::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: var(--blue);
  transition: width 0.4s var(--ease);
}
.nx-tab:hover { color: var(--navy); }
.nx-tab.active { color: var(--navy); }
.nx-tab.active::after { width: 100%; }
.nx-tab-content { padding: 40px; background: #fff; }
.nx-tab-panel { display: none; }
.nx-tab-panel.show { display: block; }
.nx-spec-h {
  font-size: 11px;
  color: var(--blue);
  letter-spacing: 0.18em;
  font-weight: 600;
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.nx-spec-h::before {
  content: '';
  width: 22px;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}
.nx-spec-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 48px;
}
.nx-spec-item {
  display: flex;
  justify-content: space-between;
  padding: 11px 0;
  border-bottom: 0.5px solid rgba(11, 31, 64, 0.08);
  font-size: 13px;
}
.nx-spec-item .key { color: rgba(11, 31, 64, 0.6); letter-spacing: 0.04em; }
.nx-spec-item .val { color: var(--navy); font-weight: 600; font-family: var(--font-mono); font-size: 12px; }
.nx-compat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.nx-compat-card {
  background: var(--cream);
  border-radius: 6px;
  padding: 18px;
  transition: all 0.3s var(--ease);
  cursor: pointer;
}
.nx-compat-card:hover { background: var(--cream-dark); transform: translateY(-2px); }
.nx-compat-brand {
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.16em;
  font-weight: 600;
  margin-bottom: 5px;
}
.nx-compat-model {
  font-size: 14px;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 10px;
  font-family: var(--font-mono);
}
.nx-compat-meta {
  font-size: 12px;
  color: var(--text-muted);
}
.nx-prose {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(11, 31, 64, 0.72);
  max-width: 720px;
}
.nx-prose p { margin-bottom: 16px; }

.nx-related {
  padding: 56px 40px 40px;
  background: #fff;
  border-top: 0.5px solid var(--line);
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.nx-page-hero {
  padding: 72px 40px 64px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.nx-page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(11, 31, 64, 0.06) 1px, transparent 0);
  background-size: 18px 18px;
  opacity: 0.5;
  pointer-events: none;
}
.nx-page-hero-inner { position: relative; z-index: 1; }
.nx-page-hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: start;
}
.nx-page-h1 {
  font-size: 52px;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 22px;
  color: var(--navy);
}
.nx-page-h1 .blue { color: var(--blue); }
.nx-page-intro {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(11, 31, 64, 0.72);
}
.nx-page-intro p { margin-bottom: 14px; }
.nx-page-intro blockquote {
  border-left: 2px solid var(--blue);
  padding-left: 20px;
  margin: 20px 0;
  font-style: italic;
  color: var(--navy);
  font-size: 16px;
  line-height: 1.5;
}

.nx-numbers-panel {
  background: var(--navy);
  color: #fff;
  padding: 32px 28px;
  border-radius: 6px;
}
.nx-numbers-panel h3 {
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.2em;
  font-weight: 600;
  margin-bottom: 22px;
}
.nx-num-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 18px;
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.1);
}
.nx-num-item .nx-num {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  font-family: var(--font-mono);
  letter-spacing: -0.01em;
}
.nx-num-item .nx-num .sup {
  font-size: 14px;
  color: var(--gold);
  vertical-align: super;
}
.nx-num-item .nx-num-lbl {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
  margin-top: 6px;
}
.nx-commit-h {
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.2em;
  font-weight: 600;
  margin-bottom: 14px;
}
.nx-commit-list { display: flex; flex-direction: column; gap: 10px; }
.nx-commit-item {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
}
.nx-commit-item i {
  color: var(--blue);
  font-size: 16px;
  flex-shrink: 0;
}

.nx-six-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.nx-six {
  padding: 26px 22px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  transition: all 0.4s var(--ease);
}
.nx-six.dark {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}
.nx-six:hover { transform: translateY(-3px); box-shadow: 0 14px 28px -14px rgba(11, 31, 64, 0.18); }
.nx-six-num {
  font-size: 11px;
  color: var(--blue);
  letter-spacing: 0.16em;
  font-weight: 600;
  margin-bottom: 14px;
  font-family: var(--font-mono);
}
.nx-six.dark .nx-six-num { color: var(--gold); }
.nx-six-h {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.nx-six.dark .nx-six-h { color: #fff; }
.nx-six-body {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(11, 31, 64, 0.65);
}
.nx-six.dark .nx-six-body { color: rgba(255, 255, 255, 0.7); }

.nx-cap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.nx-cap {
  background: var(--blue-tint);
  padding: 18px 16px;
  border-top: 2px solid var(--blue);
  border-radius: 0 0 4px 4px;
  transition: transform 0.3s var(--ease);
}
.nx-cap:hover { transform: translateY(-2px); }
.nx-cap-num {
  background: var(--navy);
  color: #fff;
  padding: 3px 7px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 600;
  font-family: var(--font-mono);
  display: inline-block;
  margin-bottom: 12px;
}
.nx-cap-h {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.nx-cap-body {
  font-size: 12px;
  line-height: 1.55;
  color: rgba(11, 31, 64, 0.65);
}

.nx-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 32px;
}
.nx-stats-row .item {
  background: var(--blue-tint);
  padding: 24px 20px;
  text-align: center;
  border-radius: 4px;
}
.nx-stats-row .num {
  font-size: 36px;
  font-weight: 700;
  color: var(--navy);
  font-family: var(--font-mono);
}
.nx-stats-row .num .sup { font-size: 16px; color: var(--blue); vertical-align: super; }
.nx-stats-row .lbl {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.14em;
  font-weight: 600;
  margin-top: 8px;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.nx-contact-page-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}
.nx-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 32px;
}
.nx-form-row {
  margin-bottom: 16px;
}
.nx-form-row.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.nx-label {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.14em;
  font-weight: 600;
  margin-bottom: 6px;
}
.nx-input, .nx-textarea, .nx-select {
  width: 100%;
  padding: 11px 13px;
  background: #fff;
  border: 1px solid rgba(11, 31, 64, 0.16);
  border-radius: 4px;
  font-size: 13px;
  color: var(--navy);
  font-family: var(--font-sans);
  transition: border-color 0.3s var(--ease);
  outline: none;
}
.nx-input:focus, .nx-textarea:focus, .nx-select:focus { border-color: var(--blue); }
.nx-textarea { min-height: 120px; resize: vertical; }
.nx-form-btn {
  background: var(--navy);
  color: #fff;
  padding: 12px 22px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  letter-spacing: 0.04em;
}
.nx-form-btn:hover { background: var(--blue); }
.nx-form-btn i { transition: transform 0.4s var(--ease); }
.nx-form-btn:hover i { transform: translateX(3px); }

.nx-contact-info-card {
  background: var(--cream);
  border-radius: 8px;
  padding: 28px;
  margin-bottom: 14px;
}
.nx-contact-info-h {
  font-size: 11px;
  color: var(--blue);
  letter-spacing: 0.2em;
  font-weight: 600;
  margin-bottom: 16px;
}
.nx-contact-info-row {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 0.5px solid rgba(11, 31, 64, 0.08);
  align-items: baseline;
}
.nx-contact-info-row:last-child { border-bottom: none; }
.nx-cir-key {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  font-weight: 600;
  width: 100px;
  flex-shrink: 0;
}
.nx-cir-val {
  font-size: 13px;
  color: var(--navy);
  flex: 1;
  font-family: var(--font-mono);
}
.nx-cir-val.blue { color: var(--blue); }

.nx-office-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 32px;
}
.nx-office {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 22px;
  transition: all 0.3s var(--ease);
}
.nx-office:hover { border-color: var(--blue); transform: translateY(-2px); }
.nx-office-loc {
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.18em;
  font-weight: 600;
  margin-bottom: 6px;
}
.nx-office-city {
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.nx-office-meta {
  font-size: 12px;
  line-height: 1.6;
  color: rgba(11, 31, 64, 0.65);
}

/* ============================================
   NEWS DETAIL PAGE
   ============================================ */
.nx-article-hero {
  padding: 56px 40px 0;
  background: #fff;
}
.nx-article-meta {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 22px;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  font-family: var(--font-mono);
}
.nx-article-meta .nx-tag-badge {
  background: rgba(59, 130, 246, 0.1);
  color: var(--blue);
  padding: 4px 10px;
  border-radius: 2px;
  font-weight: 600;
  letter-spacing: 0.14em;
}
.nx-article-meta .dot { width: 3px; height: 3px; background: rgba(11, 31, 64, 0.3); border-radius: 50%; }
.nx-article-title {
  font-size: 44px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
  max-width: 800px;
}
.nx-article-lede {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(11, 31, 64, 0.65);
  max-width: 720px;
  margin-bottom: 36px;
}
.nx-article-cover {
  width: 100%;
  height: 360px;
  background: var(--navy);
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nx-article-cover svg { width: 50%; height: 70%; }

.nx-article-body {
  padding: 56px 40px;
  background: #fff;
}
.nx-article-body-grid {
  display: grid;
  grid-template-columns: 1fr 2.5fr;
  gap: 40px;
  max-width: 1100px;
}
.nx-article-sidebar {
  position: sticky;
  top: 100px;
  align-self: start;
}
.nx-sidebar-h {
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.18em;
  font-weight: 600;
  margin-bottom: 14px;
}
.nx-toc { display: flex; flex-direction: column; gap: 9px; padding-bottom: 24px; border-bottom: 0.5px solid var(--line); margin-bottom: 24px; }
.nx-toc a {
  font-size: 12px;
  color: rgba(11, 31, 64, 0.65);
  transition: all 0.3s;
  padding-left: 12px;
  border-left: 2px solid var(--line);
  line-height: 1.4;
  display: block;
}
.nx-toc a:hover { color: var(--navy); border-color: var(--blue); }
.nx-toc a.active { color: var(--navy); border-color: var(--blue); font-weight: 600; }
.nx-share-list { display: flex; gap: 6px; flex-wrap: wrap; }
.nx-share-list a {
  width: 32px;
  height: 32px;
  border: 1px solid var(--line);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.3s var(--ease);
}
.nx-share-list a:hover { border-color: var(--blue); color: var(--blue); }

.nx-article-content {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(11, 31, 64, 0.78);
}
.nx-article-content h2 {
  font-size: 24px;
  font-weight: 600;
  color: var(--navy);
  margin: 40px 0 16px;
  letter-spacing: -0.015em;
}
.nx-article-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  margin: 28px 0 12px;
}
.nx-article-content p { margin-bottom: 16px; }
.nx-article-content ul { margin-bottom: 16px; padding-left: 22px; }
.nx-article-content li { margin-bottom: 8px; }
.nx-article-content blockquote {
  border-left: 3px solid var(--blue);
  padding: 4px 0 4px 22px;
  margin: 24px 0;
  font-style: italic;
  color: var(--navy);
}
.nx-article-content strong { color: var(--navy); font-weight: 600; }

.nx-callout {
  background: var(--cream);
  border-left: 3px solid var(--gold);
  padding: 20px 22px;
  border-radius: 0 4px 4px 0;
  margin: 28px 0;
}
.nx-callout-h {
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.16em;
  font-weight: 600;
  margin-bottom: 8px;
}
.nx-callout-body { font-size: 14px; color: var(--navy); line-height: 1.6; }

/* ============================================
   CART PAGE
   ============================================ */
.nx-cart-page-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 32px;
  align-items: start;
}
.nx-cart-items {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}
.nx-cart-item {
  display: grid;
  grid-template-columns: 100px 1fr auto auto auto;
  gap: 20px;
  padding: 20px;
  border-bottom: 0.5px solid var(--line);
  align-items: center;
}
.nx-cart-item:last-child { border-bottom: none; }
.nx-cart-img {
  width: 100px;
  height: 100px;
  background: var(--cream);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nx-cart-img svg { width: 70%; height: 70%; }
.nx-cart-info-tag {
  font-size: 11px;
  color: var(--blue);
  letter-spacing: 0.14em;
  font-weight: 600;
  margin-bottom: 4px;
}
.nx-cart-info-name {
  font-size: 14px;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 6px;
}
.nx-cart-info-spec {
  font-size: 12px;
  color: var(--text-muted);
  font-family: var(--font-mono);
}
.nx-cart-qty .nx-qty button { height: 36px; width: 30px; }
.nx-cart-qty .nx-qty input { width: 36px; height: 36px; }
.nx-cart-price {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  font-family: var(--font-mono);
  text-align: right;
  min-width: 80px;
}
.nx-cart-remove {
  font-size: 14px;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.3s;
  padding: 4px;
}
.nx-cart-remove:hover { color: var(--amber); }
.nx-cart-summary {
  background: var(--cream);
  border-radius: 8px;
  padding: 28px;
  position: sticky;
  top: 100px;
}
.nx-summary-h {
  font-size: 11px;
  color: var(--blue);
  letter-spacing: 0.2em;
  font-weight: 600;
  margin-bottom: 18px;
}
.nx-summary-row {
  display: flex;
  justify-content: space-between;
  padding: 9px 0;
  font-size: 13px;
  color: rgba(11, 31, 64, 0.75);
  border-bottom: 0.5px solid rgba(11, 31, 64, 0.06);
}
.nx-summary-row:last-of-type { border-bottom: none; }
.nx-summary-row .v { font-family: var(--font-mono); color: var(--navy); font-weight: 500; }
.nx-summary-total {
  display: flex;
  justify-content: space-between;
  padding: 18px 0;
  border-top: 1px solid var(--line-strong);
  margin-top: 8px;
  font-size: 18px;
  color: var(--navy);
  font-weight: 700;
}
.nx-summary-total .v { font-family: var(--font-mono); }
.nx-promo-row {
  display: flex;
  gap: 6px;
  margin: 18px 0;
}
.nx-promo-row .nx-input { padding: 9px 12px; font-size: 12px; }
.nx-promo-btn {
  background: var(--navy);
  color: #fff;
  padding: 9px 16px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s var(--ease);
  letter-spacing: 0.04em;
}
.nx-promo-btn:hover { background: var(--blue); }
.nx-checkout-btn {
  width: 100%;
  background: var(--navy);
  color: #fff;
  padding: 14px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  letter-spacing: 0.04em;
  margin-top: 6px;
}
.nx-checkout-btn:hover { background: var(--blue); }
.nx-checkout-btn i { transition: transform 0.4s var(--ease); }
.nx-checkout-btn:hover i { transform: translateX(3px); }

/* ============================================
   RESPONSIVE (basic)
   ============================================ */
@media (max-width: 960px) {
  .nx-util { padding: 9px 22px; }
  .nx-nav { padding: 16px 22px; }
  .nx-hero { padding: 56px 22px; }
  .nx-sec { padding: 56px 22px; }
  .nx-mf { padding: 48px 22px 20px; }
  .nx-mf-top { grid-template-columns: 1fr; gap: 28px; }
  .nx-mf-cols { grid-template-columns: 1fr 1fr; }
  .nx-pd-hero { grid-template-columns: 1fr; padding: 32px 22px; gap: 28px; }
  .nx-page-hero-grid { grid-template-columns: 1fr; }
  .nx-contact-page-grid { grid-template-columns: 1fr; }
  .nx-cart-page-grid { grid-template-columns: 1fr; }
  .nx-article-body-grid { grid-template-columns: 1fr; }
  .nx-article-sidebar { position: static; }
  .nx-cat-grid, .nx-prod-grid, .nx-news-grid, .nx-pr-grid, .nx-six-grid, .nx-cap-grid, .nx-compat-grid, .nx-office-grid, .nx-stats-row, .nx-stats, .nx-vid-grid, .nx-about-principles { grid-template-columns: 1fr 1fr; }
  .nx-about-story { grid-template-columns: 1fr; gap: 20px; }
  .nx-about-story-eye { padding-top: 0; border-top: none; }
  .nx-tab-bar { flex-wrap: wrap; }
  .nx-acct-page { grid-template-columns: 1fr; }
  .nx-acct-side { border-right: none; border-bottom: 0.5px solid var(--line); }
  .nx-auth-wrap { grid-template-columns: 1fr; min-height: auto; }
  .nx-auth-vis-col { padding: 48px 32px; }
  .nx-auth-form-col { padding: 48px 32px; }
  .nx-nav-links { display: none; }
}

@media (max-width: 640px) {
  .nx-cat-grid, .nx-prod-grid, .nx-news-grid, .nx-pr-grid, .nx-six-grid, .nx-cap-grid, .nx-compat-grid, .nx-office-grid, .nx-stats-row, .nx-stats, .nx-mf-cols, .nx-vid-grid, .nx-about-principles, .nx-acct-stats { grid-template-columns: 1fr; }
  .nx-h1 { font-size: 36px; }
  .nx-sec-h, .nx-mf-h { font-size: 26px; }
  .nx-page-h1 { font-size: 32px; }
  .nx-article-title { font-size: 28px; }
  .nx-about-cta-h { font-size: 24px; }
  .nx-acct-credit-card { grid-template-columns: 1fr; }
}

/* ============================================
   MEGA MENU - extended (Compatibility / News / About)
   ============================================ */
.nx-ni-chev { font-size: 11px; opacity: 0.45; transition: transform 0.3s var(--ease); }
.nx-ni.has-mega:hover .nx-ni-chev { transform: rotate(180deg); opacity: 0.85; }

.nx-mega-eye {
  font-size: 11px;
  color: var(--blue);
  letter-spacing: 0.22em;
  font-weight: 600;
  margin-bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.nx-mega-eye::before {
  content: '';
  width: 24px;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}

.nx-mega-grid.compat { grid-template-columns: 2fr 1fr; }
.nx-mega-grid.news { grid-template-columns: 1fr 1fr 1.35fr; }
.nx-mega-grid.about { grid-template-columns: 1fr 1fr 1.35fr; }

.nx-brand-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}
.nx-brand-tile {
  background: var(--cream);
  border: 0.5px solid transparent;
  border-radius: 4px;
  padding: 12px 10px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  text-decoration: none;
  color: inherit;
}
.nx-brand-tile:hover {
  background: #fff;
  border-color: var(--blue);
}
.nx-brand-tile-name {
  font-size: 12px;
  color: var(--navy);
  font-weight: 600;
  letter-spacing: 0.04em;
}
.nx-brand-tile-meta {
  font-size: 10px;
  color: var(--text-faint);
  letter-spacing: 0.12em;
  margin-top: 3px;
  font-family: var(--font-mono);
}

.nx-match {
  background: var(--navy);
  border-radius: 6px;
  padding: 16px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.nx-match-h {
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.18em;
  font-weight: 600;
}
.nx-match-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.66);
  line-height: 1.55;
}
.nx-match-input {
  background: rgba(255,255,255,0.06);
  border: 0.5px solid rgba(255,255,255,0.18);
  border-radius: 3px;
  padding: 9px 11px;
  font-size: 12px;
  color: rgba(255,255,255,0.75);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-mono);
}
.nx-match-input span {
  color: rgba(255,255,255,0.4);
}
.nx-match-btn {
  background: var(--blue);
  color: #fff;
  padding: 9px 12px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-align: center;
  cursor: pointer;
  transition: background 0.3s var(--ease);
  text-decoration: none;
  display: block;
}
.nx-match-btn:hover {
  background: #5a96ff;
}

.nx-mc {
  font-size: 13px;
  color: rgba(11,31,64,0.72);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 0;
  cursor: pointer;
  transition: color 0.3s var(--ease);
  text-decoration: none;
}
.nx-mc:hover {
  color: var(--navy);
}
.nx-mc i {
  font-size: 14px;
  color: var(--blue);
  flex-shrink: 0;
}
.nx-mc-count {
  margin-left: auto;
  color: var(--text-faint);
  font-size: 11px;
  font-family: var(--font-mono);
}

/* ============================================
   AUTH PAGES (signin / signup / forgot)
   ============================================ */
.nx-auth-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
  background: #fff;
}
.nx-auth-form-col {
  padding: 64px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 560px;
  margin: 0 auto;
  width: 100%;
}
.nx-auth-eye {
  color: var(--blue);
  font-size: 11px;
  letter-spacing: 0.22em;
  font-weight: 600;
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.nx-auth-eye::before {
  content: '';
  width: 24px;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}
.nx-auth-title {
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -0.024em;
  line-height: 1.1;
  margin-bottom: 12px;
  color: var(--navy);
}
.nx-auth-title .blue { color: var(--blue); }
.nx-auth-sub {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 440px;
}
.nx-auth-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 14px 0 24px;
  font-size: 13px;
}
.nx-auth-remember {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  cursor: pointer;
}
.nx-auth-remember input[type="checkbox"] {
  accent-color: var(--blue);
  width: 14px;
  height: 14px;
  cursor: pointer;
}
.nx-auth-link {
  color: var(--blue);
  cursor: pointer;
  transition: color 0.3s var(--ease);
  text-decoration: none;
}
.nx-auth-link:hover { color: var(--navy); }
.nx-auth-submit {
  width: 100%;
  background: var(--navy);
  color: #fff;
  padding: 14px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.4s var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
}
.nx-auth-submit:hover { background: var(--blue); }
.nx-auth-submit i { transition: transform 0.4s var(--ease); }
.nx-auth-submit:hover i { transform: translateX(3px); }
.nx-auth-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 28px 0 22px;
  font-size: 11px;
  color: var(--text-faint);
  letter-spacing: 0.16em;
  font-weight: 600;
}
.nx-auth-divider::before, .nx-auth-divider::after {
  content: '';
  flex: 1;
  height: 0.5px;
  background: var(--line);
}
.nx-auth-sso {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.nx-auth-sso-btn {
  border: 1px solid var(--line-strong);
  background: #fff;
  padding: 12px 16px;
  border-radius: 4px;
  font-size: 13px;
  color: var(--navy);
  cursor: pointer;
  transition: all 0.3s var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-weight: 500;
}
.nx-auth-sso-btn:hover {
  background: var(--cream);
  border-color: var(--navy);
}
.nx-auth-sso-btn i { font-size: 16px; }
.nx-auth-foot {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 24px;
  padding-top: 24px;
  border-top: 0.5px solid var(--line);
}
.nx-auth-vis-col {
  background: var(--navy);
  color: #fff;
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.nx-auth-vis-eye {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.22em;
  font-weight: 600;
  margin-bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.nx-auth-vis-eye::before {
  content: '';
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}
.nx-auth-vis-h {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 18px;
  max-width: 420px;
}
.nx-auth-vis-h .blue { color: var(--blue); }
.nx-auth-vis-body {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  max-width: 440px;
  margin-bottom: 36px;
}
.nx-auth-vis-lens {
  margin: auto 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nx-auth-vis-lens svg { width: 260px; height: 260px; }
.nx-auth-vis-foot {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  font-family: var(--font-mono);
  letter-spacing: 0.1em;
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 0.5px solid rgba(255,255,255,0.12);
  margin-top: auto;
}
.nx-auth-vis-trust {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 32px;
}
.nx-auth-trust-row {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.78);
}
.nx-auth-trust-row i { color: var(--gold); font-size: 16px; flex-shrink: 0; }

/* sign-up account type toggle */
.nx-acct-type-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 22px;
}
.nx-acct-type {
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  padding: 14px 16px;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  background: #fff;
  text-align: left;
  font-family: var(--font-sans);
}
.nx-acct-type:hover { border-color: rgba(11,31,64,0.32); }
.nx-acct-type.active {
  border-color: var(--blue);
  background: var(--blue-tint);
}
.nx-acct-type-h {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nx-acct-type-h i { color: var(--blue); font-size: 14px; }
.nx-acct-type-meta {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  line-height: 1.45;
}

/* ============================================
   MY ACCOUNT DASHBOARD
   ============================================ */
.nx-acct-page {
  display: grid;
  grid-template-columns: 240px 1fr;
  background: var(--cream);
  min-height: 600px;
}
.nx-acct-side {
  background: #fff;
  border-right: 0.5px solid var(--line);
  padding: 28px 0;
}
.nx-acct-user {
  padding: 0 22px 22px;
  border-bottom: 0.5px solid var(--line);
  margin-bottom: 14px;
}
.nx-acct-avatar {
  width: 44px;
  height: 44px;
  background: var(--blue-tint);
  color: var(--blue);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
  font-family: var(--font-mono);
}
.nx-acct-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 2px;
}
.nx-acct-company {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}
.nx-acct-company .tier {
  color: var(--gold);
  font-weight: 600;
  margin-left: 4px;
}
.nx-acct-side-nav {
  display: flex;
  flex-direction: column;
}
.nx-acct-side-section {
  font-size: 10px;
  color: var(--text-faint);
  letter-spacing: 0.18em;
  font-weight: 600;
  padding: 14px 22px 8px;
}
.nx-acct-nav-item {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 10px 22px;
  font-size: 13px;
  color: rgba(11,31,64,0.72);
  cursor: pointer;
  transition: all 0.3s var(--ease);
  border-left: 2px solid transparent;
  text-decoration: none;
}
.nx-acct-nav-item:hover {
  background: var(--cream);
  color: var(--navy);
}
.nx-acct-nav-item.active {
  background: var(--blue-tint);
  color: var(--navy);
  border-left-color: var(--blue);
  font-weight: 600;
}
.nx-acct-nav-item i { font-size: 16px; color: var(--text-faint); }
.nx-acct-nav-item:hover i { color: var(--navy); }
.nx-acct-nav-item.active i { color: var(--blue); }
.nx-acct-nav-item .badge {
  margin-left: auto;
  background: var(--blue);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  padding: 1px 6px;
  border-radius: 8px;
}
.nx-acct-nav-item.danger { color: rgba(11,31,64,0.55); }
.nx-acct-nav-item.danger:hover { color: var(--amber); }
.nx-acct-nav-item.danger:hover i { color: var(--amber); }

.nx-acct-main {
  padding: 32px 36px 40px;
}
.nx-acct-header {
  margin-bottom: 28px;
}
.nx-acct-h {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 6px;
}
.nx-acct-sub {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
}

.nx-acct-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 28px;
}
.nx-acct-stat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 18px 18px 16px;
  transition: all 0.3s var(--ease);
}
.nx-acct-stat:hover { transform: translateY(-2px); border-color: rgba(11,31,64,0.2); }
.nx-acct-stat-lbl {
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.16em;
  font-weight: 600;
  margin-bottom: 10px;
}
.nx-acct-stat-val {
  font-size: 26px;
  font-weight: 600;
  color: var(--navy);
  font-family: var(--font-mono);
  letter-spacing: -0.01em;
  line-height: 1;
  margin-bottom: 8px;
}
.nx-acct-stat-val .sup {
  font-size: 13px;
  color: var(--blue);
  margin-left: 2px;
}
.nx-acct-stat-val .unit {
  font-size: 13px;
  color: var(--text-faint);
  margin-left: 4px;
}
.nx-acct-stat-meta {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}
.nx-acct-stat-meta .pos { color: #16a34a; }
.nx-acct-stat-meta .gold { color: var(--gold); }

.nx-acct-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  margin-bottom: 16px;
  overflow: hidden;
}
.nx-acct-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 22px;
  border-bottom: 0.5px solid var(--line);
}
.nx-acct-card-h {
  font-size: 11px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.18em;
}
.nx-acct-card-link {
  font-size: 12px;
  color: var(--blue);
  display: inline-flex;
  gap: 4px;
  align-items: center;
  text-decoration: none;
  transition: gap 0.35s var(--ease);
}
.nx-acct-card-link:hover { gap: 8px; }

.nx-acct-orders-table {
  width: 100%;
  border-collapse: collapse;
}
.nx-acct-orders-table th {
  text-align: left;
  padding: 11px 22px;
  font-size: 10px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.14em;
  background: var(--cream);
  border-bottom: 0.5px solid var(--line);
}
.nx-acct-orders-table td {
  padding: 14px 22px;
  font-size: 13px;
  color: var(--navy);
  border-bottom: 0.5px solid var(--line);
}
.nx-acct-orders-table tr:last-child td { border-bottom: none; }
.nx-acct-orders-table tr:hover td { background: var(--cream); }
.nx-acct-orders-table td.mono { font-family: var(--font-mono); font-size: 12px; }
.nx-acct-orders-table td.right { text-align: right; }
.nx-acct-orders-table .order-id { color: var(--blue); cursor: pointer; text-decoration: none; }
.nx-acct-orders-table .order-id:hover { text-decoration: underline; }

.nx-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 9px;
  font-size: 10px;
  letter-spacing: 0.1em;
  font-weight: 600;
  border-radius: 2px;
}
.nx-status-badge::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
}
.nx-status-badge.delivered { background: rgba(22,163,74,0.12); color: #16a34a; }
.nx-status-badge.shipped { background: rgba(59,130,246,0.12); color: var(--blue); }
.nx-status-badge.processing { background: rgba(217,119,6,0.12); color: var(--amber); }
.nx-status-badge.draft { background: rgba(11,31,64,0.08); color: rgba(11,31,64,0.55); }

.nx-acct-credit-card {
  background: var(--navy);
  color: #fff;
  border-radius: 6px;
  padding: 22px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}
.nx-acct-credit-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.nx-acct-credit-eye {
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 0.2em;
  font-weight: 600;
  margin-bottom: 14px;
  position: relative;
}
.nx-acct-credit-h {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  position: relative;
}
.nx-acct-credit-amount {
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
  position: relative;
}
.nx-acct-credit-meta {
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.04em;
  position: relative;
}
.nx-acct-credit-progress {
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  margin: 12px 0 6px;
  overflow: hidden;
  position: relative;
}
.nx-acct-credit-progress > div {
  height: 100%;
  background: var(--blue);
  border-radius: 2px;
}
.nx-acct-credit-r {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}
.nx-acct-credit-btn {
  background: var(--blue);
  color: #fff;
  padding: 9px 14px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s var(--ease);
  letter-spacing: 0.04em;
  align-self: flex-start;
  border: none;
  text-decoration: none;
  display: inline-block;
}
.nx-acct-credit-btn:hover { background: #5a96ff; }
.nx-acct-credit-row {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
  font-size: 12px;
  font-family: var(--font-mono);
}
.nx-acct-credit-row .k { color: rgba(255,255,255,0.6); }
.nx-acct-credit-row .v { color: #fff; }

/* ============================================
   LANGUAGE SWITCHER (utility bar dropdown)
   ============================================ */
.nx-lang {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  padding: 4px 2px;
  margin: -4px -2px;
  color: rgba(255,255,255,0.6);
  transition: color 0.35s var(--ease);
}
.nx-lang:hover { color: var(--gold); }
.nx-lang > i.icon-globe { font-size: 13px; opacity: 0.75; }
.nx-lang > i.icon-chev {
  font-size: 10px;
  opacity: 0.55;
  transition: transform 0.3s var(--ease);
}
.nx-lang:hover > i.icon-chev { transform: rotate(180deg); }
.nx-lang-menu {
  position: absolute;
  top: calc(100% + 9px);
  right: -8px;
  background: #fff;
  border-radius: 5px;
  padding: 4px;
  min-width: 170px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: all 0.3s var(--ease);
  z-index: 100;
  box-shadow: 0 18px 36px -12px rgba(0,0,0,0.5);
}
.nx-lang:hover .nx-lang-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nx-lang-opt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 12px;
  font-size: 12px;
  color: var(--navy);
  cursor: pointer;
  border-radius: 3px;
  transition: background 0.2s;
  text-decoration: none;
  letter-spacing: 0;
  font-family: var(--font-sans);
}
.nx-lang-opt:hover { background: var(--cream); }
.nx-lang-opt .lang-name { font-weight: 500; }
.nx-lang-opt.active { background: var(--blue-tint); }
.nx-lang-opt.active .lang-name { color: var(--blue); font-weight: 600; }
.nx-lang-opt .lang-meta {
  color: var(--text-faint);
  font-size: 10px;
  font-family: var(--font-mono);
  letter-spacing: 0.08em;
}
.nx-lang-opt.active .lang-meta { color: var(--blue); opacity: 0.7; }

/* ============================================
   SIMPLIFIED MEGA (Catalogue only, no featured card)
   ============================================ */
.nx-mega-grid.simple { grid-template-columns: repeat(4, 1fr); }

/* ============================================
   SIMPLE TAB BAR (used by News, Videos)
   ============================================ */
.nx-tab-bar {
  display: flex;
  gap: 4px;
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 0.5px solid var(--line);
}
.nx-tab {
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  border-radius: 3px;
  transition: all 0.3s var(--ease);
  letter-spacing: 0.04em;
  text-decoration: none;
}
.nx-tab:hover { color: var(--navy); background: var(--cream); }
.nx-tab.active { color: var(--blue); background: var(--blue-tint); font-weight: 600; }
.nx-tab .count {
  margin-left: 6px;
  font-family: var(--font-mono);
  font-size: 10px;
  opacity: 0.65;
}

/* ============================================
   VIDEOS PAGE
   ============================================ */
.nx-vid-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.nx-vid-card {
  background: #fff;
  border: 1px solid rgba(11,31,64,0.15);
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s var(--ease);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}
.nx-vid-card:hover {
  border-color: rgba(59,130,246,0.4);
  transform: translateY(-3px);
  box-shadow: 0 22px 38px -20px rgba(11,31,64,0.22);
}
.nx-vid-thumb {
  position: relative;
  background: var(--navy);
  padding-bottom: 56.25%; /* 16:9 */
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
}
.nx-vid-thumb-vis {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nx-vid-thumb-vis svg {
  width: 50%;
  height: 50%;
  opacity: 0.35;
}
.nx-vid-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.nx-vid-play-circle {
  width: 56px;
  height: 56px;
  background: rgba(201,169,97,0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
  box-shadow: 0 6px 28px -6px rgba(0,0,0,0.5);
}
.nx-vid-card:hover .nx-vid-play-circle {
  transform: scale(1.12);
  background: rgba(201,169,97,1);
}
.nx-vid-play-circle::before {
  content: '';
  width: 0;
  height: 0;
  border-left: 14px solid var(--navy);
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  margin-left: 4px;
}
.nx-vid-duration {
  position: absolute;
  bottom: 9px;
  right: 9px;
  background: rgba(0,0,0,0.75);
  color: #fff;
  padding: 3px 8px;
  font-size: 11px;
  font-family: var(--font-mono);
  border-radius: 2px;
  letter-spacing: 0.04em;
  z-index: 2;
}
.nx-vid-body {
  padding: 14px 16px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.nx-vid-cat {
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 0.18em;
  font-weight: 600;
  margin-bottom: 8px;
}
.nx-vid-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.45;
  margin: 0 0 12px;
}
.nx-vid-meta {
  margin-top: auto;
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  display: flex;
  gap: 8px;
  font-family: var(--font-mono);
}
.nx-vid-meta .dot { color: var(--text-faint); }

/* ============================================
   SIMPLIFIED ABOUT PAGE
   ============================================ */
.nx-about-story {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: start;
}
.nx-about-story-eye {
  color: var(--blue);
  font-size: 11px;
  letter-spacing: 0.22em;
  font-weight: 600;
  padding-top: 8px;
  border-top: 0.5px solid var(--line);
}
.nx-about-story-body {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(11, 31, 64, 0.78);
}
.nx-about-story-body p {
  margin: 0 0 14px;
}
.nx-about-story-body p:first-child {
  font-size: 17px;
  line-height: 1.55;
  color: var(--navy);
  font-weight: 500;
  letter-spacing: -0.012em;
  margin-bottom: 22px;
}

.nx-about-principles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 28px;
}
.nx-about-principle {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 22px 20px 24px;
  transition: all 0.4s var(--ease);
}
.nx-about-principle:hover {
  transform: translateY(-3px);
  border-color: rgba(11, 31, 64, 0.2);
  box-shadow: 0 16px 30px -16px rgba(11, 31, 64, 0.15);
}
.nx-about-principle-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.08em;
  font-weight: 500;
  margin-bottom: 14px;
}
.nx-about-principle-h {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.012em;
  line-height: 1.25;
  margin: 0 0 10px;
}
.nx-about-principle-body {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}

.nx-about-cta {
  text-align: center;
  padding-top: 64px;
  padding-bottom: 64px;
}
.nx-about-cta-h {
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -0.022em;
  color: var(--navy);
  margin: 0 0 12px;
}
.nx-about-cta-sub {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 26px;
}

/* Primary button — used by about CTA */
.nx-btn-pri {
  background: var(--blue);
  color: #fff;
  padding: 12px 22px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 3px;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  transition: all 0.4s var(--ease);
  border: none;
  text-decoration: none;
}
.nx-btn-pri:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 30px -10px rgba(59, 130, 246, 0.55);
}
.nx-btn-pri i {
  transition: transform 0.4s var(--ease);
}
.nx-btn-pri:hover i {
  transform: translateX(3px);
}

/* ============================================
   RESPONSIVE OVERRIDES (must come last to win cascade)
   ============================================ */
@media (max-width: 960px) {
  .nx-vid-grid,
  .nx-about-principles { grid-template-columns: 1fr 1fr; }
  .nx-about-story { grid-template-columns: 1fr; gap: 20px; }
  .nx-about-story-eye { padding-top: 0; border-top: none; }
  .nx-tab-bar { flex-wrap: wrap; }
  .nx-acct-page { grid-template-columns: 1fr; }
  .nx-acct-side { border-right: none; border-bottom: 0.5px solid var(--line); }
  .nx-acct-stats { grid-template-columns: 1fr 1fr; }
  .nx-auth-wrap { grid-template-columns: 1fr; min-height: auto; }
  .nx-auth-vis-col,
  .nx-auth-form-col { padding: 48px 32px; }
  .nx-acct-credit-card { grid-template-columns: 1fr; }
  .nx-acct-orders-table th:nth-child(4),
  .nx-acct-orders-table td:nth-child(4) { display: none; }
}

@media (max-width: 640px) {
  .nx-vid-grid,
  .nx-about-principles,
  .nx-acct-stats { grid-template-columns: 1fr; }
  .nx-about-cta-h { font-size: 24px; }
  .nx-mega-grid.simple { grid-template-columns: 1fr 1fr; }
  .nx-acct-main { padding: 24px 22px 30px; }
  .nx-vid-thumb { padding-bottom: 56.25%; }
}


/* === NX-LIVE-OVERRIDES: inner-page hero -> navy grid (matches homepage) === */
.nx-page-hero {
  background: var(--navy);
  color: #fff;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
}
.nx-page-hero::after {
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.05) 1px, transparent 0);
  opacity: 0.6;
}
.nx-page-hero .nx-page-h1 { color: #fff; }
.nx-page-hero .nx-page-h1 .blue { color: var(--blue); }
.nx-page-hero .nx-page-intro,
.nx-page-hero .nx-page-intro p { color: rgba(255,255,255,0.75); }
.nx-page-hero .nx-sec-eye,
.nx-page-hero .nx-eyebrow { color: var(--gold); }
