/* AUTO FORGE · v5 — MATRIX GARAGE
   Cyberpunk Matrix + tuning workshop · sentence case + spotlight cursor
*/

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  background: var(--bg-deep);
  color: var(--bone);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  cursor: auto;
  position: relative;
}
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; cursor: pointer; }
input, textarea, select { font: inherit; cursor: auto; }
::selection { background: var(--neon); color: var(--bg-deep); }

:root {
  --bg-deep: #04060B;
  --bg: #0A0E15;
  --surface: #11151E;
  --surface-2: #161B26;
  --border: #1F2530;
  --border-soft: #181D27;
  --steel: #6E7587;
  --steel-soft: #4A5060;
  --bone: #F2F4F7;
  --bone-dim: #B5BAC4;

  --neon: #B6FF3D;
  --neon-glow: rgba(182,255,61,.45);
  --neon-veil: rgba(182,255,61,.08);

  --cyan: #00E5FF;
  --cyan-glow: rgba(0,229,255,.5);
  --cyan-veil: rgba(0,229,255,.10);

  --plasma: #B14EFF;
  --plasma-glow: rgba(177,78,255,.5);
  --plasma-veil: rgba(177,78,255,.08);

  --matrix: #00FF7F;

  --font-display: 'Orbitron','Chakra Petch','Audiowide',sans-serif;
  --font-body: 'IBM Plex Sans',system-ui,sans-serif;
  --font-mono: 'Share Tech Mono','VT323',monospace;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --maxw: 1400px;
  --gutter: clamp(20px, 4vw, 56px);
  --header-h: 160px;
}

/* ---------- TYPOGRAPHY (sentence case, más sutil) ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  margin: 0;
  color: var(--bone);
  letter-spacing: -0.01em;
  line-height: 1.05;
}
.h-display { font-size: clamp(40px, 5.5vw, 80px); line-height: 1.0; letter-spacing: -0.02em; font-weight: 800; }
.h-1 { font-size: clamp(32px, 4.4vw, 60px); line-height: 1.05; font-weight: 700; }
.h-2 { font-size: clamp(28px, 3.4vw, 48px); line-height: 1.08; font-weight: 700; }
.h-3 { font-size: clamp(22px, 2.4vw, 32px); line-height: 1.15; font-weight: 600; }
.h-4 { font-size: 18px; line-height: 1.3; font-weight: 600; }

p { margin: 0; color: var(--bone-dim); line-height: 1.6; font-size: 16px; font-family: var(--font-body); }
.lead { font-size: clamp(16px, 1.3vw, 19px); color: var(--bone-dim); line-height: 1.55; max-width: 620px; }
.muted { color: var(--steel); }
.mono { font-family: var(--font-mono); }

/* ---------- LAYOUT ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); position: relative; z-index: 2; }
.section { padding: clamp(80px, 9vw, 140px) 0; position: relative; }
.section--tight { padding: clamp(56px, 6vw, 96px) 0; }

/* ---------- FRAME MARK [labels técnicos uppercase] ---------- */
.frame-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
}
.frame-mark::before { content: "["; color: var(--cyan); font-size: 18px; opacity: .8; }
.frame-mark::after { content: "]"; color: var(--cyan); font-size: 18px; opacity: .8; }
.frame-mark.is-neon { color: var(--neon); }
.frame-mark.is-neon::before, .frame-mark.is-neon::after { color: var(--neon); }
.frame-mark.is-plasma { color: var(--plasma); }
.frame-mark.is-plasma::before, .frame-mark.is-plasma::after { color: var(--plasma); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), color .2s var(--ease), background .2s var(--ease);
  position: relative;
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn .arrow { transition: transform .2s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }
.btn--primary {
  background: var(--neon);
  color: var(--bg-deep);
  box-shadow: 0 0 0 1px var(--neon), 0 0 32px var(--neon-glow);
}
.btn--primary:hover { transform: translateY(-1px); box-shadow: 0 0 0 1px var(--neon), 0 0 48px var(--neon-glow); }
.btn--cyan { background: var(--cyan); color: var(--bg-deep); box-shadow: 0 0 0 1px var(--cyan), 0 0 32px var(--cyan-glow); }
.btn--cyan:hover { transform: translateY(-1px); box-shadow: 0 0 0 1px var(--cyan), 0 0 48px var(--cyan-glow); }
.btn--plasma { background: var(--plasma); color: var(--bone); box-shadow: 0 0 0 1px var(--plasma), 0 0 32px var(--plasma-glow); }
.btn--ghost { background: transparent; color: var(--bone); border: 1px solid var(--border); }
.btn--ghost:hover { border-color: var(--neon); color: var(--neon); box-shadow: 0 0 24px var(--neon-glow); }
.btn--small { padding: 10px 18px; font-size: 11px; }

/* ---------- HEADER ---------- */
.header {
  position: fixed; top: 28px; left: 0; right: 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  background: rgba(4,6,11,0.7);
  backdrop-filter: saturate(140%) blur(16px);
  -webkit-backdrop-filter: saturate(140%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.header.is-scrolled { border-bottom-color: var(--border); background: rgba(4,6,11,0.94); }
.header__inner {
  width: 100%; max-width: var(--maxw); margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; height: var(--header-h); flex-shrink: 0; padding: 0; margin: 0; }
.brand__mark { width: 40px; height: 40px; flex-shrink: 0; }
.brand__wordmark {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--bone);
  line-height: 1;
}
.brand__wordmark .accent { color: var(--neon); }

.nav { display: flex; align-items: center; gap: 6px; }
.nav a {
  padding: 12px 20px;
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bone-dim);
  transition: color .15s var(--ease);
}
.nav a:hover, .nav a.is-active { color: var(--neon); }

.menu-toggle { display: none; width: 40px; height: 40px; background: var(--surface); align-items: center; justify-content: center; border: 1px solid var(--border); }
@media (max-width: 920px) {
  .nav { display: none; position: fixed; top: var(--header-h); left: 0; right: 0; flex-direction: column; padding: 24px var(--gutter); background: var(--bg-deep); border-bottom: 1px solid var(--border); gap: 0; }
  .nav.is-open { display: flex; }
  .nav a { padding: 14px 16px; font-size: 13px; border-bottom: 1px solid var(--border-soft); }
  .menu-toggle { display: inline-flex; }
  .header__cta { display: none; }
}

/* ---------- MATRIX RAIN BACKGROUND ---------- */
.matrix-rain {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.42;
}

/* ---------- ANNOUNCEMENT BAR (arriba con texto rolando) ---------- */
.announce-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 105;
  height: 28px;
  background: var(--bg-deep);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.announce-bar__track {
  display: flex;
  gap: 56px;
  animation: announceScroll 28s linear infinite;
  width: max-content;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--matrix);
  text-shadow: 0 0 8px var(--matrix);
  white-space: nowrap;
  padding-left: 20px;
}
.announce-bar__track span { display: inline-flex; align-items: center; gap: 14px; }
.announce-bar__track span::before { content: "//"; color: var(--neon); opacity: .7; }
@keyframes announceScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
/* Cuando hay announce-bar, el header baja */
body:has(.announce-bar) .header { top: 28px; }

/* ---------- RACE TRACK PERSPECTIVE BG ---------- */
.race-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  perspective: 600px;
  z-index: 0;
}
.race-bg__floor {
  position: absolute;
  bottom: 0; left: 50%;
  width: 200%; height: 70%;
  transform: translateX(-50%) rotateX(70deg);
  transform-origin: bottom center;
  background-image:
    linear-gradient(to right, transparent 49%, rgba(182,255,61,.18) 49%, rgba(182,255,61,.18) 51%, transparent 51%),
    linear-gradient(to right, transparent 24%, rgba(0,229,255,.10) 24%, rgba(0,229,255,.10) 26%, transparent 26%, transparent 74%, rgba(0,229,255,.10) 74%, rgba(0,229,255,.10) 76%, transparent 76%),
    linear-gradient(to bottom, transparent 0%, var(--bg-deep) 80%);
  background-size: 100% 100%, 100% 100%, 100% 100%;
  mask-image: linear-gradient(to bottom, transparent 0%, black 30%, black 80%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 30%, black 80%, transparent 100%);
}
/* Líneas horizontales animadas (que pasan rápido como velocidad) */
.race-bg__lines {
  position: absolute;
  bottom: 0; left: 50%;
  width: 200%; height: 70%;
  transform: translateX(-50%) rotateX(70deg);
  transform-origin: bottom center;
  background-image: repeating-linear-gradient(to bottom, rgba(255,255,255,.06) 0 2px, transparent 2px 80px);
  animation: raceMove 1.6s linear infinite;
}
@keyframes raceMove { from { background-position-y: 0; } to { background-position-y: 80px; } }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  padding: calc(var(--header-h) + 40px) 0 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 70% 50%, var(--cyan-veil) 0%, transparent 60%),
    radial-gradient(ellipse 30% 40% at 20% 30%, var(--neon-veil) 0%, transparent 60%);
}
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(31,37,48,.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31,37,48,.4) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 0%, transparent 90%);
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 0%, transparent 90%);
  opacity: .45;
}

