/* ================================================================
   MÉTRICA MAKER — Main Stylesheet
   ================================================================ */
@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@300;400;500;600;700&family=Barlow+Condensed:wght@500;600;700;800;900&family=JetBrains+Mono:wght@400;500&display=swap');

/* ── CSS Variables ───────────────────────────────────────── */
:root {
  --bg:    #0e1014;
  --bg2:   #13171c;
  --bg3:   #1a1f27;
  --bg4:   #21272f;
  --border: rgba(255,255,255,0.07);
  --b2:    rgba(255,255,255,0.13);
  --orange:  #FF6A00;
  --orange2: #ff8533;
  --o-dim:   rgba(255,106,0,0.10);
  --o-glow:  rgba(255,106,0,0.22);
  --violet:  #8B5CF6;
  --blue:    #0EA5E9;
  --green:   #10B981;
  --amber:   #F59E0B;
  --text:  #eef0f4;
  --text2: #9aa3b0;
  --text3: #5c6370;
  --sans: 'Barlow', system-ui, sans-serif;
  --cond: 'Barlow Condensed', sans-serif;
  --mono: 'JetBrains Mono', monospace;
  --nav-h: 60px;
  --r: 12px;
  --r-sm: 8px;
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: var(--nav-h);  /* offset exacto del nav fijo — sin hueco */
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; font-family: var(--sans); }
ul, ol { list-style: none; }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--bg4); border-radius: 4px; }

/* ═══════════════════════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════════════════════ */
nav#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(14,16,20,0.93);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 20px;
  gap: 0;
  transition: background .3s, box-shadow .3s;
}
nav#nav.scrolled {
  background: rgba(14,16,20,0.98);
  box-shadow: 0 4px 30px rgba(0,0,0,.5);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-right: 20px;
  text-decoration: none;
}
.nav-logo img { height: 36px; width: auto; object-fit: contain; }
.nav-brand-text { display: flex; flex-direction: column; line-height: 1; }
.nav-brand { font-family: var(--cond); font-size: 17px; font-weight: 800; letter-spacing: .03em; color: var(--text); }
.nav-brand span { color: var(--orange); }
.nav-sub { font-size: 9px; color: var(--text3); letter-spacing: .15em; font-family: var(--mono); margin-top: 3px; }
.nav-links {
  display: flex;
  align-items: center;
  flex: 1;
  height: 100%;
  overflow-x: auto;
  scrollbar-width: none;
}
.nav-links::-webkit-scrollbar { display: none; }
.nl {
  padding: 0 12px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  font-size: 13px;
  font-weight: 500;
  color: var(--text2);
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color .2s, border-color .2s;
  flex-shrink: 0;
  text-decoration: none;
}
.nl:hover { color: var(--text); }
.nl.active { color: var(--orange); border-bottom-color: var(--orange); }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  margin-left: 12px;
}
.robot-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--o-dim);
  border: 1px solid rgba(255,106,0,.22);
  border-radius: 20px;
  padding: 5px 12px;
  font-size: 10px;
  font-family: var(--mono);
  color: var(--orange);
  letter-spacing: .05em;
}
.rpulse {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
  animation: rpulse 1.8s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes rpulse { 0%,100% { opacity: 1; } 50% { opacity: .2; } }
.nav-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg3);
  border: 1px solid var(--b2);
  display: flex; align-items: center; justify-content: center;
  color: var(--text2);
  transition: background .2s, border-color .2s;
  cursor: pointer;
}
.nav-btn:hover { background: var(--bg4); border-color: var(--orange); }
/* Mobile burger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  margin-left: 8px;
  cursor: pointer;
}
.nav-burger span { display: block; width: 20px; height: 2px; background: var(--text2); border-radius: 2px; transition: .3s; }
/* Mobile nav panel */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  z-index: 99;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  flex-direction: column;
  padding: 12px 20px;
  gap: 0;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: 11px 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--text2);
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  transition: color .2s;
}
.nav-mobile a:last-child { border: none; }
.nav-mobile a:hover { color: var(--orange); }
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-actions .robot-pill { display: none; }
}

/* ═══════════════════════════════════════════════════════════
   TICKER BAR
   ═══════════════════════════════════════════════════════════ */
