@charset "UTF-8";
/* ============================================================
 * Plataforma Doc -- Home Unificado v3.8.1
 * Spec: docs/superpowers/specs/2026-04-14-home-unificado-design.md
 * ASCII-only CSS. Entities live in PHP/HTML.
 * v3.8.1: hero radar + textures (grain/dot-grid/glow) + orbit mobile 3-rings + testimonials solid
 * ============================================================ */

:root {
  --hu-void:  #040609;
  --hu-dark:  #0D1117;
  --hu-navy:  #071428;
  --hu-light: #F8F9FC;
  --hu-white: #ffffff;
  --hu-ink:   #0D1117;

  --hu-teal:  #00BFA5;
  --hu-blue:  #3B72AD;

  --hu-teal-60: rgba(0,191,165,.60);
  --hu-teal-30: rgba(0,191,165,.30);
  --hu-teal-12: rgba(0,191,165,.12);

  --hu-w90: rgba(255,255,255,.90);
  --hu-w70: rgba(255,255,255,.70);
  --hu-w50: rgba(255,255,255,.50);
  --hu-w30: rgba(255,255,255,.30);
  --hu-w12: rgba(255,255,255,.12);
  --hu-w06: rgba(255,255,255,.06);

  --hu-ink70: rgba(13,17,23,.70);
  --hu-ink50: rgba(13,17,23,.50);
  --hu-ink12: rgba(13,17,23,.12);

  --hu-fd: 'Bricolage Grotesque', system-ui, sans-serif;
  --hu-fb: 'Figtree', system-ui, sans-serif;

  --hu-pad-x: clamp(20px, 5vw, 80px);
  --hu-pad-y: clamp(72px, 9vw, 140px);
}

/* ============================================================
 * RESETS + UTILITIES
 * ============================================================ */
.hu { font-family: var(--hu-fb); color: var(--hu-ink); background: var(--hu-light); -webkit-font-smoothing: antialiased; }
.hu * { box-sizing: border-box; }
.hu section { position: relative; padding: var(--hu-pad-y) var(--hu-pad-x); overflow: hidden; }
.hu .hu-sxn { max-width: 1280px; margin: 0 auto; position: relative; }

.hu section.hu-dark  { background: var(--hu-dark);  color: var(--hu-w90); }
.hu section.hu-void  { background: var(--hu-void);  color: var(--hu-w90); }
.hu section.hu-navy  { background: linear-gradient(180deg, var(--hu-navy) 0%, #0a1a33 100%); color: var(--hu-w90); }
.hu section.hu-light { background: var(--hu-light); color: var(--hu-ink); }
.hu section.hu-white { background: var(--hu-white); color: var(--hu-ink); }

.hu h1, .hu h2, .hu h3 {
  font-family: var(--hu-fd); font-optical-sizing: auto;
  font-weight: 700; line-height: 1.05; letter-spacing: -.025em;
  margin: 0 0 .5em;
}
.hu p { line-height: 1.55; margin: 0 0 1em; }

.hu-lbl {
  display: inline-block; font-family: var(--hu-fb);
  font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--hu-ink70); margin-bottom: 18px;
  padding: 6px 12px; border: 1px solid var(--hu-ink12); border-radius: 999px;
}
.hu section.hu-dark .hu-lbl, .hu section.hu-void .hu-lbl, .hu section.hu-navy .hu-lbl {
  color: var(--hu-w70); border-color: var(--hu-w12);
}
.hu-lbl-teal { color: var(--hu-teal) !important; border-color: var(--hu-teal-30) !important; }
.hu-lbl-blue { color: var(--hu-blue) !important; border-color: rgba(59,114,173,.35) !important; }

.hu-cta {
  display: inline-flex; align-items: center; gap: .55em;
  padding: 14px 26px; border-radius: 999px;
  font-family: var(--hu-fb); font-weight: 700; font-size: .98rem;
  text-decoration: none; cursor: pointer; border: 0;
  transition: transform .25s ease, background-color .25s ease, color .25s ease, box-shadow .25s ease;
}
.hu-cta-teal { background: var(--hu-teal); color: var(--hu-void); }
.hu-cta-teal:hover { transform: translateY(-1px); box-shadow: 0 18px 38px -16px var(--hu-teal-60); }
.hu-cta-line { background: transparent; color: var(--hu-ink); border-bottom: 2px solid var(--hu-teal); border-radius: 0; padding: 12px 0; }
.hu-cta-line:hover { color: var(--hu-teal); }
.hu-cta-lg { padding: 18px 34px; font-size: 1.05rem; }

.hu-reveal { opacity: 0; transform: translateY(14px); transition: opacity .7s ease-out, transform .7s ease-out; }
.hu-reveal.is-in { opacity: 1; transform: translateY(0); }

.hu :focus-visible { outline: 2px solid var(--hu-teal); outline-offset: 2px; border-radius: 4px; }

/* ============================================================
 * 02  HERO + MINI-DIAGNOSTICO
 * ============================================================ */
.hu-hero { padding-top: clamp(96px, 11vw, 160px); padding-bottom: clamp(72px, 8vw, 120px); }
.hu-hero-inner { max-width: 1320px; margin: 0 auto; display: grid; grid-template-columns: 52% 48%; gap: clamp(28px, 4vw, 64px); align-items: center; position: relative; z-index: 2; }
.hu-hero-l { max-width: 620px; }

.hu-pills-tag { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.hu-pills-tag span {
  font-family: var(--hu-fb); font-size: .68rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--hu-w70); padding: 5px 10px; border: 1px solid var(--hu-w12); border-radius: 999px;
  animation: hu-pill-cycle 8s linear infinite;
  opacity: .58;
}
.hu-pills-tag span:nth-child(1) { animation-delay: 0s; }
.hu-pills-tag span:nth-child(2) { animation-delay: 1.6s; }
.hu-pills-tag span:nth-child(3) { animation-delay: 3.2s; }
.hu-pills-tag span:nth-child(4) { animation-delay: 4.8s; }
.hu-pills-tag span:nth-child(5) { animation-delay: 6.4s; }
@keyframes hu-pill-cycle {
  0%, 18%, 100% { color: var(--hu-w70); border-color: var(--hu-w12); opacity: .58; }
  6%, 12% { color: var(--hu-teal); border-color: var(--hu-teal-30); opacity: 1; }
}

.hu-hero-hl { font-size: clamp(2.4rem, 5.4vw, 4.6rem); color: var(--hu-white); margin-bottom: 18px; font-weight: 700; }
.hu-hero-hl span { color: var(--hu-teal); display: inline-block; }
.hu-hero-sub { font-size: clamp(1rem, 1.4vw, 1.18rem); color: var(--hu-w70); max-width: 520px; margin-bottom: 36px; }

.hu-diag { position: relative; padding: 22px 22px 26px; background: rgba(255,255,255,.025); border: 1px solid var(--hu-w06); border-radius: 14px; backdrop-filter: blur(6px); }
.hu-diag-step { display: none; }
.hu-diag-step.is-visible { display: block; animation: hu-fade-up .35s ease-out forwards; }
@keyframes hu-fade-up { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.hu-diag-q { font-family: var(--hu-fd); font-size: 1.05rem; color: var(--hu-w90); margin-bottom: 12px; font-weight: 600; }
.hu-diag-num { display: inline-block; font-size: .7rem; color: var(--hu-teal); letter-spacing: .12em; margin-right: 8px; }
.hu-diag-opts { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 6px; }
.hu-diag-opts button {
  font-family: var(--hu-fb); font-size: .92rem; font-weight: 500;
  background: transparent; color: var(--hu-w90);
  border: 1px solid var(--hu-w12); padding: 9px 16px; border-radius: 999px; cursor: pointer;
  transition: border-color .2s ease, background .2s ease, color .2s ease;
}
.hu-diag-opts button:hover { border-color: var(--hu-teal); color: var(--hu-teal); }
.hu-diag-opts button.is-on { background: var(--hu-teal); color: var(--hu-void); border-color: var(--hu-teal); }

.hu-diag-scanner { display: none; position: absolute; left: 22px; right: 22px; top: 22px; bottom: 22px; pointer-events: none; }
.hu-diag.is-scanning .hu-diag-scanner { display: block; }
.hu-diag.is-scanning .hu-diag-step { opacity: .25; pointer-events: none; }
.hu-diag-scanner span {
  position: absolute; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--hu-teal), transparent);
  opacity: 0;
  animation: hu-scan 1.8s ease-in-out forwards;
}
.hu-diag-scanner span:nth-child(1) { top: 22%; animation-delay: 0s; }
.hu-diag-scanner span:nth-child(2) { top: 50%; animation-delay: .25s; }
.hu-diag-scanner span:nth-child(3) { top: 78%; animation-delay: .5s; }
@keyframes hu-scan {
  0% { transform: translateX(-100%); opacity: 0; }
  20% { opacity: .8; }
  60% { opacity: .8; }
  100% { transform: translateX(100%); opacity: 0; }
}

