.home-hero {
	position: relative;
	display: grid;
	min-height: calc(86svh - var(--header-height));
	place-items: end start;
	overflow: hidden;
	background: var(--ink);
	color: var(--white);
}

.home-hero__image,
.home-hero__overlay {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.home-hero__image {
	object-fit: cover;
	object-position: center 54%;
}

.home-hero__overlay {
	background: linear-gradient(90deg, rgba(5, 25, 27, 0.97) 0%, rgba(5, 25, 27, 0.82) 48%, rgba(5, 25, 27, 0.16) 100%);
}

.home-hero__content {
	position: relative;
	z-index: 1;
	padding-block: 90px;
}

.home-hero h1 {
	max-width: 900px;
	margin-bottom: 24px;
	font-size: 72px;
}

.home-hero__summary {
	max-width: 760px;
	margin-bottom: 32px;
	color: #d9e3e3;
	font-size: 20px;
}

.section--intro {
	padding-block: 78px;
	border-bottom: 1px solid var(--line);
}

.intro-grid {
	display: grid;
	grid-template-columns: 0.7fr 1.3fr;
	gap: 72px;
}

.intro-grid h2 {
	max-width: 780px;
}

.intro-grid p:last-child {
	max-width: 820px;
	font-size: 19px;
}

.loop-layout {
	display: grid;
	grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
	gap: 90px;
	align-items: center;
}

.loop-visual {
	position: relative;
	display: grid;
	aspect-ratio: 1;
	max-width: 520px;
	border-radius: 50%;
	place-items: center;
	background: var(--blue);
	overflow: hidden;
}

.loop-visual img {
	position: relative;
	z-index: 2;
	width: 31%;
	height: auto;
}

.loop-visual__ring {
	position: absolute;
	border: 1px solid rgba(9, 31, 34, 0.34);
	border-radius: 50%;
	animation: loop-pulse 5s ease-in-out infinite;
}

.loop-visual__ring--outer {
	inset: 10%;
}

.loop-visual__ring--middle {
	inset: 26%;
	animation-delay: 700ms;
}

@keyframes loop-pulse {
	0%,
	100% {
		opacity: 0.5;
		transform: scale(0.98);
	}
	50% {
		opacity: 1;
		transform: scale(1.02);
	}
}

.loop-steps {
	display: grid;
	gap: 0;
	padding: 0;
	margin: 38px 0 0;
	list-style: none;
}

.loop-steps li {
	display: grid;
	grid-template-columns: 52px 1fr;
	gap: 22px;
	padding-block: 22px;
	border-top: 1px solid var(--line);
}

.loop-steps li > span {
	font-family: var(--font-mono);
	font-size: 12px;
	font-weight: 700;
}

.loop-steps h3 {
	margin-bottom: 6px;
}

.loop-steps p {
	color: var(--grey);
}

.image-band {
	position: relative;
	display: grid;
	min-height: 640px;
	place-items: end start;
	overflow: hidden;
	background: var(--ink);
	color: var(--white);
}

.image-band > img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.image-band::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(0deg, rgba(4, 24, 26, 0.94), rgba(4, 24, 26, 0.08) 75%);
	content: "";
}

.image-band__content {
	position: relative;
	z-index: 1;
	padding-block: 68px;
}

.image-band h2 {
	max-width: 880px;
	margin-bottom: 28px;
}

.newsletter {
	padding-block: 72px;
}

.newsletter__layout {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(400px, 1.1fr);
	gap: 80px;
	align-items: center;
}

.newsletter__layout h2 {
	margin-bottom: 14px;
}

.newsletter-form__row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 10px;
}

.newsletter-form input[type="email"] {
	min-height: 52px;
	padding: 12px 14px;
}

.choice--light {
	color: var(--ink);
}

@media (max-width: 900px) {
	.home-hero {
		min-height: 720px;
	}

	.home-hero h1 {
		font-size: 54px;
	}

	.home-hero__overlay {
		background: linear-gradient(90deg, rgba(5, 25, 27, 0.96), rgba(5, 25, 27, 0.68));
	}

	.intro-grid,
	.loop-layout,
	.newsletter__layout {
		grid-template-columns: 1fr;
		gap: 46px;
	}

	.loop-visual {
		max-width: 480px;
		margin-inline: auto;
	}

	.newsletter__layout {
		gap: 28px;
	}
}

@media (max-width: 560px) {
	.home-hero {
		min-height: 680px;
	}

	.home-hero__content {
		padding-block: 70px;
	}

	.home-hero h1 {
		font-size: 41px;
	}

	.home-hero__summary {
		font-size: 17px;
	}

	.home-hero .button {
		width: 100%;
	}

	.intro-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.loop-layout {
		gap: 38px;
	}

	.loop-visual {
		width: 100%;
	}

	.loop-steps li {
		grid-template-columns: 42px 1fr;
		gap: 14px;
	}

	.image-band {
		min-height: 540px;
	}

	.newsletter-form__row {
		grid-template-columns: 1fr;
	}
}