.hero__inner {
  position: relative; z-index: 3;
  width: 100%;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.hero__visual { order: 1; width: 100%; }
.hero__content { order: 2; max-width: 620px; }
@media (max-width: 920px) {
  .hero__inner { grid-template-columns: 1fr; gap: 56px; }
}
.hero__head {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 6vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--bone);
}
.hero__head .accent { color: var(--neon); text-shadow: 0 0 24px var(--neon-glow); }
.hero__head .cyan { color: var(--cyan); text-shadow: 0 0 24px var(--cyan-glow); }
.hero__lead {
  margin-top: 28px;
  font-family: var(--font-body);
  font-size: clamp(16px, 1.3vw, 18px);
  color: var(--bone-dim);
  line-height: 1.55;
  max-width: 520px;
}
.hero__ctas { margin-top: 36px; display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- FLOATING TOOLS (tuercas, llaves) ---------- */
.float-tool {
  position: absolute;
  z-index: 1;
  opacity: 0.35;
  pointer-events: none;
  will-change: transform;
}
.float-tool--1 { top: 10%; left: 4%; width: 80px; }
.float-tool--2 { top: 70%; left: 8%; width: 60px; }
.float-tool--3 { top: 20%; right: 4%; width: 70px; }
.float-tool--4 { bottom: 12%; right: 12%; width: 90px; }
.float-tool--5 { top: 50%; left: 45%; width: 50px; }
@media (max-width: 920px) {
  .float-tool { display: none; }
}

/* ---------- TICKER ---------- */
.ticker {
  width: 100%;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  padding: 8px 0;
  position: relative;
  z-index: 2;
}
.ticker__track {
  display: flex; gap: 32px;
  animation: tickerScroll 50s linear infinite;
  width: max-content;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bone);
  white-space: nowrap;
}
.ticker__track span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.ticker__track span::before {
  content: "▶";
  color: var(--neon);
  text-shadow: 0 0 10px var(--neon-glow);
  font-size: 9px;
}
@keyframes tickerScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- CHECKER FLAG DIVIDER ---------- */
.checker-divider {
  height: 14px;
  background: repeating-conic-gradient(var(--bone) 0 25%, var(--bg-deep) 0 50%);
  background-size: 14px 14px;
  position: relative;
  z-index: 2;
}
.checker-divider::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--bg-deep) 0%, transparent 6%, transparent 94%, var(--bg-deep) 100%);
}

