.oss-hero {
	position: relative;
	padding: 80px 0;
}
.oss-hero__grid {
	display: grid;
	grid-template-columns: 1fr 1px 1.35fr;
	gap: 64px;
	align-items: center;
}
.oss-hero__divider {
	align-self: stretch;
	width: 1px;
	background: var(--oss-hairline);
}
.oss-hero__rail {
	position: absolute;
	top: 32px;
	right: 32px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 28px;
}
.oss-hero__rail .oss-icons {
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.oss-hero__rail .oss-icon {
	width: 36px;
	height: 36px;
	border-radius: 6px;
	border: 1px solid var(--oss-hairline);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #0a0a0f;
	background: #ffffff;
	transition:
		color 160ms ease,
		border-color 160ms ease,
		background 160ms ease;
}
.oss-hero__rail .oss-icon:hover {
	border-color: #0a0a0f;
}
.oss-hero__rail .oss-icon svg {
	width: 17px;
	height: 17px;
	display: block;
}
.oss-hero__rail .oss-divider {
	width: 1px;
	height: 40px;
	background: #d4d4d8;
}
.oss-hero__rail .oss-follow {
	writing-mode: vertical-rl;
	font-family: var(--oss-body);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.32em;
	text-transform: uppercase;
	color: #0a0a0f;
}
.oss-lottie-tile {
	position: relative;
	aspect-ratio: 1 / 1;
	background: transparent;
	border: 0;
	border-radius: 0;
	overflow: visible;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 70%;
	margin-inline: auto;
}
.oss-lottie-tile lottie-player {
	width: 100%;
	height: 100%;
}
.oss-lottie-tile__corner {
	position: absolute;
	top: 14px;
	left: 16px;
	font-family: var(--oss-mono);
	font-size: 10.5px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--oss-text-dim);
	display: flex;
	align-items: center;
	gap: 8px;
}
.oss-lottie-tile__corner::before {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 999px;
	background: var(--oss-cyan);
	box-shadow: 0 0 10px var(--oss-cyan-edge);
	animation: blink 1.8s ease-in-out infinite;
}
.oss-hero__copy {
	padding-top: 4px;
	padding-right: 80px;
}
.oss-hero__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: var(--oss-body);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--oss-cyan);
	margin: 0 0 20px;
}
.oss-hero__eyebrow::before {
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--oss-cyan);
	box-shadow:
		0 0 0 4px rgba(0, 204, 255, 0.18),
		0 0 18px rgba(0, 204, 255, 0.45);
}
.oss-hero__title {
	font-family: var(--oss-display);
	font-weight: 900;
	font-size: clamp(3rem, 4.8vw, 4.4rem);
	line-height: 1.02;
	letter-spacing: -0.035em;
	margin: 0 0 32px;
	color: var(--oss-text);
	text-wrap: balance;
}
.oss-hero__title em {
	font-style: normal;
	font-weight: 900;
	color: var(--oss-cyan);
	font-family: var(--oss-display);
}
.oss-hero__body {
	font-size: 20px;
	line-height: 1.6;
	color: var(--oss-text-soft);
	max-width: 640px;
	margin: 0 0 36px;
}
.oss-hero__ctas {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
}
.oss-hero__meta {
	margin-top: 28px;
	display: flex;
	align-items: center;
	gap: 14px;
	font-family: var(--oss-mono);
	font-size: 11px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--oss-text-dim);
}
.oss-hero__meta .oss-pulse {
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: var(--oss-cyan);
	box-shadow: 0 0 0 0 var(--oss-cyan-edge);
	animation: pulse 2s ease-out infinite;
}
@media (max-width: 1180px) {
	.oss-hero__grid {
		grid-template-columns: 1fr 1px 1.35fr;
		gap: 48px;
	}
	.oss-hero__copy {
		padding-right: 60px;
	}
}
@media (max-width: 980px) {
	.oss-hero__grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	.oss-hero__divider {
		display: none;
	}
	.oss-hero__copy {
		padding-right: 0;
	}
	.oss-hero__rail {
		position: relative;
		top: unset;
		right: unset;
		margin-top: 30px;
		gap: 10px;
		flex-direction: row-reverse;
	}
	.oss-hero__rail .oss-icons {
		flex-direction: row;
	}
	.oss-hero__rail .oss-follow {
		writing-mode: unset;
	}
	.oss-hero__rail .oss-divider {
		height: 1px;
		width: auto;
		flex: 1;
		max-width: 50px;
		margin: 0 auto;
	}
}
@media (max-width: 640px) {
	.oss-lottie-tile {
		max-width: 360px;
		margin-inline: auto;
	}
	.oss-hero {
		padding-bottom: 80px;
	}
}
