.e2e__wrap {
	margin: 0 auto;
	text-align: center;
}
.e2e__title {
	margin: 0;
	line-height: 1.05;
	font-weight: 900;
	color: #6528f7;
	letter-spacing: -0.02em;
}
.e2e__sub {
	margin: 14px auto 0;
	max-width: 900px;
	line-height: 1.65;
	color: rgba(0, 0, 0, 0.62);
}
.e2e__frame {
	position: relative;
}
.e2e__viewport {
	overflow: hidden;
	border-radius: 18px;
	outline: none;
}
.e2e__track {
	display: flex;
	will-change: transform;
	transition: transform 340ms ease;
	touch-action: pan-y;
}
.e2e__slide {
	flex: 0 0 100%;
	padding: 18px 18px 0px 18px;
	box-sizing: border-box;
}
.e2e__card {
	position: relative;
	border-radius: 14px;
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.10);
	box-shadow: 0 18px 28px rgba(0, 0, 0, 0.10);
	padding-top: 0px;
	padding-bottom: 0px;
	min-height: 280px;
	display: grid;
	align-content: center;
	gap: 14px;
}
.e2e__h {
	margin: 0;
	line-height: 1.15;
	font-weight: 900;
	color: #6528f7;
	padding: 10px 130px;
	font-size: 24px;
}
.e2e__p {
	margin: 0;
	line-height: 1.8;
	color: rgba(0, 0, 0, 0.62);
	padding: 0 90px;
	font-size: 18px;
}
/* Phase pill */
.phase-pill {
	position: absolute;
	top: 14px;
	right: 14px;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 12px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0.02em;
	line-height: 1;
	white-space: nowrap;
	border: 1px solid rgba(0, 0, 0, 0.12);
	box-shadow: 0 10px 18px rgba(0, 0, 0, 0.08);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	pointer-events: none;
}
.phase-pill::before {
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: currentColor;
	opacity: 0.95;
}
.phase--intake {
	color:#6528f7;
	background: rgba(101,40,247,0.12);
}
.phase--design {
	color:#06b6d4;
	background: rgba(6,182,212,0.14);
}
.phase--release{
	color:#22c55e;
	background: rgba(34,197,94,0.14);
}
.phase--measure{
	color:#f59e0b;
	background: rgba(245,158,11,0.16);
}
/* Controls — positioned like your original (overlapping the card edges) */
.e2e__navBtn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 56px;
	height: 56px;
	border-radius: 999px;
	border: 0;
	background: #6528f7;
	color: #fff;
	cursor: pointer;
	display: grid;
	place-items: center;
	z-index: 5;
	box-shadow: 0 18px 30px rgba(101,40,247,0.28);
	transition: transform 140ms ease, opacity 140ms ease;
	padding: 0px !important;
}
.e2e__navBtn:hover {
	transform: translateY(-50%) scale(1.05);
}
.e2e__navBtn:disabled {
	opacity: 0.35;
	cursor: not-allowed;
	transform: translateY(-50%);
	box-shadow: none;
}
.e2e__prev {
	left: -10px;
}
.e2e__next {
	right: -10px;
}
.e2e__navBtn svg {
	width: 25px;
	height: 25px;
}
/* Responsive */
@media (max-width: 980px) {
	.e2e__prev {
		left: 6px;
	}
	.e2e__next {
		right: 6px;
	}
}
@media (max-width: 860px) {
	.e2e__h {
		padding: 0 14px;
	}
	.e2e__p {
		padding: 0 14px;
	}
}