/* ---------- DASHBOARD MOCK ---------- */
.dash-frame {
  position: relative;
  background: #161B26;
  border: 1px solid #2A3040;
  overflow: hidden;
  box-shadow: 0 0 0 1px var(--cyan-veil), 0 0 80px var(--cyan-veil), 0 24px 80px rgba(0,0,0,.7);
}
.dash-frame::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 0%, rgba(0,229,255,.06) 50%, transparent 100%);
  height: 6px;
  animation: scanY 4s linear infinite;
}
@keyframes scanY {
  0% { top: -10px; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}
.dash__bar { display: flex; align-items: center; gap: 12px; padding: 14px 20px; border-bottom: 1px solid #2A3040; background: #0E121A; }
.dash__dots { display: flex; gap: 6px; }
.dash__dots span { width: 8px; height: 8px; border-radius: 50%; background: var(--steel-soft); }
.dash__dots span:nth-child(3) { background: var(--neon); box-shadow: 0 0 8px var(--neon-glow); }
.dash__url { flex: 1; text-align: center; font-family: var(--font-mono); font-size: 11px; color: var(--steel); letter-spacing: 0.06em; }
.dash__live { font-family: var(--font-mono); font-size: 10px; color: var(--neon); letter-spacing: 0.18em; text-transform: uppercase; }
.dash__live::before { content: "● "; }
.dash__main { padding: 22px; display: flex; flex-direction: column; gap: 14px; }
.dash__row { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.dash__tile { background: #1F2530; border: 1px solid #2F3645; padding: 16px 18px; }
.dash__tile .label { font-family: var(--font-mono); font-size: 10px; color: var(--steel); letter-spacing: 0.18em; text-transform: uppercase; }
.dash__tile .value { font-family: var(--font-display); font-weight: 800; font-size: 32px; margin-top: 4px; letter-spacing: -0.02em; line-height: 1; color: var(--bone); }
.dash__tile .delta { font-family: var(--font-mono); font-size: 11px; color: var(--neon); margin-top: 6px; }
.dash__tile.is-cyan .delta { color: var(--cyan); }
.dash__chart { background: #1F2530; border: 1px solid #2F3645; padding: 16px 18px; height: 160px; position: relative; overflow: hidden; }
.dash__chart .label { font-family: var(--font-mono); font-size: 10px; color: var(--steel); letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 8px; }
.dash__list { background: #1F2530; border: 1px solid #2F3645; overflow: hidden; }
.dash__list .head, .dash__list .row { display: grid; grid-template-columns: 1fr 110px 110px 80px; gap: 10px; padding: 10px 16px; align-items: center; }
.dash__list .head { font-family: var(--font-mono); font-size: 9px; color: var(--steel); letter-spacing: 0.18em; text-transform: uppercase; border-bottom: 1px solid var(--border); }
.dash__list .row { font-size: 12px; color: var(--bone-dim); border-bottom: 1px solid var(--border-soft); }
.dash__list .row:last-child { border-bottom: 0; }
.dash__list .plate { font-family: var(--font-mono); font-size: 11px; color: var(--bone); background: var(--bg); padding: 3px 8px; display: inline-block; letter-spacing: 0.06em; border: 1px solid var(--border); }
.tag { display: inline-flex; padding: 3px 10px; font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase; }
.tag--in { color: var(--plasma); border: 1px solid var(--plasma); }
.tag--ready { color: var(--neon); border: 1px solid var(--neon); }
.tag--wait { color: var(--cyan); border: 1px solid var(--cyan); }
@media (max-width: 760px) {
  .dash__row { grid-template-columns: 1fr; }
  .dash__list .head, .dash__list .row { grid-template-columns: 1fr 80px; }
  .dash__list .head > *:nth-child(n+3), .dash__list .row > *:nth-child(n+3) { display: none; }
}

/* ---------- SECTION HEAD ---------- */
.sec-head { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 32px; margin-bottom: 56px; }
.sec-head__title { max-width: 880px; }
.sec-head__title h2 { margin-top: 16px; }
.sec-head__aside { color: var(--bone-dim); max-width: 360px; font-size: 14px; line-height: 1.6; }
.sec-head__aside::before { content: "// "; color: var(--cyan); font-family: var(--font-mono); }
@media (max-width: 760px) { .sec-head { grid-template-columns: 1fr; } .sec-head__aside { max-width: none; } }

/* ---------- PANEL ---------- */
.panel { background: var(--surface); border: 1px solid var(--border); padding: 32px 28px; position: relative; transition: border-color .25s var(--ease), transform .25s var(--ease); }
.panel:hover { border-color: var(--cyan); transform: translateY(-2px); }
.panel__num { font-family: var(--font-mono); font-size: 11px; color: var(--neon); letter-spacing: 0.18em; margin-bottom: 24px; text-transform: uppercase; }
.panel__title { font-family: var(--font-display); font-weight: 700; font-size: 24px; margin-bottom: 12px; line-height: 1.1; letter-spacing: -0.01em; }
.panel__body { color: var(--bone-dim); line-height: 1.6; font-size: 15px; }

/* ---------- METRICS ---------- */
.metrics { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.metric { background: var(--bg-deep); padding: 48px 32px; }
.metric__value { font-family: var(--font-display); font-weight: 800; font-size: clamp(40px, 5vw, 64px); line-height: 1; color: var(--bone); display: flex; align-items: baseline; letter-spacing: -0.02em; }
.metric__value .sign { color: var(--neon); margin-right: 4px; text-shadow: 0 0 16px var(--neon-glow); }
.metric__value .unit { font-size: 0.4em; color: var(--cyan); margin-left: 6px; font-family: var(--font-mono); font-weight: 400; }
.metric__label { margin-top: 16px; font-size: 13px; color: var(--bone-dim); line-height: 1.5; font-family: var(--font-body); }
@media (max-width: 760px) { .metrics { grid-template-columns: repeat(2,1fr); } }

/* ---------- COMPARE ---------- */
.compare { width: 100%; border-collapse: collapse; font-size: 14px; font-family: var(--font-body); border: 1px solid var(--border); background: #04060B; }
.compare th, .compare td { padding: 16px 20px; text-align: center; border-bottom: 1px solid var(--border); border-right: 1px solid var(--border); background: #04060B; }
.compare td:first-child, .compare th:first-child { text-align: left; }
.compare th { background: var(--surface); font-family: var(--font-mono); font-size: 11px; color: var(--bone-dim); letter-spacing: 0.12em; text-transform: uppercase; font-weight: 400; }
.compare th.is-self { background: var(--neon); color: var(--bg-deep); }
.compare td:first-child { color: var(--bone); }
.compare tr:last-child td { border-bottom: 0; }
.compare td:last-child, .compare th:last-child { border-right: 0; }
.check { color: var(--neon); font-family: var(--font-mono); font-weight: bold; }
.cross { color: var(--bone-dim); font-family: var(--font-mono); }
.partial { color: var(--bone-dim); font-family: var(--font-mono); }

/* ---------- PRICING ---------- */
.pricing { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; max-width: 880px; margin: 0 auto; }
.price-card { background: var(--surface); border: 1px solid var(--border); padding: 36px 32px; display: flex; flex-direction: column; gap: 16px; position: relative; }
.price-card.is-featured { border-color: var(--neon); box-shadow: 0 0 0 1px var(--neon), 0 0 60px var(--neon-veil); }
.price-card.is-featured::before { content: "RECOMENDADO"; position: absolute; top: -1px; right: 32px; background: var(--neon); color: var(--bg-deep); padding: 4px 12px; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.18em; }
.price-card__name { font-family: var(--font-display); font-weight: 700; font-size: 24px; line-height: 1.05; }
.price-card__amount { font-family: var(--font-display); font-weight: 800; font-size: 56px; line-height: 1; letter-spacing: -0.03em; color: var(--bone); }
.price-card__amount .per { font-size: 14px; color: var(--steel); font-family: var(--font-mono); margin-left: 6px; font-weight: 400; }
.price-card__annual { display: flex; align-items: baseline; gap: 8px; font-family: var(--font-mono); font-size: 12px; color: var(--neon); margin-top: -8px; }
.price-card__annual strong { font-family: var(--font-display); font-weight: 800; font-size: 22px; letter-spacing: -0.02em; }
.price-card__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; font-size: 14px; color: var(--bone-dim); font-family: var(--font-body); }
.price-card__list li::before { content: "▸ "; color: var(--cyan); font-family: var(--font-mono); }
@media (max-width: 760px) { .pricing { grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */
.faq { display: flex; flex-direction: column; gap: 10px; max-width: 880px; }
.faq__item { background: var(--surface); border: 1px solid var(--border); overflow: hidden; transition: border-color .2s var(--ease); }
.faq__item:hover, .faq__item[open] { border-color: var(--neon); }
.faq__item summary { padding: 22px 24px; font-family: var(--font-display); font-weight: 600; font-size: 18px; color: var(--bone); list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; font-family: var(--font-mono); font-size: 22px; color: var(--neon); transition: transform .25s var(--ease); }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item div { padding: 0 24px 24px; color: var(--bone-dim); font-size: 15px; line-height: 1.6; font-family: var(--font-body); }

/* ---------- PAINS / MODULES ---------- */
.pains { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.pain {
  position: relative;
  background: linear-gradient(180deg, rgba(10,12,18,0.92) 0%, rgba(4,6,11,0.96) 100%);
  border: 1px solid var(--border);
  border-left: 2px solid var(--cyan);
  padding: 22px 22px 24px;
  overflow: hidden;
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.pain::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0% 0%, currentColor 0%, transparent 55%);
  opacity: 0;
  transition: opacity .4s var(--ease);
  pointer-events: none;
  color: var(--cyan);
}
.pain__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; position: relative; z-index: 1; }
.pain__tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--bone-dim);
  text-transform: uppercase;
  padding: 4px 8px;
  border: 1px solid var(--border);
  border-radius: 2px;
}
.pain__icon {
  width: 28px;
  height: 28px;
  color: var(--cyan);
  filter: drop-shadow(0 0 8px currentColor);
  transition: transform .4s var(--ease);
}
.pain__title { font-family: var(--font-display); font-weight: 700; font-size: 21px; line-height: 1.15; margin-bottom: 10px; color: #fff; position: relative; z-index: 1; }
.pain__body { color: var(--bone-dim); font-size: 14px; line-height: 1.55; position: relative; z-index: 1; }

.pain--cyan { border-left-color: var(--cyan); color: var(--cyan); }
.pain--cyan .pain__icon { color: var(--cyan); }
.pain--cyan .pain__title { color: var(--cyan); }
.pain--cyan .pain__tag { color: var(--cyan); border-color: rgba(0,229,255,0.35); }

.pain--plasma { border-left-color: var(--plasma); color: var(--plasma); }
.pain--plasma .pain__icon { color: var(--plasma); }
.pain--plasma .pain__title { color: var(--plasma); }
.pain--plasma .pain__tag { color: var(--plasma); border-color: rgba(177,78,255,0.35); }

.pain--neon { border-left-color: var(--neon); color: var(--neon); }
.pain--neon .pain__icon { color: var(--neon); }
.pain--neon .pain__title { color: var(--neon); }
.pain--neon .pain__tag { color: var(--neon); border-color: rgba(182,255,61,0.35); }

.pain:hover { transform: translateY(-3px); border-color: currentColor; box-shadow: 0 12px 32px rgba(0,0,0,0.45), 0 0 0 1px currentColor inset; }
.pain:hover::before { opacity: 0.10; }
.pain:hover .pain__icon { transform: scale(1.08) rotate(-4deg); }

@media (max-width: 920px) { .pains { grid-template-columns: 1fr; } }

.modules { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.module {
  position: relative;
  background: linear-gradient(180deg, rgba(10,12,18,0.92) 0%, rgba(4,6,11,0.96) 100%);
  border: 1px solid var(--border);
  border-left: 2px solid var(--neon);
  padding: 28px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.module::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0% 0%, currentColor 0%, transparent 55%);
  opacity: 0;
  transition: opacity .4s var(--ease);
  pointer-events: none;
  color: var(--neon);
}
.module > * { position: relative; z-index: 1; }
.module__icon { width: 28px; height: 28px; color: var(--neon); filter: drop-shadow(0 0 8px currentColor); transition: transform .4s var(--ease); }
.module__title { font-family: var(--font-display); font-weight: 700; font-size: 20px; line-height: 1.1; color: #fff; }
.module__body { color: var(--bone-dim); font-size: 14px; line-height: 1.55; flex: 1; }
.module__tag { font-family: var(--font-mono); font-size: 10px; color: var(--cyan); letter-spacing: 0.18em; text-transform: uppercase; padding: 4px 8px; border: 1px solid var(--border); border-radius: 2px; align-self: flex-start; }

.module--cyan { border-left-color: var(--cyan); color: var(--cyan); }
.module--cyan .module__icon { color: var(--cyan); }
.module--cyan .module__title { color: var(--cyan); }
.module--cyan .module__tag { color: var(--cyan); border-color: rgba(0,229,255,0.35); }

.module--plasma { border-left-color: var(--plasma); color: var(--plasma); }
.module--plasma .module__icon { color: var(--plasma); }
.module--plasma .module__title { color: var(--plasma); }
.module--plasma .module__tag { color: var(--plasma); border-color: rgba(177,78,255,0.35); }

.module--neon { border-left-color: var(--neon); color: var(--neon); }
.module--neon .module__icon { color: var(--neon); }
.module--neon .module__title { color: var(--neon); }
.module--neon .module__tag { color: var(--neon); border-color: rgba(182,255,61,0.35); }

.module:hover { transform: translateY(-3px); border-color: currentColor; box-shadow: 0 12px 32px rgba(0,0,0,0.45), 0 0 0 1px currentColor inset; }
.module:hover::before { opacity: 0.10; }
.module:hover .module__icon { transform: scale(1.08) rotate(-4deg); }

@media (max-width: 920px) { .modules { grid-template-columns: 1fr; } }

input, textarea { font-family: var(--font-body); background: var(--surface); color: var(--bone); padding: 14px 16px; font-size: 14px; outline: none; border: 1px solid var(--border); transition: border-color .2s var(--ease); }
input:focus, textarea:focus { border-color: var(--neon); }
input::placeholder, textarea::placeholder { color: var(--steel); }

/* ---------- MANIFESTO ---------- */
.manifesto { background: rgba(4,6,11,0.55); position: relative; overflow: hidden; }
.manifesto::before { content: ""; position: absolute; width: 1000px; height: 1000px; bottom: -400px; left: -300px; background: radial-gradient(circle, var(--cyan-veil) 0%, transparent 60%); pointer-events: none; }
.manifesto__quote { position: relative; z-index: 1; max-width: 1100px; font-family: var(--font-display); font-weight: 700; font-size: clamp(28px, 3.6vw, 52px); line-height: 1.15; color: var(--bone); }
.manifesto__quote .accent { color: var(--neon); text-shadow: 0 0 24px var(--neon-glow); }
.manifesto__quote .cyan { color: var(--cyan); text-shadow: 0 0 24px var(--cyan-glow); }
.manifesto__attr { position: relative; z-index: 1; margin-top: 32px; font-family: var(--font-mono); font-size: 12px; color: var(--steel); letter-spacing: 0.18em; text-transform: uppercase; }

/* ---------- CTA FINAL ---------- */
.cta-final { background: rgba(4,6,11,0.55); position: relative; overflow: hidden; text-align: center; }
.cta-final::before { content: ""; position: absolute; width: 900px; height: 900px; top: -300px; left: 50%; transform: translateX(-50%); background: radial-gradient(circle, var(--neon-veil) 0%, transparent 60%); pointer-events: none; }
.cta-final__inner { position: relative; max-width: 920px; margin: 0 auto; }
.cta-final h2 { margin-bottom: 16px; }
.cta-final__lead { margin: 24px auto 0; color: var(--bone-dim); font-size: 17px; max-width: 580px; line-height: 1.55; }

/* ---------- FOOTER ---------- */
.footer { background: var(--bg-deep); border-top: 1px solid var(--border); padding: 80px 0 32px; position: relative; z-index: 2; }
.footer__grid { display: grid; grid-template-columns: 1.4fr repeat(4,1fr); gap: 32px; margin-bottom: 56px; }
.footer__col { display: flex; flex-direction: column; gap: 12px; }
.footer__col h4 { font-family: var(--font-mono); font-size: 11px; color: var(--cyan); letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 16px; }
.footer__col a { color: var(--bone-dim); font-size: 14px; transition: color .15s var(--ease); }
.footer__col a:hover { color: var(--neon); }
.footer__brand p { font-size: 14px; max-width: 320px; }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; border-top: 1px solid var(--border); font-family: var(--font-mono); font-size: 11px; color: var(--steel); letter-spacing: 0.12em; text-transform: uppercase; }
@media (max-width: 920px) {
  .footer__grid { grid-template-columns: repeat(2,1fr); }
  .footer__brand { grid-column: 1 / -1; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* ---------- CURSOR · halo verde + punto preciso ---------- */
.cursor-spotlight {
  position: fixed;
  top: 0; left: 0;
  width: 360px; height: 360px;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-9999px, -9999px);
  background: radial-gradient(circle, rgba(182,255,61,0.42) 0%, rgba(182,255,61,0.24) 18%, rgba(182,255,61,0.12) 35%, rgba(0,255,127,0.06) 55%, transparent 75%);
  mix-blend-mode: screen;
  filter: blur(2px);
}
.cursor-spotlight.is-hidden { opacity: 0; }
.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 14px; height: 14px;
  background: var(--neon);
  pointer-events: none;
  z-index: 10000;
  transform: translate(-9999px, -9999px);
  border-radius: 50%;
  border: 2px solid #ffffff;
  box-shadow: 0 0 14px var(--neon-glow), 0 0 4px rgba(0,0,0,0.6);
}
.cursor-dot.is-hover { background: var(--cyan); box-shadow: 0 0 16px var(--cyan-glow), 0 0 4px rgba(0,0,0,0.6); }
.cursor-dot.is-hidden { opacity: 0; }
@media (pointer: coarse) {
  .cursor-dot, .cursor-spotlight { display: none; }
  body, a, button, input, textarea, summary { cursor: auto; }
}

/* ---------- ANIMATIONS UTILS ---------- */
.reveal { opacity: 1; transform: none; transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-stagger > * { opacity: 1; transform: none; transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal-stagger.is-visible > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 70ms; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 140ms; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 210ms; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 280ms; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 350ms; }

@keyframes spinSlow { from { transform: rotate(0); } to { transform: rotate(360deg); } }
.spin-slow { animation: spinSlow 50s linear infinite; transform-origin: center; }
.spin-fast { animation: spinSlow 22s linear infinite; transform-origin: center; }
@keyframes float-y { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.float-y { animation: float-y 5s var(--ease) infinite; }

.text-center { text-align: center; }
.text-cyan { color: var(--cyan); text-shadow: 0 0 16px var(--cyan-glow); }
.text-plasma { color: var(--plasma); text-shadow: 0 0 16px var(--plasma-glow); }
.text-neon { color: var(--neon); text-shadow: 0 0 16px var(--neon-glow); }
@media (max-width: 760px) { .hidden-mobile { display: none !important; } }

/* TOOLS RAIN */
.tools-rain {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.tools-rain__item {
  position: absolute;
  top: -120px;
  color: var(--matrix);
  animation: toolFall var(--dur, 12s) linear infinite;
  animation-delay: var(--delay, 0s);
}
@keyframes toolFall {
  0%   { transform: translateY(0) rotate(var(--rot, 0deg)); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateY(110vh) rotate(var(--rot, 0deg)); opacity: 0; }
}
.tools-rain__item--xs { width: 14px; filter: blur(2.5px) drop-shadow(0 0 4px var(--matrix)); opacity: 0.18; }
.tools-rain__item--sm { width: 22px; filter: blur(1.8px) drop-shadow(0 0 5px var(--matrix)); opacity: 0.24; }
.tools-rain__item--md { width: 36px; filter: blur(1.2px) drop-shadow(0 0 5px var(--matrix)); opacity: 0.28; }
.tools-rain__item--lg { width: 54px; filter: blur(0.8px) drop-shadow(0 0 6px var(--matrix)); opacity: 0.26; }
.tools-rain__item--xl { width: 72px; filter: blur(0.5px) drop-shadow(0 0 7px var(--matrix)); opacity: 0.24; }
@media (prefers-reduced-motion: reduce) {
  .tools-rain__item { animation: none; }
}

/* ---------- HERO LOGO PNG ---------- */
.hero__logo {
  display: block;
  width: clamp(220px, 28vw, 360px);
  height: auto;
  margin: 0 0 24px;
  filter: drop-shadow(0 12px 32px rgba(182,255,61,.18)) drop-shadow(0 0 24px rgba(177,78,255,.20));
}
@media (max-width: 920px) {
  .hero__logo { margin: 0 auto 24px; }
}

/* ---------- BRAND LOGO PNG (header + footer) ---------- */
.brand__logo {
  display: block;
  height: 140px;
  width: auto;
  max-width: none;
  object-fit: contain;
  margin: 0;
  padding: 0;
}
.footer__brand .brand__logo { height: 280px; max-width: 720px; }
@media (max-width: 920px) {
  .brand__logo { height: 90px; }
}

/* ---------- COOKIE BANNER ---------- */
.cookie-banner {
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  z-index: 200;
  background: var(--bg-deep);
  border: 1px solid var(--neon);
  box-shadow: 0 0 0 1px var(--neon), 0 0 60px rgba(182,255,61,.15), 0 12px 40px rgba(0,0,0,.6);
  padding: 18px 24px;
  max-width: 760px;
  margin: 0 auto;
  animation: cookieRise .5s var(--ease);
}
@keyframes cookieRise {
  from { transform: translateY(120%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner__inner {
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
}
.cookie-banner__text {
  font-size: 13px;
  color: var(--bone-dim);
  line-height: 1.5;
  flex: 1;
  min-width: 240px;
}
.cookie-banner__text strong {
  display: block;
  color: var(--neon);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.cookie-banner__text a { color: var(--cyan); text-decoration: underline; }
.cookie-banner__btn {
  background: var(--neon);
  color: var(--bg-deep);
  padding: 10px 22px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ---------- HEADER CONTACT (tel + whatsapp) ---------- */
.header__contact { display: flex; align-items: center; gap: 6px; margin-right: 8px; }
.header__contact a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--bone-dim);
  border: 1px solid var(--border);
  transition: all .15s var(--ease);
}
.header__contact a:hover { color: var(--neon); border-color: var(--neon); box-shadow: 0 0 16px var(--neon-glow); }
.header__contact a.is-wa { color: var(--matrix); border-color: rgba(0,255,127,.4); }
.header__contact a.is-wa:hover { color: var(--matrix); border-color: var(--matrix); box-shadow: 0 0 16px rgba(0,255,127,.4); }
.header__contact svg { width: 14px; height: 14px; }
@media (max-width: 1100px) {
  .header__contact .header__contact-label { display: none; }
  .header__contact .header__contact-num { display: none; }
}
@media (max-width: 760px) { .header__contact { display: none; } }

/* ---------- FOOTER CONTACT BLOCK ---------- */
.footer__contact { margin-top: 20px; display: flex; flex-direction: column; gap: 8px; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em; line-height: 1.6; }
.footer__contact a, .footer__contact span { color: var(--bone-dim); }
.footer__contact a:hover { color: var(--neon); }
.footer__contact strong { color: var(--bone); font-family: var(--font-display); font-weight: 700; font-size: 14px; letter-spacing: 0.04em; }

/* ---------- ANNOUNCE BAR · HOT TAG ---------- */
.announce-bar__hot { color: var(--neon) !important; font-weight: 700 !important; text-shadow: 0 0 14px var(--neon-glow); letter-spacing: 0.18em !important; }

/* ---------- BETA STRIP · 3 pilotos · 9 plazas ---------- */
.beta-strip { position: relative; padding: 60px 0; background: linear-gradient(180deg, rgba(0,229,255,0.03), rgba(177,78,255,0.04)); border-top: 1px solid rgba(0,229,255,0.18); border-bottom: 1px solid rgba(177,78,255,0.18); overflow: hidden; }
.beta-strip::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 18% 50%, rgba(182,255,61,0.08), transparent 60%); pointer-events: none; }
.beta-strip__inner { position: relative; display: grid; grid-template-columns: 1.4fr 1fr; gap: 60px; align-items: center; padding: 38px 40px; border: 1px solid rgba(182,255,61,0.22); border-radius: 4px; background: linear-gradient(135deg, rgba(4,6,11,0.9), rgba(11,14,22,0.7)); backdrop-filter: blur(8px); }
.beta-strip__inner::after { content: ""; position: absolute; top: -1px; left: -1px; right: -1px; height: 1px; background: linear-gradient(90deg, transparent, var(--neon), transparent); }
.beta-strip__left { position: relative; }
.beta-strip__pulse { position: absolute; top: 8px; left: -22px; width: 10px; height: 10px; border-radius: 50%; background: var(--neon); box-shadow: 0 0 0 0 rgba(182,255,61,0.7); animation: betaPulse 1.8s infinite; }
@keyframes betaPulse { 0% { box-shadow: 0 0 0 0 rgba(182,255,61,0.7); } 70% { box-shadow: 0 0 0 14px rgba(182,255,61,0); } 100% { box-shadow: 0 0 0 0 rgba(182,255,61,0); } }
.beta-strip__tag { display: inline-block; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.24em; color: var(--neon); padding: 6px 12px; border: 1px solid rgba(182,255,61,0.35); border-radius: 2px; margin-bottom: 16px; background: rgba(182,255,61,0.04); }
.beta-strip__title { font-family: var(--font-display); font-size: clamp(28px, 3.4vw, 40px); font-weight: 700; line-height: 1.05; letter-spacing: -0.02em; margin: 0 0 16px; color: var(--bone); }
.beta-strip__copy { color: var(--bone-dim); font-size: 15px; line-height: 1.7; margin: 0; max-width: 540px; }
.beta-strip__right { display: flex; flex-direction: column; gap: 18px; align-items: flex-start; }
.beta-strip__slots { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; }
.beta-strip__slot { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; font-size: 16px; border: 1px solid rgba(255,255,255,0.12); color: rgba(255,255,255,0.25); background: rgba(255,255,255,0.02); border-radius: 2px; }
.beta-strip__slot.is-active { border-color: var(--neon); color: var(--neon); background: rgba(182,255,61,0.08); box-shadow: 0 0 12px rgba(182,255,61,0.25); }
.beta-strip__legend { display: flex; gap: 20px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; color: var(--bone-dim); }
.beta-strip__legend span { display: inline-flex; align-items: center; gap: 8px; }
.beta-strip__legend .dot { display: inline-block; width: 8px; height: 8px; border: 1px solid rgba(255,255,255,0.2); border-radius: 50%; }
.beta-strip__legend .dot.is-active { background: var(--neon); border-color: var(--neon); box-shadow: 0 0 10px var(--neon-glow); }
@media (max-width: 860px) { .beta-strip__inner { grid-template-columns: 1fr; gap: 32px; padding: 28px 24px; } .beta-strip__pulse { left: 0; top: -18px; } .beta-strip__slots { grid-template-columns: repeat(6, 1fr); } }

/* ---------- CTA MID · Calculadora ROI ---------- */
.cta-mid { padding: 70px 0; position: relative; background: var(--bg-deep); border-top: 1px solid rgba(0,229,255,0.12); border-bottom: 1px solid rgba(0,229,255,0.12); }
.cta-mid::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse at 80% 50%, rgba(0,229,255,0.07), transparent 60%); pointer-events: none; }
.cta-mid__inner { position: relative; display: grid; grid-template-columns: 1.5fr 1fr; gap: 60px; align-items: center; padding: 40px 44px; border-left: 2px solid var(--cyan); background: linear-gradient(90deg, rgba(0,229,255,0.05), rgba(11,14,22,0.4) 60%); border-radius: 0 4px 4px 0; }
.cta-mid__copy h3 { color: var(--bone); }
.cta-mid__copy p { color: var(--bone-dim); margin: 14px 0 0; font-size: 15px; line-height: 1.7; max-width: 540px; }
.cta-mid__action { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.cta-mid__note { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; color: var(--bone-dim); }
@media (max-width: 860px) { .cta-mid__inner { grid-template-columns: 1fr; gap: 24px; padding: 28px 22px; } }

/* ---------- BLOG · HUB ---------- */
.section--hero-mini { padding: 110px 0 50px; position: relative; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.blog-card { position: relative; border: 1px solid rgba(255,255,255,0.08); background: linear-gradient(160deg, rgba(11,14,22,0.85), rgba(4,6,11,0.7)); border-radius: 4px; transition: border-color .25s, transform .25s, box-shadow .25s; overflow: hidden; }
.blog-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--neon), var(--cyan), var(--plasma)); opacity: 0.6; }
.blog-card:hover { border-color: rgba(182,255,61,0.4); transform: translateY(-4px); box-shadow: 0 18px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(182,255,61,0.1); }
.blog-card__link { display: flex; flex-direction: column; gap: 16px; padding: 28px 24px; text-decoration: none; color: inherit; height: 100%; }
.blog-card__meta { display: flex; justify-content: space-between; align-items: center; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; color: var(--bone-dim); text-transform: uppercase; }
.blog-card__cat { color: var(--neon); }
.blog-card__title { font-family: var(--font-display); font-size: 21px; line-height: 1.25; font-weight: 700; color: var(--bone); letter-spacing: -0.01em; margin: 0; }
.blog-card__excerpt { color: var(--bone-dim); font-size: 14px; line-height: 1.65; margin: 0; flex: 1; }
.blog-card__foot { display: flex; justify-content: space-between; align-items: center; padding-top: 14px; border-top: 1px solid rgba(255,255,255,0.06); font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; color: var(--bone-dim); text-transform: uppercase; }
.blog-card__cta { display: inline-flex; align-items: center; gap: 6px; color: var(--neon); }
.blog-card__cta--soon { color: var(--bone-dim); }
.blog-card--soon { opacity: 0.6; }
.blog-card--soon::before { background: rgba(255,255,255,0.1); opacity: 1; }
.blog-card--soon:hover { transform: none; border-color: rgba(255,255,255,0.08); box-shadow: none; }
@media (max-width: 980px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 660px) { .blog-grid { grid-template-columns: 1fr; } }

/* ---------- ARTICLE ---------- */
.container--narrow { max-width: 760px; }
.article { padding: 90px 0 70px; position: relative; }
.article__crumbs { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; color: var(--bone-dim); margin-bottom: 28px; text-transform: uppercase; }
.article__crumbs a { color: var(--bone-dim); }
.article__crumbs a:hover { color: var(--neon); }
.article__crumbs span { margin: 0 8px; opacity: 0.5; }
.article__head { padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 36px; }
.article__meta { display: flex; gap: 18px; flex-wrap: wrap; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; color: var(--bone-dim); text-transform: uppercase; margin-bottom: 22px; }
.article__cat { color: var(--neon); }
.article__title { font-family: var(--font-display); font-size: clamp(30px, 4vw, 46px); font-weight: 700; line-height: 1.08; letter-spacing: -0.02em; color: var(--bone); margin: 0 0 22px; }
.article__lead { font-size: 17px; line-height: 1.7; color: var(--bone-dim); padding: 18px 22px; border-left: 3px solid var(--cyan); background: rgba(0,229,255,0.04); border-radius: 0 4px 4px 0; margin: 0; }
.article__lead strong { color: var(--neon); }
.article__body { font-size: 16px; line-height: 1.78; color: var(--bone); }
.article__body p { margin: 0 0 20px; }
.article__body h2 { font-family: var(--font-display); font-size: 26px; font-weight: 700; line-height: 1.2; letter-spacing: -0.01em; color: var(--bone); margin: 48px 0 18px; padding-top: 12px; border-top: 1px solid rgba(255,255,255,0.06); }
.article__body h3 { font-family: var(--font-display); font-size: 19px; font-weight: 700; color: var(--neon); margin: 32px 0 12px; letter-spacing: 0.01em; }
.article__body ul, .article__body ol { padding-left: 24px; margin: 0 0 20px; color: var(--bone-dim); }
.article__body li { margin-bottom: 10px; line-height: 1.7; }
.article__body strong { color: var(--bone); }
.article__body a { color: var(--neon); border-bottom: 1px solid rgba(182,255,61,0.4); }
.article__body a:hover { border-bottom-color: var(--neon); }
.article__body em { color: var(--cyan); font-style: italic; }
.article__body code { font-family: var(--font-mono); font-size: 13px; background: rgba(0,229,255,0.08); color: var(--cyan); padding: 2px 6px; border-radius: 2px; }
.article__msg { font-family: var(--font-mono); font-size: 13px; line-height: 1.7; background: rgba(0,255,127,0.04); border-left: 3px solid var(--matrix); color: var(--bone); padding: 16px 18px; margin: 0 0 14px; border-radius: 0 4px 4px 0; white-space: pre-wrap; word-break: break-word; }
.article__table-wrap { overflow-x: auto; margin: 0 0 20px; }
.article__table { width: 100%; border-collapse: collapse; font-size: 14px; }
.article__table th, .article__table td { text-align: left; padding: 12px 14px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.article__table th { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; color: var(--bone-dim); text-transform: uppercase; background: rgba(255,255,255,0.02); }
.article__table tbody tr:hover { background: rgba(182,255,61,0.03); }
.article__disclaimer { font-size: 13px; color: var(--bone-dim); padding-top: 22px; border-top: 1px dashed rgba(255,255,255,0.1); margin-top: 36px; }

.article__cta { display: flex; gap: 24px; align-items: center; padding: 32px; margin: 50px 0 36px; border: 1px solid rgba(182,255,61,0.22); border-radius: 4px; background: linear-gradient(135deg, rgba(182,255,61,0.05), rgba(11,14,22,0.5)); }
.article__cta > div { flex: 1; }
.article__cta h3 { color: var(--bone); }
@media (max-width: 760px) { .article__cta { flex-direction: column; align-items: flex-start; padding: 22px; } }

.article__nav { display: flex; justify-content: space-between; gap: 16px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.08); font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; }
.article__nav a { color: var(--bone-dim); }
.article__nav a:hover { color: var(--neon); }
.article__next { text-align: right; }

@media (max-width: 660px) { .article__nav { flex-direction: column; } .article__next { text-align: left; } }

/* ---------- FOOTER LIST UNIFICATION (Producto/Recursos = Contacto) ---------- */
.footer__h { font-family: var(--font-mono); font-size: 11px; color: var(--cyan); letter-spacing: 0.18em; text-transform: uppercase; margin: 0 0 16px; font-weight: 500; }
.footer__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em; line-height: 1.6; }
.footer__list li { margin: 0; }
.footer__list a { color: var(--bone-dim); transition: color .15s var(--ease); display: inline-block; }
.footer__list a:hover { color: var(--neon); }
.footer__legal { list-style: none; margin: 0; padding: 0; display: flex; gap: 18px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; }
.footer__legal a { color: var(--steel); }
.footer__legal a:hover { color: var(--neon); }

/* ---------- HEADER · WhatsApp con subtexto "Respuesta <15 min" ---------- */
.header__contact-wa { display: inline-flex; flex-direction: column; align-items: flex-start; line-height: 1.1; gap: 2px; }
.header__contact-sub { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--matrix); opacity: 0.85; white-space: nowrap; }
.header__contact a.is-wa:hover .header__contact-sub { opacity: 1; }
@media (max-w
/* ---------- HERO siempre visible (sin esperar al observer) ---------- */
.hero .reveal,
.hero .reveal-stagger,
.hero .reveal-stagger > * { opacity: 1 !important; transform: none !important; }

/* ---------- NAV DROPDOWN · diseño premium ---------- */
.nav__dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 100%;
}
.nav__dropdown-trigger {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  padding: 12px 20px !important;
  font-family: var(--font-mono);
  font-size: 14px !important;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bone-dim);
  cursor: none;
  transition: color .15s var(--ease);
}
.nav__dropdown-trigger:hover,
.nav__dropdown-trigger.is-active { color: var(--neon); }
.nav__dropdown-trigger svg {
  transition: transform .25s var(--ease);
  opacity: 0.6;
  margin-top: 1px;
}
.nav__dropdown:hover .nav__dropdown-trigger { color: var(--neon); }
.nav__dropdown:hover .nav__dropdown-trigger svg {
  transform: rotate(180deg);
  opacity: 1;
}

/* Hover bridge invisible para que no se cierre al pasar el ratón */
.nav__dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 14px;
  pointer-events: none;
}
.nav__dropdown:hover::after { pointer-events: auto; }

.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 240px;
  background: linear-gradient(180deg, rgba(11,14,22,0.98) 0%, rgba(4,6,11,0.98) 100%);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(182,255,61,0.28);
  border-radius: 4px;
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
  z-index: 110;
  box-shadow: 0 16px 48px rgba(0,0,0,0.7), 0 0 0 1px rgba(182,255,61,0.12), 0 0 32px rgba(182,255,61,0.08);
}
.nav__dropdown-menu::before {
  content: "";
  position: absolute;
   top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background: rgba(11,14,22,0.98);
  border-left: 1px solid rgba(182,255,61,0.28);
  border-top: 1px solid rgba(182,255,61,0.28);
}
.nav__dropdown:hover .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav__dropdown-menu a {
  display: flex !important;
  align-items: center;
  gap: 10px;
  padding: 14px 18px !important;
  font-family: var(--font-mono);
  font-size: 12px !important;
  letter-spacing: 0.14em;
  color: var(--bone-dim);
  text-transform: uppercase;
  border-radius: 2px;
  border-bottom: none !important;
  transition: color .15s var(--ease), background .15s var(--ease), padding-left .15s var(--ease);
  cursor: none;
}
.nav__dropdown-menu a::before {
  content: "▸";
  color: var(--neon);
  opacity: 0;
  transition: opacity .15s var(--ease);
  font-size: 10px;
}
.nav__dropdown-menu a:hover {
  color: var(--neon);
  background: rgba(182,255,61,0.06);
  padding-left: 22px !important;
}
.nav__dropdown-menu a:hover::before { opacity: 1; }

/* ---------- PRICING MODES (3 modalidades de contratación) ---------- */
.modes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.mode-card {
  position: relative;
  padding: 28px 24px;
  background: linear-gradient(160deg, rgba(11,14,22,0.85), rgba(4,6,11,0.6));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  transition: border-color .25s var(--ease), transform .25s var(--ease);
}
.mode-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: rgba(255,255,255,0.1);
}
.mode-card:hover { border-color: rgba(182,255,61,0.25); transform: translateY(-3px); }
.mode-card--featured {
  border-color: rgba(182,255,61,0.35);
  background: linear-gradient(160deg, rgba(182,255,61,0.06), rgba(11,14,22,0.7));
  box-shadow: 0 0 0 1px rgba(182,255,61,0.18), 0 12px 32px rgba(0,0,0,0.4);
}
.mode-card--featured::before { background: var(--neon); height: 3px; }
.mode-card__tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone-dim);
  margin-bottom: 18px;
}
.mode-card__tag.is-neon { color: var(--neon); }
.mode-card__tag.is-plasma { color: var(--plasma); }
.mode-card__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--bone);
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}
.mode-card__detail {
  font-size: 14px;
  line-height: 1.6;
  color: var(--bone-dim);
}
.mode-card__detail strong { display: inline-block; margin-bottom: 4px; font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.06em; }
.mode-card__badge {
  position: absolute;
  top: -10px;
  right: 18px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--neon);
  color: var(--bg-deep);
  padding: 4px 10px;
  border-radius: 2px;
  box-shadow: 0 0 16px var(--neon-glow);
}
@media (max-width: 860px) { .modes-grid { grid-template-columns: 1fr; } }

