/* ============================================================
   ELIOGPT · HOME (Hero · AOC · Proceso · Access Hub)
   Nativo: HTML + CSS + SVG. Sin assets raster de referencia.
   ============================================================ */

:root {
  --elio-blue: #5B7CFF;
  --eh-glow-intel: rgba(139, 61, 255, 0.35);
  --eh-glow-action: rgba(91, 124, 255, 0.28);
  --eh-glow-control: rgba(46, 229, 157, 0.22);
}

/* ---------- HERO PREMIUM ---------- */
.home-hero.home-hero--premium {
  position: relative;
  width: 100%;
  max-width: none;
  min-height: auto;
  overflow: hidden;
  padding-top: clamp(56px, 6vh, 88px);
  padding-bottom: clamp(56px, 5vh, 96px);
  margin-inline: 0;
  padding-inline: 0;
}

/* Full-bleed atmosphere — section level, not content box */
.home-hero--premium::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 70% 55% at 78% 42%, rgba(139, 61, 255, 0.17), transparent 72%),
    radial-gradient(ellipse 55% 45% at 12% 22%, rgba(91, 124, 255, 0.08), transparent 68%),
    radial-gradient(ellipse 90% 40% at 50% 100%, rgba(139, 61, 255, 0.06), transparent 70%);
}

/* Soft fade into next section */
.home-hero--premium::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: clamp(56px, 10vh, 120px);
  pointer-events: none;
  z-index: 0;
  background: linear-gradient(to bottom, transparent, rgba(5, 4, 13, 0.72));
}

.home-hero__inner {
  position: relative;
  z-index: 1;
  width: min(100% - 48px, 1440px);
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.home-hero__atmos {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.home-hero__atmos-svg {
  width: 100%;
  height: 100%;
  opacity: 0.55;
}

.home-hero__atmos::before {
  display: none;
}

.home-hero--premium .home-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
  gap: clamp(32px, 4vw, 72px);
  align-items: center;
}

.home-hero--premium .home-hero__copy {
  max-width: 640px;
}

.home-hero--premium .home-hero__visual {
  min-width: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.home-hero--premium + .home-aoc {
  padding-top: clamp(48px, 6vw, 80px);
}

@media (min-width: 1200px) {
  .home-hero__inner {
    width: min(100% - 64px, 1440px);
  }

  .home-hero--premium .home-hero__grid {
    gap: clamp(48px, 5vw, 96px);
  }
}

@media (min-width: 1440px) {
  .home-hero--premium .home-hero__grid {
    grid-template-columns: minmax(480px, 0.95fr) minmax(580px, 1.15fr);
  }

  .op-orbit {
    max-width: 620px;
  }
}

@media (min-width: 1600px) {
  .op-orbit {
    max-width: 820px;
  }
}

.home-hero--premium .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.14em;
  font-size: 0.68rem;
}

.home-hero--premium .eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--elio-success);
  box-shadow: 0 0 10px rgba(46, 229, 157, 0.55);
  flex-shrink: 0;
}

.home-hero--premium .home-hero__title {
  font-size: clamp(2.2rem, 4.8vw, 3.55rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.home-hero--premium .chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  font-size: 0.78rem;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--elio-hairline);
  color: var(--elio-text-muted);
}

.home-hero--premium .chip svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  stroke: var(--elio-primary-bright);
}

/* ---------- OPERATIONAL ORBIT ---------- */
.op-orbit {
  --op-diagram-min: 340px;
  position: relative;
  width: 100%;
  max-width: 560px;
  margin-inline: auto;
}

.op-orbit__diagram {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  min-width: 0;
}


.op-orbit__rings {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  border: 1px dashed rgba(139, 92, 246, 0.22);
  animation: eh-orbit-spin 48s linear infinite;
}

.op-orbit__rings--2 {
  inset: 18%;
  border-style: solid;
  border-color: rgba(139, 92, 246, 0.1);
  animation-duration: 72s;
  animation-direction: reverse;
}

@keyframes eh-orbit-spin { to { transform: rotate(360deg); } }

.op-orbit__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 55%;
  height: 55%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 61, 255, 0.28) 0%, transparent 70%);
  pointer-events: none;
}

.op-orbit__svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.op-orbit__line {
  fill: none;
  stroke: rgba(139, 92, 246, 0.22);
  stroke-width: 1.2;
  stroke-dasharray: 4 6;
  transition: stroke var(--t-base), opacity var(--t-base);
}

.op-orbit__line.is-active {
  stroke: rgba(168, 85, 247, 0.65);
  stroke-width: 1.6;
}

.op-orbit__signal {
  fill: none;
  stroke: var(--elio-primary-bright);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 8 120;
  opacity: 0;
  transition: opacity 0.4s;
}