.ticker-bar {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 7px 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
}
.ticker-lbl {
  flex-shrink: 0;
  font-size: 10px;
  font-family: var(--mono);
  color: var(--orange);
  letter-spacing: .1em;
  background: var(--o-dim);
  border: 1px solid rgba(255,106,0,.2);
  padding: 2px 8px;
  border-radius: 4px;
}
.ticker-wrap {
  overflow: hidden;
  flex: 1;
}
.ticker-track {
  display: flex;
  gap: 32px;
  animation: ticker 45s linear infinite;
  white-space: nowrap;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text2);
  font-family: var(--mono);
  flex-shrink: 0;
  white-space: nowrap;
}
.tdot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--orange);
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════════════
   HERO SLIDER
   ═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 31vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}
.hero-inner {
  position: relative;
  width: 100%;
  min-height: 31vh;
}
.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  opacity: 0;
  transition: opacity .8s ease;
  pointer-events: none;
}
.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a0800, #0d0d0d);
  background-size: cover;
  background-position: center;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(14,16,20,0.96) 0%,
    rgba(14,16,20,0.6)  40%,
    rgba(14,16,20,0.25) 100%
  );
}
/* When slide has inline bg image on hero-bg, show it */
.hero-slide .hero-bg[style*="background-image"] {
  background-color: #0d0d0d;
}
.hero-default .hero-bg {
  background: linear-gradient(135deg, #1a0800 0%, #0d0d0d 60%);
}
.hero-default .hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,106,0,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,106,0,.03) 1px, transparent 1px);
  background-size: 50px 50px;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 24px 56px;
  max-width: 820px;
  width: 100%;
  margin: 0 auto;
}
.hero-cat-badge {
  display: inline-block;
  padding: 4px 12px;
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  font-family: var(--mono);
  letter-spacing: .1em;
  border-radius: 20px;
  margin-bottom: 16px;
}
.hero-title {
  font-family: var(--cond);
  font-size: clamp(22px, 3.2vw, 40px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: .01em;
  margin-bottom: 10px;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0,0,0,0.8), 0 4px 20px rgba(0,0,0,0.6);
}
.hero-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.92);
  line-height: 1.5;
  max-width: 520px;
  margin-bottom: 20px;
  text-shadow: 0 1px 3px rgba(0,0,0,1), 0 2px 12px rgba(0,0,0,0.9);
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: var(--orange);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--r-sm);
  letter-spacing: .04em;
  transition: background .2s, transform .15s;
}
.btn-hero-primary:hover { background: var(--orange2); transform: translateY(-1px); }
.btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: rgba(255,255,255,0.06);
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  border: 1px solid var(--b2);
  border-radius: var(--r-sm);
  letter-spacing: .03em;
  transition: background .2s, border-color .2s;
  backdrop-filter: blur(4px);
}
.btn-hero-ghost:hover { background: rgba(255,255,255,0.12); border-color: var(--orange); }
/* Prev/Next arrows */
.hero-prev, .hero-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(14,16,20,0.65);
  border: 1px solid var(--b2);
  color: var(--text);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 24px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  transition: background .2s, border-color .2s;
  cursor: pointer;
}
.hero-prev { left: 20px; }
.hero-next { right: 20px; }
.hero-prev:hover, .hero-next:hover {
  background: var(--orange);
  border-color: var(--orange);
}
/* Dots */
.hero-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 8px;
  align-items: center;
}
.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: none;
  padding: 0;
  transition: .3s;
  cursor: pointer;
}
.hero-dot.active {
  background: var(--orange);
  width: 24px;
  border-radius: 4px;
}

