:root {
	--fwp-ink: #111315;
	--fwp-ink-soft: #1a1d20;
	--fwp-paper: #f3f1ec;
	--fwp-white: #ffffff;
	--fwp-muted: #66696d;
	--fwp-line: rgba(17, 19, 21, 0.16);
	--fwp-blue: #2f91cf;
	--fwp-gold: #f9c03f;
	--fwp-red: #c72327;
	--fwp-shell: min(3200px, calc(100% - clamp(64px, calc(2.4vw + 40px), 104px)));
	--fwp-header-height: 96px;
	--fwp-display: Impact, Haettenschweiler, "Arial Narrow Bold", "Arial Narrow", sans-serif;
	--fwp-body: Inter, Aptos, "Segoe UI", Arial, sans-serif;
	--fwp-ease: 180ms ease;
}

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

html {
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--fwp-header-height) + 12px);
}

body {
	margin: 0;
	overflow-x: hidden;
	background: var(--fwp-paper);
	color: var(--fwp-ink);
	font-family: var(--fwp-body);
	font-size: 16px;
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
}

body.fwp-menu-open {
	overflow: hidden;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

a {
	color: inherit;
}

button,
a {
	-webkit-tap-highlight-color: transparent;
}

:where(a, button, input, textarea, select):focus-visible {
	outline: 3px solid var(--fwp-gold);
	outline-offset: 4px;
}

.fwp-shell {
	width: var(--fwp-shell);
	margin-inline: auto;
}

.fwp-blue {
	color: var(--fwp-blue);
}

.fwp-gold {
	color: #c98d07;
}

.fwp-red {
	color: var(--fwp-red);
}

.fwp-skip-link {
	position: fixed;
	z-index: 10000;
	top: 12px;
	left: 12px;
	transform: translateY(-160%);
	padding: 12px 18px;
	background: var(--fwp-white);
	color: var(--fwp-ink);
	font-weight: 800;
	text-decoration: none;
}

.fwp-skip-link:focus {
	transform: translateY(0);
}

.fwp-sr-only {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	margin: -1px !important;
	padding: 0 !important;
	overflow: hidden !important;
	border: 0 !important;
	clip: rect(0 0 0 0) !important;
	clip-path: inset(50%) !important;
	white-space: nowrap !important;
}

.fwp-header {
	position: fixed;
	z-index: 1000;
	top: 0;
	right: 0;
	left: 0;
	height: var(--fwp-header-height);
	padding-top: env(safe-area-inset-top);
	border-bottom: 1px solid rgba(255, 255, 255, 0.19);
	color: var(--fwp-white);
	transition: background-color var(--fwp-ease), box-shadow var(--fwp-ease);
}

.fwp-is-inner .fwp-header,
.fwp-header.is-scrolled {
	background: rgba(13, 15, 17, 0.97);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
}

.fwp-header__inner {
	width: var(--fwp-shell);
	height: 100%;
	margin-inline: auto;
	display: flex;
	align-items: center;
	gap: clamp(28px, 3vw, 64px);
}

.fwp-brand {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	gap: 12px;
	color: var(--fwp-white);
	font-size: clamp(17px, 1.2vw, 23px);
	font-weight: 900;
	letter-spacing: 0.08em;
	text-decoration: none;
	text-transform: uppercase;
	white-space: nowrap;
}

.fwp-brand img {
	width: 54px;
	height: 38px;
	object-fit: contain;
	filter: grayscale(1) brightness(0) invert(1);
}

.fwp-navigation {
	margin-left: auto;
	display: flex;
	align-items: center;
	gap: clamp(20px, 2.1vw, 46px);
}

.fwp-navigation > a {
	position: relative;
	display: inline-flex;
	min-height: 44px;
	align-items: center;
	font-size: clamp(14px, 0.88vw, 17px);
	font-weight: 650;
	text-decoration: none;
	white-space: nowrap;
}

.fwp-navigation > a:not(.fwp-header-cta)::after {
	position: absolute;
	right: 0;
	bottom: 6px;
	left: 0;
	height: 1px;
	background: currentColor;
	content: "";
	transform: scaleX(0);
	transform-origin: left;
	transition: transform var(--fwp-ease);
}

.fwp-navigation > a:hover::after,
.fwp-navigation > a:focus-visible::after {
	transform: scaleX(1);
}

.fwp-navigation .fwp-header-cta {
	min-height: 52px;
	padding: 0 24px;
	border: 1px solid rgba(255, 255, 255, 0.72);
	border-radius: 3px;
	transition: background-color var(--fwp-ease), color var(--fwp-ease);
}

.fwp-navigation .fwp-header-cta:hover,
.fwp-navigation .fwp-header-cta:focus-visible {
	background: var(--fwp-white);
	color: var(--fwp-ink);
}

.fwp-menu-toggle {
	display: none;
	width: 48px;
	height: 48px;
	margin-left: auto;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(255, 255, 255, 0.42);
	border-radius: 50%;
	background: transparent;
	color: var(--fwp-white);
	cursor: pointer;
}

.fwp-menu-toggle__label {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip-path: inset(50%);
	white-space: nowrap;
}

.fwp-menu-toggle__bars {
	width: 20px;
	display: grid;
	gap: 4px;
}

.fwp-menu-toggle__bars i {
	width: 100%;
	height: 2px;
	background: currentColor;
	transition: transform var(--fwp-ease), opacity var(--fwp-ease);
}

.fwp-menu-toggle[aria-expanded="true"] .fwp-menu-toggle__bars i:first-child {
	transform: translateY(6px) rotate(45deg);
}

.fwp-menu-toggle[aria-expanded="true"] .fwp-menu-toggle__bars i:nth-child(2) {
	opacity: 0;
}

.fwp-menu-toggle[aria-expanded="true"] .fwp-menu-toggle__bars i:last-child {
	transform: translateY(-6px) rotate(-45deg);
}

.fwp-kicker {
	margin: 0 0 14px;
	font-size: 13px;
	font-weight: 900;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.fwp-kicker--hero {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	font-size: clamp(12px, 0.78vw, 15px);
}

.fwp-kicker--hero i {
	color: rgba(255, 255, 255, 0.66);
	font-style: normal;
}

.fwp-hero {
	position: relative;
	min-height: clamp(800px, 95svh, 1120px);
	display: flex;
	overflow: hidden;
	background: #15181b;
	color: var(--fwp-white);
}

.fwp-hero-slider,
.fwp-hero__shade {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.fwp-hero-slider {
	z-index: 0;
}

.fwp-hero-slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity 900ms ease;
}

.fwp-hero-slide.is-active {
	opacity: 1;
}

.fwp-hero-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 46%;
}

.fwp-hero__shade {
	z-index: 1;
	background:
		linear-gradient(90deg, rgba(8, 10, 12, 0.93) 0%, rgba(8, 10, 12, 0.74) 43%, rgba(8, 10, 12, 0.43) 76%, rgba(8, 10, 12, 0.58) 100%),
		linear-gradient(0deg, rgba(5, 7, 8, 0.34), transparent 45%);
	pointer-events: none;
}

.fwp-slider-arrow {
	position: absolute;
	z-index: 3;
	top: 50%;
	width: 44px;
	height: 44px;
	display: grid;
	place-items: center;
	border: 1px solid rgba(255, 255, 255, 0.58);
	border-radius: 50%;
	background: rgba(8, 10, 12, 0.32);
	color: var(--fwp-white);
	cursor: pointer;
	transform: translateY(-50%);
	backdrop-filter: blur(10px);
	transition: background-color var(--fwp-ease), border-color var(--fwp-ease);
}

.fwp-slider-arrow:hover,
.fwp-slider-arrow:focus-visible {
	border-color: var(--fwp-white);
	background: rgba(8, 10, 12, 0.76);
}

.fwp-slider-arrow span {
	margin-top: -4px;
	font-family: Arial, sans-serif;
	font-size: 33px;
	font-weight: 300;
	line-height: 1;
}

.fwp-slider-arrow--previous {
	left: 4px;
}

.fwp-slider-arrow--next {
	right: 4px;
}

.fwp-hero__inner {
	position: relative;
	z-index: 2;
	padding-top: calc(var(--fwp-header-height) + clamp(80px, 11vh, 140px));
	padding-bottom: clamp(64px, 8vh, 100px);
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(310px, 390px);
	gap: clamp(70px, 10vw, 210px);
	align-items: center;
}

.fwp-hero__content {
	max-width: 1080px;
}

.fwp-hero h1,
.fwp-about h2,
.fwp-businesses h2,
.fwp-approach h2,
.fwp-founder h2,
.fwp-selector h2,
.fwp-coming h1,
.fwp-coming-details h2,
.fwp-standard-page h1,
.fwp-error-page h1 {
	margin: 0;
	font-family: var(--fwp-display);
	font-weight: 400;
	letter-spacing: -0.025em;
	line-height: 0.9;
	text-wrap: balance;
}

.fwp-hero h1 {
	font-size: clamp(74px, 6.9vw, 148px);
	text-shadow: 0 5px 28px rgba(0, 0, 0, 0.48);
}

.fwp-hero__copy {
	margin: 24px 0 0;
	font-size: clamp(19px, 1.25vw, 26px);
	font-weight: 520;
	line-height: 1.4;
	text-shadow: 0 3px 20px rgba(0, 0, 0, 0.7);
}

.fwp-actions {
	margin-top: 34px;
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}

.fwp-button {
	display: inline-flex;
	min-height: 56px;
	align-items: center;
	justify-content: space-between;
	gap: 26px;
	padding: 0 24px;
	border: 1px solid currentColor;
	border-radius: 3px;
	font-size: 16px;
	font-weight: 750;
	text-decoration: none;
	transition: background-color var(--fwp-ease), color var(--fwp-ease);
}

.fwp-button span,
.fwp-selector__link span,
.fwp-business-card__bottom a span {
	font-size: 27px;
	font-weight: 300;
	line-height: 1;
	transition: transform var(--fwp-ease);
}

.fwp-button:hover span,
.fwp-button:focus-visible span,
.fwp-selector__link:hover span,
.fwp-selector__link:focus-visible span,
.fwp-business-card__bottom a:hover span,
.fwp-business-card__bottom a:focus-visible span {
	transform: translateX(5px);
}

.fwp-button--light {
	border-color: var(--fwp-white);
	background: var(--fwp-white);
	color: var(--fwp-ink);
}

.fwp-button--light:hover,
.fwp-button--light:focus-visible {
	background: transparent;
	color: var(--fwp-white);
}

.fwp-button--ghost {
	border-color: rgba(255, 255, 255, 0.72);
	background: rgba(10, 12, 14, 0.16);
	color: var(--fwp-white);
	backdrop-filter: blur(8px);
}

.fwp-button--ghost:hover,
.fwp-button--ghost:focus-visible {
	background: var(--fwp-white);
	color: var(--fwp-ink);
}

.fwp-button--dark {
	border-color: var(--fwp-ink);
	background: var(--fwp-ink);
	color: var(--fwp-white);
}

.fwp-hero-stats {
	padding: 20px 28px;
	border: 1px solid rgba(255, 255, 255, 0.26);
	border-radius: 15px;
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.07));
	box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
	backdrop-filter: blur(17px);
}

