.step-feedback {
	font-size: 13px;
	line-height: 1.3;
	color: #d8d8d8;
}

.step-feedback:empty {
	display: none;
}

.step-feedback.is-error {
	color: var(--color-error);
}

.step-feedback.is-success {
	color: var(--color-success);
}

.banner {
	padding: 10px 12px;
	border-radius: var(--radius-md);
	font-size: 13px;
	line-height: 1.3;
}

.banner--warning {
	background: rgba(251, 191, 36, 0.12);
	border: 1px solid rgba(251, 191, 36, 0.35);
	color: #fde68a;
}

.banner--error {
	background: var(--color-error-muted);
	border: 1px solid rgba(248, 113, 113, 0.35);
	color: var(--color-error);
}

.banner--info {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid var(--border-soft);
	color: var(--color-text-muted);
}

.loading-inline {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	color: var(--color-text-muted);
}

.spinner {
	width: 18px;
	height: 18px;
	border: 2px solid rgba(255, 255, 255, 0.2);
	border-top-color: var(--color-accent);
	border-radius: 999px;
	animation: spin 0.7s linear infinite;
}

.spinner--lg {
	width: 32px;
	height: 32px;
	border-width: 3px;
}

@keyframes spin {
	to { transform: rotate(360deg); }
}

.loading-overlay {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	background: rgba(9, 9, 9, 0.75);
	z-index: 10;
	border-radius: inherit;
}

.loading-overlay__content {
	display: grid;
	gap: 10px;
	place-items: center;
	text-align: center;
	font-size: 14px;
	color: var(--color-text-muted);
}

.skeleton {
	background: linear-gradient(90deg, rgba(255,255,255,0.06) 25%, rgba(255,255,255,0.12) 50%, rgba(255,255,255,0.06) 75%);
	background-size: 200% 100%;
	animation: skeleton-shimmer 1.2s ease infinite;
	border-radius: var(--radius-md);
}

.skeleton--card {
	height: 80px;
}

.skeleton--line {
	height: 14px;
}

.skeleton--line-short {
	width: 60%;
	height: 14px;
}

@keyframes skeleton-shimmer {
	0% { background-position: 200% 0; }
	100% { background-position: -200% 0; }
}

.empty-state {
	display: grid;
	gap: 8px;
	place-items: center;
	padding: 24px 16px;
	text-align: center;
	color: var(--color-text-muted);
	font-size: 14px;
}

.empty-state__icon {
	font-size: 32px;
	opacity: 0.5;
}

.modal-backdrop {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.65);
	display: grid;
	place-items: center;
	z-index: 1000;
	padding: 16px;
}

.modal {
	width: min(400px, 100%);
	padding: 20px;
	border-radius: var(--radius-lg);
	background: var(--surface-2);
	border: 1px solid var(--border-soft);
	box-shadow: var(--shadow);
	display: grid;
	gap: 14px;
}

.modal h2 {
	font-size: 18px;
	font-weight: 800;
}

.modal p {
	font-size: 14px;
	line-height: 1.35;
	color: var(--color-text-muted);
}

.modal-actions {
	display: flex;
	gap: 8px;
	justify-content: flex-end;
}

.modal-actions .btn {
	flex: 1;
}

.progress-bar-indeterminate {
	height: 3px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 999px;
	overflow: hidden;
}

.progress-bar-indeterminate__bar {
	height: 100%;
	width: 40%;
	background: var(--color-accent-gradient);
	border-radius: 999px;
	animation: indeterminate 1.2s ease infinite;
}

@keyframes indeterminate {
	0% { transform: translateX(-100%); }
	100% { transform: translateX(350%); }
}

.fullscreen-loader {
	position: fixed;
	inset: 0;
	z-index: 2000;
	display: grid;
	place-items: center;
	background: rgba(9, 9, 9, 0.9);
	gap: 16px;
}

.fullscreen-loader p {
	font-size: 16px;
	color: var(--color-text-muted);
}

.toast {
	position: fixed;
	bottom: 24px;
	left: 50%;
	transform: translateX(-50%);
	padding: 12px 20px;
	border-radius: var(--radius-md);
	background: var(--surface-2);
	border: 1px solid var(--color-error);
	color: var(--color-error);
	font-size: 14px;
	z-index: 3000;
	max-width: min(400px, calc(100% - 32px));
	text-align: center;
}
