/* =========================================================================
   Acurant for research — TAM-50
   Tokens first, so the brand layer is trivial to edit.
   (Diseño aprobado de Claude Design, reproducido fielmente. La sección final
   "Acurant app — additions" añade lo necesario para la app real.)
   ========================================================================= */

:root {
  /* ---- Typography (IBM Plex) ------------------------------------------ */
  --font-mono:  'IBM Plex Mono', ui-monospace, monospace;
  --font-sans:  'IBM Plex Sans', system-ui, sans-serif;
  --font-serif: 'IBM Plex Serif', Georgia, serif;

  /* ---- Base color (inherited B/W layer) ------------------------------- */
  --black:      #000000;
  --white:      #ffffff;
  --gray-050:   #fafafa;   /* faint section wash               */
  --gray-100:   #f5f5f5;   /* secondary surfaces, filled fields */
  --hairline:   #e4e4e4;   /* structural separators (soft)      */
  --hairline-2: #d2d2d2;   /* stronger hairline on focus/hover  */
  --ink-700:    #2a2a2a;   /* prose                             */
  --ink-500:    #585858;   /* meta / secondary (AA on white)    */
  --ink-400:    #6f6f6f;   /* faint meta                        */

  /* ---- Functional semantic accents (state only, never decoration) ----- */
  --ok:    #1e9e57;   /* consenso fuerte / oportunidad */
  --warn:  #ffb238;   /* saturación / atención media   */
  --risk:  #ff6b60;   /* ya respondido / riesgo        */

  /* ---- Acurant product accent (sober, editable identity colour) -------
     Puede sobreescribirse por tenant: main.js aplica TENANT_CONFIG.accentColor
     a --acurant si está definido. */
  --acurant: #1f44c4;          /* logo mark + nav detail only */
  --acurant-soft: #eef1fc;     /* faint wash for active nav    */

  /* ---- Spacing scale (TAM exact: 4 8 12 16 24 32 48 64 96 128) -------- */
  --s4: 4px;  --s8: 8px;  --s12: 12px; --s16: 16px; --s24: 24px;
  --s32: 32px; --s48: 48px; --s64: 64px; --s96: 96px; --s128: 128px;

  /* ---- Radius --------------------------------------------------------- */
  --r0: 0px;   /* writing / data-entry surfaces */
  --r4: 4px;   /* every other contained surface */
}

/* =========================================================================
   Reset / base
   ========================================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-700);
  background: var(--white);
}
a { color: var(--acurant); text-decoration: none; }
a:hover { text-decoration: underline; }
button { font-family: inherit; cursor: pointer; }

/* Visible, consistent focus for keyboard users (WCAG 2.2 AA) */
:focus-visible {
  outline: 2px solid var(--acurant);
  outline-offset: 2px;
}

/* Mono helper for chrome / labels / metadata / technical strings */
.mono {
  font-family: var(--font-mono);
  font-feature-settings: "ss01" on;
}
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--ink-500);
}
.display {
  font-family: var(--font-sans);
  font-weight: 500;            /* Medium — never Bold */
  letter-spacing: -0.01em;
}

/* =========================================================================
   App shell
   ========================================================================= */
.app {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ---- Top chrome bar --------------------------------------------------- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s24);
  height: 56px;
  padding: 0 var(--s48);
  background: var(--white);
  border-bottom: 1px solid var(--hairline);
}
.brand {
  display: flex;
  align-items: center;
  gap: var(--s12);
}
.brand__mark {
  width: 18px;
  height: 18px;
  border-radius: var(--r4);
  background: var(--acurant);
  flex: none;
}
.brand__name {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: var(--black);
  line-height: 1;
}
.brand__suffix {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--ink-500);
  margin-left: var(--s4);
}
.topbar__right {
  display: flex;
  align-items: center;
  gap: var(--s16);
}
.workspace {
  display: flex;
  align-items: center;
  gap: var(--s8);
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-500);
}
.workspace svg { width: 14px; height: 14px; color: var(--ink-400); }

/* =========================================================================
   Main layout — 8-column grid (work area 5 / memory 3)
   ========================================================================= */
.main {
  flex: 1 1 auto;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: var(--s48);
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: var(--s32);
  align-items: start;
}
.work   { grid-column: 1 / span 5; min-width: 0; }
.memory { grid-column: 6 / span 3; min-width: 0; position: sticky; top: 88px; }

