/* components.css — escenas dibujadas y diagramas compartidos.
 *
 * PROCEDENCIA. Todo esto nació en website-builder.css como .wsb-* y es lo que
 * hace que esa página se vea "con imágenes" teniendo solo dos: un diagrama de
 * mecanismo en tres etapas, un marco de navegador en miniatura, una insignia
 * de agente, avatares, escenas de paso y un antes/después. Nada de esto es una
 * foto; todo es CSS sobre los tokens de styles.css. Se promueve aquí con
 * nombres neutros para que CUALQUIER página lo use.
 *
 * CANÓNICO Y ÚNICO DESDE 6-sep-2026. /website-builder/ migró en 4b25790: usa
 * estos nombres y website-builder.css ya no define ninguno de ellos (una prueba
 * lo impide). /ai-employee/ es la segunda página que los usa. Si un componente
 * cambia, cambia AQUÍ y en ningún otro lado.
 *
 * TOKENS, NO HEX. Los rgba() del original se reescriben con color-mix() sobre
 * --acc-deep e --ink, así el componente sigue a la paleta si ésta cambia.
 *
 * ACCESIBILIDAD. Una escena es decoración o es una imagen con texto alterno;
 * nunca contenido. Marca el contenedor con role="img" + aria-label cuando
 * cuente algo, o aria-hidden="true" cuando solo adorne. El texto dentro de una
 * escena aria-hidden no lo lee nadie: no pongas ahí nada que importe.
 *
 * Carga: <link rel="stylesheet" href="/components.css"> DESPUÉS de styles.css. */

/* ---------- Mecanismo en tres etapas: tú pides → algo trabaja → tú recibes -- */
.mechanism {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 52px minmax(0, 0.88fr) 52px minmax(0, 1fr);
  align-items: stretch;
  overflow: hidden;
  margin-top: 56px;
  border: 1px solid var(--hairline-strong);
  border-radius: min(1vw, 12px);
  background: var(--card);
}
.mechanism-stage {
  display: flex;
  min-width: 0;
  min-height: 300px;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
}
.mechanism-stage > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.mechanism-stage > p span {
  margin-right: 8px;
  color: var(--acc-deep);
  font-size: 11px;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.08em;
}
.mechanism-stage > small {
  color: var(--ink-faint);
  font-size: 13px;
  line-height: 1.45;
}
.mechanism-stage blockquote {
  margin: 28px 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 29px);
  font-weight: 600;
  line-height: 1.24;
}
.mechanism-stage.is-command { background: var(--paper-deep); }

.mechanism-arrow {
  display: grid;
  position: relative;
  place-items: center;
  color: var(--acc-deep);
}
.mechanism-arrow::before {
  content: "";
  position: absolute;
  top: 28px;
  bottom: 28px;
  left: 50%;
  width: 1px;
  background: var(--hairline);
}
.mechanism-arrow span {
  z-index: 1;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--hairline-strong);
  border-radius: 50%;
  background: var(--card);
  font-size: 17px;
}

/* ---------- Insignia de agente: anillos concéntricos sobre el lavado de acento */
.agent-core {
  position: relative;
  display: grid;
  width: 148px;
  height: 148px;
  margin: 18px auto;
  place-content: center;
  border: 1px solid color-mix(in srgb, var(--acc-deep) 35%, transparent);
  border-radius: 50%;
  background: var(--acc-wash);
  text-align: center;
}
.agent-core::before,
.agent-core::after {
  content: "";
  position: absolute;
  border: 1px solid color-mix(in srgb, var(--acc-deep) 18%, transparent);
  border-radius: 50%;
}
.agent-core::before { inset: 10px; }
.agent-core::after { inset: 20px; }
.agent-core strong,
.agent-core i { position: relative; z-index: 1; }
.agent-core strong { font-family: var(--font-display); font-size: 19px; }
.agent-core i {
  margin-top: 5px;
  color: var(--acc-deep);
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
}

/* ---------- Tarjeta con marco de navegador: un resultado entregado ---------
   <div class="mini-site"><div><i></i><i></i><i></i><b>dominio</b></div>
   <strong>Título</strong><span><i></i> Estado</span></div>                  */