.op-orbit.is-state-1 .op-orbit__signal--crm,
.op-orbit.is-state-2 .op-orbit__signal--crm,
.op-orbit.is-state-3 .op-orbit__signal--mail,
.op-orbit.is-state-4 .op-orbit__signal--cal,
.op-orbit.is-state-5 .op-orbit__signal--doc,
.op-orbit.is-state-6 .op-orbit__signal--erp { opacity: 0.85; animation: eh-signal-travel 1.2s linear infinite; }

@keyframes eh-signal-travel {
  from { stroke-dashoffset: 120; }
  to { stroke-dashoffset: -20; }
}

.op-orbit__core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 34%;
  aspect-ratio: 1;
  z-index: 3;
}

.op-orbit__core-ring {
  position: absolute;
  inset: -8%;
  border-radius: 50%;
  border: 1.5px solid rgba(168, 85, 247, 0.45);
  animation: eh-core-breathe 4s ease-in-out infinite;
}

@keyframes eh-core-breathe {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.06); opacity: 0.35; }
}

.op-orbit__core-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 40% 35%, rgba(168, 85, 247, 0.45), rgba(102, 51, 153, 0.85));
  border: 1px solid rgba(168, 85, 247, 0.5);
  box-shadow: 0 0 40px rgba(124, 58, 237, 0.35), inset 0 2px 16px rgba(255, 255, 255, 0.08);
}

.op-orbit__core-inner img {
  width: 58%;
  height: auto;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.35));
}

.op-orbit__node {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  min-width: 0;
  background: rgba(13, 9, 24, 0.92);
  border: 1px solid var(--elio-line);
  border-radius: var(--r-md);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: var(--elio-shadow-sm);
  transition: border-color 0.45s, box-shadow 0.45s, transform 0.45s;
}

.op-orbit__node.is-active {
  border-color: rgba(168, 85, 247, 0.55);
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.2);
  transform: translateY(-2px);
}

.op-orbit__node-ico {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: rgba(139, 92, 246, 0.16);
  color: var(--elio-primary-bright);
}

.op-orbit__node-ico svg { width: 16px; height: 16px; }

.op-orbit__node-body { min-width: 0; }
.op-orbit__node-name {
  display: block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--elio-text);
  line-height: 1.2;
}

.op-orbit__node-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.68rem;
  margin-top: 2px;
  color: var(--elio-text-soft);
}

.op-orbit__node-status::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.op-orbit__node-status--ok { color: var(--elio-success); }
.op-orbit__node-status--ok::before { background: var(--elio-success); box-shadow: 0 0 6px rgba(46, 229, 157, 0.6); }

.op-orbit__node-status--info { color: var(--elio-blue); }
.op-orbit__node-status--info::before { background: var(--elio-blue); }

.op-orbit__node-status--wait { color: var(--elio-warning); }
.op-orbit__node-status--wait::before { background: var(--elio-warning); }

/* Nodos del orbit: CRM arriba-centro, Correo izq, Calendario der, ERP abajo-izq, Doc abajo-der */
.op-orbit__node--crm  { top: -2%;  left: 50%; transform: translateX(-50%); }
.op-orbit__node--mail { top: 40%;  left: -6%; }
.op-orbit__node--cal  { top: 40%;  right: -4%; }
.op-orbit__node--erp  { bottom: 4%; left: 0%; }
.op-orbit__node--doc  { bottom: 4%; right: 0%; z-index: 4; }

.op-orbit__line.is-active {
  stroke: rgba(168, 85, 247, 0.68);
  stroke-width: 1.6;
}

/* ---------- AUTONOMY LAYERS (AOC) ---------- */
.home-aoc {
  position: relative;
  padding-block: clamp(56px, 7vw, 96px);
  scroll-margin-top: calc(var(--header-h, 72px) + 16px);
}

.home-aoc__inner { position: relative; }

.home-aoc__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(36px, 5vw, 56px);
}

.home-aoc__head .eyebrow { margin-bottom: 14px; }

.home-aoc__head h2 {
  font-size: clamp(1.85rem, 3.2vw, 2.65rem);
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}

.home-aoc__head p {
  color: var(--elio-text-muted);
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  line-height: 1.65;
}

/* Layout body: layers + supervisión */
.home-aoc__body {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: clamp(24px, 3vw, 40px);
  align-items: start;
  max-width: 1200px;
  margin-inline: auto;
}

