* {
	box-sizing: border-box;
}

body {
	margin: 0;
	background: #050505;
	color: #f5f5f5;
	font: 15px/1.65 Inter,sans-serif;
}

a {
	color: inherit;
	text-decoration: none;
}

.wrap {
	width: min(1180px,calc(100% - 64px));
	margin: auto;
}

header {
	height: 88px;
	padding: 0 max(32px,calc((100vw - 1180px)/2));
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid #222;
}

.logo {
	font: 700 17px Space Grotesk;
}

.logo b,.eyebrow,em {
	color: #ff2f92;
	font-style: normal;
}

nav {
	display: flex;
	gap: 28px;
	font-size: 13px;
}

.heroart {
	height: min(440px,38vw);
	min-height: 260px;
	overflow: hidden;
	background: #bd100c;
}

.heroart img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
}

section {
	padding: 100px 0;
	border-bottom: 1px solid #202020;
}

.eyebrow,.label {
	font: 600 11px Space Grotesk;
	letter-spacing: .17em;
}

.label {
	color: #888;
	margin-top: 30px;
}

h1,h2 {
	font: 700 clamp(48px,7vw,92px)/.88 Space Grotesk;
	letter-spacing: -.055em;
	margin: 18px 0 45px;
}

h1 {
	font-size: clamp(65px,9vw,120px);
}

.lead {
	font-size: 18px;
	color: #ccc;
}

.cols {
	display: grid;
	grid-template-columns: .85fr 1.15fr;
	gap: 80px;
	align-items: center;
}

.cols p {
	color: #bbb;
}

figure {
	margin: 0;
	background: #1c1c1e;
	border: 1px solid #333;
	border-radius: 15px;
	padding: 12px;
	overflow: hidden;
}

figure img {
	display: block;
	width: 100%;
	border-radius: 8px;
}

figcaption {
	padding: 12px 4px 2px;
	color: #888;
	font-size: 11px;
}

.hero figure img {
	width: 175%;
	max-width: none;
}

.tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.tags span {
	background: #29292b;
	padding: 6px 11px;
	border-radius: 99px;
	font-size: 10px;
}

.alt {
	background: #19191b;
}

ul {
	padding-left: 20px;
	color: #ccc;
}

.wide {
	margin-top: 45px;
}

.outcome {
	background: linear-gradient(135deg,#000000,#151515);
	text-align: center;
}

.outcome .eyebrow,.outcome h2 em {
	color: #ff2f92;
}

.center {
	max-width: 900px;
	margin: 0 auto 55px;
}

.numbers {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 30px;
	border-top: 3px solid #ff2f92;
	padding-top: 45px;
}

.numbers article small {
	display: block;
	font-weight: 700;
}

.numbers strong {
	display: block;
	font: 700 clamp(55px,7vw,90px) Space Grotesk;
}

.numbers article:last-child strong {
	color: #ff2f92;
}

.numbers i {
	font-size: .45em;
	font-style: normal;
}

.numbers>b {
	font-size: 65px;
	opacity: .25;
}

.impact {
	margin-top: 40px;
	padding: 22px;
	border-block: 1px solid rgba(255,255,255,.5);
	font-weight: 700;
}

.impact strong {
	color: #ff2f92;
	font: 700 25px Space Grotesk;
}

.end {
	background: #ff2f92;
}

.end .eyebrow {
	color: #fff;
}

.end h2 {
	color: #fff;
}

.end h2 em {
	color: #111;
}

.end a {
	border-bottom: 1px solid #fff;
}

footer {
	padding: 35px 0;
	color: #888;
}

@media(max-width:850px) {
	.wrap {
		width: calc(100% - 40px);
	}

	.cols {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.hero figure {
		max-width: 600px;
	}

	.numbers {
		grid-template-columns: 1fr;
	}

	.numbers>b {
		transform: rotate(90deg);
	}

	section {
		padding: 72px 0;
	}
}

@media(max-width:550px) {
	.wrap {
		width: calc(100% - 32px);
	}

	header {
		height: 70px;
		padding: 0 16px;
	}

	.logo {
		font-size: 14px;
	}

	nav {
		gap: 12px;
	}

	nav a:nth-child(2) {
		display: none;
	}

	.heroart {
		height: 245px;
	}

	section {
		padding: 56px 0;
	}

	h1,h2 {
		font-size: clamp(44px,14vw,66px);
	}
}