/* ── Probe This Device (DCOSMOS-PROBE) ─────────────── */

.probe-intro {
  max-width: 640px;
  margin: 0 auto 24px;
  text-align: center;
}
.probe-intro h2 { font-size: 20px; margin-bottom: 6px; }
.probe-intro p { color: var(--text-secondary); font-size: 13px; line-height: 1.5; }

.probe-stage {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

/* The one bright button. */
.btn-probe-start {
  padding: 16px 44px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.5px;
  box-shadow: 0 0 24px rgba(245, 158, 11, 0.35);
}
.btn-probe-start:disabled {
  opacity: 0.7;
  cursor: default;
  box-shadow: none;
}

/* Chip strip: the scanner's chip language, laid out as a wrapping sweep.
   Identity chips are the solid house chip; flavor chips are dimmer and
   dashed — visibly weather, not identity. */
.probe-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  min-height: 0;
}
.probe-chips .scanner-result-tag.probe-flavor {
  opacity: 0.55;
  border-style: dashed;
  background: rgba(245, 158, 11, 0.04);
}

/* Re-probe note: same device, same cosmos. */
.probe-note {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 12px;
  border: 1px solid var(--accent-dim);
  border-radius: 6px;
  background: var(--accent-glow);
  color: var(--accent);
  font-size: 12px;
  line-height: 1.4;
}
.probe-note[hidden] { display: none; }
.probe-note .btn-reconfirm {
  padding: 4px 12px;
  font-size: 11px;
}

/* Model confirm: "Which device is this?" */
.probe-confirm { text-align: center; }
.probe-confirm[hidden] { display: none; }
.probe-confirm-title {
  font-size: 14px;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.probe-candidates {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.probe-candidate {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  padding: 12px 18px;
  border-radius: 6px;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s;
}
.probe-candidate:hover {
  border-color: var(--accent-dim);
  color: var(--accent);
}
.probe-candidate.selected {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-glow);
  box-shadow: 0 0 12px rgba(245, 158, 11, 0.2);
}
.probe-candidate.generic { border-style: dashed; }

.probe-reveal-row { display: flex; justify-content: center; }
.probe-reveal-row[hidden] { display: none; }
.probe-reveal-row .btn-primary {
  padding: 14px 36px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  box-shadow: 0 0 24px rgba(245, 158, 11, 0.35);
}

/* The ethics stance, made visible. */
.probe-disclosure {
  max-width: 520px;
  text-align: center;
  color: var(--text-dim);
  font-size: 11px;
  line-height: 1.5;
}