.home-aoc__layers {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.home-aoc__layer {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(16px, 3vw, 28px);
  align-items: start;
  padding: clamp(20px, 3vw, 28px) clamp(20px, 3vw, 32px);
  border-radius: var(--r-lg);
  border: 1px solid var(--elio-line);
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.5s, box-shadow 0.5s, opacity 0.5s, background 0.5s;
  opacity: 0.55;
}

.home-aoc__layer.is-active {
  opacity: 1;
}

.home-aoc__layer.is-done {
  opacity: 0.78;
}

.home-aoc__layer--intel.is-active {
  border-color: rgba(139, 61, 255, 0.45);
  background: linear-gradient(135deg, rgba(139, 61, 255, 0.12), rgba(13, 9, 24, 0.6));
  box-shadow: 0 0 40px var(--eh-glow-intel);
}

.home-aoc__layer--action.is-active {
  border-color: rgba(91, 124, 255, 0.4);
  background: linear-gradient(135deg, rgba(91, 124, 255, 0.1), rgba(13, 9, 24, 0.6));
  box-shadow: 0 0 36px var(--eh-glow-action);
}

.home-aoc__layer--control.is-active {
  border-color: rgba(46, 229, 157, 0.35);
  background: linear-gradient(135deg, rgba(46, 229, 157, 0.08), rgba(13, 9, 24, 0.6));
  box-shadow: 0 0 32px var(--eh-glow-control);
}

.home-aoc__layer-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.home-aoc__layer-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  color: #fff;
  border: 1px solid transparent;
  transition: box-shadow 0.5s, transform 0.5s;
}

.home-aoc__layer--intel .home-aoc__layer-num { background: rgba(139, 61, 255, 0.35); border-color: rgba(139, 61, 255, 0.5); }
.home-aoc__layer--action .home-aoc__layer-num { background: rgba(91, 124, 255, 0.3); border-color: rgba(91, 124, 255, 0.45); }
.home-aoc__layer--control .home-aoc__layer-num { background: rgba(46, 229, 157, 0.2); border-color: rgba(46, 229, 157, 0.4); }

.home-aoc__layer.is-active .home-aoc__layer-num { transform: scale(1.06); }

.home-aoc__layer--intel.is-active .home-aoc__layer-num { box-shadow: 0 0 20px var(--eh-glow-intel); }
.home-aoc__layer--action.is-active .home-aoc__layer-num { box-shadow: 0 0 18px var(--eh-glow-action); }
.home-aoc__layer--control.is-active .home-aoc__layer-num { box-shadow: 0 0 16px var(--eh-glow-control); }

.home-aoc__layer-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
}

.home-aoc__layer-icon svg { width: 20px; height: 20px; }

.home-aoc__layer-body h3 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.home-aoc__layer--intel .home-aoc__layer-body h3 { color: var(--elio-primary-bright); }
.home-aoc__layer--action .home-aoc__layer-body h3 { color: var(--elio-blue); }
.home-aoc__layer--control .home-aoc__layer-body h3 { color: var(--elio-success); }

.home-aoc__layer-desc {
  font-size: 0.88rem;
  color: var(--elio-text);
  margin-bottom: 14px;
  line-height: 1.45;
}

.home-aoc__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.home-aoc__chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  padding: 6px 12px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--elio-hairline);
  color: var(--elio-text-muted);
  transition: border-color 0.4s, color 0.4s, background 0.4s;
}

.home-aoc__chip svg { width: 12px; height: 12px; flex-shrink: 0; opacity: 0.7; }

.home-aoc__layer.is-active .home-aoc__chip.is-lit {
  color: var(--elio-text);
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
}

.home-aoc__connector {
  display: flex;
  justify-content: center;
  padding: 6px 0;
  color: var(--elio-text-soft);
}

.home-aoc__connector-line {
  width: 2px;
  height: 28px;
  background: linear-gradient(to bottom, rgba(139, 92, 246, 0.4), rgba(139, 92, 246, 0.08));
  position: relative;
}

.home-aoc__connector-line::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: rgba(139, 92, 246, 0.35);
}

.home-aoc__connector.is-lit .home-aoc__connector-line {
  background: linear-gradient(to bottom, var(--elio-primary-bright), rgba(139, 92, 246, 0.2));
}

/* Panel Supervisión humana */
.home-aoc__supervision {
  position: sticky;
  top: calc(var(--header-h, 72px) + 24px);
  padding: 20px;
  border-radius: var(--r-lg);
  background: rgba(8, 6, 18, 0.94);
  border: 1px solid rgba(139, 92, 246, 0.3);
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.4), 0 0 40px rgba(124, 58, 237, 0.08);
  backdrop-filter: blur(12px);
}

.home-aoc__sup-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--elio-text);
  margin-bottom: 4px;
}

.home-aoc__sup-title svg { width: 14px; height: 14px; stroke: var(--elio-primary-bright); flex-shrink: 0; }

.home-aoc__sup-sub {
  font-size: 0.72rem;
  color: var(--elio-text-muted);
  margin-bottom: 18px;
  line-height: 1.4;
}

.home-aoc__sup-section {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--elio-hairline);
}

.home-aoc__sup-section:last-of-type { border-bottom: none; }

.home-aoc__sup-label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--elio-text-soft);
  margin-bottom: 10px;
}