/* =========================================================================
   Hypothesis entry
   ========================================================================= */
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--s16);
  margin-bottom: var(--s16);
}
.section-head__title {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: var(--black);
  margin: var(--s4) 0 0;
}

.entry {
  border: 1px solid var(--hairline);
  border-radius: var(--r4);
  background: var(--white);
  padding: var(--s24);
}
.entry__field {
  /* the writing surface — square corners r0 */
  display: block;
  width: 100%;
  min-height: 116px;
  resize: vertical;
  border: 1px solid var(--hairline-2);
  border-radius: var(--r0);
  background: var(--white);
  padding: var(--s16);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink-700);
}
.entry__field::placeholder { color: var(--ink-400); }
.entry__field:focus-visible { outline: 2px solid var(--acurant); outline-offset: 0; border-color: var(--acurant); }

.entry__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s16);
  margin-top: var(--s16);
}
.microcopy {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--ink-500);
  max-width: 46ch;
}

/* ---- Buttons (single line, no pill, no shadow) ----------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s8);
  height: 40px;
  padding: 0 var(--s24);
  border: 1px solid var(--black);
  border-radius: var(--r4);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.02em;
  line-height: 1;
  white-space: nowrap;
}
.btn--solid { background: var(--black); color: var(--white); }
.btn--solid:hover { background: #161616; }
.btn--ghost { background: var(--white); color: var(--black); }
.btn--ghost:hover { background: var(--gray-100); }
.btn svg { width: 15px; height: 15px; }
.btn[disabled] { opacity: 0.4; cursor: not-allowed; }
.btn--sm { height: 30px; padding: 0 var(--s12); font-size: 12px; }

/* =========================================================================
   Analyzing (transition) state
   ========================================================================= */
.analyzing {
  margin-top: var(--s24);
  border: 1px solid var(--hairline);
  border-radius: var(--r4);
  padding: var(--s24);
}
.analyzing__label {
  display: flex; align-items: center; gap: var(--s8);
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-700);
  margin-bottom: var(--s16);
}
.analyzing__label .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--black);
  animation: pulse 1s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.25} }
.progress {
  height: 3px;
  background: var(--gray-100);
  border-radius: var(--r4);
  overflow: hidden;
}
.progress__bar {
  height: 100%;
  width: 0%;
  background: var(--black);
  transition: width 0.25s linear;
}
.progress__bar.is-indeterminate {
  width: 100%;
  background: linear-gradient(
    90deg,
    var(--gray-100) 0%,
    rgba(0, 0, 0, 0.12) 40%,
    rgba(0, 0, 0, 0.22) 50%,
    rgba(0, 0, 0, 0.12) 60%,
    var(--gray-100) 100%
  );
  background-size: 300% 100%;
  animation: progressShimmer 1.8s ease-in-out infinite;
  transition: none;
}
@keyframes progressShimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -100% 0; }
}
.analyzing__steps {
  margin: var(--s16) 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: var(--s8);
}
.analyzing__steps li {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-400);
  display: flex; align-items: center; gap: var(--s8);
}
.analyzing__steps li.done { color: var(--ink-700); }
.analyzing__steps li.is-active {
  color: var(--ink-700);
  animation: stepPulse 1.5s ease-in-out infinite;
}
@keyframes stepPulse { 0%,100% { opacity: 1; } 50% { opacity: 0.45; } }
.analyzing__steps li .tick { width: 12px; height: 12px; color: var(--ok); }

/* =========================================================================
   Verdict
   ========================================================================= */
.results { display: none; }
.results.is-visible { display: block; animation: rise 0.3s ease both; }
@keyframes rise { from { opacity: 0; transform: translateY(6px);} to { opacity:1; transform:none; } }

.empty {
  border: 1px dashed var(--hairline-2);
  border-radius: var(--r4);
  padding: var(--s48) var(--s32);
  text-align: center;
  color: var(--ink-400);
  font-family: var(--font-mono);
  font-size: 13px;
  margin-top: var(--s24);
}

