.card {
  padding: clamp(1rem, 4vw, 1.5rem);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.placeholder-card {
  min-height: 220px;
}

.eyebrow {
  margin-bottom: var(--space-2);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.form-stack {
  display: grid;
  gap: var(--space-3);
}

.field-label,
.metric-label {
  display: block;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 700;
}

.input {
  width: 100%;
  padding: 0.9rem 1rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.input:focus {
  border-color: var(--mbv-red-600);
  box-shadow: 0 0 0 4px rgba(237, 28, 36, 0.14);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  min-height: 44px;
  padding: 0.75rem 1rem;
  font-weight: 800;
  text-decoration: none;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, opacity 160ms ease;
}

.button:hover:not(:disabled) {
  transform: translateY(-1px);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.68;
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--mbv-red-700), var(--mbv-red-500));
  box-shadow: 0 10px 24px rgba(237, 28, 36, 0.22);
}

.button-secondary {
  color: var(--mbv-red-700);
  background: var(--white);
}

.button-disabled {
  color: var(--muted);
  background: var(--surface-soft);
  border: 1px dashed var(--line);
}

.message {
  min-height: 1.5rem;
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 700;
}

.message[data-type="success"] {
  color: var(--success);
}

.message[data-type="warning"] {
  color: var(--warning);
}

.message[data-type="error"] {
  color: var(--error);
}

.pill {
  display: inline-flex;
  align-items: center;
  width: max-content;
  padding: 0.35rem 0.7rem;
  color: var(--mbv-red-700);
  font-size: 0.78rem;
  font-weight: 800;
  background: var(--mbv-red-100);
  border-radius: 999px;
}

.pill-light {
  color: var(--mbv-red-700);
  background: var(--white);
}

.pill-red {
  color: var(--white);
  background: var(--mbv-red-600);
}

.metric-card strong,
.status-strip strong {
  display: block;
  margin-top: var(--space-1);
  overflow-wrap: anywhere;
  font-size: 1.05rem;
}