.hu-diag-result { display: none; margin-top: 14px; padding-top: 18px; border-top: 1px solid var(--hu-w12); }
.hu-diag.is-ready .hu-diag-step { display: none; }
.hu-diag.is-ready .hu-diag-result { display: block; animation: hu-fade-up .55s ease-out forwards; }
.hu-diag-label { display: inline-block; font-family: var(--hu-fd); font-size: .82rem; letter-spacing: .04em; color: var(--hu-teal); padding: 5px 12px; border: 1px solid var(--hu-teal-30); border-radius: 999px; margin-bottom: 12px; }
.hu-diag-copy { color: var(--hu-w70); font-size: .98rem; line-height: 1.55; margin-bottom: 18px; }

.hu-hero-r { position: relative; min-height: 460px; display: flex; align-items: center; justify-content: center; }

/* ---- Hero RADAR diagnostico (v3.8.1) ---- */
.hu-radar {
  position: relative; width: 420px; height: 420px; max-width: 100%;
  display: flex; align-items: center; justify-content: center;
}
.hu-radar-cap {
  position: absolute; top: -8px; left: 50%; transform: translateX(-50%);
  font-family: var(--hu-fb); font-size: .68rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--hu-teal); padding: 4px 12px; border: 1px solid var(--hu-teal-30); border-radius: 999px;
  background: rgba(4,6,9,.7); white-space: nowrap;
}
.hu-radar-svg {
  width: 92%; height: 92%;
  filter: drop-shadow(0 0 28px rgba(0,191,165,.18));
  overflow: visible;
}
.hu-radar-grid { fill: none; stroke: rgba(255,255,255,.06); stroke-width: 1; vector-effect: non-scaling-stroke; }
.hu-radar-axis { stroke: rgba(255,255,255,.10); stroke-width: 1; vector-effect: non-scaling-stroke; }
.hu-radar-shape {
  fill: rgba(0,191,165,.10);
  stroke: var(--hu-teal); stroke-width: 1.6; stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
  stroke-dasharray: 600; stroke-dashoffset: 600;
  opacity: .35;
  transition: stroke-dashoffset 1.6s ease-out, opacity .9s ease-out;
}
.hu-radar.is-on .hu-radar-shape { stroke-dashoffset: 0; opacity: 1; animation: hu-radar-pulse 4.8s ease-in-out infinite 1.8s; }
@keyframes hu-radar-pulse { 0%,100% { filter: drop-shadow(0 0 6px rgba(0,191,165,.3)); } 50% { filter: drop-shadow(0 0 14px rgba(0,191,165,.55)); } }

.hu-radar-vert { cursor: pointer; transform-box: fill-box; transform-origin: center; transition: transform .25s ease, filter .25s ease; }
.hu-radar-vert circle { fill: var(--hu-teal); opacity: 0; transition: opacity .5s ease; }
.hu-radar.is-on .hu-rv-1 circle { opacity: 1; transition-delay: 1.5s; }
.hu-radar.is-on .hu-rv-2 circle { opacity: 1; transition-delay: 1.65s; }
.hu-radar.is-on .hu-rv-3 circle { opacity: 1; transition-delay: 1.8s; }
.hu-radar.is-on .hu-rv-4 circle { opacity: 1; transition-delay: 1.95s; }
.hu-radar.is-on .hu-rv-5 circle { opacity: 1; transition-delay: 2.1s; }
.hu-radar-vert:hover, .hu-radar-vert.is-hot { transform: scale(1.6); filter: drop-shadow(0 0 10px var(--hu-teal)); }

.hu-radar-lbl {
  position: absolute; pointer-events: none;
  font-family: var(--hu-fb); font-size: .74rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--hu-w70); white-space: nowrap;
  opacity: 0; transition: opacity .55s ease, color .25s ease;
}
.hu-radar.is-on .hu-radar-lbl { opacity: .92; transition-delay: 1.7s; }
.hu-rl-1 { top: 6%; left: 50%; transform: translateX(-50%); }
.hu-rl-2 { top: 30%; right: -2%; }
.hu-rl-3 { bottom: 18%; right: 6%; }
.hu-rl-4 { bottom: 18%; left: 6%; }
.hu-rl-5 { top: 30%; left: -2%; }

.hu-radar-tip {
  position: absolute; pointer-events: none;
  padding: 11px 14px;
  background: rgba(4,6,9,.94); border: 1px solid var(--hu-teal-30); border-radius: 8px;
  color: var(--hu-w90); max-width: 220px; min-width: 170px;
  opacity: 0; transform: translate(-50%, calc(-100% - 12px));
  transition: opacity .25s ease;
  z-index: 10;
}
.hu-radar-tip.is-on { opacity: 1; }
.hu-radar-tip strong { display: block; color: var(--hu-teal); margin-bottom: 6px; font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; }
.hu-radar-tip span { display: block; font-size: .82rem; line-height: 1.4; color: var(--hu-w90); }

.hu-radar-foot {
  position: absolute; bottom: -34px; left: 50%; transform: translateX(-50%);
  font-family: var(--hu-fb); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--hu-w50); display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
}
.hu-radar-dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: var(--hu-teal); animation: hu-radar-blink 2s ease-in-out infinite; }
@keyframes hu-radar-blink { 0%,100% { opacity: .45; transform: scale(.85); } 50% { opacity: 1; transform: scale(1.15); box-shadow: 0 0 10px var(--hu-teal); } }

/* §03 sticky bar removida en v3.8.3 -- contenido movido a §7 Orbit actions */

/* ============================================================
 * 04  STATS
 * ============================================================ */
.hu-stats-hl { font-size: clamp(1.6rem, 3vw, 2.6rem); margin-bottom: 48px; max-width: 760px; }
.hu-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.hu-stat { padding: 28px 22px; border-top: 2px solid var(--hu-ink12); transition: border-color .4s ease, transform .4s ease; }
.hu-stat.is-flash { border-top-color: var(--hu-teal); }
.hu-stat-n { display: block; font-family: var(--hu-fd); font-weight: 800; font-size: clamp(2.4rem, 4.6vw, 3.8rem); color: var(--hu-ink); line-height: 1; letter-spacing: -.04em; margin-bottom: 10px; }
.hu-stat-l { display: block; font-size: .92rem; color: var(--hu-ink70); line-height: 1.4; }

/* ============================================================
 * 05  PROFILES
 * ============================================================ */
.hu-profiles-hl { font-size: clamp(1.8rem, 3.4vw, 3rem); max-width: 720px; margin-bottom: 56px; }
.hu-profiles-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1px; background: var(--hu-ink12); border-top: 1px solid var(--hu-ink12); border-bottom: 1px solid var(--hu-ink12); }
.hu-profile {
  background: var(--hu-white); padding: 36px 28px 32px;
  display: flex; flex-direction: column; align-items: flex-start;
  position: relative; cursor: pointer;
  border-top: 3px solid transparent; transition: border-color .35s ease, background .35s ease;
}
.hu-profile:hover { border-top-color: var(--hu-blue); background: #fafbfd; }
.hu-profile-tag { font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--hu-blue); margin-bottom: 14px; }
.hu-profile-t { font-family: var(--hu-fd); font-size: clamp(1.3rem, 2.1vw, 1.7rem); margin-bottom: 12px; }
.hu-profile-d { color: var(--hu-ink70); margin-bottom: 14px; font-size: .98rem; }
.hu-profile-more { max-height: 0; overflow: hidden; opacity: 0; transition: max-height .35s ease, opacity .35s ease, margin .35s ease; color: var(--hu-ink); font-size: .92rem; line-height: 1.5; padding: 0; margin: 0; border-left: 2px solid var(--hu-blue); padding-left: 12px; }
.hu-profile:hover .hu-profile-more { max-height: 200px; opacity: 1; margin-bottom: 18px; }
.hu-profile-cta { font-family: var(--hu-fb); font-weight: 600; font-size: .95rem; background: transparent; color: var(--hu-ink); border: 0; padding: 0; cursor: pointer; margin-top: auto; transition: color .25s ease; }
.hu-profile-cta:hover { color: var(--hu-blue); }