.home-aoc__sup-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.home-aoc__sup-dot--active { background: var(--elio-primary-bright); box-shadow: 0 0 8px rgba(168, 85, 247, 0.55); }
.home-aoc__sup-dot--warn   { background: var(--elio-warning); box-shadow: 0 0 8px rgba(255, 209, 102, 0.5); }

.home-aoc__sup-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 6px 0;
  font-size: 0.75rem;
  color: var(--elio-text-muted);
  border-bottom: 1px solid var(--elio-hairline);
  transition: color 0.4s;
}

.home-aoc__sup-row:last-child { border-bottom: none; }
.home-aoc__sup-row.is-active  { color: var(--elio-text); }

.home-aoc__sup-badge {
  font-size: 0.6rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--r-pill);
  white-space: nowrap;
}

.home-aoc__sup-badge--done { background: rgba(46, 229, 157, 0.15); color: var(--elio-success); }
.home-aoc__sup-badge--run  { background: rgba(91, 124, 255, 0.18); color: var(--elio-blue); }
.home-aoc__sup-badge--wait { background: rgba(255, 209, 102, 0.12); color: var(--elio-warning); }

.home-aoc__sup-alert {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--r-md);
  background: rgba(255, 209, 102, 0.06);
  border: 1px solid rgba(255, 209, 102, 0.2);
}

.home-aoc__sup-alert svg { width: 16px; height: 16px; flex-shrink: 0; stroke: var(--elio-warning); margin-top: 1px; }

.home-aoc__sup-alert-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--elio-text);
  line-height: 1.2;
}

.home-aoc__sup-alert-sub {
  font-size: 0.65rem;
  color: var(--elio-text-muted);
  margin-top: 2px;
}

.home-aoc__sup-footer {
  font-size: 0.65rem;
  color: var(--elio-text-soft);
  text-align: center;
  margin-top: 12px;
}

.home-aoc__trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(16px, 4vw, 40px);
  margin-top: clamp(28px, 3vw, 40px);
  padding: 16px 24px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--elio-hairline);
  max-width: 1200px;
  margin-inline: auto;
}

.home-aoc__trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--elio-text-muted);
}

.home-aoc__trust svg { width: 14px; height: 14px; stroke: var(--elio-primary-bright); }

/* ---------- PROGRESSIVE PROCESS ---------- */
.home-process {
  padding-block: clamp(56px, 7vw, 96px);
  scroll-margin-top: calc(var(--header-h, 72px) + 16px);
}

.home-process__head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(40px, 5vw, 56px);
}

.home-process__head .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.14em;
  font-size: 0.68rem;
}

.home-process__head .eyebrow::before,
.home-process__head .eyebrow::after {
  content: "";
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.5));
}

.home-process__head .eyebrow::after {
  background: linear-gradient(90deg, rgba(139, 92, 246, 0.5), transparent);
}

.home-process__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.5fr) minmax(0, 0.75fr);
  gap: clamp(20px, 3vw, 36px);
  align-items: start;
}

.home-process__visual-left,
.home-process__hub-side {
  position: sticky;
  top: calc(var(--header-h) + 24px);
}

/* Left context visual */
.home-process__ctx {
  padding: 20px 16px;
  border-radius: var(--r-lg);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--elio-line);
}

.home-process__ctx-title {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--elio-text-soft);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--elio-hairline);
}

.home-process__ctx-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  border-radius: var(--r-md);
  border: 1px solid var(--elio-hairline);
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.4s, background 0.4s;
  margin-bottom: 6px;
}

.home-process__ctx-item--active {
  border-color: rgba(139, 92, 246, 0.35);
  background: rgba(139, 92, 246, 0.06);
}

.home-process__ctx-item.is-active {
  border-color: rgba(139, 92, 246, 0.45);
  background: rgba(139, 92, 246, 0.1);
}

.home-process__ctx-ico {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 9px;
  display: grid;
  place-items: center;
  background: rgba(139, 92, 246, 0.14);
}

.home-process__ctx-ico svg { width: 16px; height: 16px; stroke: var(--elio-primary-bright); }

.home-process__ctx-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--elio-text);
  line-height: 1.2;
  margin-bottom: 3px;
}

.home-process__ctx-desc {
  font-size: 0.68rem;
  color: var(--elio-text-muted);
  line-height: 1.45;
}

.home-process__ctx-arrow {
  text-align: center;
  color: rgba(139, 92, 246, 0.5);
  font-size: 0.8rem;
  line-height: 1;
  margin: 2px 0;
}

.home-process__ctx-footer {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--elio-hairline);
  font-size: 0.65rem;
  color: var(--elio-text-soft);
}

.home-process__ctx-footer svg { width: 12px; height: 12px; stroke: var(--elio-primary-bright); flex-shrink: 0; }