/* ---------- LLUVIAS DE FONDO ---------- */
.matrix-rain { z-index: 0 !important; }
.tools-rain { z-index: 1 !important; }

/* Todo el contenido vivo por encima de las lluvias, pero el header y announce-bar mantienen su z-index alto para que el dropdown funcione */
.section, .section--tight, .hero, .ticker, .footer, .cta-final, .cta-mid, .beta-strip, .manifesto, .blog-section, .article, .legal { position: relative; z-index: 2; }
.container { position: relative; z-index: 3; }
form, table, #demoForm, .price-card, .module, .panel, .pain, .metric, .faq__item, .dash-frame, .modes-grid, .blog-grid, .article, .calc-grid, .pricing-grid, .compare, .compare-wrap, .blog-card, .mode-card, .pains, .modules, .metrics, .features, .roi-result { position: relative; z-index: 4; }

/* ---------- DROPDOWN BULLETPROOF (asegurando que aparece sí o sí) ---------- */
.nav__dropdown { position: relative !important; z-index: 200 !important; }
.nav__dropdown-menu { z-index: 999 !important; }
.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown:focus-within .nav__dropdown-menu {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateX(-50%) translateY(0) !important;
}
.header { overflow: visible !important; }
.header__inner { overflow: visible !important; }
.nav { overflow: visible !important; }


