/* MindForge Academy — tech learning paths */

.mindforge-body {
	min-height: 100vh;
}

.mindforge-brand {
	font-family: Montserrat, Inter, sans-serif;
	font-weight: 800;
	font-size: 18px;
	color: #67e8f9;
}

.mindforge-slogan {
	display: inline-block;
	font-family: Montserrat, Inter, sans-serif;
	font-weight: 800;
	font-size: clamp(14px, 2vw, 16px);
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #67e8f9;
	margin: 0 0 12px;
}

.mindforge-path-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 18px;
	margin-top: 28px;
}

.mindforge-path-card {
	display: flex;
	flex-direction: column;
	gap: 12px;
	background: var(--panel);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 14px;
	padding: 22px;
	text-align: left;
	color: inherit;
	cursor: pointer;
	transition: transform 0.2s ease, border-color 0.2s ease;
}

.mindforge-path-card:hover,
.mindforge-path-card:focus-visible {
	transform: translateY(-2px);
	border-color: rgba(34, 211, 238, 0.45);
	outline: none;
}

.mindforge-path-card.is-enrolled {
	border-color: rgba(34, 211, 238, 0.55);
	background: linear-gradient(180deg, rgba(34, 211, 238, 0.08), var(--panel));
}

.mindforge-path-card .path-icon {
	font-size: 32px;
	line-height: 1;
}

.mindforge-path-card h3 {
	margin: 0;
	font-family: Montserrat, Inter, sans-serif;
	font-size: 20px;
}

.mindforge-path-card .path-tagline {
	margin: 0;
	color: #a5f3fc;
	font-size: 14px;
	font-weight: 600;
}

.mindforge-path-card .path-desc,
.mindforge-path-card .path-bridge {
	margin: 0;
	color: var(--muted);
	font-size: 14px;
	line-height: 1.55;
}

.mindforge-path-card .path-bridge {
	font-size: 13px;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	padding-top: 12px;
}

.mindforge-path-card .path-cta {
	margin-top: auto;
	font-size: 14px;
	font-weight: 700;
	color: #67e8f9;
}

.mindforge-how {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 14px;
	margin: 28px 0 8px;
}

.mindforge-how-step {
	background: rgba(34, 211, 238, 0.06);
	border: 1px solid rgba(34, 211, 238, 0.18);
	border-radius: 12px;
	padding: 16px;
}

.mindforge-how-step strong {
	display: block;
	color: #67e8f9;
	font-size: 12px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	margin-bottom: 8px;
}

.mindforge-how-step p {
	margin: 0;
	color: var(--muted);
	font-size: 14px;
	line-height: 1.5;
}

.mindforge-season-header {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 28px;
}

.mindforge-progress-bar {
	width: min(320px, 100%);
	height: 10px;
	background: rgba(255, 255, 255, 0.08);
	border-radius: 999px;
	overflow: hidden;
	margin-top: 10px;
}

.mindforge-progress-bar > span {
	display: block;
	height: 100%;
	background: linear-gradient(90deg, #0891b2, #67e8f9);
	border-radius: 999px;
}

.mindforge-season-grid {
	display: grid;
	gap: 14px;
}

.mindforge-game-row {
	display: grid;
	grid-template-columns: 72px 1fr auto;
	gap: 16px;
	align-items: center;
	background: var(--panel);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 14px;
	padding: 16px 18px;
}

.mindforge-game-row.is-complete {
	border-color: rgba(34, 211, 238, 0.35);
}

.mindforge-game-row.is-locked {
	opacity: 0.55;
}

.mindforge-game-num {
	font-family: Montserrat, Inter, sans-serif;
	font-weight: 800;
	font-size: 22px;
	color: #67e8f9;
}

.mindforge-game-row h3 {
	margin: 0 0 4px;
	font-size: 17px;
}

.mindforge-game-row p {
	margin: 0;
	color: var(--muted);
	font-size: 13px;
	line-height: 1.45;
}

.mindforge-outcome-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: flex-end;
}

.mindforge-outcome-actions .btn {
	padding: 8px 12px;
	font-size: 13px;
}

.btn-outcome-win {
	border-color: rgba(34, 197, 94, 0.45);
	color: #86efac;
}

.btn-outcome-loss {
	border-color: rgba(248, 113, 113, 0.45);
	color: #fca5a5;
}

.btn-outcome-draw {
	border-color: rgba(250, 204, 21, 0.45);
	color: #fde68a;
}

.mindforge-complete-badge {
	font-size: 12px;
	font-weight: 700;
	color: #67e8f9;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.mindforge-lesson-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 12px 0 0;
}

.mindforge-chip {
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	padding: 5px 10px;
	border-radius: 999px;
	background: rgba(34, 211, 238, 0.12);
	border: 1px solid rgba(34, 211, 238, 0.28);
	color: #a5f3fc;
}

.mindforge-task-card {
	background: linear-gradient(180deg, rgba(34, 211, 238, 0.1), rgba(34, 211, 238, 0.03));
	border: 1px solid rgba(34, 211, 238, 0.35);
	border-radius: 14px;
	padding: 20px 22px;
}

.mindforge-task-card h3 {
	margin: 10px 0 8px;
	font-family: Montserrat, Inter, sans-serif;
	font-size: 22px;
	color: var(--text);
}

.mindforge-task-card p {
	color: var(--muted);
	line-height: 1.6;
	margin: 0 0 12px;
}

.mindforge-tutorial-section {
	margin-top: 20px;
	padding: 18px;
	background: var(--panel);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 12px;
}

.mindforge-tutorial-section h3 {
	margin: 0 0 10px;
	font-family: Montserrat, Inter, sans-serif;
	font-size: 18px;
	color: #a5f3fc;
}

.mindforge-tutorial-section > p {
	margin: 0 0 14px;
	color: var(--muted);
	line-height: 1.6;
}

.mindforge-tutorial-steps {
	margin: 0;
	padding-left: 20px;
	color: var(--muted);
}

.mindforge-tutorial-steps li {
	margin-bottom: 8px;
	line-height: 1.55;
}

.mindforge-compare-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 12px;
	margin: 14px 0;
}

.mindforge-compare-card {
	background: rgba(0, 0, 0, 0.25);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 10px;
	padding: 14px;
}

.mindforge-compare-card h4 {
	margin: 0 0 8px;
	font-size: 15px;
	color: #67e8f9;
}

.mindforge-compare-card p {
	margin: 0 0 8px;
	font-size: 13px;
	color: var(--muted);
	line-height: 1.45;
}

.mindforge-compare-card p:last-child {
	margin-bottom: 0;
}

.mindforge-checkpoint {
	background: rgba(16, 185, 129, 0.1);
	border: 1px solid rgba(16, 185, 129, 0.28);
	border-radius: 12px;
	padding: 16px 18px;
}

.mindforge-checkpoint strong {
	color: #6ee7b7;
}

.lesson-moment-badge.mindforge-badge {
	background: rgba(34, 211, 238, 0.2);
	color: #a5f3fc;
}

.lesson-block h2.mindforge-h2 {
	color: #67e8f9;
}

@media (max-width: 720px) {
	.mindforge-game-row {
		grid-template-columns: 1fr;
	}

	.mindforge-outcome-actions {
		justify-content: flex-start;
	}
}