.fwp-hero-stat {
	min-height: 116px;
	display: grid;
	grid-template-columns: 58px 1fr;
	align-items: center;
	gap: 18px;
	padding-block: 18px;
}

.fwp-hero-stat + .fwp-hero-stat {
	border-top: 1px solid rgba(255, 255, 255, 0.34);
}

.fwp-hero-stat__mark {
	width: 52px;
	height: 52px;
	display: inline-grid;
	place-items: center;
	border: 1px solid rgba(255, 255, 255, 0.74);
	border-radius: 50%;
	font-size: 14px;
	font-weight: 850;
}

.fwp-hero-stat p {
	margin: 0;
	display: grid;
	gap: 2px;
}

.fwp-hero-stat strong {
	font-size: clamp(22px, 1.55vw, 30px);
	line-height: 1.05;
}

.fwp-hero-stat span:last-child {
	color: rgba(255, 255, 255, 0.82);
	font-size: 14px;
}

.fwp-about {
	padding-block: clamp(88px, 8vw, 150px) clamp(80px, 7vw, 130px);
	background: var(--fwp-paper);
}

.fwp-about__top {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.78fr) minmax(250px, 0.55fr);
	gap: clamp(44px, 5vw, 110px);
	align-items: center;
}

.fwp-about h2 {
	font-size: clamp(60px, 5.2vw, 108px);
}