/* ============================================================
   STACKING CONTEXTS BLINDADOS
   La lluvia (tools-rain) SIEMPRE detras de cualquier seccion,
   form, table, grid o card. Esta es la regla final, gana sobre todo.
   ============================================================ */

.tools-rain {
  position: fixed !important;
  top: 0 !important; left: 0 !important;
  width: 100vw !important; height: 100vh !important;
  z-index: 1 !important;
  pointer-events: none !important;
  overflow: hidden !important;
  display: block !important;
}
.tools-rain__item { position: absolute !important; }

.matrix-rain { z-index: 0 !important; }

/* Sections siempre encima de la lluvia */
.section, .section--tight, .hero, .ticker, .footer,
.cta-final, .cta-mid, .beta-strip, .manifesto,
.blog-section, .article, .legal {
  position: relative !important;
  z-index: 2 !important;
}

.container { position: relative !important; z-index: 3 !important; }

/* Forms, tables, grids y cards: por encima del todo */
form, table, #demoForm,
.price-card, .module, .panel, .pain, .metric, .faq__item,
.dash-frame, .modes-grid, .blog-grid, .calc-grid, .pricing-grid,
.compare, .compare-wrap, .blog-card, .mode-card,
.pains, .modules, .metrics, .features, .roi-result,
.cta-final__inner, .pricing, .manifesto__quote,
.article__body, .article__hero {
  position: relative !important;
  z-index: 4 !important;
}