/* verdict strip */
.verdict {
  margin-top: var(--s24);
  border: 1px solid var(--black);
  border-radius: var(--r4);
  background: var(--white);
  overflow: hidden;
}
.verdict__top {
  display: flex;
  align-items: baseline;
  gap: var(--s16);
  padding: var(--s24);
  border-bottom: 1px solid var(--hairline);
}
.verdict__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--black);
  padding: var(--s4) var(--s8);
  border-radius: var(--r4);
  flex: none;
  align-self: flex-start;
  margin-top: 2px;
}
.verdict__line {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 21px;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--black);
  text-wrap: pretty;
}

/* indicators row */
.indicators {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.indicator {
  padding: var(--s16) var(--s24);
  border-right: 1px solid var(--hairline);
}
.indicator:last-child { border-right: 0; }
.indicator__label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-500);
}
.indicator__value {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 15px;
  color: var(--black);
  margin: var(--s8) 0 var(--s12);
  line-height: 1.25;
}
.meter { display: flex; gap: var(--s4); }
.meter span {
  height: 4px;
  flex: 1;
  background: var(--hairline);
  border-radius: 2px;
}
.meter span.on-ok   { background: var(--ok); }
.meter span.on-warn { background: var(--warn); }
.meter span.on-risk { background: var(--risk); }

/* prose blocks */
.blocks { margin-top: var(--s24); display: grid; gap: var(--s16); }
.block {
  border: 1px solid var(--hairline);
  border-radius: var(--r4);
  background: var(--white);
  padding: var(--s24);
}
.block__head {
  display: flex; align-items: center; gap: var(--s8);
  margin-bottom: var(--s12);
}
.block__head .eyebrow { color: var(--black); }
.block__head svg { width: 15px; height: 15px; color: var(--ink-500); }
.block__body { font-size: 15px; line-height: 1.6; color: var(--ink-700); text-wrap: pretty; }
.block__body p { margin: 0; }
.block__body p + p { margin-top: var(--s12); }

/* cite-ref: citas clicables [n] en la prosa */
.cite-ref {
  position: relative;
  display: inline;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--acurant);
  opacity: 0.75;
  cursor: pointer;
  white-space: nowrap;
}
.cite-ref:hover { opacity: 1; }

/* tooltip — aparece con CSS hover, sin JS */
.cite-tooltip {
  display: none;
  position: absolute;
  bottom: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  width: 260px;
  /* Evita desbordamiento lateral: el tooltip no puede crecer más que la ventana
     menos un margen de seguridad en cada lado. */
  max-width: min(260px, calc(100vw - var(--s24)));
  background: var(--white);
  border: 1px solid var(--hairline-2);
  border-radius: var(--r4);
  padding: var(--s12);
  pointer-events: none;
  overflow: hidden;
  white-space: normal; /* cancela el nowrap heredado de .cite-ref */
}
.cite-ref:hover .cite-tooltip { display: block; }
.cite-tooltip__title {
  display: block;
  font-family: var(--font-sans);
  font-size: 12.5px;
  font-weight: 500;
  color: var(--black);
  line-height: 1.4;
  margin-bottom: var(--s4);
  overflow-wrap: break-word;
  word-wrap: break-word;
}
.cite-tooltip__meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-500);
  display: flex; flex-wrap: wrap; gap: var(--s4);
  overflow-wrap: break-word;
  word-wrap: break-word;
}
.cite-tooltip__meta .sep { color: var(--hairline-2); }

/* highlight temporal al saltar a una fuente desde una cita */
@keyframes sourceHighlight {
  0%   { background: transparent; }
  15%  { background: var(--gray-100); }
  75%  { background: var(--gray-100); }
  100% { background: transparent; }
}
.source.is-highlighted {
  animation: sourceHighlight 1.4s ease both;
  border-radius: var(--r4);
}

/* opportunity marker on the gaps block */
.block--gap { border-left: 3px solid var(--ok); }
.tag-opp {
  display: inline-flex; align-items: center; gap: var(--s4);
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ok);
  margin-left: auto;
}
.tag-opp .sq { width: 8px; height: 8px; background: var(--ok); border-radius: 2px; }

