/* Quest Quiet Probe v0.1
   Candidate only. Activated by ?probe=quiet.
   Goal: reduce interface around the thinking without reducing the thinking. */

html[data-quiet-probe="true"] .card {
  min-height: 0;
}

html[data-quiet-probe="true"] .card > .eyebrow {
  display: none;
}

html[data-quiet-probe="true"] .step-help {
  margin: 2px 0 18px;
}

html[data-quiet-probe="true"] .step-help > summary {
  display: inline-flex;
  cursor: pointer;
  color: var(--muted);
  font-size: .86rem;
  line-height: 1.4;
  list-style: none;
}

html[data-quiet-probe="true"] .step-help > summary::-webkit-details-marker {
  display: none;
}

html[data-quiet-probe="true"] .step-help > summary::before {
  content: "+";
  margin-right: 8px;
  color: var(--accent);
}

html[data-quiet-probe="true"] .step-help[open] > summary::before {
  content: "–";
}

html[data-quiet-probe="true"] .step-help .prompt {
  margin-top: 14px;
}

html[data-quiet-probe="true"] .step-help .hint {
  margin-bottom: 0;
}

/* Baseline keeps the current always-visible framing. */
html:not([data-quiet-probe="true"]) .step-help > summary {
  display: none;
}
