/* =========================================================
   SoftGenesys — Sistema de diseño
   Tema: "Clear / Enterprise" — claro, sobrio, profesional
   ========================================================= */

:root {
  /* Superficies (claras) */
  --bg:         #F5F7FB;
  --surface:    #FFFFFF;
  --surface-2:  #EEF2F9;
  --surface-3:  #E6ECF6;
  --line:       rgba(20, 36, 59, 0.10);
  --line-soft:  rgba(20, 36, 59, 0.05);

  /* Texto */
  --ink:    #14243B;   /* títulos */
  --text:   #35455E;   /* cuerpo */
  --muted:  #64748B;
  --faint:  #93A0B4;

  /* Acento (azul corporativo, con moderación) */
  --accent:      #2B5CE6;
  --accent-600:  #1E48C4;
  --accent-ink:  #FFFFFF;
  --accent-soft: rgba(43, 92, 230, 0.08);
  --grad: linear-gradient(120deg, #2B5CE6 0%, #4F46E5 100%);

  /* Panel de consola (oscuro, para contraste) */
  --term-bg:    #101A2C;
  --term-bg-2:  #0C1524;
  --term-line:  rgba(148, 163, 184, 0.16);
  --term-text:  #C7D2E4;
  --term-faint: #6C7A92;

  /* Acentos por producto */
  --p-iarx:    #2B8AE0;
  --p-sigr:    #E0526F;
  --p-syncrox: #12A594;
  --p-nexbo:   #D98A1E;

  /* Tipografía */
  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-body:    "Inter", system-ui, -apple-system, sans-serif;
  --font-mono:    "JetBrains Mono", ui-monospace, "SFMono-Regular", monospace;

  /* Métricas */
  --radius:   16px;
  --radius-sm: 10px;
  --maxw:     1180px;
  --ease:     cubic-bezier(0.22, 1, 0.36, 1);
  --shadow:   0 1px 2px rgba(16, 36, 59, 0.04), 0 14px 34px -20px rgba(16, 36, 59, 0.22);
  --shadow-lg:0 2px 4px rgba(16, 36, 59, 0.05), 0 26px 60px -26px rgba(16, 36, 59, 0.30);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1.02rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Textura sutil (muy tenue, no recargada) */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(var(--line-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at 50% 0%, #000 0%, transparent 62%);
  -webkit-mask-image: radial-gradient(circle at 50% 0%, #000 0%, transparent 62%);
  opacity: 0.7;
  pointer-events: none;
}

a { color: inherit; text-decoration: none; }

.container-x {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 40px);
}

/* Tipografía base */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0;
  color: var(--ink);
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 500;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px; border-radius: 2px;
  background: var(--accent);
}

.section {
  padding-block: clamp(72px, 10vw, 124px);
  position: relative;
}
.section-alt { background: var(--surface); border-block: 1px solid var(--line); }
.section-head { max-width: 640px; margin-bottom: 3.4rem; }
.section-head h2 {
  font-size: clamp(1.9rem, 4.2vw, 2.95rem);
  margin-top: 1rem;
}
.section-head p {
  color: var(--muted);
  margin-top: 1.1rem;
  font-size: 1.08rem;
}

/* =========================================================
   NAVBAR
   ========================================================= */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px -24px rgba(16, 36, 59, 0.4);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}
.brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: -0.035em;
  color: var(--ink);
}
.brand span { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  font-size: 0.94rem;
  color: var(--muted);
  transition: color 0.2s;
  position: relative;
  font-weight: 500;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.btn-primary,
.nav-links a.btn-primary:hover { color: var(--accent-ink); }

.btn {
  --bg2: var(--surface);
  --fg: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.72rem 1.35rem;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--bg2);
  color: var(--fg);
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s, background 0.2s, border-color 0.2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  --fg: var(--accent-ink);
  border-color: transparent;
  background: var(--accent);
  font-weight: 600;
  box-shadow: 0 10px 24px -12px rgba(43, 92, 230, 0.6);
}
.btn-primary:hover { background: var(--accent-600); box-shadow: 0 16px 30px -14px rgba(43, 92, 230, 0.65); }
.btn-ghost { background: transparent; }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