.mini-site {
  overflow: hidden;
  margin: 24px 0;
  border: 1px solid var(--hairline-strong);
  border-radius: 7px;
  background: var(--paper);
  box-shadow: 0 12px 30px color-mix(in srgb, var(--ink) 7%, transparent);
}
.mini-site > div {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 12px;
  border-bottom: 1px solid var(--hairline);
  background: var(--paper-deep);
}
.mini-site > div i { width: 5px; height: 5px; border-radius: 50%; background: var(--hairline-strong); }
.mini-site > div b { margin-left: 5px; color: var(--ink-faint); font-size: 9px; font-weight: 600; }
.mini-site > strong {
  display: block;
  padding: 22px 16px 10px;
  font-family: var(--font-display);
  font-size: 28px;
}
.mini-site > span {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 16px 20px;
  color: var(--acc-deep);
  font-size: 11px;
  font-weight: 700;
}
.mini-site > span i { width: 8px; height: 8px; border-radius: 50%; background: var(--acc); }

/* ---------- Resultados en tres columnas bajo el mecanismo: <dl class="outcomes"> */
.outcomes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  border-bottom: 1px solid var(--hairline);
}
.outcomes > div { padding: 24px 28px; }
.outcomes > div:first-child { padding-left: 0; }
.outcomes > div:last-child { padding-right: 0; }
.outcomes > div + div { border-left: 1px solid var(--hairline); }
.outcomes dt { color: var(--ink); font-weight: 700; }
.outcomes dd { margin: 7px 0 0; color: var(--ink-soft); font-size: 14px; line-height: 1.5; }

/* ---------- Antes / después como dos cadenas de pasos -------------------- */
.flow-compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 64px;
  margin-top: 52px;
}
.flow-compare > div { padding-top: 22px; border-top: 1px solid var(--hairline-strong); }
.flow-compare .is-after { border-top-color: var(--acc); }
.flow-compare h3 { margin: 0 0 18px; }
.flow-compare ol { display: flex; flex-wrap: wrap; gap: 9px; margin: 0; padding: 0; list-style: none; }
.flow-compare li { display: flex; align-items: center; color: var(--ink-soft); font-size: 15px; font-weight: 600; }
.flow-compare li:not(:last-child)::after { content: "→"; margin-left: 9px; color: var(--ink-faint); font-weight: 400; }
.flow-compare .is-after li { color: var(--ink); font-size: 18px; }
.flow-compare .is-after li:not(:last-child)::after { color: var(--acc-deep); }

/* ---------- Tres afirmaciones con regla arriba y abajo: <dl class="highlights"> */
.highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 52px 0 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.highlights div { padding: 26px 28px; }
.highlights div:first-child { padding-left: 0; }
.highlights div:last-child { padding-right: 0; }
.highlights div + div { border-left: 1px solid var(--hairline); }
.highlights dt { color: var(--ink); font-weight: 700; line-height: 1.35; }
.highlights dd { margin: 8px 0 0; color: var(--ink-soft); font-size: 15px; line-height: 1.5; }

/* ---------- Pasos con escena dibujada arriba y copy abajo ----------------
   <ol class="steps"><li><div class="step-scene is-…" aria-hidden="true">…</div>
   <div class="step-copy"><span class="step-num">01</span><h3>…</h3><p>…</p></div></li> */
.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin: 52px 0 0;
  padding: 0;
  list-style: none;
}
.steps.is-four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.steps li { overflow: hidden; border: 1px solid var(--hairline); border-radius: min(1vw, 10px); background: var(--card); }
.step-scene {
  position: relative;
  display: flex;
  min-height: 210px;
  padding: 26px;
  border-bottom: 1px solid var(--hairline);
  background: var(--paper-deep);
}
.step-copy { padding: 24px; }
.step-copy .step-num { display: block; margin-bottom: 22px; }
.step-num { color: var(--acc-deep); font-size: 13px; font-weight: 700; font-variant-numeric: tabular-nums; letter-spacing: 0.08em; }
.steps h3 { margin: 0 0 8px; }
.steps p { max-width: 62ch; margin: 0; color: var(--ink-soft); font-size: 17px; line-height: 1.55; }