/* ═══════════════════════════════════════════════════════════
   STATS BAR
   ═══════════════════════════════════════════════════════════ */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--border);
}
.stat-item {
  background: var(--bg2);
  padding: 26px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.stat-num {
  font-family: var(--cond);
  font-size: 42px;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}
.stat-lbl {
  font-size: 12px;
  color: var(--text3);
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* ═══════════════════════════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════════════════════════ */
.section {
  padding: 64px 24px;
  max-width: 1280px;
  margin: 0 auto;
}
.section-alt {
  background: var(--bg2);
  max-width: 100%;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section-alt > .section-hd,
.section-alt > .maq-grid,
.section-alt > .news-grid,
.section-alt > .fil-grid {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
/* When section-alt wraps content directly */
.section.section-alt {
  background: var(--bg2);
  max-width: 100%;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section.section-alt > * {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
.section-hd {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 12px;
}
.section-title {
  font-family: var(--cond);
  font-size: 30px;
  font-weight: 800;
  letter-spacing: .02em;
  color: var(--text);
}
.section-title span { color: var(--orange); }
.section-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
  white-space: nowrap;
  transition: opacity .15s;
}
.section-link:hover { opacity: .75; }

/* ═══════════════════════════════════════════════════════════
   NEWS GRID + CARDS
   ═══════════════════════════════════════════════════════════ */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.ncard {
  display: flex;
  flex-direction: column;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  cursor: pointer;
  transition: transform .25s, border-color .25s, box-shadow .25s;
}
.ncard:hover {
  transform: translateY(-3px);
  border-color: var(--b2);
  box-shadow: 0 12px 36px rgba(0,0,0,.35);
}
.ncard-img {
  height: 190px;
  background: var(--bg3);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.ncard-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,16,20,.7) 0%, transparent 60%);
}
.ncard-cat {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  padding: 3px 10px;
  background: var(--orange);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  font-family: var(--mono);
  letter-spacing: .08em;
  border-radius: 20px;
}
.ncard-body {
  padding: 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ncard-date {
  font-size: 11px;
  color: var(--text3);
  font-family: var(--mono);
  display: flex;
  align-items: center;
  gap: 8px;
}
.ncard-source {
  color: var(--orange);
  opacity: .8;
}
.ncard-title {
  font-family: var(--cond);
  font-size: 19px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--text);
  flex: 1;
}
.ncard-sub {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ═══════════════════════════════════════════════════════════
   MACHINE CARDS  (mc)
   ═══════════════════════════════════════════════════════════ */
/* Grid containers */
.maq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 20px;
}
.maq-grid-full {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 22px;
}
/* Card */
.mc {
  display: flex;
  flex-direction: column;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: transform .25s, border-color .25s, box-shadow .25s;
  position: relative;
}
.mc:hover {
  transform: translateY(-3px);
  border-color: rgba(255,106,0,.35);
  box-shadow: 0 12px 40px rgba(0,0,0,.4);
}
.mc-photo {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(135deg, #1a1f27, #0f1a30);
}
.mc-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.mc:hover .mc-photo img { transform: scale(1.04); }
/* Score badge (homepage) */
.mc-score {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(14,16,20,.85);
  color: var(--amber);
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 700;
  padding: 5px 11px;
  border-radius: var(--r-sm);
  backdrop-filter: blur(6px);
  z-index: 2;
}
/* Score bar (impresoras page) */
.mc-score-bar {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(14,16,20,.85);
  border-radius: var(--r-sm);
  padding: 5px 11px;
  display: flex;
  align-items: baseline;
  gap: 2px;
  backdrop-filter: blur(6px);
  z-index: 2;
}
.mc-score-num {
  font-family: var(--mono);
  font-size: 15px;
  font-weight: 700;
  color: var(--amber);
}
.mc-score-max {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text3);
}
.mc-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.mc-brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3px;
}
.mc-brand {
  font-size: 10px;
  color: var(--text3);
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 3px;
}
.badge-type {
  font-size: 10px;
  color: var(--blue);
  font-family: var(--mono);
  background: rgba(14,165,233,0.1);
  border: 1px solid rgba(14,165,233,.2);
  padding: 2px 8px;
  border-radius: 12px;
  white-space: nowrap;
}
.mc-name {
  font-family: var(--cond);
  font-size: 21px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 8px;
  color: var(--text);
}
.mc-desc {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.6;
  margin-bottom: 14px;
  flex: 1;
}
.mc-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-bottom: 12px;
}
.spec-item {
  background: var(--bg3);
  border-radius: var(--r-sm);
  padding: 7px 10px;
}
.spec-k {
  display: block;
  font-size: 9px;
  color: var(--text3);
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 2px;
}
.spec-v {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}
.mc-mats {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 12px;
}
.mat-tag {
  font-size: 10px;
  font-family: var(--mono);
  background: var(--bg3);
  color: var(--text3);
  border: 1px solid var(--border);
  padding: 2px 8px;
  border-radius: 4px;
}
.mc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  margin-top: auto;
}
.mc-price {
  font-family: var(--cond);
  font-size: 22px;
  font-weight: 800;
  color: var(--orange);
}
.mc-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: var(--orange);
  background: var(--o-dim);
  border: 1px solid rgba(255,106,0,.25);
  padding: 6px 14px;
  border-radius: var(--r-sm);
  transition: background .2s;
}
.mc-btn:hover { background: var(--o-glow); }
.mc-footer-btns {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
/* Botón "Análisis completo" — outline naranja */
.mc-btn-resena {
  background: rgba(255,106,0,0.08);
  border-color: rgba(255,106,0,0.4);
  color: var(--orange);
  text-decoration: none;
}
.mc-btn-resena:hover { background: var(--o-glow); }

/* Botón afiliado "Mejor precio" — filled naranja, CTA principal */
.mc-btn-afil {
  background: var(--orange);
  color: #fff !important;
  border-color: var(--orange);
  text-decoration: none;
  font-weight: 700;
}
.mc-btn-afil:hover { background: var(--orange2); border-color: var(--orange2); }
/* Review details */
.mc-review {
  margin-top: 10px;
  border-top: 1px solid var(--border);
  padding-top: 10px;
}
.mc-review summary {
  font-size: 12px;
  color: var(--orange);
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 6px;
}
.mc-review summary::-webkit-details-marker { display: none; }
.mc-review[open] summary { margin-bottom: 10px; }
.mc-review-body {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.65;
}
.mc-review-body h2, .mc-review-body h3 { color: var(--text); margin: 12px 0 6px; }
.mc-review-body p { margin-bottom: .8em; }
.mc-review-body a { color: var(--orange); }

/* ═══════════════════════════════════════════════════════════
   FILAMENT CARDS  (fcard)
   ═══════════════════════════════════════════════════════════ */
.fil-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 18px;
}
.fcard {
  display: flex;
  flex-direction: column;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: transform .25s, border-color .25s;
}
.fcard:hover {
  transform: translateY(-2px);
  border-color: var(--b2);
}
.fcard-top {
  display: flex;
  gap: 0;
  align-items: stretch;
}
.fcard-swatch {
  width: 8px;
  flex-shrink: 0;
  min-height: 100px;
}
.fcard-img-wrap {
  flex: 1;
  overflow: hidden;
  max-height: 120px;
  background: var(--bg3);
}
.fcard-img-wrap img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  transition: transform .4s;
}
.fcard:hover .fcard-img-wrap img { transform: scale(1.04); }
.fcard-body {
  padding: 14px 16px 12px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.fcard-brand {
  font-size: 10px;
  color: var(--text3);
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: .1em;
}
.fcard-name {
  font-family: var(--cond);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--text);
}
.fcard-type {
  font-size: 11px;
  color: var(--text3);
  font-family: var(--mono);
}
.fcard-desc {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.55;
}
.fcard-params {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
}
.fp-item {
  background: var(--bg3);
  border-radius: 6px;
  padding: 6px 9px;
}
.fp-k {
  display: block;
  font-size: 9px;
  color: var(--text3);
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 2px;
}
.fp-v {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
}
.fcard-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 2px;
}
.fil-tag {
  font-size: 10px;
  font-family: var(--mono);
  background: var(--bg3);
  color: var(--text3);
  border: 1px solid var(--border);
  padding: 2px 8px;
  border-radius: 4px;
}
.fcard-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  border-top: 1px solid var(--border);
  margin-top: auto;
}
.fcard-price {
  font-family: var(--cond);
  font-size: 18px;
  font-weight: 800;
  color: var(--orange);
}

