.tp-hero {
	overflow: hidden;
	padding-top: 28px;
}
@media (max-width: 900px) {
	.tp-hero {
		padding-top: 24px;
	}
}
@media (max-width: 520px) {
	.tp-hero {
		padding-top: 20px;
	}
}
.tp-hero-grid {
	display: grid;
	grid-template-columns: 1.05fr .95fr;
	gap: 56px;
	align-items: center;
}
.tp-hero-grid > div:first-child {
	padding-top: 38px;
}
@media (max-width: 520px) {
	.tp-hero-grid > div:first-child {
		padding-top: 20px;
	}
}
.tp-hero-title {
	margin-top: 14px;
	font-size: clamp(34px, 4.6vw, 54px);
	line-height: 1.12;
}
.tp-hero .lede {
	margin-top: 20px;
	max-width: 520px;
}
.tp-hero .hero-ctas {
	margin-top: 36px;
}
.tp-hero-frame {
	position: relative;
	z-index: 1;
	top: 28px;
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: 0 30px 70px -30px rgba(20, 22, 26, .35);
	aspect-ratio: 4 / 3;
}
@media (max-width: 900px) {
	.tp-hero-frame {
		top: 24px;
	}
}
@media (max-width: 520px) {
	.tp-hero-frame {
		top: 18px;
	}
}
.tp-hero-frame img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}
@media (max-width: 1080px) {
	.tp-hero-grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}
	.tp-hero-frame {
		order: -1;
	}
}

.tp-categories {
	margin-top: 48px;
	display: flex;
	flex-direction: column;
	gap: 44px;
}
.tp-category {
	padding-top: 36px;
	border-top: 1px solid var(--line);
}
.tp-category:first-child {
	padding-top: 0;
	border-top: none;
}
.tp-category-head {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 22px;
}
.tp-category-icon {
	flex: 0 0 auto;
	width: 40px;
	height: 40px;
	border-radius: var(--radius-md);
	border: 1.5px solid var(--brand-tint);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--brand-deep);
}
.tp-category-icon svg {
	width: 19px;
	height: 19px;
}
.tp-category-head h3 {
	font-family: var(--display);
	font-weight: 800;
	font-size: 19px;
	color: var(--ink);
}
.tp-logo-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
	gap: 14px;
}
.partner-tile img {
	max-width: 76%;
	max-height: 40px;
	object-fit: contain;
}
@media (max-width: 640px) {
	.tp-logo-grid {
		grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
		gap: 10px;
	}
	.tp-category-head h3 {
		font-size: 17px;
	}
}

.tp-engage-flow {
	margin-top: 56px;
	display: flex;
	align-items: stretch;
	gap: 6px;
}
.tp-engage-card {
	position: relative;
	flex: 1 1 0;
	display: flex;
	flex-direction: column;
	gap: 18px;
	padding: 28px 22px 26px;
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-1);
}
.tp-engage-num {
	position: absolute;
	top: 14px;
	right: 18px;
	font-family: var(--display);
	font-weight: 800;
	font-size: 26px;
	color: var(--brand-tint);
	-webkit-text-stroke: 1px var(--brand-deep);
}
.tp-engage-icon {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--brand-tint);
	color: var(--brand-deep);
	display: flex;
	align-items: center;
	justify-content: center;
}
.tp-engage-icon svg {
	width: 23px;
	height: 23px;
}
.tp-engage-card h4 {
	font-family: var(--display);
	font-weight: 800;
	font-size: 16.5px;
	line-height: 1.3;
	color: var(--ink);
}
.tp-engage-arrow {
	flex: 0 0 auto;
	align-self: center;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--brand-deep);
	opacity: .4;
}
.tp-engage-arrow svg {
	width: 18px;
	height: 18px;
}
.tp-engage-cta {
	margin-top: 44px;
}
@media (max-width: 900px) {
	.tp-engage-flow {
		flex-direction: column;
		gap: 0;
	}
	.tp-engage-card {
		flex-direction: row;
		align-items: center;
		gap: 20px;
		padding: 20px 4px;
		background: transparent;
		border: none;
		border-radius: 0;
		border-bottom: 1px solid var(--line);
		box-shadow: none;
	}
	.tp-engage-card:first-child {
		padding-top: 0;
	}
	.tp-engage-card:last-child {
		border-bottom: none;
		padding-bottom: 0;
	}
	.tp-engage-num {
		position: static;
		order: 3;
		margin-left: auto;
	}
	.tp-engage-icon {
		flex: 0 0 auto;
	}
	.tp-engage-arrow {
		display: none;
	}
	.tp-engage-cta {
		margin-top: 36px;
	}
}
