/* ============================================================
   COMPONENT · REASSURANCE  (c-reassurance)
   The calm, NEVER-blinking trust summary (07.C #4 — the single most important new
   component). Its resting state is green/neutral and means "everything's held, you
   can put it down" (B1/B3). It replaces the dashboard's bespoke annunciator +
   callout + gauge stack. No caution, no alarm, no fill bars — a full inbox is
   success, not a meter. Both themes flip for free (semantic aliases only).
   ============================================================ */

.c-reassurance {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  padding: var(--space-5);
  background: color-mix(in srgb, var(--color-ok) 5%, var(--color-surface-raised));
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--seam-embossed);
}

.c-reassurance__head {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

/* Steady OK jewel — the board is green; it does not pulse or blink here (B4). */
.c-reassurance__led { flex: none; }

/* "Today" — engraved chrome (C1): a plaque label, not a message to the user. */
.c-reassurance__plaque {
  font-family: var(--font-plaque);
  font-size: var(--fs-2xs);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.c-reassurance__clock {
  margin-left: auto;
  font-family: var(--font-data);
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
}

/* The reassurance line — warm human content (C1): sentence case, calm, the agent's
   voice. Never ALL-CAPS, never a verdict. */
.c-reassurance__line {
  margin: 0;
  font-size: var(--fs-lg);
  line-height: 1.4;
  color: var(--color-text-strong);
}