/* Step cards */
.home-process__steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.home-process__step {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px 20px;
  border-radius: var(--r-lg);
  border: 1px solid var(--elio-line);
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.45s, box-shadow 0.45s, background 0.45s, opacity 0.45s;
  opacity: 0.5;
}

.home-process__step.is-active {
  opacity: 1;
  border-color: rgba(139, 92, 246, 0.45);
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(13, 9, 24, 0.5));
  box-shadow: 0 0 28px rgba(124, 58, 237, 0.15);
}

.home-process__step.is-done {
  opacity: 0.82;
  border-color: rgba(46, 229, 157, 0.2);
}

.home-process__step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--elio-primary-bright);
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(139, 92, 246, 0.3);
  flex-shrink: 0;
  transition: background 0.4s, color 0.4s, border-color 0.4s;
}

.home-process__step.is-active .home-process__step-num {
  background: rgba(139, 92, 246, 0.28);
  box-shadow: 0 0 16px rgba(124, 58, 237, 0.3);
}

.home-process__step.is-done .home-process__step-num {
  color: var(--elio-success);
  border-color: rgba(46, 229, 157, 0.4);
  background: rgba(46, 229, 157, 0.1);
}

.home-process__step-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--elio-hairline);
  flex-shrink: 0;
}

.home-process__step-icon svg { width: 18px; height: 18px; stroke: var(--elio-primary-bright); }

.home-process__step-body h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--elio-text);
}

.home-process__step-body p {
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--elio-text-muted);
}

.home-process__connector {
  display: flex;
  justify-content: center;
  height: 20px;
  position: relative;
}

.home-process__connector::before {
  content: "";
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, rgba(139, 92, 246, 0.35), rgba(139, 92, 246, 0.08));
  transition: background 0.4s;
}

.home-process__connector.is-lit::before {
  background: linear-gradient(to bottom, var(--elio-primary-bright), rgba(139, 92, 246, 0.25));
}

/* Right hub — con logo oficial */
.home-process__hub {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 16px 12px;
}

.home-process__hub-orbit {
  position: relative;
  width: 180px;
  height: 180px;
  display: grid;
  place-items: center;
}

.home-process__hub-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(139, 92, 246, 0.25);
  animation: eh-orbit-spin 20s linear infinite;
}

.home-process__hub-ring--2 {
  inset: 12%;
  border-color: rgba(139, 92, 246, 0.15);
  animation-duration: 14s;
  animation-direction: reverse;
}

/* Shields decorativos en órbita */
.home-process__hub-shield {
  position: absolute;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(13, 9, 24, 0.95);
  border: 1px solid rgba(46, 229, 157, 0.35);
}

.home-process__hub-shield svg { width: 14px; height: 14px; stroke: var(--elio-success); }

.home-process__hub-shield--t  { top: 2px; left: 50%; transform: translateX(-50%); }
.home-process__hub-shield--r  { top: 50%; right: 2px; transform: translateY(-50%); }
.home-process__hub-shield--b  { bottom: 2px; left: 50%; transform: translateX(-50%); stroke: var(--elio-warning); }
.home-process__hub-shield--b svg { stroke: var(--elio-warning); }

.home-process__hub-core {
  position: relative;
  z-index: 2;
  width: 108px;
  height: 108px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: radial-gradient(circle at 40% 35%, rgba(168, 85, 247, 0.5), rgba(80, 20, 160, 0.9));
  border: 1px solid rgba(168, 85, 247, 0.45);
  box-shadow: 0 0 32px rgba(124, 58, 237, 0.35);
  transition: box-shadow 0.5s;
  gap: 2px;
}

.home-process__hub-core img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.5));
}

.home-process__hub-core.is-pulse {
  box-shadow: 0 0 48px rgba(46, 229, 157, 0.35), 0 0 32px rgba(124, 58, 237, 0.35);
}

.home-process__hub-name {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
}

.home-process__hub-tagline {
  font-size: 0.5rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.3;
}

/* Card inferior del hub */
.home-process__hub-card {
  width: 100%;
  padding: 14px;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(46, 229, 157, 0.18);
}

.home-process__hub-card-title {
  font-size: 0.72rem;
  color: var(--elio-text-muted);
  margin-bottom: 10px;
  line-height: 1.4;
}

.home-process__hub-checks {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 10px;
}

.home-process__hub-checks span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  color: var(--elio-text-muted);
}

.home-process__hub-checks svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  stroke: var(--elio-success);
}

.home-process__hub-result {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--elio-success);
  padding: 6px 10px;
  border-radius: var(--r-pill);
  background: rgba(46, 229, 157, 0.1);
  border: 1px solid rgba(46, 229, 157, 0.25);
  text-align: center;
}

.home-process__footnote {
  text-align: center;
  margin-top: clamp(28px, 4vw, 40px);
  font-size: 0.85rem;
  font-style: italic;
  color: var(--elio-text-soft);
}