/* sources */
.sources { display: grid; gap: 0; }
.source {
  display: flex;
  align-items: flex-start;
  gap: var(--s16);
  padding: var(--s16) 0;
  border-top: 1px solid var(--hairline);
}
.source:first-child { border-top: 0; padding-top: var(--s4); }
.source__idx {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-400);
  width: 22px; flex: none;
  padding-top: 1px;
}
.source__main { min-width: 0; flex: 1; }
.source__title {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 14.5px;
  line-height: 1.4;
  color: var(--black);
}
.source__title a { color: var(--black); }
.source__title a:hover { color: var(--acurant); }
.source__meta {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--ink-500);
  margin-top: var(--s4);
  display: flex; flex-wrap: wrap; gap: var(--s8);
}
.source__meta .sep { color: var(--hairline-2); }
.source__title button {
  background: none; border: none; padding: 0; margin: 0;
  font: inherit; color: inherit; text-align: left; cursor: pointer;
  font-family: var(--font-sans); font-weight: 500; font-size: 14.5px; line-height: 1.4;
}
.source__title button:hover { color: var(--acurant); }
.source__link { flex: none; padding-top: 1px; }
.source__link a { display: inline-flex; color: var(--ink-500); }
.source__link svg { width: 16px; height: 16px; }
.source__link a:hover { color: var(--acurant); }

/* source popup */
.source-popup-backdrop {
  position: fixed; inset: 0;
  background: rgba(0, 0, 0, 0.35);
  display: flex; align-items: center; justify-content: center;
  z-index: 100;
  padding: var(--s16);
}
.source-popup-backdrop.is-hidden { display: none; }
.source-popup {
  background: var(--white);
  border: 1px solid var(--hairline-2);
  border-radius: var(--r4);
  width: 100%; max-width: 560px;
  max-height: 80vh;
  overflow-y: auto;
  padding: var(--s24);
  display: flex; flex-direction: column; gap: var(--s16);
}
.source-popup__header { display: flex; align-items: flex-start; justify-content: space-between; gap: var(--s16); }
.source-popup__title {
  font-family: var(--font-sans); font-weight: 500; font-size: 15px; line-height: 1.4;
  color: var(--black); flex: 1;
}
.source-popup__close {
  background: none; border: 1px solid var(--hairline-2); border-radius: var(--r4);
  padding: var(--s4) var(--s8);
  font-family: var(--font-mono); font-size: 11px; color: var(--ink-500);
  cursor: pointer; flex: none; white-space: nowrap;
}
.source-popup__close:hover { border-color: var(--ink-500); color: var(--ink-700); }
.source-popup__meta {
  font-family: var(--font-mono); font-size: 11.5px; color: var(--ink-500);
  display: flex; flex-wrap: wrap; gap: var(--s8);
}
.source-popup__meta .sep { color: var(--hairline-2); }
.source-popup__divider { border: none; border-top: 1px solid var(--hairline); margin: 0; }
.source-popup__summary-label {
  font-family: var(--font-mono); font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--ink-400);
}
.source-popup__summary-text {
  font-family: var(--font-sans); font-size: 14px; line-height: 1.65; color: var(--ink-700);
}
.source-popup__no-summary {
  font-family: var(--font-mono); font-size: 12px; color: var(--ink-400);
}
.source-popup__footer { display: flex; justify-content: flex-end; }
.source-popup__doi {
  font-family: var(--font-mono); font-size: 12px;
  color: var(--ink-500); text-decoration: underline;
}
.source-popup__doi:hover { color: var(--acurant); }

.provenance {
  margin-top: var(--s16);
  padding-top: var(--s16);
  border-top: 1px solid var(--hairline);
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-400);
  display: flex; align-items: center; gap: var(--s8);
}
.provenance .sq { width: 8px; height: 8px; border-radius: 2px; background: var(--acurant); flex: none; }

.sources__provenance {
  margin-top: var(--s12);
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-400);
  display: flex; align-items: baseline; gap: var(--s8);
}
.sources__provenance .sq { width: 8px; height: 8px; border-radius: 2px; background: var(--ok); flex: none; margin-top: 2px; }
.sources__provenance a { color: var(--ink-400); text-decoration: underline; }
.sources__provenance a:hover { color: var(--acurant); }

/* =========================================================================
   Institutional memory (history)
   ========================================================================= */