/* ═══════════════════════════════════════════════════════════
   PAGE HERO (inner pages)
   ═══════════════════════════════════════════════════════════ */
.page-hero {
  padding: 56px 24px;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,106,0,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,106,0,.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 80% at 80% 50%, rgba(255,106,0,.07), transparent 70%);
  pointer-events: none;
}
.page-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.page-hero-inner h1 {
  font-family: var(--cond);
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 900;
  color: var(--text);
  margin-bottom: 10px;
}
.page-hero-inner p {
  font-size: 15px;
  color: var(--text2);
  max-width: 540px;
}
/* grid-bg as class on page-hero adds the grid pattern */
.grid-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,106,0,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,106,0,.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════════════
   FILTER BAR
   ═══════════════════════════════════════════════════════════ */
.filter-bar {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 14px 24px;
  position: sticky;
  top: var(--nav-h);
  z-index: 50;
  backdrop-filter: blur(12px);
}
.filter-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.ftabs {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.ftab {
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  font-family: var(--mono);
  background: var(--bg3);
  color: var(--text3);
  border: 1px solid var(--border);
  transition: .2s;
  cursor: pointer;
  white-space: nowrap;
}
.ftab:hover { color: var(--text2); border-color: var(--b2); }
.ftab.active {
  background: var(--o-dim);
  color: var(--orange);
  border-color: rgba(255,106,0,.35);
}
.search-wrap {
  position: relative;
  flex-shrink: 0;
}
.search-wrap input[type=search] {
  background: var(--bg3);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: var(--r-sm);
  padding: 8px 12px 8px 14px;
  font-size: 13px;
  width: 210px;
  font-family: var(--sans);
  outline: none;
  transition: border-color .2s, width .2s;
}
.search-wrap input[type=search]:focus {
  border-color: var(--orange);
  width: 250px;
}
.search-wrap input[type=search]::placeholder { color: var(--text3); }

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 48px 0 24px;
}
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand-logo { height: 48px; width: auto; margin-bottom: 10px; opacity: .9; }
.footer-brand-desc { font-size: 12px; color: var(--text3); line-height: 1.5; margin-bottom: 14px; max-width: 220px; }
.fc h4 { font-family: var(--cond); font-size: 14px; font-weight: 700; color: var(--orange); margin-bottom: 12px; }
.fl { display: flex; flex-direction: column; gap: 8px; }
.fl a { font-size: 12px; color: var(--text3); transition: color .2s; text-decoration: none; }
.fl a:hover { color: var(--orange); }
.fsoc { display: flex; gap: 8px; margin-top: 14px; }
.fsoc-btn {
  width: 32px; height: 32px;
  border-radius: 6px;
  background: var(--bg3);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, border-color .2s;
  text-decoration: none;
}
.fsoc-btn:hover { background: var(--o-dim); border-color: var(--orange); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 11px;
  color: var(--text3);
  font-family: var(--mono);
}