.nav-toggle {
  display: none;
  background: none; border: 0; color: var(--ink);
  width: 44px; height: 44px; cursor: pointer;
}
.nav-toggle svg { width: 26px; height: 26px; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  padding-top: 150px;
  padding-bottom: clamp(60px, 8vw, 110px);
  overflow: hidden;
}
#net {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  opacity: 0.85;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.5rem, 6.2vw, 4.2rem);
  margin-top: 1.6rem;
  max-width: 15ch;
}
.hero h1 .grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p.lead {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.22rem);
  margin-top: 1.5rem;
  max-width: 46ch;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2.4rem;
}
.hero-metrics {
  display: flex;
  gap: 2.6rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}
.metric .n {
  font-family: var(--font-display);
  font-size: 1.95rem;
  font-weight: 600;
  color: var(--ink);
}
.metric .l {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--faint);
}

/* Panel de consola (oscuro sobre fondo claro) */
.console {
  border: 1px solid rgba(16, 26, 44, 0.9);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--term-bg), var(--term-bg-2));
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--term-text);
}
.console-bar {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--term-line);
  color: var(--term-faint);
}
.console-bar i {
  width: 11px; height: 11px; border-radius: 50%;
  display: inline-block;
}
.console-bar i:nth-child(1) { background: #F1748C; }
.console-bar i:nth-child(2) { background: #F0B84B; }
.console-bar i:nth-child(3) { background: #4FC79E; }
.console-bar span { margin-left: auto; letter-spacing: 0.08em; }
.console-body { padding: 1.1rem 1.2rem; line-height: 1.9; }
.console-body .ln { display: block; white-space: nowrap; }
.console-body .k { color: #7FA6FF; }
.console-body .s { color: #A9B6FF; }
.console-body .c { color: var(--term-faint); }
.console-body .ok { color: #4FC79E; }
.console-body .arrow { color: var(--term-faint); }

/* Marquesina de protocolos */
.ticker {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
  overflow: hidden;
  padding-block: 1.1rem;
}
.ticker-track {
  display: flex;
  gap: 3.5rem;
  width: max-content;
  animation: ticker 36s linear infinite;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.ticker-track span { display: inline-flex; align-items: center; gap: 3.5rem; }
.ticker-track b { color: var(--accent); font-weight: 500; }
@keyframes ticker { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .ticker-track { animation: none; } }

/* =========================================================
   SERVICIOS
   ========================================================= */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.pillar {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 2rem 1.8rem;
  box-shadow: var(--shadow);
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
}
.pillar:hover { transform: translateY(-6px); border-color: rgba(43, 92, 230, 0.35); box-shadow: var(--shadow-lg); }
.pillar .ico {
  width: 50px; height: 50px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  margin-bottom: 1.3rem;
}
.pillar .ico svg { width: 26px; height: 26px; }
.pillar h3 { font-size: 1.28rem; }
.pillar p { color: var(--muted); margin-top: 0.7rem; font-size: 0.98rem; }
.pillar ul {
  list-style: none; padding: 0; margin: 1.2rem 0 0;
  font-size: 0.9rem; color: var(--text);
}
.pillar li { padding: 0.32rem 0; display: flex; gap: 0.6rem; align-items: center; }
.pillar li::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); flex: none;
}

/* =========================================================
   PRODUCTOS
   ========================================================= */
.products {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.product {
  --c: var(--accent);
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 2rem;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
}
.product::before {
  content: "";
  position: absolute; inset: 0 0 auto 0; height: 3px;
  background: var(--c);
}
.product:hover { transform: translateY(-6px); border-color: color-mix(in srgb, var(--c) 40%, var(--line)); box-shadow: var(--shadow-lg); }
.product-top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1.2rem;
}
.product .name {
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.5rem;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.product .name span { color: var(--c); }
.product .tag {
  font-family: var(--font-mono);
  font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--c);
  border: 1px solid color-mix(in srgb, var(--c) 30%, var(--line));
  background: color-mix(in srgb, var(--c) 9%, transparent);
  padding: 0.32rem 0.7rem; border-radius: 999px;
}
.product h4 { font-size: 1.06rem; color: var(--ink); margin-bottom: 0.5rem; }
.product p { color: var(--muted); font-size: 0.96rem; }
.product .feats {
  list-style: none; padding: 0; margin: 1.3rem 0 0;
  display: flex; flex-wrap: wrap; gap: 0.5rem;
}
.product .feats li {
  font-family: var(--font-mono);
  font-size: 0.72rem; letter-spacing: 0.02em;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 0.3rem 0.65rem; border-radius: 8px;
  background: var(--surface-2);
}

/* =========================================================
   INTEGRACIÓN
   ========================================================= */
.integ {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.integ-copy h2 { font-size: clamp(1.9rem, 4vw, 2.7rem); margin-top: 1rem; }
.integ-copy p { color: var(--muted); margin-top: 1.1rem; }
.integ-copy .checks {
  list-style: none; padding: 0; margin: 1.6rem 0 0;
  display: grid; gap: 0.9rem;
}
.integ-copy .checks li {
  display: flex; gap: 0.8rem; align-items: flex-start;
  font-size: 0.98rem; color: var(--text);
}
.integ-copy .checks b { color: var(--ink); font-weight: 600; }
.integ-copy .checks svg { width: 22px; height: 22px; flex: none; color: var(--accent); margin-top: 2px; }

.proto-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: 1.8rem;
}
.proto-panel .ph {
  font-family: var(--font-mono);
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--faint); margin-bottom: 1.2rem;
  display: flex; align-items: center; justify-content: space-between;
}
.proto-panel .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--p-syncrox); box-shadow: 0 0 0 4px rgba(18,165,148,0.15); }
.proto-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.7rem;
}
.chip {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  text-align: center;
  padding: 0.85rem 0.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface-2);
  color: var(--text);
  transition: transform 0.2s var(--ease), color 0.2s, border-color 0.2s, background 0.2s;
}
.chip:hover {
  transform: translateY(-3px);
  color: var(--accent); border-color: rgba(43,92,230,0.45);
  background: var(--accent-soft);
}