/* ---------- ACCESS HUB DASHBOARD ---------- */
.home-hub {
  position: relative;
  padding-block: clamp(56px, 7vw, 96px);
  scroll-margin-top: calc(var(--header-h, 72px) + 16px);
}

.home-hub__inner { position: relative; }

.home-hub__head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto clamp(36px, 5vw, 56px);
}

.home-hub__head .eyebrow { margin-bottom: 14px; }

.home-hub__head h2 {
  font-size: clamp(1.85rem, 3.2vw, 2.65rem);
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}

.home-hub__head p {
  color: var(--elio-text-muted);
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  line-height: 1.65;
}

.home-hub__dashboard {
  display: grid;
  grid-template-columns: 220px 32px 1fr 32px 240px;
  gap: 0 8px;
  align-items: center;
  max-width: 1100px;
  margin-inline: auto;
}

/* Columnas */
.home-hub__col {
  padding: 20px 16px;
  border-radius: var(--r-lg);
  background: rgba(13, 9, 24, 0.85);
  border: 1px solid var(--elio-line);
  backdrop-filter: blur(8px);
  transition: border-color 0.4s;
}

.home-hub__col--sources { align-self: stretch; }
.home-hub__col--core { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.home-hub__col--ops { align-self: stretch; }

.home-hub__col-title {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--elio-text);
  margin-bottom: 6px;
}

.home-hub__col-note {
  font-size: 0.62rem;
  color: var(--elio-text-soft);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--elio-hairline);
  font-style: italic;
}

/* Fuentes */
.home-hub__sources {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.home-hub__source {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: var(--r-md);
  border: 1px solid var(--elio-hairline);
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.4s, background 0.4s;
}

.home-hub__source.is-active {
  border-color: rgba(139, 92, 246, 0.4);
  background: rgba(139, 92, 246, 0.06);
}

/* Estado enviando señal */
.home-hub__source.is-sending {
  border-color: rgba(168, 85, 247, 0.7);
  background: rgba(139, 92, 246, 0.12);
  box-shadow: 0 0 14px rgba(124, 58, 237, 0.18);
  transform: translateX(2px);
}

/* Estado verificado/autorizado */
.home-hub__source.is-verified {
  border-color: rgba(46, 229, 157, 0.45);
  background: rgba(46, 229, 157, 0.05);
  transform: none;
}

.home-hub__source-ico {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: rgba(139, 92, 246, 0.12);
}

.home-hub__source-ico svg { width: 14px; height: 14px; stroke: var(--elio-primary-bright); }

.home-hub__source-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.home-hub__source-name {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--elio-text);
}

.home-hub__source-badge {
  font-size: 0.6rem;
  font-weight: 600;
}

.home-hub__source-badge--ok   { color: var(--elio-success); }
.home-hub__source-badge--info { color: var(--elio-blue); }
.home-hub__source-badge--wait { color: var(--elio-warning); }
.home-hub__source-badge--off  { color: var(--elio-text-soft); }

/* SVG conectores */
.home-hub__lines {
  pointer-events: none;
  overflow: visible;
}

.hub-connector {
  fill: none;
  stroke: rgba(139, 92, 246, 0.18);
  stroke-width: 1;
  transition: stroke 0.4s;
}

.hub-connector.is-active {
  stroke: rgba(168, 85, 247, 0.4);
}

/* ── Señales animadas (paths SVG) ── */
.hub-signal {
  fill: none;
  stroke: var(--elio-primary-bright);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 7 240;
  stroke-dashoffset: 240;
  opacity: 0;
  pointer-events: none;
}

.hub-signal.is-active {
  animation: hub-sig-travel 1.1s cubic-bezier(0.4, 0, 0.55, 1) forwards;
}

.hub-signal.is-return {
  stroke: var(--elio-success);
  animation: hub-sig-travel 1.2s cubic-bezier(0.4, 0, 0.55, 1) forwards;
}

@keyframes hub-sig-travel {
  0%   { stroke-dashoffset: 240; opacity: 0.95; }
  80%  { stroke-dashoffset: -12; opacity: 0.8; }
  100% { stroke-dashoffset: -30; opacity: 0; }
}

/* Núcleo central */
.home-hub__nucleus {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.home-hub__nucleus-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--elio-text-soft);
}

.home-hub__nucleus-dot {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.65rem;
  color: var(--elio-text-muted);
}

.home-hub__nucleus-dot-inner {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--elio-primary-bright);
  animation: eh-hub-blink 2s ease-in-out infinite;
}

@keyframes eh-hub-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.home-hub__nucleus-orbit {
  position: relative;
  width: 200px;
  height: 200px;
  display: grid;
  place-items: center;
}

.home-hub__nucleus-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px dashed rgba(139, 92, 246, 0.25);
  animation: eh-orbit-spin 36s linear infinite;
}