.fwp-about__copy {
	max-width: 610px;
	font-size: clamp(17px, 1.1vw, 22px);
}

.fwp-about__copy p {
	margin: 0;
}

.fwp-about__copy p + p {
	margin-top: 28px;
}

.fwp-about__mark {
	width: 100%;
	opacity: 0.065;
	filter: grayscale(1);
}

.fwp-metrics {
	margin-top: clamp(65px, 6vw, 115px);
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.fwp-metric {
	min-width: 0;
	padding: 0 clamp(28px, 4vw, 78px);
}

.fwp-metric:first-child {
	padding-left: 0;
}

.fwp-metric:last-child {
	padding-right: 0;
}

.fwp-metric + .fwp-metric {
	border-left: 1px solid var(--fwp-line);
}

.fwp-metric__icon,
.fwp-approach-step__icon {
	width: 68px;
	height: 68px;
	display: inline-grid;
	place-items: center;
	border: 2px solid currentColor;
	border-radius: 50%;
	font-weight: 900;
}

.fwp-metric--blue .fwp-metric__icon,
.fwp-metric--blue h3 {
	color: var(--fwp-blue);
}

.fwp-metric--gold .fwp-metric__icon,
.fwp-metric--gold h3 {
	color: #c98d07;
}

.fwp-metric--red .fwp-metric__icon,
.fwp-metric--red h3 {
	color: var(--fwp-red);
}

.fwp-metric h3 {
	margin: 22px 0 14px;
	font-family: var(--fwp-display);
	font-size: clamp(42px, 3.25vw, 70px);
	font-weight: 400;
	letter-spacing: -0.02em;
	line-height: 0.92;
}

.fwp-metric p {
	max-width: 390px;
	margin: 0;
	color: var(--fwp-muted);
	font-size: clamp(15px, 0.95vw, 18px);
}

.fwp-businesses {
	padding-block: clamp(86px, 7vw, 130px);
	background: #111315;
	color: var(--fwp-white);
}

.fwp-businesses h2 {
	font-size: clamp(56px, 4.5vw, 94px);
}

.fwp-business-grid {
	margin-top: clamp(40px, 4vw, 72px);
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(16px, 1.4vw, 28px);
}

.fwp-business-card {
	position: relative;
	min-height: clamp(610px, 42vw, 800px);
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.38);
	border-radius: 9px;
	background: #222;
	isolation: isolate;
}

