/* ============ SETTINGS > YOUR NEURA > SPEAKS — When Neva Speaks ============ */
/* Shell, columns, rows, segmented control and the action strip come from
   account.css. Only the timeline and the preview outcomes are defined here.
   Monochrome: an outcome is carried by fill and opacity, never by hue, so the
   bar reads identically with High contrast on. */

/* ---- the derived day timeline ---- */
.spk-timeline { padding: 6px 0 4px; }
.spk-timeline__bar {
  display: flex;
  gap: 2px;
  height: 40px;
  padding: 4px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
}
.spk-slot {
  flex: 1 1 0;
  min-width: 0;
  border-radius: 3px;
  background: var(--wear-primary);
}
/* speaks: solid. holds: half-lit. silent: an outline of what would have been. */
.spk-slot--speak { opacity: 0.9; }
.spk-slot--hold { opacity: 0.32; }
.spk-slot--silent {
  background: transparent;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
}

.spk-timeline__scale {
  display: flex;
  justify-content: space-between;
  padding: 6px 2px 0;
}
.spk-tick {
  font-size: 9.5px;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--wear-primary);
  opacity: 0.35;
}

.spk-legend { display: flex; align-items: center; gap: 18px; padding-top: 12px; }
.spk-legend__item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 300;
  color: var(--wear-primary);
  opacity: 0.55;
}
.spk-swatch { flex: 0 0 12px; width: 12px; height: 12px; border-radius: 3px; }

/* ---- resolved outcomes ---- */
.spk-outcome {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.spk-outcome:last-child { border-bottom: none; }
.spk-outcome__text { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 3px; }
.spk-outcome__when {
  font-size: 13px;
  font-weight: 300;
  letter-spacing: -0.01em;
  color: var(--wear-primary);
}
.spk-outcome__why {
  font-size: 11px;
  font-weight: 300;
  color: var(--wear-primary);
  opacity: 0.4;
}

/* the verdict repeats the bar's language: solid, half-lit, outline */
.spk-verdict {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  height: 22px;
  padding: 0 11px;
  border: 1px solid transparent;
  border-radius: 11px;
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
}
.spk-verdict--speak { background: var(--wear-primary); color: #101211; }
.spk-verdict--hold {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--wear-primary);
  opacity: 0.85;
}
.spk-verdict--silent {
  border-style: dashed;
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--wear-primary);
  opacity: 0.55;
}
