/* Systical — Mission & Vision */

.sys-mv {
	--mv-accent: #9afd0d;
	--mv-max: 1400px;
	--mv-gap: 80px;
	--mv-rule: #232323;
	padding: 110px 40px;
	background-color: #070707;
}

/* auto-fit rather than a fixed two-up, so a third block wraps into a row of
   its own instead of squeezing the pair */
.sys-mv__inner {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: var(--mv-gap);
	max-width: var(--mv-max);
	margin: 0 auto;
}

.sys-mv__block {
	position: relative;
}

/* Hairline between neighbours in the same row. Drawn on the block rather than
   as a grid gap fill so it disappears by itself once the blocks stack. */
.sys-mv__block + .sys-mv__block::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: calc(var(--mv-gap) / -2);
	width: 1px;
	background-color: var(--mv-rule);
}

.sys-mv__label {
	margin: 0 0 22px;
	font-family: Inter, system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--mv-accent);
}

.sys-mv__text {
	margin: 0;
	font-family: Inter, system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
	font-size: clamp(20px, 1.9vw, 28px);
	font-weight: 500;
	line-height: 1.45;
	letter-spacing: -0.015em;
	color: #fff;
}

@media (max-width: 767px) {
	.sys-mv {
		padding: 64px 18px;
	}

	/* Stacked, so the vertical rule would be a stray line beside the text. */
	.sys-mv__block + .sys-mv__block::before {
		display: none;
	}

	.sys-mv__label {
		margin-bottom: 14px;
		font-size: 12px;
	}

	.sys-mv__text {
		font-size: 18px;
	}
}
