/* How it works — copy on the left, product video on the right */
#how {
	background: var(--green-surface);
}
/* This heading sits outside .sec-head, so it carries its own type scale —
   a notch smaller than the .sec-head h2 used by every other section. */
#how .copy h2 {
	font-size: clamp(28px, 3.2vw, 40px);
	line-height: 1.1;
	letter-spacing: -0.03em;
	font-weight: 800;
	margin-top: 16px;
	color: var(--grey-70);
}
.split {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
	gap: 64px;
	align-items: center;
}
.steps {
	margin-top: 30px;
	display: flex;
	flex-direction: column;
	gap: 2px;
}
.step {
	display: flex;
	gap: 18px;
	padding: 16px;
	border-radius: 12px;
	transition: background 0.15s;
}
.step:hover {
	background: var(--green-surface);
}
.step .si {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: var(--green-10);
	color: var(--green);
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
}
.step .si svg {
	width: 22px;
	height: 22px;
}
.step h4 {
	font-size: 16.5px;
	font-weight: 700;
	color: var(--grey-70);
}
.step p {
	font-size: 14.5px;
	line-height: 1.5;
	color: var(--grey-60);
	margin-top: 4px;
}

/* video asset placeholder */
.video-asset {
	position: relative;
	border-radius: 18px;
	overflow: hidden;
	border: 1px solid var(--border);
	box-shadow:
		0 2px 4px rgba(20, 40, 30, 0.04),
		0 26px 60px -28px rgba(20, 50, 35, 0.28);
	aspect-ratio: 4/3;
	background: #000;
}
.video-asset iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}