/* §5 -- "No soy ninguno" subtle text button */
.hu-profiles-noneof {
  margin-top: 32px;
  padding: 18px 22px;
  background: rgba(13,17,23,.04);
  border: 1px dashed var(--hu-ink12);
  border-radius: 12px;
  text-align: center;
}
.hu-noneof-btn {
  background: transparent; border: 0; padding: 0; cursor: pointer;
  font-family: var(--hu-fb); font-weight: 500; font-size: .95rem;
  color: var(--hu-ink70);
  display: inline-flex; align-items: center; gap: 8px;
  transition: color .25s ease, gap .25s ease;
}
.hu-noneof-btn:hover { color: var(--hu-blue); gap: 12px; }

/* ============================================================
 * 06  PAIN
 * ============================================================ */
.hu-pain-hl { font-size: clamp(1.8rem, 3.4vw, 3rem); color: var(--hu-white); max-width: 760px; margin-bottom: 48px; }
.hu-pain-list { display: flex; flex-direction: column; }
.hu-pain-row {
  display: grid; grid-template-columns: 110px 1fr; gap: 24px;
  padding: 26px 18px; border-top: 1px solid var(--hu-w06);
  transition: box-shadow .25s ease, transform .25s ease, background .25s ease;
}
.hu-pain-row:last-child { border-bottom: 1px solid var(--hu-w06); }
.hu-pain-row:hover { box-shadow: inset 3px 0 0 var(--hu-teal); background: rgba(0,191,165,.04); transform: translateX(2px); }
.hu-pain-n { font-family: var(--hu-fd); font-weight: 800; font-size: clamp(2.4rem, 4vw, 3.4rem); color: var(--hu-w12); line-height: .9; }
.hu-pain-tag { display: inline-block; font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--hu-teal); padding: 4px 10px; border: 1px solid var(--hu-teal-30); border-radius: 999px; margin-bottom: 10px; }
.hu-pain-t { font-family: var(--hu-fd); font-size: clamp(1.15rem, 1.8vw, 1.5rem); color: var(--hu-white); margin-bottom: 6px; }
.hu-pain-body p { color: var(--hu-w70); font-size: .96rem; margin: 0; }

/* ============================================================
 * 07  ORBIT EVOLUCIONADO
 * ============================================================ */
.hu-orbit-wrap { display: grid; grid-template-columns: 38% 62%; gap: clamp(28px, 4vw, 56px); align-items: center; }
.hu-orbit-l { max-width: 460px; }
.hu-orbit-hl { font-size: clamp(1.8rem, 3.4vw, 3rem); color: var(--hu-white); margin-bottom: 18px; }
.hu-orbit-sub { color: var(--hu-w70); font-size: 1rem; line-height: 1.6; }

.hu-orbit-r { position: relative; min-height: 620px; display: flex; align-items: center; justify-content: center; }
.hu-orbit { position: relative; width: 620px; height: 620px; max-width: 100%; }

.hu-orbit-svg { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; display: none; }
.hu-orbit-svg line { stroke: var(--hu-teal); stroke-width: 1; stroke-opacity: .14; vector-effect: non-scaling-stroke; }

.hu-orbit-core {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  z-index: 5; text-align: center; line-height: 1; pointer-events: none;
  transition: filter .3s ease;
}
.hu-orbit-core::after {
  content: ''; position: absolute; top: 50%; left: 50%;
  width: 92px; height: 92px; border-radius: 50%;
  transform: translate(-50%,-50%);
  box-shadow: 0 0 0 0 var(--hu-teal-30);
  transition: box-shadow .3s ease;
  pointer-events: none;
}
.hu-orbit.is-hot .hu-orbit-core { filter: brightness(1.4) drop-shadow(0 0 18px var(--hu-teal)); }
.hu-orbit.is-hot .hu-orbit-core::after { box-shadow: 0 0 0 2px var(--hu-teal-30), 0 0 36px 12px var(--hu-teal-30); }
.hu-core-pre { display: block; font-family: var(--hu-fd); font-size: clamp(.78rem,1vw,.95rem); font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--hu-w70); margin-bottom: 5px; }
.hu-core-main { display: block; font-family: var(--hu-fd); font-size: clamp(1.7rem,2.6vw,2.4rem); font-weight: 800; letter-spacing: -.03em; color: var(--hu-teal); }

.hu-ring { position: absolute; top: 50%; left: 50%; border-radius: 50%; pointer-events: none; }
.hu-ring-inner { width: 260px; height: 260px; margin-left: -130px; margin-top: -130px; animation: hu-spin-cw 48s linear infinite; }
.hu-ring-mid   { width: 400px; height: 400px; margin-left: -200px; margin-top: -200px; animation: hu-spin-ccw 65s linear infinite; }
.hu-ring-outer { width: 580px; height: 580px; margin-left: -290px; margin-top: -290px; animation: hu-spin-cw 90s linear infinite; filter: blur(.8px); opacity: .55; }
@keyframes hu-spin-cw  { to { transform: rotate(360deg); } }
@keyframes hu-spin-ccw { to { transform: rotate(-360deg); } }

.hu-ring .hu-ann { position: absolute; top: 50%; left: 50%; pointer-events: auto; }
.hu-ring .hu-ann-i {
  display: inline-block; font-family: var(--hu-fd); font-weight: 800;
  text-transform: uppercase; letter-spacing: -.01em; white-space: nowrap;
  cursor: pointer;
  transition: color .25s ease, text-shadow .25s ease, filter .25s ease;
}
.hu-ring-mid   .hu-ann-i { animation: hu-spin-cw  65s linear infinite; }
.hu-ring-outer .hu-ann-i { animation: hu-spin-ccw 90s linear infinite; }

.hu-ring-mid .hu-ann-mid-1 { transform: translate(-50%,-50%) rotate(  0deg) translate(0,-200px) rotate(   0deg); }
.hu-ring-mid .hu-ann-mid-2 { transform: translate(-50%,-50%) rotate( 90deg) translate(0,-200px) rotate( -90deg); }
.hu-ring-mid .hu-ann-mid-3 { transform: translate(-50%,-50%) rotate(180deg) translate(0,-200px) rotate(-180deg); }
.hu-ring-mid .hu-ann-mid-4 { transform: translate(-50%,-50%) rotate(270deg) translate(0,-200px) rotate(-270deg); }
.hu-ring-mid .hu-ann-i { font-size: clamp(.95rem, 1.3vw, 1.18rem); }
.hu-ring-mid .hu-ann-mid-1 .hu-ann-i { color: var(--hu-teal); }
.hu-ring-mid .hu-ann-mid-2 .hu-ann-i { color: var(--hu-w90); }
.hu-ring-mid .hu-ann-mid-3 .hu-ann-i { color: var(--hu-blue); }
.hu-ring-mid .hu-ann-mid-4 .hu-ann-i { color: rgba(255,255,255,.72); }

.hu-ring-outer .hu-ann-out-1 { transform: translate(-50%,-50%) rotate( 45deg) translate(0,-290px) rotate( -45deg); }
.hu-ring-outer .hu-ann-out-2 { transform: translate(-50%,-50%) rotate(135deg) translate(0,-290px) rotate(-135deg); }
.hu-ring-outer .hu-ann-out-3 { transform: translate(-50%,-50%) rotate(225deg) translate(0,-290px) rotate(-225deg); }
.hu-ring-outer .hu-ann-out-4 { transform: translate(-50%,-50%) rotate(315deg) translate(0,-290px) rotate(-315deg); }
.hu-ring-outer .hu-ann-i { font-size: clamp(.74rem, 1vw, .92rem); }
.hu-ring-outer .hu-ann-out-1 .hu-ann-i { color: rgba(0,191,165,.60); }
.hu-ring-outer .hu-ann-out-2 .hu-ann-i { color: rgba(59,114,173,.58); }
.hu-ring-outer .hu-ann-out-3 .hu-ann-i { color: rgba(255,255,255,.32); }
.hu-ring-outer .hu-ann-out-4 .hu-ann-i { color: rgba(255,255,255,.26); }

