/* ── Future Millionaire OS — Trust Journey Styles ── */

/* Funnel progress bar — thin strip at top of page */
.ais-journey-progress {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: rgba(0, 0, 0, 0.08);
	z-index: 99998;
	display: flex;
	align-items: center;
}

.ais-journey-progress-bar {
	height: 100%;
	background: linear-gradient(90deg, #6366f1, #aaff00);
	transition: width 0.6s ease;
	border-radius: 0 4px 4px 0;
}

.ais-journey-progress-label {
	position: absolute;
	right: 12px;
	top: 6px;
	font-family: Arial, sans-serif;
	font-size: 10px;
	font-weight: 700;
	color: #999;
	letter-spacing: .04em;
	white-space: nowrap;
}