/* ═══════════════════════════════════════════════════════════
   UTILITIES
   ═══════════════════════════════════════════════════════════ */
/* Reveal animation */
.rv {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .5s ease, transform .5s ease;
}
.rv.vis {
  opacity: 1;
  transform: none;
}
/* Loading spinner */
.loading-spin {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
}
.spinner {
  width: 36px;
  height: 36px;
  border: 3px solid var(--bg3);
  border-top-color: var(--orange);
  border-radius: 50%;
  animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
/* Empty message */
.empty-msg {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 24px;
  color: var(--text3);
  font-size: 14px;
}
.empty-msg a { color: var(--orange); }

/* ═══════════════════════════════════════════════════════════
   ZONA MAKER PROMO STRIP (homepage)
   ═══════════════════════════════════════════════════════════ */
.zm-promo-section {
  background: var(--bg2);
  border-top: 1px solid rgba(255,106,0,0.18);
  border-bottom: 1px solid rgba(255,106,0,0.18);
  padding: 36px 0;
}
.zm-promo-inner {
  display: flex;
  align-items: center;
  gap: 40px;
}
.zm-promo-hd {
  flex-shrink: 0;
  width: 260px;
}
.zm-promo-eyebrow {
  font-size: 10px;
  font-family: var(--mono);
  color: var(--orange);
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.zm-promo-title {
  font-family: var(--cond);
  font-size: 26px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 6px;
}
.zm-promo-desc {
  font-size: 12px;
  color: var(--text2);
  line-height: 1.5;
  margin-bottom: 16px;
}
.zm-promo-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--orange);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 6px;
  text-decoration: none;
  transition: background .2s, transform .15s;
}
.zm-promo-cta:hover { background: var(--orange2); transform: translateY(-1px); }
.zm-mini-strip {
  display: flex;
  gap: 12px;
  flex: 1;
  min-width: 0;
}
.zm-mini-card {
  flex: 1;
  min-width: 0;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  transition: border-color .2s, background .2s, transform .2s;
}
.zm-mini-card:hover {
  border-color: rgba(255,106,0,0.35);
  background: var(--bg4);
  transform: translateY(-2px);
}
.zm-mini-thumb {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  background: var(--bg4);
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.zm-mini-info { min-width: 0; flex: 1; }
.zm-mini-brand {
  font-size: 9px;
  font-family: var(--mono);
  color: var(--text3);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 2px;
}
.zm-mini-name {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 4px;
}
.zm-mini-price {
  font-family: var(--cond);
  font-size: 16px;
  font-weight: 800;
  color: var(--orange);
}

/* ═══════════════════════════════════════════════════════════
   NEWSLETTER STRIP (homepage)
   ═══════════════════════════════════════════════════════════ */
.nl-strip {
  background: linear-gradient(135deg, var(--bg2) 0%, rgba(255,106,0,0.06) 100%);
  border-top: 1px solid rgba(255,106,0,0.2);
  border-bottom: 1px solid var(--border);
  padding: 52px 0;
}
.nl-strip-inner {
  display: flex;
  align-items: center;
  gap: 48px;
}
.nl-strip-left { flex: 1; }
.nl-strip-right { flex: 0 0 360px; }

.nl-strip-badge {
  display: inline-block;
  font-size: 10px;
  font-family: var(--mono);
  letter-spacing: .12em;
  color: var(--orange);
  background: var(--o-dim);
  border: 1px solid rgba(255,106,0,.22);
  border-radius: 4px;
  padding: 3px 10px;
  margin-bottom: 14px;
}
.nl-strip-title {
  font-family: var(--cond);
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 16px;
}
.nl-strip-title span { color: var(--orange); }
.nl-strip-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.nl-strip-perks li {
  font-size: 13px;
  color: var(--text2);
  padding-left: 16px;
  position: relative;
  line-height: 1.4;
}
.nl-strip-perks li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
}