/* avatar redondo; .is-us es la casa */
.person {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid var(--hairline-strong);
  border-radius: 50%;
  background: var(--card);
  color: var(--ink-soft);
  font-family: var(--font-display);
  font-weight: 700;
}
.person.is-us { background: var(--ink); color: var(--paper); }

/* escena: dos personas unidas por una línea de acento */
.step-scene.is-connect { align-items: center; justify-content: center; gap: 16px; }
.step-scene.is-connect > i { width: 46px; height: 1px; background: var(--acc); }
.step-scene.is-connect b { position: absolute; right: 22px; bottom: 20px; left: 22px; color: var(--ink-soft); font-size: 11px; text-align: center; }

/* escena: una instrucción escrita y su botón de enviar */
.step-scene.is-instruct { flex-direction: column; justify-content: center; }
.step-scene.is-instruct > span {
  padding: 15px;
  border-radius: 7px 7px 2px 7px;
  background: var(--card);
  box-shadow: 0 8px 22px color-mix(in srgb, var(--ink) 6%, transparent);
  color: var(--ink);
  font-size: 13px;
  line-height: 1.45;
}
.step-scene.is-instruct > b { align-self: flex-end; margin-top: 10px; color: var(--acc-deep); font-size: 11px; }
.step-scene.is-instruct i { margin-left: 4px; font-style: normal; }

/* escena: un resultado publicado con su dueño al pie */
.step-scene.is-control { display: grid; grid-template-columns: 1fr auto; grid-template-rows: auto 1fr auto; gap: 14px; align-items: center; }
.step-scene.is-control > div { grid-column: 1 / -1; }
.step-scene.is-control > div span { display: inline-block; width: 6px; height: 6px; margin-right: 3px; border-radius: 50%; background: var(--hairline-strong); }
.step-scene.is-control > strong { align-self: start; font-family: var(--font-display); font-size: 22px; }
.step-scene.is-control > b { align-self: start; color: var(--acc-deep); font-size: 11px; }
.step-scene.is-control > b i { display: inline-block; width: 7px; height: 7px; margin-right: 5px; border-radius: 50%; background: var(--acc); }
.step-scene.is-control > small { grid-column: 1 / -1; padding-top: 12px; border-top: 1px solid var(--hairline); color: var(--ink-soft); }

/* escena: una lista de tareas que se van marcando (nueva; para roles/habilidades) */
.step-scene.is-tasks { flex-direction: column; justify-content: center; gap: 9px; }
.step-scene.is-tasks > span {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 6px;
  background: var(--card);
  box-shadow: 0 6px 18px color-mix(in srgb, var(--ink) 5%, transparent);
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
}
.step-scene.is-tasks > span i { flex: none; width: 14px; height: 14px; border: 1px solid var(--hairline-strong); border-radius: 50%; }
.step-scene.is-tasks > span.is-done i { border-color: var(--acc); background: var(--acc); }
.step-scene.is-tasks > span.is-done { color: var(--ink-soft); text-decoration: line-through; text-decoration-color: var(--hairline-strong); }

/* ---------- Para quién sí / para quién no ------------------------------- */
.fit-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 64px; margin-top: 52px; }
.fit-grid > div { padding-top: 24px; border-top: 1px solid var(--hairline); }
.fit-grid p { max-width: 60ch; color: var(--ink-soft); font-size: 18px; line-height: 1.58; }

/* enlace de texto subrayado con acento */
.text-cta { display: inline-flex; margin-top: 32px; color: var(--acc-deep); font-weight: 700; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 5px; }
.text-cta:hover { color: var(--ink); }