.fwp-business-card__photo,
.fwp-business-card__shade {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.fwp-business-card__photo {
	z-index: -2;
	object-fit: cover;
	transition: transform 450ms ease;
}

.fwp-business-card--blue .fwp-business-card__photo {
	object-position: 56% center;
}

.fwp-business-card__shade {
	z-index: -1;
	background: linear-gradient(180deg, rgba(7, 9, 11, 0.17) 20%, rgba(7, 9, 11, 0.74) 65%, rgba(7, 9, 11, 0.98) 100%);
}

.fwp-business-card__content {
	height: 100%;
	padding: clamp(22px, 2.3vw, 42px);
	display: flex;
	flex-direction: column;
}

.fwp-business-card__logo {
	width: clamp(150px, 13vw, 250px);
	height: clamp(150px, 13vw, 250px);
	object-fit: contain;
}

.fwp-business-card__bottom {
	margin-top: auto;
}

.fwp-status {
	display: inline-flex;
	padding: 7px 14px;
	border-radius: 999px;
	background: var(--fwp-blue);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.fwp-business-card--gold .fwp-status {
	background: #ca8d08;
}

.fwp-business-card--red .fwp-status {
	background: var(--fwp-red);
}

.fwp-business-card__bottom p {
	max-width: 470px;
	margin: 20px 0;
	font-size: clamp(16px, 1.05vw, 20px);
}

.fwp-business-card__bottom a {
	width: 100%;
	min-height: 60px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 0 20px;
	border: 1px solid var(--fwp-blue);
	color: var(--fwp-white);
	font-weight: 700;
	text-decoration: none;
}

.fwp-business-card--gold .fwp-business-card__bottom a {
	border-color: var(--fwp-gold);
}

.fwp-business-card--red .fwp-business-card__bottom a {
	border-color: var(--fwp-red);
}

.fwp-business-card--blue .fwp-business-card__bottom a span {
	color: var(--fwp-blue);
}

.fwp-business-card--gold .fwp-business-card__bottom a span {
	color: var(--fwp-gold);
}

.fwp-business-card--red .fwp-business-card__bottom a span {
	color: #ef3339;
}

@media (hover: hover) and (pointer: fine) {
	.fwp-business-card:hover .fwp-business-card__photo,
	.fwp-triptych__item:hover img {
		transform: scale(1.035);
	}
}

.fwp-approach {
	padding-block: clamp(60px, 5.5vw, 100px);
	background: #f7f5f1;
}

.fwp-approach__heading {
	display: grid;
	grid-template-columns: minmax(160px, 0.36fr) 1fr;
	gap: 40px;
	align-items: end;
}

.fwp-approach__heading .fwp-kicker {
	color: #8b7d6c;
}

.fwp-approach h2 {
	font-size: clamp(50px, 4.2vw, 88px);
}

.fwp-approach__steps {
	margin-top: clamp(48px, 4.5vw, 80px);
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(40px, 0.25fr) minmax(0, 1fr) minmax(40px, 0.25fr) minmax(0, 1fr);
	align-items: center;
	gap: clamp(18px, 2.2vw, 44px);
}

.fwp-approach-step {
	display: grid;
	grid-template-columns: 82px 1fr;
	align-items: center;
	gap: 20px;
}

.fwp-approach-step--blue {
	color: var(--fwp-blue);
}

.fwp-approach-step--gold {
	color: #c98d07;
}

.fwp-approach-step--red {
	color: var(--fwp-red);
}

.fwp-approach-step h3 {
	margin: 0;
	font-size: 15px;
	font-weight: 900;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.fwp-approach-step p {
	margin: 7px 0 0;
	color: var(--fwp-ink);
	font-size: 14px;
}

.fwp-connector {
	height: 1px;
	background: rgba(17, 19, 21, 0.28);
}

.fwp-triptych {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	background: var(--fwp-ink);
}

.fwp-triptych__item {
	position: relative;
	min-height: clamp(380px, 33vw, 650px);
	overflow: hidden;
	color: var(--fwp-white);
	text-decoration: none;
	isolation: isolate;
}

.fwp-triptych__item + .fwp-triptych__item {
	border-left: 1px solid rgba(255, 255, 255, 0.72);
}

.fwp-triptych__item::after {
	position: absolute;
	z-index: -1;
	inset: 0;
	background: linear-gradient(180deg, transparent 35%, rgba(8, 10, 12, 0.88) 100%);
	content: "";
}

.fwp-triptych__item img {
	position: absolute;
	z-index: -2;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 450ms ease;
}

.fwp-triptych__item--blue img {
	object-position: center;
}

.fwp-triptych__item span {
	position: absolute;
	right: clamp(24px, 3vw, 56px);
	bottom: clamp(28px, 3vw, 58px);
	left: clamp(24px, 3vw, 56px);
	font-size: clamp(25px, 2.2vw, 44px);
	font-weight: 850;
	letter-spacing: 0.05em;
	line-height: 0.98;
	text-transform: uppercase;
}

.fwp-triptych__item span::after {
	width: 86px;
	height: 4px;
	margin-top: 16px;
	display: block;
	background: var(--fwp-blue);
	content: "";
}

.fwp-triptych__item--gold span::after {
	background: var(--fwp-gold);
}

.fwp-triptych__item--red span::after {
	background: var(--fwp-red);
}

.fwp-founder {
	min-height: clamp(560px, 45vw, 830px);
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	background: var(--fwp-ink);
	color: var(--fwp-white);
}

.fwp-founder__copy {
	padding: clamp(64px, 7vw, 140px) clamp(32px, 6vw, 125px);
	display: flex;
	align-items: center;
}

.fwp-founder__copy > div {
	max-width: 680px;
}

.fwp-founder h2 {
	font-size: clamp(55px, 4.7vw, 98px);
}

.fwp-founder blockquote {
	margin: clamp(34px, 4vw, 66px) 0 0;
	padding-left: 46px;
	position: relative;
}

.fwp-founder blockquote::before {
	position: absolute;
	top: -15px;
	left: 0;
	color: #e9d78e;
	content: "“";
	font-family: Georgia, serif;
	font-size: 66px;
	line-height: 1;
}

.fwp-founder blockquote p {
	margin: 0;
	color: rgba(255, 255, 255, 0.79);
	font-size: clamp(15px, 1vw, 19px);
}

.fwp-founder blockquote footer {
	margin-top: 28px;
	color: rgba(255, 255, 255, 0.62);
	font-size: 14px;
}

.fwp-founder blockquote strong {
	color: var(--fwp-white);
}

.fwp-founder__visual {
	min-width: 0;
	overflow: hidden;
}

.fwp-founder__visual img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 18%;
	filter: brightness(0.82) saturate(0.82);
}

.fwp-selector {
	padding-block: clamp(58px, 5vw, 90px);
	background: linear-gradient(90deg, #16191c, #0e1012 50%, #16191c);
	color: var(--fwp-white);
	text-align: center;
}

.fwp-selector h2 {
	font-size: clamp(54px, 4.5vw, 92px);
}

.fwp-selector__grid {
	margin-top: 36px;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(18px, 2vw, 38px);
}

.fwp-selector__link {
	min-height: 62px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 0 28px;
	border: 1px solid var(--fwp-blue);
	font-size: clamp(16px, 1.1vw, 20px);
	font-weight: 650;
	text-decoration: none;
	transition: background-color var(--fwp-ease);
}

.fwp-selector__link--blue span {
	color: var(--fwp-blue);
}

.fwp-selector__link--gold {
	border-color: var(--fwp-gold);
}

.fwp-selector__link--gold span {
	color: var(--fwp-gold);
}

.fwp-selector__link--red {
	border-color: var(--fwp-red);
}

.fwp-selector__link--red span {
	color: #ef3339;
}

.fwp-selector__link:hover,
.fwp-selector__link:focus-visible {
	background: rgba(255, 255, 255, 0.07);
}

.fwp-social-strip {
	padding-block: 32px;
	background: #f7f5f1;
}

.fwp-social-strip__inner {
	width: var(--fwp-shell);
	margin-inline: auto;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.fwp-social-account {
	min-width: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
	padding-inline: 30px;
}

.fwp-social-account + .fwp-social-account {
	border-left: 1px solid var(--fwp-line);
}

.fwp-social-account img {
	width: 60px;
	height: 60px;
	object-fit: contain;
}

.fwp-social-account__content {
	min-width: 0;
	display: grid;
	gap: 9px;
}

.fwp-social-handle {
	overflow: hidden;
	color: var(--fwp-ink);
	font-size: 15px;
	font-weight: 650;
	text-decoration: none;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.fwp-social-handle:hover,
.fwp-social-handle:focus-visible {
	text-decoration: underline;
	text-underline-offset: 4px;
}

.fwp-social-icons {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 7px;
}

.fwp-social-icon {
	width: 32px;
	height: 32px;
	display: inline-grid;
	flex: 0 0 auto;
	place-items: center;
	border: 1px solid currentColor;
	border-radius: 50%;
	color: currentColor;
	text-decoration: none;
	transition: background-color var(--fwp-ease), color var(--fwp-ease);
}

.fwp-social-account--blue .fwp-social-icon {
	color: var(--fwp-blue);
}

.fwp-social-account--gold .fwp-social-icon {
	color: #c98d07;
}

.fwp-social-account--red .fwp-social-icon {
	color: var(--fwp-red);
}

.fwp-social-icon:hover,
.fwp-social-icon:focus-visible {
	background: currentColor;
}

.fwp-social-icon i {
	position: relative;
	width: 15px;
	height: 15px;
	display: block;
	color: inherit;
	font-style: normal;
}

.fwp-social-icon:hover i,
.fwp-social-icon:focus-visible i {
	color: var(--fwp-white);
}

.fwp-social-icon--instagram i {
	border: 2px solid currentColor;
	border-radius: 4px;
}

.fwp-social-icon--instagram i::before {
	position: absolute;
	top: 3px;
	left: 3px;
	width: 5px;
	height: 5px;
	border: 1.5px solid currentColor;
	border-radius: 50%;
	content: "";
}

.fwp-social-icon--instagram i::after {
	position: absolute;
	top: 1px;
	right: 1px;
	width: 2px;
	height: 2px;
	border-radius: 50%;
	background: currentColor;
	content: "";
}

.fwp-social-icon--facebook i::before {
	position: absolute;
	inset: -5px 0 0;
	content: "f";
	font-family: Arial, sans-serif;
	font-size: 21px;
	font-weight: 900;
	text-align: center;
}

.fwp-social-icon--x i::before {
	position: absolute;
	inset: -2px 0 0;
	content: "X";
	font-family: Arial, sans-serif;
	font-size: 14px;
	font-weight: 800;
	text-align: center;
}

.fwp-social-icon--linkedin i::before {
	position: absolute;
	inset: 0;
	content: "in";
	font-family: Arial, sans-serif;
	font-size: 11px;
	font-weight: 900;
	line-height: 15px;
	text-align: center;
}

.fwp-footer {
	padding-block: clamp(60px, 6vw, 110px) 34px;
	background: #111315;
	color: var(--fwp-white);
}

.fwp-footer__inner {
	width: var(--fwp-shell);
	margin-inline: auto;
	display: grid;
	grid-template-columns: 1.15fr 0.58fr 0.8fr 1fr;
	gap: clamp(46px, 6vw, 130px);
}

.fwp-brand--footer {
	font-size: 20px;
}

.fwp-footer__brand p {
	max-width: 330px;
	margin: 24px 0 48px;
	color: rgba(255, 255, 255, 0.6);
}

.fwp-footer small {
	color: rgba(255, 255, 255, 0.58);
}

.fwp-footer h2 {
	margin: 10px 0 22px;
	font-size: 13px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.fwp-footer__inner > div:not(.fwp-footer__brand) {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.fwp-footer__inner > div:not(.fwp-footer__brand) a,
.fwp-footer__inner > div:not(.fwp-footer__brand) span {
	min-height: 29px;
	color: rgba(255, 255, 255, 0.62);
	font-size: 14px;
	text-decoration: none;
}

.fwp-footer .fwp-footer__follow {
	gap: 14px;
}

.fwp-footer__follow h2 {
	margin-bottom: 8px;
}

.fwp-footer-social-row {
	width: 100%;
	display: grid;
	grid-template-columns: 66px 1fr;
	align-items: center;
	gap: 10px;
}

.fwp-footer .fwp-footer-social-row > span {
	min-height: 0;
	color: rgba(255, 255, 255, 0.68);
	font-size: 12px;
	font-weight: 750;
	text-transform: uppercase;
}

.fwp-footer .fwp-social-icon {
	width: 30px;
	height: 30px;
	min-height: 30px;
	color: rgba(255, 255, 255, 0.72);
}

.fwp-footer .fwp-social-icon:hover,
.fwp-footer .fwp-social-icon:focus-visible {
	background: var(--fwp-white);
	color: var(--fwp-ink);
}

.fwp-footer .fwp-social-icon:hover i,
.fwp-footer .fwp-social-icon:focus-visible i {
	color: var(--fwp-ink);
}

.fwp-footer a:hover,
.fwp-footer a:focus-visible {
	color: var(--fwp-white);
}

.fwp-coming {
	position: relative;
	min-height: clamp(760px, 90svh, 1040px);
	display: flex;
	overflow: hidden;
	background: #111315;
	color: var(--fwp-white);
}

.fwp-coming__image,
.fwp-coming__shade {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.fwp-coming__image {
	object-fit: cover;
}

.fwp-coming__shade {
	background: linear-gradient(90deg, rgba(8, 10, 12, 0.94), rgba(8, 10, 12, 0.64) 58%, rgba(8, 10, 12, 0.4));
}

.fwp-coming__inner {
	position: relative;
	z-index: 1;
	padding-top: calc(var(--fwp-header-height) + 105px);
	padding-bottom: 90px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
}

.fwp-coming__logo {
	width: min(480px, 58vw);
	height: 120px;
	margin-bottom: 42px;
	object-fit: contain;
	object-position: left center;
}

.fwp-coming h1 {
	max-width: 1200px;
	font-size: clamp(68px, 6vw, 126px);
}

.fwp-coming__inner > p:not(.fwp-kicker) {
	max-width: 820px;
	margin: 28px 0 36px;
	font-size: clamp(18px, 1.3vw, 25px);
}

.fwp-coming--blue {
	border-bottom: 6px solid var(--fwp-blue);
}

.fwp-coming--gold {
	border-bottom: 6px solid var(--fwp-gold);
}

.fwp-coming-details {
	padding-block: clamp(85px, 8vw, 150px);
}

.fwp-coming-details h2 {
	max-width: 1500px;
	font-size: clamp(58px, 5vw, 104px);
}

.fwp-detail-grid {
	margin-top: clamp(48px, 5vw, 90px);
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	border-top: 1px solid var(--fwp-line);
}

.fwp-detail-grid article {
	padding: clamp(32px, 4vw, 72px);
}

.fwp-detail-grid article:first-child {
	padding-left: 0;
}

.fwp-detail-grid article + article {
	border-left: 1px solid var(--fwp-line);
}

.fwp-detail-grid span {
	color: var(--fwp-blue);
	font-weight: 900;
}

.fwp-coming--gold + .fwp-coming-details .fwp-detail-grid span {
	color: #c98d07;
}

.fwp-detail-grid h3 {
	margin: 18px 0 12px;
	font-family: var(--fwp-display);
	font-size: clamp(40px, 3vw, 66px);
	font-weight: 400;
	line-height: 0.95;
}

.fwp-detail-grid p {
	max-width: 450px;
	margin: 0;
	color: var(--fwp-muted);
}

.fwp-standard-page,
.fwp-error-page {
	min-height: 72vh;
	padding-top: calc(var(--fwp-header-height) + clamp(80px, 9vw, 150px));
	padding-bottom: clamp(80px, 9vw, 150px);
}

.fwp-standard-page h1,
.fwp-error-page h1 {
	max-width: 1500px;
	font-size: clamp(64px, 6vw, 126px);
}

.fwp-standard-page__inner {
	max-width: 1600px;
}

.fwp-entry-content {
	max-width: 1100px;
	margin-top: 45px;
}

.fwp-entry-content > * {
	max-width: 100%;
}

.fwp-index-entry {
	max-width: 1100px;
	padding-block: 34px;
	border-bottom: 1px solid var(--fwp-line);
}

.fwp-index-entry h2 {
	margin: 0;
}

.fwp-error-page .fwp-shell > p:not(.fwp-kicker) {
	max-width: 700px;
	margin: 30px 0;
	color: var(--fwp-muted);
	font-size: 19px;
}

@media (max-width: 1280px) {
	.fwp-navigation {
		gap: 18px;
	}

	.fwp-navigation > a {
		font-size: 14px;
	}

	.fwp-hero__inner {
		gap: 60px;
	}

	.fwp-about__top {
		grid-template-columns: minmax(0, 1fr) minmax(330px, 0.8fr);
	}

	.fwp-about__mark {
		position: absolute;
		right: 2vw;
		width: 28vw;
		opacity: 0.045;
		pointer-events: none;
	}
}

@media (max-width: 1080px) {
	:root {
		--fwp-header-height: 82px;
	}

	.fwp-menu-toggle {
		display: inline-flex;
	}

	.fwp-navigation {
		position: fixed;
		z-index: 999;
		top: calc(var(--fwp-header-height) + env(safe-area-inset-top));
		right: 0;
		left: 0;
		max-height: calc(100svh - var(--fwp-header-height));
		margin: 0;
		padding: 12px max(20px, calc((100vw - var(--fwp-shell)) / 2)) calc(24px + env(safe-area-inset-bottom));
		display: none;
		overflow-y: auto;
		border-top: 1px solid rgba(255, 255, 255, 0.12);
		background: rgba(13, 15, 17, 0.99);
	}

	.fwp-navigation.is-open {
		display: grid;
	}

	.fwp-navigation > a {
		min-height: 54px;
		border-bottom: 1px solid rgba(255, 255, 255, 0.12);
		font-size: 16px;
	}

	.fwp-navigation .fwp-header-cta {
		margin-top: 10px;
		justify-content: center;
	}

	.fwp-hero {
		min-height: 900px;
	}

	.fwp-hero__inner {
		grid-template-columns: 1fr minmax(270px, 320px);
		gap: 36px;
	}

	.fwp-hero h1 {
		font-size: clamp(66px, 8vw, 92px);
	}

	.fwp-business-card {
		min-height: 590px;
	}

	.fwp-business-card__logo {
		width: 150px;
		height: 150px;
	}

	.fwp-approach__steps {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.fwp-connector {
		display: none;
	}

	.fwp-approach-step {
		grid-template-columns: 68px 1fr;
	}

	.fwp-founder {
		grid-template-columns: 1fr 1fr;
	}

	.fwp-footer__inner {
		grid-template-columns: 1.2fr repeat(3, 0.75fr);
		gap: 40px;
	}
}

@media (max-width: 860px) {
	.fwp-hero {
		min-height: 0;
	}

	.fwp-hero__shade {
		background: linear-gradient(180deg, rgba(8, 10, 12, 0.76), rgba(8, 10, 12, 0.88) 63%, rgba(8, 10, 12, 0.96));
	}

	.fwp-hero__inner {
		padding-top: calc(var(--fwp-header-height) + 78px);
		padding-bottom: 58px;
		grid-template-columns: 1fr;
		gap: 56px;
	}

	.fwp-hero__content {
		max-width: 720px;
	}

	.fwp-hero h1 {
		font-size: clamp(62px, 13vw, 98px);
	}

	.fwp-hero-stats {
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		padding: 14px 20px;
	}

	.fwp-hero-stat {
		min-height: 130px;
		grid-template-columns: 1fr;
		justify-items: center;
		gap: 10px;
		padding: 16px;
		text-align: center;
	}

	.fwp-hero-stat + .fwp-hero-stat {
		border-top: 0;
		border-left: 1px solid rgba(255, 255, 255, 0.3);
	}

	.fwp-about__top {
		grid-template-columns: 1fr;
	}

	.fwp-about__copy {
		max-width: 720px;
	}

	.fwp-metrics {
		grid-template-columns: 1fr;
	}

	.fwp-metric,
	.fwp-metric:first-child,
	.fwp-metric:last-child {
		padding: 36px 0;
	}

	.fwp-metric + .fwp-metric {
		border-top: 1px solid var(--fwp-line);
		border-left: 0;
	}

	.fwp-business-grid {
		grid-template-columns: 1fr;
	}

	.fwp-business-card {
		min-height: 670px;
	}

	.fwp-business-card__logo {
		width: 210px;
		height: 210px;
	}

	.fwp-approach__heading {
		grid-template-columns: 1fr;
		gap: 10px;
	}

	.fwp-approach__steps {
		grid-template-columns: 1fr;
		gap: 34px;
	}

	.fwp-triptych {
		grid-template-columns: 1fr;
	}

	.fwp-triptych__item {
		min-height: 430px;
	}

	.fwp-triptych__item + .fwp-triptych__item {
		border-top: 1px solid rgba(255, 255, 255, 0.72);
		border-left: 0;
	}

	.fwp-founder {
		grid-template-columns: 1fr;
	}

	.fwp-founder__visual {
		min-height: 520px;
	}

	.fwp-selector__grid {
		grid-template-columns: 1fr;
	}

	.fwp-social-strip__inner {
		grid-template-columns: 1fr;
	}

	.fwp-social-account {
		justify-content: flex-start;
		padding: 20px 0;
	}

	.fwp-social-account + .fwp-social-account {
		border-top: 1px solid var(--fwp-line);
		border-left: 0;
	}

	.fwp-footer__inner {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.fwp-footer__brand {
		grid-column: 1 / -1;
	}

	.fwp-footer__brand p {
		margin-bottom: 28px;
	}

	.fwp-detail-grid {
		grid-template-columns: 1fr;
	}

	.fwp-detail-grid article,
	.fwp-detail-grid article:first-child {
		padding: 34px 0;
	}

	.fwp-detail-grid article + article {
		border-top: 1px solid var(--fwp-line);
		border-left: 0;
	}
}

@media (max-width: 560px) {
	:root {
		--fwp-shell: calc(100% - 64px);
	}

	.fwp-brand {
		font-size: 16px;
	}

	.fwp-brand img {
		width: 45px;
	}

	.fwp-hero__inner {
		padding-top: calc(var(--fwp-header-height) + 60px);
	}

	.fwp-kicker--hero {
		gap: 7px;
		font-size: 10px;
	}

	.fwp-hero h1 {
		font-size: clamp(52px, 16.2vw, 76px);
	}

	.fwp-hero__copy {
		font-size: 18px;
	}

	.fwp-actions {
		display: grid;
	}

	.fwp-button {
		width: 100%;
		min-height: 54px;
	}

	.fwp-hero-stats {
		grid-template-columns: 1fr;
	}

	.fwp-hero-stat {
		min-height: 92px;
		grid-template-columns: 52px 1fr;
		justify-items: stretch;
		text-align: left;
	}

	.fwp-hero-stat + .fwp-hero-stat {
		border-top: 1px solid rgba(255, 255, 255, 0.3);
		border-left: 0;
	}

	.fwp-about h2,
	.fwp-businesses h2,
	.fwp-approach h2,
	.fwp-founder h2,
	.fwp-selector h2,
	.fwp-coming-details h2 {
		font-size: clamp(48px, 14vw, 70px);
	}

	.fwp-business-card {
		min-height: 610px;
	}

	.fwp-business-card__content {
		padding: 18px;
	}

	.fwp-business-card__logo {
		width: 170px;
		height: 170px;
	}

	.fwp-approach-step {
		grid-template-columns: 62px 1fr;
	}

	.fwp-approach-step__icon {
		width: 60px;
		height: 60px;
	}

	.fwp-triptych__item {
		min-height: 340px;
	}

	.fwp-founder__copy {
		padding-right: 18px;
		padding-left: 18px;
	}

	.fwp-founder__visual {
		min-height: 340px;
	}

	.fwp-social-account img {
		width: 52px;
		height: 52px;
	}

	.fwp-footer__inner {
		grid-template-columns: 1fr;
	}

	.fwp-footer__brand {
		grid-column: auto;
	}

	.fwp-footer__inner > div:not(:last-child) {
		padding-bottom: 26px;
		border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	}

	.fwp-coming__logo {
		width: 100%;
		height: 90px;
	}

	.fwp-coming h1,
	.fwp-standard-page h1,
	.fwp-error-page h1 {
		font-size: clamp(54px, 15vw, 76px);
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}