/* =========================================================
   CLIENTES
   ========================================================= */
.clients {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
.client {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 1.8rem 1.5rem;
  box-shadow: var(--shadow);
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
}
.client:hover { transform: translateY(-5px); border-color: rgba(43,92,230,0.3); box-shadow: var(--shadow-lg); }
.client .logo {
  width: 44px; height: 44px; border-radius: 11px;
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; font-size: 1.15rem;
  color: var(--accent-ink);
  background: var(--accent);
  margin-bottom: 1.1rem;
}
.client .cn { font-family: var(--font-display); font-weight: 600; font-size: 1.06rem; color: var(--ink); }
.client .cs { color: var(--faint); font-size: 0.85rem; margin-top: 0.25rem; }

.quote {
  margin-top: 3rem;
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: 2rem 2.2rem;
}
.quote p { font-family: var(--font-display); font-size: 1.25rem; letter-spacing: -0.01em; color: var(--ink); }
.quote .who { color: var(--faint); font-family: var(--font-mono); font-size: 0.8rem; margin-top: 0.9rem; letter-spacing: 0.06em; }

/* =========================================================
   CONTACTO / CTA
   ========================================================= */
.cta {
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    radial-gradient(600px 300px at 80% 0%, rgba(43,92,230,0.08), transparent 60%),
    radial-gradient(500px 260px at 10% 100%, rgba(79,70,229,0.06), transparent 60%),
    var(--surface);
  box-shadow: var(--shadow);
  padding: clamp(2.4rem, 5vw, 4rem);
  text-align: center;
}
.cta h2 { font-size: clamp(2rem, 4.6vw, 3rem); max-width: 18ch; margin-inline: auto; }
.cta p { color: var(--muted); margin: 1.2rem auto 0; max-width: 52ch; }
.cta .actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2.2rem; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  border-top: 1px solid var(--line);
  background: var(--surface);
  padding-block: 3.5rem 2.5rem;
  margin-top: 4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2rem;
}
.footer .brand { display: inline-block; margin-bottom: 1rem; }
.footer p.blurb { color: var(--muted); font-size: 0.92rem; max-width: 32ch; }
.footer h5 {
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--faint); margin: 0 0 1rem;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: 0.6rem; }
.footer ul a { color: var(--muted); font-size: 0.92rem; transition: color 0.2s; }
.footer ul a:hover { color: var(--accent); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
  margin-top: 3rem; padding-top: 1.8rem;
  border-top: 1px solid var(--line-soft);
  color: var(--faint); font-size: 0.85rem;
  font-family: var(--font-mono); letter-spacing: 0.03em;
}