.hu-orbit.is-hot .hu-ring,
.hu-orbit.is-hot .hu-ring-mid .hu-ann-i,
.hu-orbit.is-hot .hu-ring-outer .hu-ann-i { animation-play-state: paused; }
.hu-orbit.is-hot .hu-ring-mid   .hu-ann-i { filter: brightness(1.18); }
.hu-orbit.is-hot .hu-ring-outer .hu-ann-i { filter: brightness(1.4); }

.hu-ring .hu-ann-i:hover { color: var(--hu-teal) !important; text-shadow: 0 0 22px var(--hu-teal-60); filter: brightness(1.25); }

.hu-particles { position: absolute; inset: 0; pointer-events: none; }
.hu-prt { position: absolute; width: 3px; height: 3px; border-radius: 50%; background: var(--hu-teal); opacity: .45; }
.hu-p1 { top: 12%; left: 18%; animation: hu-prt-1 14s ease-in-out infinite; }
.hu-p2 { top: 22%; right: 14%; animation: hu-prt-2 17s ease-in-out infinite; background: var(--hu-blue); width: 4px; height: 4px; }
.hu-p3 { top: 48%; left:  6%; animation: hu-prt-3 16s ease-in-out infinite; }
.hu-p4 { top: 58%; right:  8%; animation: hu-prt-4 19s ease-in-out infinite; background: var(--hu-blue); }
.hu-p5 { bottom: 18%; left: 22%; animation: hu-prt-5 15s ease-in-out infinite; width: 4px; height: 4px; }
.hu-p6 { bottom: 12%; right: 22%; animation: hu-prt-6 20s ease-in-out infinite; }
.hu-p7 { top:  8%; left: 48%; animation: hu-prt-7 13s ease-in-out infinite; opacity: .35; }
.hu-p8 { bottom: 6%; left: 50%; animation: hu-prt-8 18s ease-in-out infinite; opacity: .35; }
@keyframes hu-prt-1 { 0%,100% { transform: translate(0,0); opacity: .35; } 50% { transform: translate(45px,30px); opacity: .8; } }
@keyframes hu-prt-2 { 0%,100% { transform: translate(0,0); opacity: .3; } 50% { transform: translate(-50px,40px); opacity: .75; } }
@keyframes hu-prt-3 { 0%,100% { transform: translate(0,0); opacity: .4; } 50% { transform: translate(60px,-25px); opacity: .85; } }
@keyframes hu-prt-4 { 0%,100% { transform: translate(0,0); opacity: .3; } 50% { transform: translate(-55px,-30px); opacity: .8; } }
@keyframes hu-prt-5 { 0%,100% { transform: translate(0,0); opacity: .45; } 50% { transform: translate(40px,-50px); opacity: .9; } }
@keyframes hu-prt-6 { 0%,100% { transform: translate(0,0); opacity: .35; } 50% { transform: translate(-45px,-45px); opacity: .8; } }
@keyframes hu-prt-7 { 0%,100% { transform: translate(0,0); opacity: .25; } 50% { transform: translate(20px,40px); opacity: .6; } }
@keyframes hu-prt-8 { 0%,100% { transform: translate(0,0); opacity: .25; } 50% { transform: translate(-25px,-50px); opacity: .55; } }

/* ============================================================
 * 08  METHOD DOC (8 pasos)
 * ============================================================ */
.hu-method-hl { font-size: clamp(1.8rem, 3.4vw, 3rem); margin-bottom: 6px; max-width: 800px; }
.hu-method-sub { color: var(--hu-ink70); font-size: 1.05rem; margin-bottom: 48px; }
.hu-method-grid { display: grid; grid-template-columns: 360px 1fr; gap: 36px; align-items: start; }
.hu-method-nav { display: flex; flex-direction: column; gap: 0; border-left: 1px solid var(--hu-ink12); }
.hu-method-tab {
  background: transparent; border: 0; padding: 14px 18px;
  text-align: left; font-family: var(--hu-fb); font-size: .98rem; color: var(--hu-ink70);
  cursor: pointer; display: flex; align-items: baseline; gap: 12px;
  border-left: 2px solid transparent; margin-left: -1px;
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}
.hu-method-tab span { font-family: var(--hu-fd); font-size: .8rem; color: var(--hu-ink50); letter-spacing: .04em; }
.hu-method-tab:hover { color: var(--hu-ink); }
.hu-method-tab.is-on { color: var(--hu-ink); border-left-color: var(--hu-teal); background: rgba(0,191,165,.04); }
.hu-method-tab.is-on span { color: var(--hu-teal); }

.hu-method-panels { position: relative; min-height: 280px; padding: 32px 36px; background: var(--hu-white); border: 1px solid var(--hu-ink12); border-radius: 14px; overflow: hidden; }
.hu-method-panel { position: absolute; inset: 0; padding: 32px 36px; opacity: 0; transform: translateY(8px); transition: opacity .35s ease, transform .35s ease; pointer-events: none; }
.hu-method-panel.is-on { position: relative; opacity: 1; transform: translateY(0); pointer-events: auto; }
.hu-method-bg { position: absolute; bottom: -.05em; right: 12px; font-family: var(--hu-fd); font-weight: 800; font-size: clamp(8rem, 16vw, 14rem); color: var(--hu-ink); opacity: .04; line-height: .85; pointer-events: none; }
.hu-method-panel h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); margin-bottom: 14px; }
.hu-method-panel p { font-size: 1rem; color: var(--hu-ink70); max-width: 620px; }

/* ============================================================
 * 09  SOCIAL
 * ============================================================ */
.hu-social-hl { font-size: clamp(1.8rem, 3.4vw, 3rem); color: var(--hu-white); max-width: 760px; margin-bottom: 56px; }
.hu-social-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-bottom: 64px; padding-bottom: 48px; border-bottom: 1px solid var(--hu-w06); }
.hu-social-metric { padding: 0; }
.hu-sm-n { display: block; font-family: var(--hu-fd); font-weight: 800; font-size: clamp(2.6rem, 5vw, 4.4rem); color: var(--hu-teal); line-height: 1; letter-spacing: -.03em; margin-bottom: 12px; }
.hu-sm-n small { font-size: .55em; font-weight: 700; color: var(--hu-w70); margin-left: .15em; letter-spacing: 0; }
.hu-sm-l { display: block; color: var(--hu-w70); font-size: 1rem; max-width: 240px; }

/* ---- Testimonials FLAT SLIDER (v3.8.3 -- replaces stack cards) ---- */
.hu-testi-slider {
  position: relative; max-width: 880px; margin: 0 auto;
  padding: 24px 0 0;
}
.hu-testi-quote-mark {
  position: absolute; top: -32px; left: -8px;
  font-family: var(--hu-fd); font-weight: 800;
  font-size: clamp(8rem, 14vw, 11rem);
  color: var(--hu-teal-30);
  line-height: .9; pointer-events: none;
  opacity: .55;
}
.hu-testi-stage {
  position: relative; min-height: 220px;
  padding-left: clamp(24px, 4vw, 60px);
  border-left: 1px solid var(--hu-w12);
}
.hu-testi-item {
  position: absolute; inset: 0;
  padding-left: clamp(24px, 4vw, 60px);
  display: flex; flex-direction: column; justify-content: center;
  opacity: 0; transform: translateY(8px);
  transition: opacity .5s ease, transform .5s ease;
  pointer-events: none;
}
.hu-testi-item.is-on { opacity: 1; transform: translateY(0); pointer-events: auto; position: relative; }
.hu-testi-q {
  font-family: var(--hu-fd); font-weight: 500;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  color: var(--hu-white);
  line-height: 1.4; letter-spacing: -.01em;
  margin: 0 0 22px;
  max-width: 760px;
}
.hu-testi-author {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px;
  font-family: var(--hu-fb); font-size: .88rem;
}
.hu-testi-name { color: var(--hu-w90); font-weight: 700; }
.hu-testi-sep { color: var(--hu-w30); }
.hu-testi-meta { color: var(--hu-w50); }