form input, form textarea, form button, form select,
input, textarea, button, select {
  position: relative;
  z-index: 5;
}

/* Header/dropdown ganan a todo */
.header { z-index: 100 !important; overflow: visible !important; }
.header__inner { overflow: visible !important; }
.nav { overflow: visible !important; }
.nav__dropdown { position: relative !important; z-index: 500 !important; }
.nav__dropdown-menu { z-index: 9999 !important; }

/* WhatsApp FAB siempre on top */
.wa-fab { z-index: 9999 !important; }

/* Cookie banner por encima de todo lo demas */
.cookie-banner { z-index: 99999 !important; }

/* ==== FONDOS OPACOS — evitar que la lluvia transparente a través ==== */
/* El form, inputs y cards tenían fondo 3% blanco (semi-transparente),
   con lo que el canvas matrix-rain detrás se transparentaba a través.
   Ahora el fondo es ~94% opaco con un toque de glass. */

#demoForm,
#demoForm input,
#demoForm textarea,
#demoForm select,
.cta-final__inner,
form input,
form textarea,
form select,
.price-card,
.module,
.pain,
.metric,
.faq__item,
.dash-frame,
.mode-card,
.blog-card,
.calc-grid,
.roi-result,
.compare-wrap,
table {
  background-color: rgba(11, 14, 22, 0.94) !important;
  backdrop-filter: blur(2px);
}