/* =========================================================
   REVEAL ON SCROLL
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* Focus visible accesible */
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero .console { order: -1; }
  .integ { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; }
  .products { grid-template-columns: 1fr; }
  .clients { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav-toggle { display: grid; place-items: center; }
  .nav-links {
    position: fixed;
    inset: 74px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 40px -24px rgba(16,36,59,0.3);
    padding: 0.5rem 0 1.2rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s;
  }
  .nav-links.open { opacity: 1; visibility: visible; transform: none; }
  .nav-links a { padding: 0.9rem clamp(20px, 5vw, 40px); border-bottom: 1px solid var(--line-soft); }
  .nav-links .btn { margin: 0.8rem clamp(20px, 5vw, 40px) 0; justify-content: center; }
  .proto-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-metrics { gap: 1.8rem; }
}

@media (max-width: 480px) {
  .clients { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .console-body { font-size: 0.74rem; }
}

/* =========================================================
   ===============  INDEX2 · CAPA "MÁS TECH"  ==============
   Ampliaciones sobre la base clara. No altera el respaldo.
   ========================================================= */

:root {
  --accent-2:  #7C3AED;                 /* violeta para dar potencia */
  --grad: linear-gradient(120deg, #2B5CE6 0%, #5A4CE0 52%, #7C3AED 100%);
  --grad-soft: linear-gradient(120deg, rgba(43,92,230,0.12), rgba(124,58,237,0.12));
}

/* --- Malla de color animada (profundidad sin oscurecer) --- */
.mesh { position: absolute; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; }
.mesh .blob {
  position: absolute; border-radius: 50%;
  filter: blur(60px); opacity: 0.5;
  animation: floaty 18s ease-in-out infinite;
}
.mesh .b1 { width: 460px; height: 460px; background: rgba(43,92,230,0.30);  top: -120px; right: 4%; }
.mesh .b2 { width: 400px; height: 400px; background: rgba(124,58,237,0.24); top: 40px; right: 24%; animation-delay: -6s; }
.mesh .b3 { width: 360px; height: 360px; background: rgba(56,189,248,0.20); top: 220px; left: -80px; animation-delay: -11s; }
@keyframes floaty {
  0%,100% { transform: translate(0,0) scale(1); }
  50%     { transform: translate(20px,26px) scale(1.08); }
}
@media (prefers-reduced-motion: reduce) { .mesh .blob { animation: none; } }

/* --- Cristal (glassmorphism) --- */
.glass {
  background: rgba(255,255,255,0.62);
  backdrop-filter: saturate(160%) blur(16px);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius);
}

/* --- Etiqueta de sección con contador visual --- */
.kicker {
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--faint);
}

/* --- HERO potenciado: tarjeta de red animada --- */
.hero-visual { position: relative; }
.hero-visual .glass { padding: 1.1rem; }
.netcard-head {
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.1em;
  color: var(--muted); padding: 0.2rem 0.4rem 0.9rem;
}
.netcard-head .live { display: inline-flex; align-items: center; gap: 0.45rem; color: var(--p-syncrox); }
.netcard-head .live::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--p-syncrox);
  box-shadow: 0 0 0 0 rgba(18,165,148,0.5); animation: ping 1.8s ease-out infinite;
}
@keyframes ping { 0%{box-shadow:0 0 0 0 rgba(18,165,148,0.45);} 100%{box-shadow:0 0 0 9px rgba(18,165,148,0);} }
@media (prefers-reduced-motion: reduce){ .netcard-head .live::before{ animation:none; } }