.hu-testi-nav {
  display: flex; align-items: center; justify-content: center;
  gap: 18px; margin-top: 36px;
}
.hu-testi-arrow {
  width: 42px; height: 42px; border-radius: 50%;
  background: transparent; border: 1px solid var(--hu-w12);
  color: var(--hu-w70); cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: border-color .25s ease, color .25s ease, background .25s ease, transform .25s ease;
}
.hu-testi-arrow:hover { border-color: var(--hu-teal); color: var(--hu-teal); background: rgba(0,191,165,.06); }
.hu-testi-arrow:active { transform: scale(.95); }
.hu-testi-arrow svg { width: 18px; height: 18px; }

.hu-testi-dots { display: flex; gap: 8px; align-items: center; }
.hu-testi-dot {
  width: 8px; height: 8px; border-radius: 50%; padding: 0;
  background: var(--hu-w12); border: 0; cursor: pointer;
  transition: background .25s ease, width .25s ease;
}
.hu-testi-dot:hover { background: var(--hu-w50); }
.hu-testi-dot.is-on { background: var(--hu-teal); width: 24px; border-radius: 999px; }

.hu-testi-slider.is-dragging { cursor: grabbing; }

/* ---- §7 Orbit actions + counter (v3.8.3, ex-sticky bar) ---- */
.hu-orbit-actions {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-top: 28px;
}
.hu-orbit-counter {
  display: inline-flex; align-items: center; gap: 12px;
  margin-top: 22px;
  padding: 10px 16px;
  background: rgba(0,191,165,.05);
  border: 1px solid var(--hu-teal-30);
  border-radius: 999px;
  font-size: .85rem; color: var(--hu-w90);
  width: fit-content;
}
.hu-orbit-counter strong { color: var(--hu-teal); font-weight: 700; }
.hu-orbit-counter-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--hu-teal);
  animation: hu-counter-blink 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes hu-counter-blink { 0%,100% { opacity: .45; transform: scale(.85); } 50% { opacity: 1; transform: scale(1.15); box-shadow: 0 0 12px var(--hu-teal); } }

/* ---- §7 Orbit padding reducido (v3.8.4) ---- */
.hu-orbit-section { padding-top: clamp(56px, 7vw, 96px); padding-bottom: clamp(56px, 7vw, 96px); }

/* ---- Method panel min-height + foot text ---- */
.hu-method-panels { min-height: 370px; }
.hu-method-panel { padding: 30px 36px; }
.hu-method-panel h3 { font-size: clamp(1.35rem, 2.2vw, 1.75rem); margin-bottom: 14px; }
.hu-method-panel p { font-size: .96rem; color: var(--hu-ink70); line-height: 1.55; max-width: 640px; margin-bottom: 12px; }
.hu-method-foot {
  font-size: .82rem !important; color: var(--hu-teal) !important;
  font-family: var(--hu-fb); font-weight: 600;
  margin-top: 14px !important; padding-top: 12px;
  border-top: 1px solid var(--hu-ink12);
  letter-spacing: .01em;
  max-width: 640px;
}
.hu-method-bg { font-size: clamp(8rem, 14vw, 12rem) !important; right: 16px; }

/* ---- §12 CTA trust margin ---- */
.hu-cta-trust { margin-top: 32px !important; }

/* ---- §10 Doc a Doc -- ensure blue accent only ---- */
.hu-d2d .hu-lbl-teal { color: var(--hu-blue) !important; border-color: rgba(59,114,173,.35) !important; }
.hu-d2d .hu-lbl { color: var(--hu-blue); border-color: rgba(59,114,173,.35); }
.hu-rsr-meta-pill { background: rgba(59,114,173,.12); color: var(--hu-blue); }

/* ---- §11 CCS -- ensure blue accent only ---- */
.hu-ccs .hu-lbl-teal { color: var(--hu-blue) !important; border-color: rgba(59,114,173,.35) !important; }
.hu-ccs-flow span:nth-child(odd) { color: var(--hu-blue); border-color: rgba(59,114,173,.35); }
.hu-ccs-flow em { color: var(--hu-blue); }
.hu-ccs-n { color: var(--hu-blue); }

/* ---- Responsive: testimonios + orbit actions ---- */
@media (max-width: 720px) {
  .hu-orbit-actions { gap: 10px; }
  .hu-orbit-counter { font-size: .78rem; padding: 9px 14px; }
  .hu-testi-nav { gap: 14px; }
  .hu-testi-arrow { width: 38px; height: 38px; }
  .hu-testi-stage { padding-left: 18px; }
  .hu-testi-item { padding-left: 18px; }
}

/* ============================================================
 * 10  DOC A DOC
 * ============================================================ */
.hu-d2d-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.hu-d2d-l { border-right: 1px solid var(--hu-ink12); padding-right: 64px; }
.hu-d2d-hl { font-size: clamp(1.8rem, 3.2vw, 2.8rem); margin-top: 18px; }
.hu-d2d-r p { color: var(--hu-ink70); font-size: 1.05rem; line-height: 1.65; margin-bottom: 18px; }

/* ============================================================
 * 11  CCS
 * ============================================================ */
.hu-ccs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.hu-ccs-hl { font-size: clamp(2rem, 3.8vw, 3.2rem); color: var(--hu-white); margin: 18px 0 28px; }
.hu-ccs-flow { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; font-family: var(--hu-fd); font-weight: 800; letter-spacing: .12em; font-size: .82rem; color: var(--hu-w70); }
.hu-ccs-flow span { padding: 8px 14px; border: 1px solid var(--hu-w12); border-radius: 999px; }
.hu-ccs-flow span:nth-child(odd) { color: var(--hu-teal); border-color: var(--hu-teal-30); }
.hu-ccs-flow em { font-style: normal; color: var(--hu-teal); }
.hu-ccs-r p { color: var(--hu-w70); font-size: 1.05rem; line-height: 1.65; margin-bottom: 32px; }
.hu-ccs-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.hu-ccs-n { display: block; font-family: var(--hu-fd); font-weight: 800; font-size: clamp(2rem, 3.4vw, 2.8rem); color: var(--hu-teal); line-height: 1; letter-spacing: -.03em; margin-bottom: 8px; }
.hu-ccs-n small { font-size: .55em; color: var(--hu-w70); margin-left: .12em; }
.hu-ccs-l { display: block; font-size: .88rem; color: var(--hu-w70); }

/* ============================================================
 * 12  CTA FINAL
 * ============================================================ */
.hu-cta-final { padding: clamp(96px, 12vw, 180px) var(--hu-pad-x); text-align: center; min-height: 80vh; display: flex; align-items: center; justify-content: center; }
.hu-cta-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hu-cta-orb { position: absolute; border-radius: 50%; filter: blur(60px); opacity: .35; }
.hu-co1 { width: 360px; height: 360px; background: var(--hu-teal); top: 10%; left: 10%; animation: hu-orb 18s ease-in-out infinite; }
.hu-co2 { width: 460px; height: 460px; background: var(--hu-blue); bottom: 10%; right: 8%; animation: hu-orb 22s ease-in-out infinite reverse; }
.hu-co3 { width: 280px; height: 280px; background: var(--hu-teal); top: 50%; left: 50%; transform: translate(-50%,-50%); animation: hu-orb 16s ease-in-out infinite; opacity: .25; }
@keyframes hu-orb { 0%,100% { transform: translate(0,0) scale(.9); } 50% { transform: translate(40px,-30px) scale(1.15); } }
.hu-co3 { animation-name: hu-orb-c; }
@keyframes hu-orb-c { 0%,100% { transform: translate(-50%,-50%) scale(.85); } 50% { transform: translate(-50%,-50%) scale(1.25); } }
.hu-cta-ring { position: absolute; top: 50%; left: 50%; border-radius: 50%; border: 1px solid var(--hu-teal-30); transform: translate(-50%,-50%); }
.hu-cr1 { width: 320px; height: 320px; animation: hu-pulse 4s ease-in-out infinite; }
.hu-cr2 { width: 520px; height: 520px; animation: hu-pulse 5s ease-in-out infinite .8s; }
.hu-cr3 { width: 760px; height: 760px; animation: hu-pulse 6.5s ease-in-out infinite 1.5s; }
@keyframes hu-pulse { 0%,100% { opacity: .12; transform: translate(-50%,-50%) scale(.92); } 50% { opacity: .45; transform: translate(-50%,-50%) scale(1.05); } }

