.fgp {
	--fgp-accent: #da5f06;
	--fgp-ink: #151515;
	--fgp-charcoal: #202020;
	--fgp-muted: #666;
	--fgp-line: #e5e5e5;
	--fgp-soft: #f4f3f1;
	--fgp-white: #fff;
	color: var(--fgp-ink);
	font-family: inherit;
	margin-inline: calc(50% - 50vw);
	overflow: hidden;
	width: 100vw;
}

.fgp *,
.fgp *::before,
.fgp *::after {
	box-sizing: border-box;
}

.fgp-shell {
	margin: 0 auto;
	max-width: 1240px;
	padding-inline: 32px;
	width: 100%;
}

.fgp-hero {
	background:
		radial-gradient(circle at 83% 24%, color-mix(in srgb, var(--fgp-accent) 26%, transparent), transparent 27%),
		linear-gradient(135deg, #111 0%, #202020 58%, #151515 100%);
	color: var(--fgp-white);
	min-height: 520px;
	position: relative;
}

.fgp-hero::after {
	background: var(--fgp-accent);
	bottom: 0;
	content: "";
	height: 7px;
	left: 0;
	position: absolute;
	width: 34%;
}

.fgp-hero__inner {
	align-items: center;
	display: grid;
	gap: 64px;
	grid-template-columns: minmax(0, 1.35fr) minmax(260px, .65fr);
	min-height: 520px;
	padding-block: 84px;
}

.fgp-kicker {
	align-items: center;
	color: #eee;
	display: flex;
	font-size: 13px;
	font-weight: 800;
	gap: 12px;
	letter-spacing: .16em;
	margin: 0 0 20px;
	text-transform: uppercase;
}

.fgp-kicker span {
	background: var(--fgp-accent);
	display: inline-block;
	height: 3px;
	width: 30px;
}

.fgp-kicker--dark {
	color: var(--fgp-muted);
}

.fgp-hero h1 {
	color: var(--fgp-white);
	font-size: clamp(44px, 6.6vw, 86px);
	font-weight: 850;
	letter-spacing: -.055em;
	line-height: .98;
	margin: 0;
	max-width: 900px;
	text-wrap: balance;
}

.fgp-hero__text {
	color: #d1d1d1;
	font-size: clamp(18px, 2vw, 22px);
	line-height: 1.6;
	margin: 30px 0 0;
	max-width: 760px;
}

.fgp-hero__mark {
	align-items: center;
	aspect-ratio: 1;
	background: rgba(255, 255, 255, .035);
	border: 1px solid rgba(255, 255, 255, .1);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	position: relative;
}

.fgp-hero__mark::before,
.fgp-hero__mark::after {
	border: 1px solid rgba(255, 255, 255, .08);
	border-radius: 50%;
	content: "";
	inset: -22px;
	position: absolute;
}

.fgp-hero__mark::after {
	inset: -44px;
}

.fgp-hero__mark svg {
	fill: none;
	height: 72%;
	stroke: var(--fgp-accent);
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 5;
	width: 72%;
}

.fgp-partners {
	background: var(--fgp-white);
	padding: 104px 0 112px;
}

.fgp-section-head {
	align-items: end;
	display: grid;
	gap: 56px;
	grid-template-columns: minmax(0, 1fr) minmax(300px, .72fr);
	margin-bottom: 48px;
}

.fgp-section-head h2,
.fgp-process h2,
.fgp-cta h2 {
	color: var(--fgp-ink);
	font-size: clamp(34px, 5vw, 60px);
	font-weight: 850;
	letter-spacing: -.045em;
	line-height: 1.02;
	margin: 0;
	text-wrap: balance;
}

.fgp-section-head > p {
	color: var(--fgp-muted);
	font-size: 18px;
	line-height: 1.65;
	margin: 0 0 4px;
}

.fgp-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 36px;
}