/* La sección que envuelve el form también opaca para no ver canvas tras inputs estrechos */
.cta-final__inner {
  background: rgba(11, 14, 22, 0.88) !important;
  padding: 32px 28px !important;
  border-radius: 6px !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
}

/* Asegurar que el botón de submit no se vea afectado (mantiene su gradiente) */
#demoForm .btn,
form .btn {
  background-color: initial !important;
}

/* ==== SECCIONES OPACAS — taparon el canvas matrix detrás ==== */
/* Antes .cta-final estaba a 55% transparente y se veian las letras
   del canvas entre los inputs del form. Ahora son 95% opacas como .cta-mid. */
.cta-final {
  background: rgba(4, 6, 11, 0.96) !important;
}
.manifesto {
  background: rgba(4, 6, 11, 0.92) !important;
}
.beta-strip {
  background: linear-gradient(180deg, rgba(4,6,11,0.94), rgba(4,6,11,0.96)) !important;
}

/* ==== MATRIX RAIN: muy sutil, solo ambiente ==== */
.matrix-rain {
  opacity: 0.12 !important;
}

/* ==== TODAS LAS SECCIONES OPACAS ====
   Antes solo .cta-final tenia fondo, el resto eran transparentes
   y dejaban ver el canvas a traves. */
section.section,
section.section--tight,
section.hero,
.section,
.section--tight,
.hero {
  background-color: rgba(4, 6, 11, 0.94) !important;
}

/* Cta-final 100% opaca para que el form quede inmaculado */
.cta-final {
  background-color: rgba(4, 6, 11, 0.98) !important;
}

/* Manifesto y beta-strip mantienen su gradiente sutil */
.manifesto {
  background-color: rgba(4, 6, 11, 0.92) !important;
}

/* ==== FIX NUCLEAR: cta-final completamente opaca y z-index 10 ==== */
section.cta-final,
.cta-final {
  background: #04060B !important;
  background-color: #04060B !important;
  background-image: none !important;
  position: relative !important;
  z-index: 10 !important;
  isolation: isolate;
}

/* El pseudo ::before del cta-final (halo neon) que vaya al fondo de la seccion */
section.cta-final::before,
.cta-final::before {
  z-index: 0 !important;
}

/* Todo el contenido de cta-final por encima de su pseudo */
.cta-final > * {
  position: relative;
  z-index: 1;
}

/* Tools-rain bajado a -1 para que NO interfiera nunca con secciones opacas */
.tools-rain {
  z-index: 0 !important;
}
.matrix-rain {
  z-index: -1 !important;
}
body {
  background: #04060B !important;
}

/* ==== AJUSTE FINAL: matrix sutil visible en general, NO en demo ==== */
/* matrix-rain visible (subido para que se lean las letras de fondo) */
.matrix-rain {
  z-index: 0 !important;
  opacity: 0.45 !important;
}
/* tools-rain visible (z-index 1) */
.tools-rain {
  z-index: 1 !important;
}
/* cta-final con z-index muy alto y fondo solido tapa TODO debajo */
section.cta-final,
.cta-final {
  background: #04060B !important;
  position: relative !important;
  z-index: 50 !important;
}
/* el before/after del cta-final no tape el form */
.cta-final::before {
  z-index: -1 !important;
}