.hu-cta-inner { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; }
.hu-cta-hl { font-size: clamp(2.2rem, 4.6vw, 4rem); color: var(--hu-white); margin-bottom: 22px; }
.hu-cta-sub { color: var(--hu-w70); font-size: clamp(1rem, 1.4vw, 1.18rem); margin-bottom: 36px; }
.hu-cta-trust { color: var(--hu-w50); font-size: .88rem; letter-spacing: .04em; margin-top: 22px; }

/* ============================================================
 * TEXTURES (v3.8.1) -- grain + dot-grid + glow
 * ============================================================ */

/* Global grain overlay scoped to .hu pages */
.hu-grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 9999;
  opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

/* Dot-grid pattern on selected dark sections */
.hu-pain, .hu-social, .hu-ccs { position: relative; }
.hu-pain::before, .hu-social::before, .hu-ccs::before {
  content: ''; position: absolute; inset: 0;
  pointer-events: none; z-index: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.055) 1px, transparent 1.4px);
  background-size: 36px 36px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 35%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 35%, black 30%, transparent 80%);
}
.hu-pain .hu-sxn, .hu-social .hu-sxn, .hu-ccs .hu-sxn { position: relative; z-index: 1; }

/* Soft teal glow behind H2s of dark sections (pure text-shadow) */
.hu-pain-hl, .hu-orbit-hl, .hu-social-hl, .hu-ccs-hl, .hu-cta-hl {
  text-shadow: 0 0 80px rgba(0,191,165,.22), 0 0 32px rgba(0,191,165,.14);
}

/* ============================================================
 * RESPONSIVE
 * ============================================================ */
@media (max-width: 1100px) {
  .hu-orbit { width: 480px; height: 480px; }
  .hu-ring-inner { width: 220px; height: 220px; margin-left: -110px; margin-top: -110px; }
  .hu-ring-mid   { width: 340px; height: 340px; margin-left: -170px; margin-top: -170px; }
  .hu-ring-outer { width: 480px; height: 480px; margin-left: -240px; margin-top: -240px; }
  .hu-ring-mid .hu-ann-mid-1 { transform: translate(-50%,-50%) rotate(  0deg) translate(0,-170px) rotate(   0deg); }
  .hu-ring-mid .hu-ann-mid-2 { transform: translate(-50%,-50%) rotate( 90deg) translate(0,-170px) rotate( -90deg); }
  .hu-ring-mid .hu-ann-mid-3 { transform: translate(-50%,-50%) rotate(180deg) translate(0,-170px) rotate(-180deg); }
  .hu-ring-mid .hu-ann-mid-4 { transform: translate(-50%,-50%) rotate(270deg) translate(0,-170px) rotate(-270deg); }
  .hu-ring-outer .hu-ann-out-1 { transform: translate(-50%,-50%) rotate( 45deg) translate(0,-240px) rotate( -45deg); }
  .hu-ring-outer .hu-ann-out-2 { transform: translate(-50%,-50%) rotate(135deg) translate(0,-240px) rotate(-135deg); }
  .hu-ring-outer .hu-ann-out-3 { transform: translate(-50%,-50%) rotate(225deg) translate(0,-240px) rotate(-225deg); }
  .hu-ring-outer .hu-ann-out-4 { transform: translate(-50%,-50%) rotate(315deg) translate(0,-240px) rotate(-315deg); }
  .hu-orbit-r { min-height: 520px; }
  .hu-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

@media (max-width: 960px) {
  .hu-hero-inner { grid-template-columns: 1fr; gap: 24px; }
  /* Mobile order: text first, radar below with spacing */
  .hu-hero-r { display: flex; min-height: 320px; margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--hu-w06); }
  .hu-radar { width: 280px; height: 280px; }
  .hu-radar-cap { font-size: .58rem; }
  .hu-radar-foot { font-size: .58rem; bottom: -28px; }
  .hu-radar-lbl { font-size: .58rem; letter-spacing: .08em; }
  .hu-rl-2 { right: -8%; }
  .hu-rl-5 { left: -8%; }
  .hu-orbit-wrap { grid-template-columns: 1fr; }
  .hu-orbit-r { min-height: 380px; display: flex; justify-content: center; }
  .hu-orbit { width: 380px; height: 380px; max-width: 100%; }
  .hu-orbit-svg { display: none; }
  /* Keep desktop rotation animations -- just shrink radii */
  .hu-ring-inner { width: 160px; height: 160px; margin-left: -80px; margin-top: -80px; }
  .hu-ring-mid   { width: 240px; height: 240px; margin-left: -120px; margin-top: -120px; }
  .hu-ring-outer { width: 340px; height: 340px; margin-left: -170px; margin-top: -170px; display: block; }
  .hu-ring-mid .hu-ann-mid-1 { transform: translate(-50%,-50%) rotate(  0deg) translate(0,-120px) rotate(   0deg); }
  .hu-ring-mid .hu-ann-mid-2 { transform: translate(-50%,-50%) rotate( 90deg) translate(0,-120px) rotate( -90deg); }
  .hu-ring-mid .hu-ann-mid-3 { transform: translate(-50%,-50%) rotate(180deg) translate(0,-120px) rotate(-180deg); }
  .hu-ring-mid .hu-ann-mid-4 { transform: translate(-50%,-50%) rotate(270deg) translate(0,-120px) rotate(-270deg); }
  .hu-ring-outer .hu-ann-out-1 { transform: translate(-50%,-50%) rotate( 45deg) translate(0,-170px) rotate( -45deg); }
  .hu-ring-outer .hu-ann-out-2 { transform: translate(-50%,-50%) rotate(135deg) translate(0,-170px) rotate(-135deg); }
  .hu-ring-outer .hu-ann-out-3 { transform: translate(-50%,-50%) rotate(225deg) translate(0,-170px) rotate(-225deg); }
  .hu-ring-outer .hu-ann-out-4 { transform: translate(-50%,-50%) rotate(315deg) translate(0,-170px) rotate(-315deg); }
  .hu-ring-mid .hu-ann-i { font-size: .82rem; }
  .hu-ring-outer .hu-ann-i { font-size: .68rem; }
  .hu-particles { display: none; }
  /* Hero radar reduces */
  .hu-radar { width: 360px; height: 360px; }
  .hu-radar-foot { font-size: .62rem; }

  .hu-profiles-grid { grid-template-columns: 1fr; gap: 1px; }
  .hu-profile-more { max-height: 200px; opacity: 1; margin-bottom: 18px; }
  .hu-pain-row { grid-template-columns: 60px 1fr; gap: 16px; padding: 22px 12px; }
  .hu-pain-n { font-size: 2.2rem; }
  .hu-method-grid { grid-template-columns: 1fr; gap: 24px; }
  .hu-method-nav { flex-direction: row; flex-wrap: wrap; border-left: 0; border-bottom: 1px solid var(--hu-ink12); padding-bottom: 10px; }
  .hu-method-tab { border-left: 0; border-bottom: 2px solid transparent; padding: 10px 14px; font-size: .85rem; }
  .hu-method-tab.is-on { border-left-color: transparent; border-bottom-color: var(--hu-teal); background: transparent; }
  .hu-method-panels { padding: 24px 22px; }
  .hu-method-panel { padding: 24px 22px; }
  .hu-social-metrics { grid-template-columns: 1fr; gap: 24px; padding-bottom: 32px; margin-bottom: 40px; }
  .hu-d2d-grid { grid-template-columns: 1fr; gap: 32px; }
  .hu-d2d-l { border-right: 0; padding-right: 0; border-bottom: 1px solid var(--hu-ink12); padding-bottom: 32px; }
  .hu-ccs-grid { grid-template-columns: 1fr; gap: 36px; }
  .hu-ccs-metrics { grid-template-columns: repeat(3, 1fr); gap: 16px; }
}

@media (max-width: 720px) {
  .hu-sticky-txt { display: none; }
  .hu-sticky { gap: 10px; padding: 10px 14px; }
  .hu-sticky-cta { padding: 8px 14px; font-size: .85rem; }
}

