/* ============================================================
   Ask Mira conversation mock — shared by the homepage hero and
   the Ask Mira page. Static markup; no scroll logic.
   ============================================================ */
.agent-panel {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  background: var(--bg);
  padding: 20px;
}

/* Full content width made this read as a sparse page rather than a compact
   UI: prose ran ~150 characters a line and the composer stretched the width
   of the screen. Capped so it stays as dense as the real screenshots
   elsewhere on the site. */
.agent-panel--lg {
  padding: 22px;
  max-width: 880px;
}

.agent-composer {
  border: 1px solid var(--border-subtle);
  border-radius: 999px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  font-size: 0.86rem;
  color: var(--muted);
}

.agent-composer-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.agent-ask {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 14px;
}

.agent-ask span {
  background: var(--bg-soft);
  border-radius: 14px;
  padding: 9px 14px;
  font-size: 0.86rem;
  color: var(--text);
  max-width: 80%;
  line-height: 1.4;
}

/* The visible working steps — the trust device. */
.agent-steps {
  border-left: 1px solid var(--border-subtle);
  padding-left: 16px;
  margin: 0 0 14px;
}

.agent-step {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px 0;
  font-size: 0.8rem;
  color: var(--muted);
}

.agent-step-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #5eb4fb;
  flex-shrink: 0;
  margin-left: -19px;
}

.agent-step-time {
  margin-left: auto;
  font-size: 0.72rem;
  color: #a0a0a0;
}

.agent-prose {
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.6;
  margin: 0 0 12px;
}

.agent-prose:last-child {
  margin-bottom: 0;
}

/* Entity links: how the agent points back into the platform. */
.entity-link {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
  text-decoration-color: #5eb4fb;
  background: #e3f2ff;
  border-radius: 3px;
  padding: 0 3px;
  margin: 0 -1px;
}

.entity-link:hover {
  background: #c3ddff;
  text-decoration-color: var(--accent);
}

/* overflow:hidden clipped the last two columns off the phone with no way to
   reach them. Scroll the table instead, and stop cells wrapping mid-value. */
.agent-table-wrap {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow-x: auto;
  margin-top: 4px;
}

.agent-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
}

.agent-table th {
  text-align: left;
  font-weight: 500;
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 10px;
  border-bottom: 1px solid var(--border-subtle);
  white-space: nowrap;
}

.agent-table td {
  padding: 9px 10px;
  border-bottom: 1px solid var(--bg-soft);
  color: var(--text);
  white-space: nowrap;
}

.agent-table tr:last-child td {
  border-bottom: none;
}

.agent-actions {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}
