.reci-stage {
	display: none;
	min-height: 100vh;
	width: 100%;
	background-color: var(--reflection-bg);
	color: var(--reflection-body);
}
.reci-stage.active {
	display: block;
}
.reci-stage-grid {
	display: grid;
	grid-template-columns: 1fr;
	min-height: 100vh;
	width: 100%;
}
@media(min-width: 1024px) {
	.reci-stage-grid {
		grid-template-columns: 1fr 1fr;
	}
}
.reci-stage-body {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 3rem 2rem;
}
@media(min-width: 1024px) {
	.reci-stage-body {
		padding: 4rem 5rem;
	}
}	
.reci-stage-panels {
	display: flex;
	flex-direction: column;
	min-height: 50vh;
}
@media(min-width: 1024px) {
	.reci-stage-panels {
		min-height: 100vh;
	}
}
.reci-scroll-panel {
	flex: 1;
	min-height: 50vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
@media(min-width: 1024px) {
	.reci-scroll-panel {
		min-height: 100vh;
	}
}
.reci-scroll-panel:nth-child(even) {
	background-color: rgba(0,0,0,0.2);
}
.reci-hotspot {
	position: absolute;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--reflection-accent);
	transform: translate(-50%, -50%);
	cursor: pointer;
	z-index: 20;
}
.reci-hotspot::before {
	content: '';
	position: absolute;
	inset: -10px;
	border-radius: 50%;
	border: 2px solid var(--reflection-hotspot-ring);
	animation: hotspotPulse 2s infinite;
}
@keyframes hotspotPulse {
	0% { transform: scale(0.8); opacity: 1; }
	100% { transform: scale(1.5); opacity: 0; }
}

h1, h2, h3, h4, h5, h6, .reci-reflection-heading {
	color: var(--reflection-heading);
}

.mini-fp {
	font-size: 2rem;
	opacity: 0.2;
	transform: rotate(90deg);
	transition: all 0.3s;
	filter: grayscale(100%) brightness(0.6);
}
.mini-fp.active {
	opacity: 1;
	filter: grayscale(100%) brightness(10);
}

.mini-step-btn {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: transparent;
	border: 2px solid var(--reflection-accent);
	color: var(--reflection-text, white);
	font-family: 'Oswald', sans-serif;
	font-size: 1rem;
	cursor: pointer;
	margin-top: 20px;
	transition: all 0.1s;
	display: flex;
	align-items: center;
	justify-content: center;
}
.mini-step-btn:active {
	transform: scale(0.95);
	background: rgba(138, 14, 14, 0.2);
}
.mini-step-btn:hover {
	background: rgba(138, 14, 14, 0.1);
}

/* Step Sequence Shared Layout */
.year-huge {
	font-family: 'Oswald', sans-serif;
	font-size: 30vw;
	opacity: 0.05;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	white-space: nowrap;
	z-index: 1;
	pointer-events: none;
}

.march-interaction-layer {
	z-index: 10;
	display: flex;
	flex-direction: column;
	align-items: center;
	transition: opacity 0.5s;
	position: absolute;
}
.march-interaction-layer.hidden {
	opacity: 0;
	pointer-events: none;
}

.history-footprints {
	display: flex;
	gap: 20px;
	margin-bottom: 20px;
}

.history-card {
	width: 400px;
	max-width: calc(100vw - 48px);
	background: var(--reflection-surface, white);
	color: var(--reflection-surface-text, black);
	padding: 40px;
	z-index: 20;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
	opacity: 0;
	top: 50%;
	left: 50%;
	transform: translate(-50%, calc(-50% + 20px)) scale(0.95);
	transition: all 0.5s ease;
	position: absolute;
	pointer-events: none;
}
.history-card.visible {
	opacity: 1;
	transform: translate(-50%, -50%) scale(1);
	pointer-events: auto;
}
@media (max-width: 900px) {
	.history-card {
		padding: 28px;
	}
}