.nl-strip-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
}
.nl-strip-input {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-size: 13px;
  font-family: var(--sans);
  padding: 11px 14px;
  width: 100%;
  outline: none;
  transition: border-color .2s;
}
.nl-strip-input:focus { border-color: var(--orange); }
.nl-strip-input::placeholder { color: var(--text3); }
.nl-strip-btn {
  display: block;
  background: var(--orange);
  color: #fff;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  font-family: var(--sans);
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: background .2s, transform .15s;
  border: none;
  cursor: pointer;
  letter-spacing: .3px;
}
.nl-strip-btn:hover { background: var(--orange2); transform: translateY(-1px); }
.nl-strip-fine {
  font-size: 11px;
  color: var(--text3);
  text-align: center;
  margin-top: 8px;
}
.nl-strip-fine a { color: var(--text3); text-decoration: underline; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-bar { grid-template-columns: repeat(3, 1fr); }
  .hero { min-height: 36vh; }
  .hero-inner { min-height: 36vh; }
  .zm-promo-inner { flex-direction: column; gap: 24px; }
  .zm-promo-hd { width: 100%; }
  .zm-mini-strip { flex-wrap: wrap; }
  .zm-mini-card { min-width: calc(50% - 6px); }
  .nl-strip-inner { flex-direction: column; gap: 32px; }
  .nl-strip-right { flex: none; width: 100%; }
}
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .news-grid, .maq-grid, .maq-grid-full, .fil-grid {
    grid-template-columns: 1fr;
  }
  .filter-inner { flex-direction: column; align-items: flex-start; }
  .search-wrap input[type=search] { width: 100%; }
  .hero-content { padding: 40px 16px 44px; }
  .hero-sub { font-size: 14px; }
  .section { padding: 40px 16px; }
  .stat-item { padding: 20px; }
  .stat-num { font-size: 32px; }
  .mc-specs { grid-template-columns: 1fr; }
  .fcard-params { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .page-hero { padding: 40px 16px; }
  .filter-bar { padding: 12px 16px; }
}