.fgp-filter {
	background: var(--fgp-soft);
	border: 1px solid transparent;
	border-radius: 999px;
	color: #474747;
	cursor: pointer;
	font: inherit;
	font-size: 14px;
	font-weight: 750;
	line-height: 1;
	padding: 13px 19px;
	transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.fgp-filter:hover {
	border-color: #bbb;
	transform: translateY(-1px);
}

.fgp-filter:focus-visible {
	outline: 3px solid color-mix(in srgb, var(--fgp-accent) 45%, transparent);
	outline-offset: 2px;
}

.fgp-filter.is-active {
	background: var(--fgp-ink);
	color: var(--fgp-white);
}

.fgp-groups {
	display: grid;
	gap: 76px;
}

.fgp-group[hidden] {
	display: none;
}

.fgp-group__head {
	border-bottom: 1px solid var(--fgp-line);
	display: grid;
	gap: 24px;
	grid-template-columns: minmax(240px, .65fr) minmax(300px, 1fr);
	margin-bottom: 28px;
	padding-bottom: 22px;
}

.fgp-group__head h3 {
	color: var(--fgp-ink);
	font-size: clamp(28px, 3.2vw, 42px);
	font-weight: 850;
	letter-spacing: -.035em;
	line-height: 1.05;
	margin: 0;
}

.fgp-group__head p {
	color: var(--fgp-muted);
	font-size: 16px;
	line-height: 1.6;
	margin: 0;
}

.fgp-subgroup + .fgp-subgroup {
	margin-top: 42px;
}

.fgp-subgroup h4 {
	align-items: center;
	color: var(--fgp-ink);
	display: flex;
	font-size: 19px;
	font-weight: 820;
	gap: 12px;
	margin: 0 0 18px;
}

.fgp-subgroup h4::before {
	background: var(--fgp-accent);
	content: "";
	height: 3px;
	width: 22px;
}

.fgp-grid {
	display: grid;
	gap: 20px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.fgp-card {
	background: var(--fgp-white);
	border: 1px solid var(--fgp-line);
	border-radius: 4px;
	display: flex;
	flex-direction: column;
	min-height: 320px;
	overflow: hidden;
	padding: 26px;
	position: relative;
	transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.fgp-card::before {
	background: var(--fgp-accent);
	content: "";
	height: 4px;
	left: 0;
	position: absolute;
	top: 0;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .25s ease;
	width: 100%;
}

.fgp-card:hover {
	border-color: #ccc;
	box-shadow: 0 18px 50px rgba(0, 0, 0, .09);
	transform: translateY(-5px);
}

.fgp-card:hover::before {
	transform: scaleX(1);
}

.fgp-card[hidden] {
	display: none;
}

.fgp-card__top {
	align-items: flex-start;
	display: flex;
	gap: 16px;
	justify-content: space-between;
}

.fgp-card__logo {
	align-items: center;
	display: flex;
	height: 78px;
	max-width: 65%;
	min-width: 0;
}

.fgp-card__logo img {
	filter: none !important;
	height: auto;
	max-height: 66px;
	max-width: 100%;
	object-fit: contain;
	object-position: left center;
	width: auto;
}

.fgp-card__monogram {
	align-items: center;
	background: var(--fgp-ink);
	border-radius: 3px;
	color: var(--fgp-white);
	display: flex;
	flex: 0 0 48px;
	font-size: 17px;
	font-weight: 850;
	height: 48px;
	justify-content: center;
	letter-spacing: -.02em;
	margin-right: 12px;
}

.fgp-card__name-logo {
	color: var(--fgp-ink);
	font-size: 17px;
	font-weight: 850;
	line-height: 1.1;
}

.fgp-card__tag {
	background: color-mix(in srgb, var(--fgp-accent) 10%, white);
	border-radius: 3px;
	color: color-mix(in srgb, var(--fgp-accent) 85%, black);
	font-size: 10px;
	font-weight: 850;
	letter-spacing: .07em;
	line-height: 1.3;
	max-width: 132px;
	padding: 8px 10px;
	text-align: center;
	text-transform: uppercase;
}

.fgp-card__body {
	margin-top: 26px;
}

.fgp-card__body h3 {
	color: var(--fgp-ink);
	font-size: 24px;
	font-weight: 820;
	letter-spacing: -.025em;
	line-height: 1.15;
	margin: 0 0 12px;
}

.fgp-card__body p {
	color: var(--fgp-muted);
	font-size: 15px;
	line-height: 1.65;
	margin: 0;
}

.fgp-card__link {
	align-items: center;
	color: var(--fgp-ink);
	display: inline-flex;
	font-size: 14px;
	font-weight: 800;
	gap: 8px;
	margin-top: auto;
	padding-top: 24px;
	text-decoration: none;
	width: fit-content;
}

.fgp-card__link span {
	color: var(--fgp-accent);
	font-size: 18px;
	transition: transform .2s ease;
}

.fgp-card__link:hover span {
	transform: translate(2px, -2px);
}

.fgp-empty {
	background: #fff5ed;
	border-left: 4px solid var(--fgp-accent);
	padding: 20px;
}

.fgp-process {
	background: var(--fgp-soft);
	padding: 100px 0;
}

.fgp-process__intro {
	max-width: 700px;
}

.fgp-steps {
	display: grid;
	gap: 0;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	list-style: none;
	margin: 60px 0 0;
	padding: 0;
}

.fgp-steps li {
	border-left: 1px solid #d4d2cf;
	display: flex;
	gap: 22px;
	padding: 10px 34px;
}

.fgp-steps li:first-child {
	padding-left: 0;
	border-left: 0;
}

.fgp-steps > li > span {
	color: var(--fgp-accent);
	font-size: 14px;
	font-weight: 850;
	letter-spacing: .08em;
}

.fgp-steps strong {
	color: var(--fgp-ink);
	display: block;
	font-size: 20px;
	line-height: 1.2;
	margin-bottom: 10px;
}

.fgp-steps p {
	color: var(--fgp-muted);
	font-size: 15px;
	line-height: 1.6;
	margin: 0;
}

.fgp-cta {
	background: var(--fgp-charcoal);
	color: var(--fgp-white);
	padding: 90px 0;
}

.fgp-cta__inner {
	align-items: center;
	display: grid;
	gap: 64px;
	grid-template-columns: minmax(0, 1.2fr) auto;
}

.fgp-cta h2 {
	color: var(--fgp-white);
	font-size: clamp(34px, 4.5vw, 56px);
}

.fgp-cta p:not(.fgp-kicker) {
	color: #cfcfcf;
	font-size: 18px;
	line-height: 1.6;
	margin: 20px 0 0;
	max-width: 690px;
}

.fgp-cta__actions {
	display: flex;
	flex-direction: column;
	gap: 12px;
	min-width: 270px;
}

.fgp-button {
	align-items: center;
	border: 1px solid transparent;
	border-radius: 3px;
	display: flex;
	font-size: 15px;
	font-weight: 820;
	gap: 16px;
	justify-content: space-between;
	padding: 17px 20px;
	text-decoration: none;
	transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.fgp-button:hover {
	transform: translateY(-2px);
}

.fgp-button--primary {
	background: var(--fgp-accent);
	color: var(--fgp-white);
}

.fgp-button--primary:hover {
	background: color-mix(in srgb, var(--fgp-accent) 88%, black);
	color: var(--fgp-white);
}

.fgp-button--secondary {
	border-color: #555;
	color: var(--fgp-white);
}

.fgp-button--secondary:hover {
	background: var(--fgp-white);
	border-color: var(--fgp-white);
	color: var(--fgp-ink);
}

@media (max-width: 1024px) {
	.fgp-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.fgp-hero__inner {
		grid-template-columns: minmax(0, 1fr) 250px;
	}

	.fgp-steps {
		gap: 28px;
		grid-template-columns: 1fr;
	}

	.fgp-steps li,
	.fgp-steps li:first-child {
		border-left: 3px solid var(--fgp-accent);
		padding: 2px 0 2px 22px;
	}

	.fgp-cta__inner {
		grid-template-columns: 1fr;
	}

	.fgp-cta__actions {
		flex-direction: row;
		min-width: 0;
	}

	.fgp-button {
		min-width: 250px;
	}
}

@media (max-width: 767px) {
	.fgp-shell {
		padding-inline: 20px;
	}

	.fgp-hero,
	.fgp-hero__inner {
		min-height: auto;
	}

	.fgp-hero__inner {
		display: block;
		padding-block: 70px 76px;
	}

	.fgp-hero h1 {
		font-size: clamp(42px, 13vw, 64px);
	}

	.fgp-hero__mark {
		display: none;
	}

	.fgp-partners,
	.fgp-process {
		padding-block: 72px;
	}

	.fgp-section-head {
		display: block;
		margin-bottom: 34px;
	}

	.fgp-groups {
		gap: 58px;
	}

	.fgp-group__head {
		display: block;
	}

	.fgp-group__head p {
		margin-top: 14px;
	}

	.fgp-section-head > p {
		margin-top: 22px;
	}

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

	.fgp-card {
		min-height: 290px;
	}

	.fgp-filters {
		flex-wrap: nowrap;
		margin-inline: -20px;
		overflow-x: auto;
		padding: 0 20px 8px;
		scrollbar-width: thin;
	}

	.fgp-filter {
		flex: 0 0 auto;
	}

	.fgp-cta {
		padding-block: 72px;
	}

	.fgp-cta__actions {
		flex-direction: column;
	}

	.fgp-button {
		min-width: 0;
		width: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	.fgp *,
	.fgp *::before,
	.fgp *::after {
		scroll-behavior: auto !important;
		transition-duration: .01ms !important;
	}
}