/* ==== FIX FINAL: panel del form como una tabla — fondo solido propio ==== */
/* La SECCION puede ser semi-transparente (matrix se ve a los lados, como con la tabla),
   pero el PANEL que contiene el form es 100% opaco como una card. */

.cta-final {
  background: rgba(4, 6, 11, 0.55) !important; /* permite ver matrix a los lados */
}

.cta-final__inner {
  background: #0B0E16 !important; /* opaco solido como la tabla */
  border: 1px solid rgba(255,255,255,0.10) !important;
  border-radius: 8px !important;
  padding: 48px 40px !important;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5), 0 0 0 1px rgba(0,229,255,0.06) !important;
  position: relative !important;
  z-index: 5 !important;
}

/* Que el form en si herede el fondo del panel (tampoco hace falta opaco doble) */
#demoForm {
  background: transparent !important;
}

/* Inputs sutiles, no double-opaque */
#demoForm input,
#demoForm textarea {
  background: rgba(255,255,255,0.04) !important;
}

@media (max-width: 720px) {
  .cta-final__inner { padding: 32px 20px !important; }
}

/* Footer logo · tamaño razonable (antes estaba a 360px y reventaba la maquetación) */
.footer__brand {
  text-align: center;
}
.footer__brand .brand {
  display: inline-block;
  line-height: 0;
}
.footer__brand .brand__logo {
  height: auto !important;
  width: auto !important;
  max-width: 240px !important;
  max-height: 80px !important;
  object-fit: contain !important;
  display: block !important;
  margin: 0 auto !important;
}
.footer__brand p {
  text-align: left;
  margin-top: 18px;
  margin-left: auto;
  margin-right: auto;
  max-width: 320px;
}
.footer__grid { align-items: start; }

/* ============================================================
   AÑADIDOS POSTERIORES — clases nuevas del HTML actual
   que la versión base no contemplaba
   ============================================================ */

/* === FOOTER · direcciones físicas (Sede / Centro de actividad) === */
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer__contact strong {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--bone);
  margin-bottom: 4px;
  letter-spacing: 0.04em;
}
.footer__contact a {
  color: var(--bone-dim);
  font-size: 13px;
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
  display: block;
  transition: color .2s;
}
.footer__contact a:hover { color: var(--neon); }
.footer__addr {
  display: block;
  color: var(--bone-dim);
  font-size: 12px;
  line-height: 1.6;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer__addr small {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--neon);
  text-transform: uppercase;
  margin-bottom: 6px;
}

/* === PANELES coloreados (sección "01 El porqué" del index) === */
.panel--cyan .panel__num,
.panel--cyan .panel__title { color: var(--cyan) !important; }
.panel--cyan { border-left: 2px solid var(--cyan); }

.panel--plasma .panel__num,
.panel--plasma .panel__title { color: var(--plasma) !important; }
.panel--plasma { border-left: 2px solid var(--plasma); }


.panel--neon .panel__num,
.panel--neon .panel__title { color: var(--neon) !important; }
.panel--neon { border-left: 2px solid var(--neon); }

/* === NAVBAR ACTIVE — link de la página actual destacado === */
.nav a.is-active,
.nav__dropdown-trigger.is-active {
  color: var(--neon) !important;
  text-shadow: 0 0 12px var(--neon-glow);
  position: relative;
}
.nav a.is-active::after,
.nav__dropdown-trigger.is-active::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--neon);
  box-shadow: 0 0 12px var(--neon-glow);
}


/* ============================================================
   FOOTER · refuerzo de altísima especificidad
   ============================================================ */
body footer.footer .footer__brand .brand__logo,
body .footer .footer__brand .brand__logo {
  height: auto !important;
  width: auto !important;
  max-width: 220px !important;
  max-height: 72px !important;
  object-fit: contain !important;
  display: block !important;
  margin: 0 auto !important;
}

body footer.footer .footer__contact .footer__addr,
body .footer .footer__contact .footer__addr {
  display: block !important;
  margin-top: 14px !important;
  padding-top: 14px !important;
  border-top: 1px solid rgba(255,255,255,0.06) !important;
  color: var(--bone-dim) !important;
  font-size: 12px !important;
  line-height: 1.6 !important;
}

body footer.footer .footer__contact .footer__addr small,
body .footer .footer__contact .footer__addr small {
  display: block !important;
  font-family: var(--font-mono) !important;
  font-size: 10px !important;
  letter-spacing: 0.14em !important;
  color: var(--neon) !important;
  text-transform: uppercase !important;
  margin-bottom: 6px !important;
  padding: 0 !important;
}

/* ============================================================
   Z-INDEX BLINDADO: lluvias SIEMPRE detrás, contenido encima
   ============================================================ */
.matrix-rain {
  z-index: -2 !important;
  position: fixed !important;
}
.tools-rain {
  z-index: -1 !important;
  position: fixed !important;
}
.tools-rain__item {
  z-index: -1 !important;
}

/* Cualquier sección, card, tabla, grid o caja del contenido
   queda por encima de las lluvias */
body section,
body .section,
body .section--tight,
body .hero,
body .ticker,
body .footer,
body .cta-final,
body .cta-mid,
body .beta-strip,
body .manifesto,
body .blog-section,
body .article,
body .legal,
body #recursos {
  position: relative !important;
  z-index: 5 !important;
}

body .container { position: relative !important; z-index: 6 !important; }

body form, body table, body #demoForm,
body .price-card, body .module, body .panel, body .pain, body .metric, body .faq__item,
body .dash-frame, body .modes-grid, body .blog-grid, body .calc-grid, body .pricing-grid,
body .compare, body .compare-wrap, body .blog-card, body .mode-card,
body .pains, body .modules, body .metrics, body .features, body .roi-result,
body .cta-final__inner, body .pricing, body .manifesto__quote,
body .article__body, body .article__hero {
  position: relative !important;
  z-index: 7 !important;
}

/* ============================================================
 * UTILIDADES DE ACCESIBILIDAD
 * ============================================================ */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
 * BLOG · TITULARES CON IDENTIDAD DE MARCA
 * Gradiente neon → plasma sobre los headlines del blog
 * y de cada artículo. Glow sutil al hover.
 * ============================================================ */

/* Cards del listado de blog */
.blog-card__title {
  background: linear-gradient(135deg, var(--neon) 0%, var(--neon) 35%, var(--plasma) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent; /* fallback */
  transition: filter .25s ease, transform .25s ease;
}
.blog-card:hover .blog-card__title {
  filter: drop-shadow(0 0 14px rgba(182,255,61,0.35)) drop-shadow(0 0 22px rgba(177,78,255,0.25));
}

/* Categoría del card: refuerzo de marca */
.blog-card__cat {
  font-weight: 700;
  text-shadow: 0 0 10px var(--neon-glow);
}

/* Título principal del artículo (la página del post) */
.article__title {
  background: linear-gradient(120deg, var(--neon) 0%, var(--neon) 30%, var(--plasma) 95%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  filter: drop-shadow(0 0 18px rgba(182,255,61,0.18));
}

/* H2 dentro de artículo: acento cian para crear ritmo cromático con h3 (neón) */
.article__body h2 {
  color: var(--cyan) !important;
  border-top-color: rgba(0,229,255,0.18) !important;
  text-shadow: 0 0 16px rgba(0,229,255,0.25);
  letter-spacing: -0.005em;
}

/* H3: ya está neón, le añadimos glow sutil */
.article__body h3 {
  text-shadow: 0 0 12px rgba(182,255,61,0.30);
}

/* Crumbs del artículo: el último item en plasma para guiar la mirada */
.article__crumbs {
  font-weight: 700;
}
.article__crumbs > *:last-child:not(a) {
  color: var(--plasma);
  text-shadow: 0 0 10px rgba(177,78,255,0.30);
}

/* Lead box del artículo: mantiene cyan pero lo refuerza */
.article__lead {
  background: linear-gradient(135deg, rgba(0,229,255,0.06), rgba(177,78,255,0.04)) !important;
  border-left-color: var(--cyan) !important;
}
.article__lead strong {
  color: var(--neon);
  text-shadow: 0 0 10px var(--neon-glow);
}