/* ---------- Responsive: el mecanismo se apila y las flechas giran -------- */
@media (max-width: 1100px) {
  .steps.is-four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
  .fit-grid, .flow-compare { grid-template-columns: 1fr; }
  .mechanism { grid-template-columns: 1fr; max-width: 680px; }
  .mechanism-stage { min-height: 250px; }
  .mechanism-arrow { height: 52px; }
  .mechanism-arrow::before { inset: 50% 28px auto; width: auto; height: 1px; }
  .mechanism-arrow span { transform: rotate(90deg); }
  .outcomes { grid-template-columns: 1fr; max-width: 680px; }
  .outcomes > div, .outcomes > div:first-child, .outcomes > div:last-child { padding: 20px 0; }
  .outcomes > div + div { border-top: 1px solid var(--hairline); border-left: 0; }
  .flow-compare { gap: 30px; }
  .steps, .steps.is-four { grid-template-columns: 1fr; }
  .steps li { display: grid; grid-template-columns: minmax(240px, 0.7fr) 1fr; }
  .step-scene { border-right: 1px solid var(--hairline); border-bottom: 0; }
  .highlights { grid-template-columns: 1fr; }
  .highlights div, .highlights div:first-child, .highlights div:last-child { padding: 22px 0; }
  .highlights div + div { border-top: 1px solid var(--hairline); border-left: 0; }
}
@media (max-width: 640px) {
  .fit-grid { gap: 38px; }
  .mechanism { margin-top: 38px; }
  .mechanism-stage { min-height: 230px; padding: 22px; }
  .flow-compare, .highlights { margin-top: 36px; }
  .steps li { grid-template-columns: 1fr; }
  .step-scene { min-height: 180px; border-right: 0; border-bottom: 1px solid var(--hairline); }
}
@media (prefers-reduced-motion: no-preference) {
  .mechanism-arrow span { transition: transform 200ms ease; }
}

/* ---------- FAQ: <details> nativo, sin JS; el resumen es el botón ---------- */
.faq { max-width: 780px; margin-top: 44px; border-top: 1px solid var(--hairline); }
.faq details { border-bottom: 1px solid var(--hairline); }
.faq summary {
  cursor: pointer;
  padding: 20px 36px 20px 0;
  position: relative;
  color: var(--ink);
  font-size: clamp(17px, 1.8vw, 19px);
  font-weight: 600;
  line-height: 1.4;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 18px;
  color: var(--acc-deep);
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
}
.faq details[open] summary::after { content: "–"; }
.faq details > p { max-width: 64ch; margin: 0 0 22px; color: var(--ink-soft); font-size: 16.5px; line-height: 1.6; }

/* ══════════════════════════════════════════════════════════════════════════
   MARCO .mock, .proof, .feature-list Y LOS HEROES DE OFERTA (.hero-mock, .hs-*)
   Movidos aqui desde styles.css el 6-sep-2026 al cerrar la deriva de dos
   copias (c09b196 en styles.css vs eb53e2c aqui). Este archivo es el canonico
   de todo lo derivado del Website Builder; depende de los tokens de styles.css
   (--sand*, --acc*, --hairline*) y debe cargarse DESPUES, como ya fija
   ai-employee-page.test.mjs.

   SEGUNDO INTENTO. El primero (70c3a6c) escribio estas reglas a disco y un
   guardado del editor de la otra sesion, con un buffer anterior, las piso
   segundos despues; el `git add` tomo el archivo ya revertido y el commit
   quedo sin ellas. Por eso este commit verifica `git diff --cached --stat`
   ANTES de commitear. Recuperadas de c09b196 (marco/proof/feature-list) y
   re-emitidas (escenas, que nunca se habian commiteado).

   HEROES DE OFERTA. El mismo marco (.mock) en las seis paginas de servicio con
   una ESCENA DISTINTA por oferta. Directiva de Alex, 6-sep 02:17: "insert the
   same hero in all of the pages" y "do not replicate the same images … make
   them unique, communicating the value proposition of the offers". Todo es
   decorativo (aria-hidden); el marco lleva role="img" + aria-label con la
   lectura en una frase, como el .wsb-demo original.
   ══════════════════════════════════════════════════════════════════════════ */