.home-hub__nucleus-ring--2 {
  inset: 14%;
  border-style: solid;
  border-color: rgba(139, 92, 246, 0.12);
  animation-duration: 24s;
  animation-direction: reverse;
}

/* Etiquetas alrededor del núcleo */
.home-hub__nucleus-lbl {
  position: absolute;
  font-size: 0.58rem;
  font-weight: 600;
  color: var(--elio-text-soft);
  white-space: nowrap;
  padding: 3px 7px;
  border-radius: var(--r-pill);
  background: rgba(139, 92, 246, 0.08);
  border: 1px solid rgba(139, 92, 246, 0.15);
  transition: background 0.45s, border-color 0.45s, color 0.45s, box-shadow 0.45s;
}

.home-hub__nucleus-lbl.is-active {
  background: rgba(139, 92, 246, 0.22);
  border-color: rgba(168, 85, 247, 0.55);
  color: var(--elio-text);
  box-shadow: 0 0 12px rgba(139, 92, 246, 0.3);
}

.home-hub__nucleus-lbl.is-done {
  background: rgba(46, 229, 157, 0.07);
  border-color: rgba(46, 229, 157, 0.25);
  color: var(--elio-text-muted);
}

.home-hub__nucleus-lbl--t  { top: 0; left: 50%; transform: translateX(-50%); }
.home-hub__nucleus-lbl--l  { top: 50%; left: 0; transform: translateY(-50%); }
.home-hub__nucleus-lbl--r  { top: 50%; right: 0; transform: translateY(-50%); }
.home-hub__nucleus-lbl--bl { bottom: 12%; left: 6%; }
.home-hub__nucleus-lbl--br { bottom: 12%; right: 6%; }

.home-hub__nucleus-core {
  position: relative;
  z-index: 2;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 40% 35%, rgba(168, 85, 247, 0.5), rgba(80, 20, 160, 0.9));
  border: 1px solid rgba(168, 85, 247, 0.45);
  box-shadow: 0 0 40px rgba(124, 58, 237, 0.35);
  /* Añadir transición para el estado activo */
  transition: transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.55s ease;
  will-change: transform, box-shadow;
}

.home-hub__nucleus-core.is-active {
  transform: scale(1.025);
  box-shadow: 0 0 60px rgba(124, 58, 237, 0.55), 0 0 28px rgba(168, 85, 247, 0.3);
}

.home-hub__nucleus-core img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}

/* Flujo inferior */
.home-hub__flow {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  padding: 10px 12px;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--elio-hairline);
  width: 100%;
}

.home-hub__flow-step {
  font-size: 0.65rem;
  color: var(--elio-text-muted);
  padding: 4px 8px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--elio-hairline);
}

.home-hub__flow-arrow {
  font-size: 0.65rem;
  color: var(--elio-primary-bright);
  opacity: 0.6;
}

/* Columna derecha — Ops cards */
.home-hub__ops-cards {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.home-hub__ops-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--r-md);
  border: 1px solid var(--elio-hairline);
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.4s, background 0.4s, box-shadow 0.4s;
}

.home-hub__ops-card.is-active {
  border-color: rgba(139, 92, 246, 0.4);
  background: rgba(139, 92, 246, 0.06);
  box-shadow: 0 0 16px rgba(124, 58, 237, 0.1);
}

/* Completado — se mantiene visible en menor intensidad */
.home-hub__ops-card.is-done {
  border-color: rgba(46, 229, 157, 0.22);
  background: rgba(46, 229, 157, 0.03);
  opacity: 0.82;
}

/* En espera (antes de ser activada) */
.home-hub__ops-card.is-pending {
  opacity: 0.42;
}

.home-hub__ops-card-ico {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 9px;
  display: grid;
  place-items: center;
  background: rgba(139, 92, 246, 0.12);
}

.home-hub__ops-card-ico svg { width: 16px; height: 16px; stroke: var(--elio-primary-bright); }

.home-hub__ops-card-body {
  flex: 1;
  min-width: 0;
}

.home-hub__ops-card-title {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--elio-text);
  line-height: 1.2;
}

.home-hub__ops-card-sub {
  display: block;
  font-size: 0.62rem;
  color: var(--elio-text-muted);
  margin-top: 2px;
}

.home-hub__ops-badge {
  font-size: 0.6rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--r-pill);
  white-space: nowrap;
  flex-shrink: 0;
}

.home-hub__ops-badge--ok   { background: rgba(46, 229, 157, 0.15); color: var(--elio-success); }
.home-hub__ops-badge--wait { background: rgba(255, 209, 102, 0.12); color: var(--elio-warning); }
.home-hub__ops-badge--run  { background: rgba(139, 92, 246, 0.2); color: var(--elio-primary-bright); }