@media (max-width: 560px) {
  .hu-hero-hl { font-size: 2.2rem; }
  /* Stats: 2x2 compacto para acortar scroll mobile */
  .hu-stats-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .hu-stat { padding: 18px 12px; }
  .hu-stat-n { font-size: 2rem; margin-bottom: 6px; }
  .hu-stat-l { font-size: .78rem; }
  .hu-stats-hl { margin-bottom: 32px; font-size: 1.45rem; }
  /* Pain: layout 2 cols compacto para acortar scroll mobile */
  .hu-pain-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
  .hu-pain-row { grid-template-columns: 32px 1fr; gap: 8px; padding: 14px 8px; border-top: 1px solid var(--hu-w06); }
  .hu-pain-row:nth-child(odd) { border-right: 1px solid var(--hu-w06); }
  .hu-pain-row:nth-last-child(-n+2) { border-bottom: 1px solid var(--hu-w06); }
  .hu-pain-n { font-size: 1.4rem; }
  .hu-pain-tag { font-size: .56rem; padding: 2px 6px; margin-bottom: 6px; }
  .hu-pain-t { font-size: .92rem; line-height: 1.25; margin-bottom: 4px; }
  .hu-pain-body p { font-size: .78rem; line-height: 1.35; }
  .hu-pain-hl { font-size: 1.5rem; margin-bottom: 32px; }
  .hu-orbit-r { min-height: 320px; }
  .hu-orbit { width: 320px; height: 320px; }
  .hu-ring-inner { width: 130px; height: 130px; margin-left: -65px; margin-top: -65px; }
  .hu-ring-mid   { width: 200px; height: 200px; margin-left: -100px; margin-top: -100px; }
  .hu-ring-outer { width: 290px; height: 290px; margin-left: -145px; margin-top: -145px; }
  .hu-ring-mid .hu-ann-mid-1 { transform: translate(-50%,-50%) rotate(  0deg) translate(0,-100px) rotate(   0deg); }
  .hu-ring-mid .hu-ann-mid-2 { transform: translate(-50%,-50%) rotate( 90deg) translate(0,-100px) rotate( -90deg); }
  .hu-ring-mid .hu-ann-mid-3 { transform: translate(-50%,-50%) rotate(180deg) translate(0,-100px) rotate(-180deg); }
  .hu-ring-mid .hu-ann-mid-4 { transform: translate(-50%,-50%) rotate(270deg) translate(0,-100px) rotate(-270deg); }
  .hu-ring-outer .hu-ann-out-1 { transform: translate(-50%,-50%) rotate( 45deg) translate(0,-145px) rotate( -45deg); }
  .hu-ring-outer .hu-ann-out-2 { transform: translate(-50%,-50%) rotate(135deg) translate(0,-145px) rotate(-135deg); }
  .hu-ring-outer .hu-ann-out-3 { transform: translate(-50%,-50%) rotate(225deg) translate(0,-145px) rotate(-225deg); }
  .hu-ring-outer .hu-ann-out-4 { transform: translate(-50%,-50%) rotate(315deg) translate(0,-145px) rotate(-315deg); }
  .hu-ring-mid .hu-ann-i { font-size: .72rem; }
  .hu-ring-outer .hu-ann-i { font-size: .62rem; }
  .hu-core-main { font-size: 1.4rem; }
  .hu-core-pre { font-size: .65rem; }
  .hu-ccs-metrics { grid-template-columns: 1fr; }
  .hu-cta-orb { display: none; }
  .hu-cr3 { display: none; }
  .hu-radar { width: 300px; height: 300px; }
  .hu-radar-lbl { font-size: .65rem; letter-spacing: .1em; }
  .hu-rl-2, .hu-rl-3 { right: -4%; }
  .hu-rl-4, .hu-rl-5 { left: -4%; }
}

/* ============================================================
 * REDUCED MOTION
 * ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .hu-pills-tag span,
  .hu-ring-inner, .hu-ring-mid, .hu-ring-outer,
  .hu-ring-mid .hu-ann-i, .hu-ring-outer .hu-ann-i,
  .hu-prt, .hu-cta-orb, .hu-cta-ring,
  .hu-diag-scanner span,
  .hu-co1, .hu-co2, .hu-co3,
  .hu-cr1, .hu-cr2, .hu-cr3,
  .hu-radar.is-on .hu-radar-shape, .hu-radar-dot {
    animation: none !important;
  }
  .hu-reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hu-sticky { transition: none !important; }
  .hu-radar.is-on .hu-radar-shape { stroke-dashoffset: 0; opacity: 1; transition: none; }
  .hu-marquee-track { animation: none !important; }
}

/* ============================================================
 * v3.8.2 -- ADDITIONS
 * Hero progressive disclosure + radar configs + swipe + new blocks
 * + Doc a Doc cards + marquee + scramble + color rebalance
 * ============================================================ */

/* ---- Color rule (v3.8.3) -------------------------------------------------
   TEAL: Plataforma Doc / Metodo DOC / accion / signo clinico
         (Hero, Stats, Profiles, Pain, Method, Social, CTA Final, Orbit core)
   BLUE: Comunidad / Institucional
         (Doc a Doc, Centro Cultural de la Salud)
   §7 Orbit mantiene mezcla SOLO dentro del diagrama (intencional).
   No mezclar ambos colores dentro de la misma seccion fuera de §7.
   --------------------------------------------------------------------------- */

/* CTA azul (usado solo en §10 Doc a Doc) */
.hu-cta-blue { background: var(--hu-blue); color: var(--hu-white); }
.hu-cta-blue:hover { transform: translateY(-1px); box-shadow: 0 18px 38px -16px rgba(59,114,173,.55); background: #4582c4; }

/* Linea outline teal (usada en §7 Orbit actions) */
.hu-cta-line-teal {
  background: transparent; color: var(--hu-w90);
  border: 1px solid var(--hu-w12); padding: 13px 24px; border-radius: 999px;
  font-family: var(--hu-fb); font-weight: 600; font-size: .95rem;
  text-decoration: none; cursor: pointer; display: inline-flex; align-items: center;
  transition: color .25s ease, border-color .25s ease, background .25s ease;
}
.hu-cta-line-teal:hover { color: var(--hu-teal); border-color: var(--hu-teal); background: rgba(0,191,165,.06); }

/* ---- Hero progressive disclosure ---- */
.hu-hero-flow { position: relative; }
.hu-hero-actions {
  display: flex; flex-wrap: wrap; gap: 14px;
  transition: opacity .3s ease, transform .35s ease, max-height .4s ease, margin .35s ease;
  max-height: 200px; overflow: visible;
}
.hu-hero-flow.is-open .hu-hero-actions {
  opacity: 0; transform: translateY(-10px);
  pointer-events: none; max-height: 0;
  margin: 0; overflow: hidden;
}
.hu-cta-icon { display: inline-flex; align-items: center; gap: 9px; }
.hu-cta-icon svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--hu-void); }
.hu-cta-blue-line {
  background: transparent; color: var(--hu-w90);
  border: 1px solid var(--hu-w12); padding: 13px 24px; border-radius: 999px;
  font-family: var(--hu-fb); font-weight: 600; font-size: .95rem;
  text-decoration: none; cursor: pointer;
  transition: color .25s ease, border-color .25s ease, background .25s ease;
}
.hu-cta-blue-line:hover { color: var(--hu-blue); border-color: var(--hu-blue); background: rgba(59,114,173,.06); }

.hu-diag { display: none; }
.hu-hero-flow.is-open .hu-diag { display: block; animation: hu-diag-in .55s ease-out forwards; }
@keyframes hu-diag-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.hu-contact-below { display: none; margin-top: 14px; align-self: flex-start; }
.hu-hero-flow.is-open .hu-contact-below { display: inline-flex; animation: hu-diag-in .55s .25s ease-out backwards; }

/* ---- Radar config label refinements ---- */
.hu-radar-config-label {
  color: var(--hu-w90); font-weight: 700;
  transition: opacity .35s ease;
}
.hu-radar-config-label.is-fresh {
  animation: hu-radar-flash .35s ease-out;
}
@keyframes hu-radar-flash { 0% { opacity: 0; transform: translateY(2px); } 100% { opacity: 1; transform: translateY(0); } }

/* ---- Method swipe affordance ---- */
.hu-method-panels { cursor: grab; user-select: none; touch-action: pan-y; transition: transform .25s ease; }
.hu-method-panels.is-dragging { cursor: grabbing; transition: none; }

/* ---- Social swipe affordance ---- */
.hu-testis { cursor: grab; user-select: none; touch-action: pan-y; }
.hu-testis.is-dragging { cursor: grabbing; }

/* ============================================================
 * §9 EVIDENCE LEDGER (replaces metric blocks)
 * ============================================================ */