/* Flujo de datos (líneas + puntos que viajan) — usado en varias secciones */
.flow-edge { stroke: rgba(43,92,230,0.28); stroke-width: 2; fill: none; }
.flow-edge.dash { stroke-dasharray: 5 7; animation: dashmove 1.1s linear infinite; }
@keyframes dashmove { to { stroke-dashoffset: -24; } }
.flow-node-box { fill: #FFFFFF; stroke: var(--line); }
.flow-hub { fill: url(#hubgrad); }
.flow-label { font-family: var(--font-mono); font-size: 11px; fill: var(--muted); }
.flow-label.strong { fill: var(--ink); font-weight: 600; }
.flow-dot { fill: var(--accent); }
@media (prefers-reduced-motion: reduce){ .flow-edge.dash{ animation:none; } .flow-dot{ display:none; } }

/* --- Banda de PROCESO (imágenes que acompañan el proceso) --- */
.process { position: relative; }
.proc-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem;
  position: relative;
}
.proc-grid::before {
  content: ""; position: absolute; left: 8%; right: 8%; top: 48px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent) 15%, var(--accent-2) 85%, transparent);
  opacity: 0.35;
}
.proc-step {
  position: relative; text-align: center;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem 1.2rem; box-shadow: var(--shadow);
}
.proc-illus {
  width: 82px; height: 82px; margin: 0 auto 1rem;
  border-radius: 20px; display: grid; place-items: center;
  background: var(--grad-soft); border: 1px solid var(--line);
  color: var(--accent);
}
.proc-illus svg { width: 40px; height: 40px; }
.proc-step .num {
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.16em;
  color: var(--accent); font-weight: 600;
}
.proc-step h4 { font-size: 1.08rem; margin-top: 0.35rem; }
.proc-step p { color: var(--muted); font-size: 0.9rem; margin-top: 0.5rem; }

/* --- Ilustración en cada PILLAR de servicios --- */
.pillar .pv {
  height: 116px; margin: -0.4rem -0.4rem 1.3rem; border-radius: 12px;
  background: var(--grad-soft); border: 1px solid var(--line);
  display: grid; place-items: center; overflow: hidden;
}
.pillar .pv svg { width: 100%; height: 100%; }

/* --- Mini-pantalla en cada PRODUCTO --- */
.product .screen {
  height: 108px; margin: -0.5rem -0.5rem 1.4rem; border-radius: 12px;
  border: 1px solid var(--line); overflow: hidden;
  background: color-mix(in srgb, var(--c) 6%, #fff);
  position: relative;
}
.product .screen svg { width: 100%; height: 100%; display: block; }

/* --- INTEGRACIÓN: diagrama de flujo grande --- */
.integ-flow { padding: 1.4rem; }
.integ-flow svg { width: 100%; height: auto; display: block; }
.proto-strip { margin-top: 2.4rem; }
.proto-strip .proto-grid { grid-template-columns: repeat(6, 1fr); }
@media (max-width: 720px){ .proto-strip .proto-grid { grid-template-columns: repeat(3,1fr); } }

/* --- CLIENTES: hub de señal --- */
.clients-hub {
  max-width: 760px; margin: 0 auto 3rem; position: relative;
}
.clients-hub svg { width: 100%; height: auto; display: block; }

/* --- Realces varios --- */
.hero h1 { max-width: 16ch; }
.badge-row { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.5rem; }
.badge {
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.03em;
  color: var(--accent); background: var(--accent-soft);
  border: 1px solid color-mix(in srgb, var(--accent) 22%, var(--line));
  padding: 0.34rem 0.7rem; border-radius: 999px;
}

@media (max-width: 980px) {
  .proc-grid { grid-template-columns: repeat(2, 1fr); }
  .proc-grid::before { display: none; }
}
@media (max-width: 520px) {
  .proc-grid { grid-template-columns: 1fr; }
}

/* pequeños ajustes de color para ilustraciones */
.product .screen { color: var(--c); }
.pillar .pv { color: var(--accent); }
