.readiness-panel {
  display: grid;
  gap: 8px;
  margin: 0 0 18px;
  padding: 12px 14px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 12px;
  background: rgba(248, 250, 252, 0.92);
}

.readiness-copy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
}

.readiness-copy strong {
  font-size: 13px;
}

.readiness-copy span {
  color: #64748b;
  white-space: nowrap;
}

.readiness-meter {
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.08);
}

.readiness-meter span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: currentColor;
  transition: width 180ms ease;
}

.completion-pill[data-state='complete'] {
  font-weight: 700;
}

@media (max-width: 760px) {
  .readiness-copy {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .readiness-copy span {
    white-space: normal;
  }
}
