.roadmap-wrapper { position: relative; }

.roadmap-clean-grid {
	display: grid;
	grid-template-columns: repeat(var(--grid-cols), 1fr);
	gap: 40px;
	position: relative;
}

.roadmap-clean-grid::after {
	content: '';
	position: absolute;
	top: 16px; left: 0; width: 100%; height: 1px;
	background: rgba(0, 0, 0, 0.08);
	z-index: 0;
}

.roadmap-item { position: relative; transition: transform 0.3s ease; z-index: 1; }
.roadmap-item:hover { transform: translateY(-5px); }

.phase-num {
	font-family: 'Atkinson Hyperlegible', sans-serif;
	font-size: 100px; font-weight: 700; color: #7A39C4;
	opacity: 0.05; position: absolute; top: -35px; left: -10px;
	z-index: 1; line-height: 1; pointer-events: none;
}

.roadmap-item h4 {
	font-family: 'Atkinson Hyperlegible', sans-serif;
	margin-bottom: 12px; 
	position: relative; 
	z-index: 2;
	display: flex; 
	align-items: baseline; 
	gap: 12px; 
	line-height: 1.2;
}

.roadmap-item h4::before {
	content: ''; width: 10px; height: 10px;
	border-radius: 50%; flex-shrink: 0; position: relative; z-index: 3;
}

.roadmap-item p {
	font-family: 'Source Sans 3', sans-serif;
	font-size: 17px; line-height: 1.6; margin: 0; position: relative; z-index: 2;
}