.mock { overflow: hidden; border: 1px solid var(--hairline-strong); border-radius: min(1vw, 12px); background: var(--card); box-shadow: 0 18px 50px rgba(28, 25, 23, 0.08); }
.mock-bar { display: flex; align-items: center; gap: 7px; padding: 14px 18px; border-bottom: 1px solid var(--hairline); background: var(--paper-deep); }
.mock-bar span { width: 8px; height: 8px; flex: 0 0 auto; border-radius: 50%; background: var(--hairline-strong); }
.mock-bar strong { min-width: 0; margin-left: 7px; overflow: hidden; color: var(--ink-faint); font-size: 12px; font-weight: 500; text-overflow: ellipsis; white-space: nowrap; }
.mock-body { padding: 22px; }
.mock-caption { margin: 0; padding: 18px 34px; border-top: 1px solid var(--hairline); color: var(--ink-soft); font-family: var(--font-display); font-size: 18px; font-weight: 600; }
.mock-site { overflow: hidden; min-height: 290px; border: 1px solid var(--hairline); border-radius: 7px; background: var(--sand); }
.mock-site-nav { display: flex; align-items: center; justify-content: space-between; padding: 13px 16px; border-bottom: 1px solid rgba(28, 25, 23, 0.1); color: var(--sand-ink); font-size: 8px; letter-spacing: 0.05em; }
.mock-site-nav b { font-size: 10px; letter-spacing: 0.16em; }
.mock-site-content { display: grid; grid-template-columns: 1fr 0.9fr; gap: 16px; align-items: center; padding: 28px 20px; }
.mock-site-content small { display: block; margin-bottom: 8px; color: var(--sand-accent); font-size: 8px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
.mock-site-content strong { display: block; color: var(--sand-ink); font-family: var(--font-display); font-size: clamp(24px, 3vw, 39px); line-height: 0.96; }
.mock-site-content i { display: inline-block; margin-top: 18px; padding-bottom: 3px; border-bottom: 1px solid var(--sand-accent); color: var(--sand-ink-soft); font-size: 9px; font-style: normal; font-weight: 700; }
.mock-site-photo { position: relative; overflow: hidden; aspect-ratio: 0.92; border-radius: 48% 48% 8px 8px; background: var(--sand-photo); box-shadow: inset 0 0 0 1px rgba(28, 25, 23, 0.08); }
.mock-site-photo img { display: block; width: 100%; height: 100%; object-fit: cover; }
.mock-command { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 18px; align-items: end; margin-top: 16px; }
.mock-label { margin: 0 0 10px; color: var(--ink-faint); font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.mock-message { margin: 0; padding: 12px 14px; border-radius: 8px; background: var(--acc-wash); color: var(--ink); font-size: 13px; line-height: 1.5; }
.mock-published { display: flex; align-items: center; gap: 10px; padding-bottom: 12px; font-size: 12px; font-weight: 700; white-space: nowrap; }
.mock-published span { width: 10px; height: 10px; flex: 0 0 auto; border-radius: 50%; background: var(--acc); }
.proof > div > p { max-width: 60ch; color: var(--ink-soft); font-size: 18px; line-height: 1.58; }
.feature-list { max-width: 760px; margin: 40px 0 0; }
.feature-list div { padding-block: 18px; border-top: 1px solid rgba(28, 25, 23, 0.1); }
.feature-list dt { font-weight: 700; }
.feature-list dd { margin: 5px 0 0; color: var(--ink-soft); line-height: 1.5; }
.proof { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr); gap: 72px; align-items: center; }
.proof h2 { margin-bottom: 12px; }
.proof-visual { overflow: hidden; margin: 0; border: 1px solid var(--hairline-strong); border-radius: min(1vw, 12px); background: var(--card); box-shadow: 0 18px 50px rgba(28, 25, 23, 0.07); }
.proof-top { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 16px 20px; border-bottom: 1px solid var(--hairline); color: var(--ink-faint); font-size: 11px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; }
.proof-top b { color: var(--acc-deep); font-size: 10px; }
.proof-visual ol { margin: 0; padding: 8px 20px; list-style: none; }
.proof-visual li { display: grid; grid-template-columns: 28px minmax(0, 1fr) auto; gap: 12px; align-items: center; padding-block: 16px; border-bottom: 1px solid var(--hairline); }
.proof-visual li:last-child { border-bottom: 0; }
.proof-visual li > span { color: var(--ink-faint); font-size: 10px; font-weight: 700; }
.proof-visual li strong, .proof-visual li small { display: block; }
.proof-visual li strong { font-size: 13px; }
.proof-visual li small { margin-top: 3px; color: var(--ink-faint); font-size: 11px; }
.proof-visual li > i { color: var(--acc-deep); font-size: 10px; font-style: normal; font-weight: 700; }
.proof-result { display: flex; gap: 13px; align-items: center; margin: 8px 20px 20px; padding: 18px; border-radius: 8px; background: var(--acc-wash); }
.proof-result > span { width: 12px; height: 12px; flex: 0 0 auto; border: 3px solid var(--card); border-radius: 50%; outline: 1px solid var(--acc); background: var(--acc); }
.proof-result small, .proof-result strong { display: block; }
.proof-result small { margin-bottom: 3px; color: var(--acc-deep); font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.proof-result strong { font-family: var(--font-display); font-size: 17px; }
.proof-visual figcaption { padding: 0 20px 18px; color: var(--ink-faint); font-size: 10px; line-height: 1.45; }
@media (max-width: 900px) {
  .proof { grid-template-columns: 1fr; }
  .mock { max-width: 640px; }
  .proof { gap: 42px; }
  .proof-visual { max-width: 680px; }
}
@media (max-width: 640px) {
  .mock-body { padding: 24px; }
  .mock-caption { padding-inline: 24px; }
  .mock-command { grid-template-columns: 1fr; }
  .mock-published { padding: 0; }
  .proof { gap: 34px; }
}
.hero-mock { width: 100%; max-width: 560px; justify-self: end; }
.hero-mock .mock-body { display: grid; gap: 14px; padding: 18px; background: var(--paper); }
.hs-row { display: grid; grid-template-columns: 1fr auto; gap: 12px; align-items: center; padding: 12px 14px; border: 1px solid var(--hairline); border-radius: 8px; background: var(--card); }
.hs-row strong { display: block; font-size: 13px; }
.hs-row small { display: block; margin-top: 3px; color: var(--ink-faint); font-size: 11px; }
.hs-tag { padding: 5px 9px; border-radius: 4px; background: var(--acc-wash); color: var(--acc-deep); font-size: 10px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; white-space: nowrap; }
.hs-tag.is-ok { background: var(--ink); color: var(--paper); }
.hs-arrow { display: grid; place-items: center; color: var(--acc-deep); font-size: 18px; }
/* e: asignas → trabaja → apruebas */
.hs-e .hs-approve { display: flex; gap: 8px; align-items: center; }
.hs-e .hs-approve b { padding: 7px 12px; border-radius: 5px; background: var(--ink); color: var(--paper); font-size: 11px; }
.hs-e .hs-approve i { width: 8px; height: 8px; border-radius: 50%; background: var(--acc); }
/* a: tres capturas iguales → un flujo */
.hs-a { grid-template-columns: 1fr 44px 1fr; align-items: center; }
.hs-a .hs-stack { display: grid; gap: 8px; }
.hs-a .hs-stack span { display: block; height: 30px; border: 1px dashed var(--hairline-strong); border-radius: 6px; background: repeating-linear-gradient(90deg, var(--hairline) 0 22px, transparent 22px 30px) 10px 50% / 100% 6px no-repeat; }
.hs-a .hs-flow { padding: 14px; border: 1px solid var(--hairline-strong); border-radius: 8px; background: var(--card); }
.hs-a .hs-flow b { display: block; font-family: var(--font-display); font-size: 26px; line-height: 1; }
.hs-a .hs-flow small { color: var(--ink-faint); font-size: 11px; }
.hs-a .hs-flow .hs-row { margin-top: 10px; }
/* b: pregunta en espanol → grafica */
.hs-b .hs-chart { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; align-items: end; height: 96px; padding: 12px; border: 1px solid var(--hairline); border-radius: 8px; background: var(--card); }
.hs-b .hs-chart i { border-radius: 3px 3px 0 0; background: var(--hairline-strong); }
.hs-b .hs-chart i:nth-child(1) { height: 45%; } .hs-b .hs-chart i:nth-child(2) { height: 70%; }
.hs-b .hs-chart i:nth-child(3) { height: 55%; background: var(--acc); } .hs-b .hs-chart i:nth-child(4) { height: 90%; } .hs-b .hs-chart i:nth-child(5) { height: 62%; }
/* g: Excel + WhatsApp + nota → un sistema */
.hs-g { grid-template-columns: 0.9fr 40px 1.1fr; align-items: center; }
.hs-g .hs-scatter { display: grid; gap: 8px; }
.hs-g .hs-scatter span { display: block; padding: 8px 10px; border: 1px solid var(--hairline); border-radius: 6px; background: var(--card); color: var(--ink-faint); font-size: 10px; }
.hs-g .hs-scatter span:nth-child(2) { transform: rotate(-2deg); } .hs-g .hs-scatter span:nth-child(3) { transform: rotate(1.5deg); background: var(--sand); }
.hs-g .hs-system { display: grid; gap: 6px; padding: 12px; border: 1px solid var(--hairline-strong); border-radius: 8px; background: var(--card); }
.hs-g .hs-system span { display: grid; grid-template-columns: 1fr auto; font-size: 11px; padding: 6px 0; border-bottom: 1px solid var(--hairline); }
.hs-g .hs-system span:last-child { border-bottom: 0; }
.hs-g .hs-system i { color: var(--acc-deep); font-style: normal; font-weight: 700; }
/* c: equipo con progreso visible */
.hs-c .hs-people { display: grid; gap: 8px; }
.hs-c .hs-people span { display: grid; grid-template-columns: 30px 1fr auto; gap: 10px; align-items: center; font-size: 11px; }
.hs-c .hs-people .person { width: 30px; height: 30px; font-size: 11px; }
.hs-c .hs-people em { display: block; height: 6px; border-radius: 3px; background: var(--hairline); overflow: hidden; }
.hs-c .hs-people em i { display: block; height: 100%; background: var(--acc); }
.hs-c .hs-people span:nth-child(1) em i { width: 80%; } .hs-c .hs-people span:nth-child(2) em i { width: 60%; }
.hs-c .hs-people span:nth-child(3) em i { width: 45%; } .hs-c .hs-people span:nth-child(4) em i { width: 30%; }
/* ar: puntaje de preparacion */
.hs-ar { grid-template-columns: auto 1fr; align-items: center; gap: 18px; }
.hs-ar .hs-score { display: grid; place-content: center; width: 110px; height: 110px; border-radius: 50%; border: 6px solid var(--acc-wash); border-top-color: var(--acc); border-right-color: var(--acc); text-align: center; }
.hs-ar .hs-score b { font-family: var(--font-display); font-size: 30px; line-height: 1; }
.hs-ar .hs-score small { color: var(--ink-faint); font-size: 10px; }
.hs-ar .hs-pillars { display: grid; gap: 8px; }
.hs-ar .hs-pillars span { display: grid; grid-template-columns: 70px 1fr; gap: 8px; align-items: center; font-size: 11px; }
.hs-ar .hs-pillars em { display: block; height: 6px; border-radius: 3px; background: var(--hairline); overflow: hidden; }
.hs-ar .hs-pillars em i { display: block; height: 100%; background: var(--acc); }
.hs-ar .hs-pillars .hs-row { grid-column: 1 / -1; margin-top: 6px; }
.hs-ar .hs-pillars span:nth-child(1) em i { width: 72%; } .hs-ar .hs-pillars span:nth-child(2) em i { width: 38%; } .hs-ar .hs-pillars span:nth-child(3) em i { width: 55%; }
@media (max-width: 960px) { .hero-mock { max-width: none; justify-self: stretch; } }
@media (max-width: 640px) { .hs-a, .hs-g { grid-template-columns: 1fr; } .hs-a .hs-arrow, .hs-g .hs-arrow { transform: rotate(90deg); height: 30px; } }
