.sf-hero {
	overflow: hidden;
	padding-top: 16px;
}
@media (max-width: 900px) {
	.sf-hero {
		padding-top: 14px;
	}
}
@media (max-width: 520px) {
	.sf-hero {
		padding-top: 12px;
	}
}
.sf-hero-grid {
	display: grid;
	grid-template-columns: 1.05fr .95fr;
	gap: 56px;
	align-items: center;
}
.sf-hero-grid > div:first-child {
	padding-top: 38px;
}
@media (max-width: 520px) {
	.sf-hero-grid > div:first-child {
		padding-top: 20px;
	}
}
.sf-hero-title {
	margin-top: 14px;
	font-size: clamp(34px, 4.6vw, 54px);
	line-height: 1.12;
}
.sf-hero .lede {
	margin-top: 20px;
	max-width: 520px;
}
.sf-hero .hero-ctas {
	margin-top: 36px;
}
.sf-hero-frame {
	position: relative;
	z-index: 1;
	width: 85%;
	margin: 0 auto;
}
.sf-hero-frame img {
	width: 100%;
	height: auto;
	display: block;
}
@media (max-width: 1080px) {
	.sf-hero-grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}
	.sf-hero-frame {
		order: -1;
	}
}

.sf-flow {
	margin: 48px 0 0;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: center;
	gap: 18px;
}
.sf-flow-step {
	flex: 1 1 0;
	display: flex;
	flex-direction: column;
	gap: 14px;
	padding: 26px 20px;
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
}
.sf-flow-num {
	font-family: var(--display);
	font-weight: 800;
	font-size: 22px;
	color: var(--brand-tint);
	-webkit-text-stroke: 1px var(--brand-deep);
}
.sf-flow-label {
	font-family: var(--display);
	font-weight: 700;
	font-size: 16px;
	line-height: 1.3;
	color: var(--ink);
}
.sf-flow-arrow {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--line);
}
.sf-flow-arrow svg {
	width: 20px;
	height: 20px;
}
@media (max-width: 900px) {
	.sf-flow {
		flex-direction: column;
		align-items: stretch;
	}
	.sf-flow-step {
		flex-direction: row;
		align-items: center;
	}
	.sf-flow-arrow {
		transform: rotate(90deg);
		align-self: center;
	}
}

.sf-directory {
	margin-top: 48px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	border-top: 1px solid var(--line);
	border-left: 1px solid var(--line);
}
.sf-entry {
	display: flex;
	gap: 20px;
	padding: 32px;
	border-right: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	background: var(--card);
}
.sf-entry-icon {
	flex: 0 0 auto;
	width: 44px;
	height: 44px;
	border-radius: var(--radius-md);
	border: 1.5px solid var(--brand-tint);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--brand-deep);
}
.sf-entry-icon svg {
	width: 21px;
	height: 21px;
}
.sf-entry-body h3 {
	font-family: var(--display);
	font-weight: 800;
	font-size: 18px;
	color: var(--ink);
}
.sf-entry-full {
	margin-top: 4px;
	font-size: 13.5px;
	font-weight: 600;
	color: var(--ink-faint);
}
.sf-entry-desc {
	margin-top: 12px;
	font-size: 15px;
	line-height: 1.65;
	color: var(--ink-soft);
}
.sf-entry-meta {
	margin-top: 14px;
	font-size: 13px;
	font-weight: 600;
	color: var(--brand-text);
}
.sf-entry .link-arrow {
	margin-top: 16px;
}
@media (max-width: 780px) {
	.sf-directory {
		grid-template-columns: 1fr;
	}
	.sf-entry {
		padding: 26px 4px;
	}
}

.sf-note {
	display: flex;
	gap: 24px;
	padding: 40px;
	border: 1px solid var(--line);
	border-left: 3px solid var(--brand-deep);
	border-radius: var(--radius-lg);
	background: var(--mist);
}
.sf-note-icon {
	flex: 0 0 auto;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--brand-deep);
}
.sf-note-icon svg {
	width: 22px;
	height: 22px;
}
.sf-note-body .lede {
	max-width: none;
}
@media (max-width: 640px) {
	.sf-note {
		flex-direction: column;
		padding: 28px 24px;
		gap: 16px;
	}
}

.sf-cta {
	position: relative;
	overflow: hidden;
	text-align: center;
	background: rgba(19, 20, 23, 0.85);
}
.sf-cta-texture {
	position: absolute;
	inset: 0;
	opacity: .5;
	background-image: radial-gradient(var(--night-line) 1px, transparent 1px);
	background-size: 24px 24px;
	mask-image: radial-gradient(circle at 50% 0%, black, transparent 65%);
	-webkit-mask-image: radial-gradient(circle at 50% 0%, black, transparent 65%);
}
.sf-cta-inner {
	position: relative;
	max-width: 700px;
	margin: 0 auto;
}
.sf-cta-inner .eyebrow {
	justify-content: center;
}
.sf-cta-inner .hero-ctas {
	justify-content: center;
}
.sf-cta-inner .btn-ghost {
	border-color: #8a8d94;
	background: rgba(255, 255, 255, 0.04);
}