.hu-evidence { display: flex; flex-direction: column; margin-bottom: 64px; }
.hu-ev-row {
  display: grid; grid-template-columns: 14px 1fr auto; gap: 22px; align-items: center;
  padding: 22px 4px; border-top: 1px solid var(--hu-w06);
  transition: padding-left .25s ease, background .25s ease;
}
.hu-ev-row:last-child { border-bottom: 1px solid var(--hu-w06); }
.hu-ev-row:hover { padding-left: 14px; background: rgba(255,255,255,.02); }
.hu-ev-mark { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.hu-ev-mark-teal, .hu-ev-mark-blue { background: var(--hu-teal); box-shadow: 0 0 14px var(--hu-teal-30); }
.hu-ev-text { font-family: var(--hu-fd); font-size: clamp(1rem, 1.6vw, 1.25rem); color: var(--hu-w90); line-height: 1.4; font-weight: 500; }
.hu-ev-num {
  font-family: var(--hu-fd); font-weight: 800;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem); line-height: 1;
  letter-spacing: -.02em; white-space: nowrap;
}
.hu-ev-num-teal, .hu-ev-num-blue { color: var(--hu-teal); }
.hu-ev-num small { font-size: .55em; color: var(--hu-w70); margin-left: .12em; font-weight: 700; letter-spacing: 0; }

/* ============================================================
 * §11 CHANNELS (replaces ccs metric blocks)
 * ============================================================ */
.hu-channels {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
  position: relative; padding-top: 30px;
}
.hu-channels-line {
  position: absolute; top: 50px; left: 8%; right: 8%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59,114,173,.18) 18%, rgba(59,114,173,.55) 50%, rgba(59,114,173,.18) 82%, transparent);
  z-index: 0;
}
.hu-channel-icon { background: rgba(59,114,173,.12); color: var(--hu-blue); border: 1px solid rgba(59,114,173,.35); }
.hu-channel-icon-blue { background: rgba(59,114,173,.12); color: var(--hu-blue); border-color: rgba(59,114,173,.35); }
.hu-channel {
  display: flex; flex-direction: column; align-items: flex-start; gap: 8px;
  position: relative; z-index: 1;
}
.hu-channel-icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(0,191,165,.12); color: var(--hu-teal);
  border: 1px solid var(--hu-teal-30);
}
.hu-channel-icon svg { width: 22px; height: 22px; }
.hu-channel-icon-blue { background: rgba(59,114,173,.14); color: var(--hu-blue); border-color: rgba(59,114,173,.35); }
.hu-channel-name { font-family: var(--hu-fd); font-weight: 700; font-size: 1.1rem; color: var(--hu-white); }
.hu-channel-meta { font-size: .85rem; color: var(--hu-w70); line-height: 1.4; max-width: 180px; }

/* ============================================================
 * §10 DOC A DOC -- new layout + resource cards
 * ============================================================ */
.hu-d2d-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 88px); align-items: start; }
.hu-d2d-l { border-right: 1px solid var(--hu-ink12); padding-right: clamp(20px, 4vw, 56px); }
.hu-d2d-hl { font-size: clamp(1.8rem, 3.2vw, 2.8rem); margin: 18px 0 22px; }
.hu-d2d-hl-blue { color: var(--hu-blue); }
.hu-d2d-desc { color: var(--hu-ink70); font-size: 1.05rem; line-height: 1.65; margin-bottom: 28px; max-width: 460px; }

.hu-d2d-r { display: flex; flex-direction: column; gap: 18px; position: relative; }
.hu-resource {
  position: relative;
  background: var(--hu-white);
  border: 1px solid var(--hu-ink12);
  border-radius: 14px;
  padding: 22px 24px 20px;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  box-shadow: 0 6px 18px -10px rgba(13,17,23,.08);
}
.hu-resource:hover { transform: translateY(-3px); box-shadow: 0 18px 36px -18px rgba(13,17,23,.18); }
.hu-rsr-2 {
  background: linear-gradient(135deg, #EEF3FA 0%, #E5EEF7 100%);
  border-color: rgba(59,114,173,.18);
}
.hu-rsr-2:hover { border-color: rgba(59,114,173,.35); }
.hu-rsr-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.hu-rsr-tag {
  display: inline-block; font-family: var(--hu-fb); font-size: .68rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--hu-ink70);
  padding: 5px 11px; background: var(--hu-light); border-radius: 999px; font-weight: 700;
}
.hu-rsr-tag-blue { background: var(--hu-blue); color: var(--hu-white); }
.hu-rsr-badge { font-size: .72rem; color: var(--hu-ink70); }
.hu-rsr-t {
  font-family: var(--hu-fd); font-weight: 700; line-height: 1.25;
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  color: var(--hu-ink); margin: 0 0 14px; letter-spacing: -.01em;
}
.hu-rsr-meta { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; font-size: .82rem; color: var(--hu-ink70); }
.hu-rsr-meta-tag { padding: 3px 10px; background: rgba(13,17,23,.05); border-radius: 999px; }
.hu-rsr-meta-pill { padding: 3px 10px; background: rgba(0,191,165,.12); color: var(--hu-teal); border-radius: 999px; font-weight: 600; }
.hu-rsr-foot {
  margin-top: 6px; padding: 16px 20px; text-align: center;
  border: 1px dashed var(--hu-ink12); border-radius: 12px;
  font-size: .92rem; color: var(--hu-ink70);
}

/* ============================================================
 * MARQUEE separator
 * ============================================================ */
.hu-marquee {
  overflow: hidden; padding: 36px 0;
  background: var(--hu-dark);
  border-top: 1px solid var(--hu-w06);
  border-bottom: 1px solid var(--hu-w06);
  position: relative;
}
.hu-marquee::before, .hu-marquee::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none;
}
.hu-marquee::before { left: 0; background: linear-gradient(90deg, var(--hu-dark), transparent); }
.hu-marquee::after  { right: 0; background: linear-gradient(-90deg, var(--hu-dark), transparent); }
.hu-marquee-track {
  display: flex; gap: 44px; align-items: center; white-space: nowrap; width: max-content;
  animation: hu-mq 50s linear infinite;
}
.hu-marquee-track span {
  font-family: var(--hu-fd); font-weight: 800; letter-spacing: -.01em;
  font-size: clamp(1.4rem, 2.4vw, 2.1rem); text-transform: uppercase;
  color: var(--hu-w50);
}
.hu-marquee-track span:nth-of-type(4n+1) { color: var(--hu-teal); }
.hu-marquee-track span:nth-of-type(4n+3) { color: var(--hu-w90); }
.hu-mq-dot { width: 9px !important; height: 9px; border-radius: 50%; background: var(--hu-teal-30); flex-shrink: 0; padding: 0 !important; }
@keyframes hu-mq { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
 * SCRAMBLE hover visual
 * ============================================================ */
.hu-scramble { cursor: pointer; transition: text-shadow .25s ease, color .25s ease; }
.hu-scramble:hover {
  text-shadow: 0 0 16px var(--hu-teal-60), 0 0 38px var(--hu-teal-30);
}

/* ============================================================
 * v3.8.2 RESPONSIVE additions
 * ============================================================ */
@media (max-width: 960px) {
  .hu-evidence { margin-bottom: 40px; }
  .hu-ev-row { grid-template-columns: 12px 1fr; gap: 14px; padding: 18px 4px; }
  .hu-ev-num { grid-column: 2; justify-self: start; margin-top: 4px; }
  .hu-channels { grid-template-columns: 1fr; gap: 22px; padding-top: 6px; }
  .hu-channels-line { display: none; }
  .hu-channel { flex-direction: row; align-items: center; gap: 16px; }
  .hu-channel-name { font-size: 1rem; }
  .hu-channel-meta { font-size: .82rem; max-width: none; }
  .hu-d2d-grid { grid-template-columns: 1fr; }
  .hu-d2d-l { border-right: 0; padding-right: 0; border-bottom: 1px solid var(--hu-ink12); padding-bottom: 32px; margin-bottom: 8px; }
}

@media (max-width: 560px) {
  .hu-marquee { padding: 26px 0; }
  .hu-marquee-track { gap: 32px; }
  .hu-rsr-head { flex-direction: column; align-items: flex-start; gap: 6px; }
  .hu-resource { padding: 18px 20px; }
}