.memory__panel {
  border: 1px solid var(--hairline);
  border-radius: var(--r4);
  background: var(--white);
  overflow: hidden;
}
.memory__head {
  padding: var(--s16) var(--s16) var(--s12);
  border-bottom: 1px solid var(--hairline);
}
.memory__title {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 14px;
  color: var(--black);
  margin: var(--s4) 0 0;
}
.memory__list { list-style: none; margin: 0; padding: 0; }
.memory__item {
  width: 100%;
  text-align: left;
  background: var(--white);
  border: 0;
  border-bottom: 1px solid var(--hairline);
  padding: var(--s16);
  display: block;
  transition: background 0.12s ease;
}
.memory__item:last-child { border-bottom: 0; }
.memory__item:hover { background: var(--gray-050); }
.memory__item.is-active { background: var(--acurant-soft); border-left: 3px solid var(--acurant); padding-left: calc(var(--s16) - 3px); }
.memory__q {
  font-family: var(--font-sans);
  font-size: 13.5px;
  line-height: 1.4;
  color: var(--ink-700);
  text-wrap: pretty;
}
.memory__v {
  display: flex; align-items: center; gap: var(--s8);
  margin-top: var(--s8);
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-500);
}
.memory__v .sq { width: 8px; height: 8px; border-radius: 2px; flex: none; }
.sq.ok { background: var(--ok); } .sq.warn { background: var(--warn); } .sq.risk { background: var(--risk); }
.memory__date {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--ink-400);
  margin-top: var(--s8);
}

/* =========================================================================
   Footer — TAM signature (mandatory anchor)
   ========================================================================= */
.footer {
  border-top: 1px solid var(--hairline);
  margin-top: var(--s64);
}
.footer__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: var(--s32) var(--s48) var(--s48);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s24);
}
.signature {
  display: inline-flex;
  align-items: center;
  gap: var(--s12);
  color: var(--ink-500);
}
.signature__by {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--ink-400);
}
/* wordmark placeholder — swap for the real with_wordmark_image asset */
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: var(--s8);
  color: var(--black);
}
.wordmark:hover { text-decoration: none; }
.wordmark__text {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--black);
}
.footer__meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-400);
}

/* =========================================================================
   Responsive fallback (desktop-first)
   ========================================================================= */
@media (max-width: 1080px) {
  .topbar { padding: 0 var(--s24); }
  .main { padding: var(--s24); grid-template-columns: 1fr; gap: var(--s24); }
  .work, .memory { grid-column: auto; }
  .memory { position: static; }
  .indicators { grid-template-columns: 1fr; }
  .indicator { border-right: 0; border-bottom: 1px solid var(--hairline); }
  .indicator:last-child { border-bottom: 0; }
  .footer__inner { padding: var(--s24); flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  .results.is-visible, .analyzing__label .dot { animation: none; }
}

/* =========================================================================
   Acurant app — additions over el diseño aprobado
   (no estaban en el prototipo: marcador de stance, empty-state de memoria,
   aviso de error de API)
   ========================================================================= */

/* Marcador de stance por fuente. Reusa el lenguaje de color semántico:
   apoya → ok, contradice → risk, neutral → tinta tenue. */
.source__stance {
  width: 8px; height: 8px; border-radius: 2px;
  flex: none;
  margin-top: 4px;
}
.source__stance.supports    { background: var(--ok); }
.source__stance.contradicts { background: var(--risk); }
.source__stance.neutral     { background: var(--ink-400); }

/* Empty-state de la memoria institucional (sin historial todavía). */
.memory__empty {
  padding: var(--s24) var(--s16);
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.5;
  color: var(--ink-400);
  text-align: center;
}

/* Aviso de error de API (timeout, Consensus/Claude no disponibles, etc.).
   Mantiene el lenguaje sobrio del diseño, con el coral de estado de riesgo. */
.notice {
  margin-top: var(--s24);
  border: 1px solid var(--hairline);
  border-left: 3px solid var(--risk);
  border-radius: var(--r4);
  padding: var(--s16) var(--s24);
}
.notice__title {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--risk);
  margin-bottom: var(--s4);
}
.notice__body {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--ink-700);
}

/* Lista de huecos de evidencia — marcador cuadrado on-brand (no bullets redondos).
   Verde --ok para reforzar el encuadre de "oportunidad" del bloque. */
.block__gaps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--s12);
}
.block__gaps li {
  position: relative;
  padding-left: var(--s16);
}
.block__gaps li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: var(--ok);
}