.home-hub__ops-note {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 12px;
  font-size: 0.68rem;
  color: var(--elio-text-soft);
  padding: 8px 10px;
  border-radius: var(--r-md);
  background: rgba(46, 229, 157, 0.05);
  border: 1px solid rgba(46, 229, 157, 0.15);
}

.home-hub__ops-note svg { width: 14px; height: 14px; flex-shrink: 0; stroke: var(--elio-success); }

/* Principios */
.home-hub__principles {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(10px, 2vw, 20px);
  margin-top: clamp(28px, 4vw, 44px);
  padding: 16px 24px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--elio-hairline);
  max-width: 900px;
  margin-inline: auto;
}

.home-hub__principle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.75rem;
  color: var(--elio-text-muted);
  transition: color 0.4s;
}

.home-hub__principle svg {
  width: 14px;
  height: 14px;
  stroke: var(--elio-primary-bright);
  flex-shrink: 0;
  transition: filter 0.4s;
}

/* Principio activo — barrido de izquierda a derecha */
.home-hub__principle.is-active {
  color: var(--elio-text);
}

.home-hub__principle.is-active svg {
  stroke: var(--elio-success);
  filter: drop-shadow(0 0 4px rgba(46, 229, 157, 0.5));
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1100px) {
  .home-process__layout {
    grid-template-columns: 1fr;
  }

  .home-process__visual-left,
  .home-process__hub-side {
    position: static;
    display: none;
  }

  .op-orbit {
    --op-diagram-min: 280px;
    max-width: 100%;
  }

  .home-aoc__body {
    grid-template-columns: 1fr;
  }

  .home-aoc__supervision {
    position: static;
    max-width: 480px;
    margin-inline: auto;
  }

  .home-hub__dashboard {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .home-hub__lines { display: none; }

  .home-hub__nucleus-orbit {
    width: 160px;
    height: 160px;
  }

  .home-hub__nucleus-core {
    width: 80px;
    height: 80px;
  }

  .home-hub__nucleus-core img { width: 50px; height: 50px; }
}

@media (max-width: 900px) {
  .home-hero.home-hero--premium {
    padding-top: clamp(48px, 5vh, 72px);
    padding-bottom: clamp(48px, 4vh, 72px);
  }

  .home-hero--premium .home-hero__grid {
    grid-template-columns: 1fr;
  }

  .home-hero--premium .home-hero__copy {
    text-align: center;
    margin-inline: auto;
  }

  .home-hero--premium .home-hero__actions,
  .home-hero--premium .home-hero__caps {
    justify-content: center;
  }

  .op-orbit {
    max-width: 380px;
    margin-top: 20px;
  }

  /* En móvil ocultar ERP y mantener los demás */
  .op-orbit__node--erp { display: none; }

  .home-aoc__layer {
    grid-template-columns: 1fr;
  }

  .home-aoc__layer-badge {
    flex-direction: row;
  }
}

@media (max-width: 680px) {
  .home-hero--premium .chip {
    font-size: 0.72rem;
    padding: 7px 11px;
  }

  .op-orbit__node-body .op-orbit__node-status {
    display: none;
  }

  /* En móvil pequeño reducir nodos visibles */
  .op-orbit__node--cal,
  .op-orbit__node--erp { display: none; }

  .home-process__step {
    grid-template-columns: auto 1fr;
  }

  .home-process__step-icon { display: none; }

  .home-hub__principles {
    gap: 8px;
    padding: 12px 16px;
  }
}

/* ---------- REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
  .op-orbit__rings,
  .op-orbit__rings--2,
  .op-orbit__core-ring,
  .home-process__hub-ring,
  .home-process__hub-ring--2,
  .home-hub__nucleus-ring,
  .home-hub__nucleus-ring--2 {
    animation: none !important;
  }

  .home-hub__nucleus-dot-inner { animation: none !important; }

  .op-orbit__signal { animation: none !important; opacity: 0.5 !important; }

  .home-aoc__layer,
  .home-process__step {
    opacity: 1 !important;
  }

  .home-aoc__layer.is-active,
  .home-process__step.is-active {
    border-color: rgba(139, 92, 246, 0.35);
  }

  .home-aoc__connector.is-lit .home-aoc__connector-line,
  .home-process__connector.is-lit::before {
    background: linear-gradient(to bottom, rgba(139, 92, 246, 0.45), rgba(139, 92, 246, 0.15));
  }

  .home-process__hub-core.is-pulse {
    box-shadow: 0 0 32px rgba(124, 58, 237, 0.35);
  }

  .home-hub__ops-card   { transition: none; }
  .home-hub__source     { transition: none; }
  .home-hub__nucleus-core { transition: none; }
  .home-hub__nucleus-lbl  { transition: none; }
  .home-hub__principle    { transition: none; }

  /* Detener señales SVG completamente */
  .hub-signal { animation: none !important; opacity: 0 !important; }
}
